:root {
  --orange: #a3063f;
  --orange-2: #e0135b;
  --yellow: #ff5c7a;
  --green: #25d366;
  --dark: #17060d;
  --dark-2: #210812;
  --surface: #ffffff;
  --light: #f6f8fb;
  --text: #141a22;
  --muted: #5c6672;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans Georgian", "Inter", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
  scroll-margin-top: 90px;
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: var(--white);
}

.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.02em;
}

.section-sub {
  margin: 0 0 34px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-sub {
  color: rgba(255, 255, 255, .78);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 999;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 10px;
}

.skip-link:focus {
  left: 10px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 6, 13, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.2rem;
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8e0e3a, #ff5c7a);
  color: #fff;
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(224, 17, 91, .3);
}

.tld {
  color: #ff5c7a;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  padding: 4px;
}

.lang {
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

.lang.active {
  background: linear-gradient(135deg, #8e0e3a, #e0135b);
  color: #fff;
}

.header-phone {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  transition: .25s ease;
  cursor: pointer;
  min-height: 48px;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 26px;
  font-size: 1.05rem;
}

.btn-small {
  padding: 10px 16px;
  min-height: 42px;
}

.btn-orange {
  background: linear-gradient(135deg, #8e0e3a, #e0135b);
  color: #fff;
  box-shadow: 0 14px 34px rgba(224, 17, 91, .28);
}

.btn-orange:hover {
  box-shadow: 0 18px 40px rgba(224, 17, 91, .36);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #20b358, var(--green));
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .25);
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #111;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.icon {
  font-size: 1.1em;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(224, 17, 91, .42), transparent 32%),
    radial-gradient(circle at left bottom, rgba(255, 92, 122, .18), transparent 24%),
    linear-gradient(135deg, #17060d, #210812 55%, #360a1f);
  color: #fff;
  padding: 84px 0 70px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, .03) 0 2px, transparent 2px 28px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .9rem;
}

.badge-yellow {
  background: #ff5c7a;
  color: #fff;
}

.badge-light {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.03;
  margin: 18px 0;
  font-weight: 900;
  letter-spacing: -.04em;
}

.hero-sub {
  max-width: 640px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
  margin: 0 0 26px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}

.visual-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .05));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.visual-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.big-24 {
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 1000;
  color: #ff5c7a;
  text-shadow: 0 8px 24px rgba(255, 92, 122, .35);
}

.visual-label {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
}

.pallet-art {
  display: grid;
  gap: 12px;
}

.pallet-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.board {
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(224, 17, 91, .95), rgba(255, 92, 122, .75));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.board.dark {
  background: linear-gradient(90deg, rgba(142, 14, 58, .9), rgba(94, 9, 43, .95));
}

.visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.visual-tags span {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 800;
  color: #fff;
}

/* Grids */
.grid-4,
.grid-3,
.grid-6,
.categories-grid,
.why-grid,
.steps-grid,
.contact-grid,
.combo-grid {
  display: grid;
  gap: 18px;
}

.grid-4,
.categories-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3,
.combo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-6,
.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid,
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.section-dark .card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(142, 14, 58, .16), rgba(255, 92, 122, .24));
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.section-dark .card-icon {
  background: rgba(255, 255, 255, .08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 900;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.section-dark .card p {
  color: rgba(255, 255, 255, .75);
}

.combo-card {
  text-align: center;
}

.combo-card .card-icon {
  margin-inline: auto;
}

.category-card {
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 17, 91, .22), transparent 70%);
  pointer-events: none;
}

.cta-center {
  text-align: center;
  margin-top: 34px;
}

/* Chips */
.chip {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  font-weight: 900;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Gallery */
.photo-card {
  min-height: 240px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
  display: flex;
  align-items: flex-end;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .35));
}

.photo-card:nth-child(1) {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 18px, rgba(255, 255, 255, 0) 18px 36px),
    linear-gradient(135deg, #4a081f, #e0135b);
}

.photo-card:nth-child(2) {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .07) 0 14px, rgba(255, 255, 255, 0) 14px 30px),
    linear-gradient(135deg, #2c0512, #a3063f);
}

.photo-card:nth-child(3) {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .07) 0 16px, rgba(255, 255, 255, 0) 16px 32px),
    linear-gradient(135deg, #5d0a2a, #ff5c7a);
}

.photo-card:nth-child(4) {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 22px, rgba(255, 255, 255, 0) 22px 42px),
    linear-gradient(135deg, #210812, #e0135b);
}

.photo-card:nth-child(5) {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .06) 0 18px, rgba(255, 255, 255, 0) 18px 36px),
    linear-gradient(135deg, #59071f, #d81b60);
}

.photo-card:nth-child(6) {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 16px, rgba(255, 255, 255, 0) 16px 32px),
    linear-gradient(135deg, #3a0618, #ff2e63);
}

.photo-label {
  position: relative;
  z-index: 1;
  margin: 16px;
  color: #fff;
  font-weight: 900;
  background: rgba(23, 6, 13, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  padding: 10px 14px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

/* Steps */
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8e0e3a, #ff5c7a);
  font-weight: 1000;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

/* SEO */
.seo-box {
  max-width: 900px;
}

.seo-box p {
  color: var(--muted);
  font-size: 1rem;
}

/* Final CTA */
.final-cta {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(135deg, #7a0c33, #e0135b);
  color: #fff;
  padding: 84px 0;
  overflow: hidden;
}

.final-cta .section-title {
  color: #fff;
}

.final-cta .section-sub {
  color: rgba(255, 255, 255, .86);
  max-width: 760px;
}

.final-cta .btn-dark {
  background: #fff;
  color: #7a0c33;
}

.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Contacts */
.contact-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .07);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .06);
}

.contact-label {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.contact-value {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-value a {
  text-decoration: none;
}

.contact-value a:hover {
  color: #e0135b;
}

/* Footer */
.footer {
  background: #17060d;
  color: rgba(255, 255, 255, .72);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* Mobile bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  background: rgba(23, 6, 13, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
}

.mobile-bar a:first-child {
  background: linear-gradient(135deg, #8e0e3a, #e0135b);
  color: #fff;
}

.mobile-bar a:last-child {
  background: var(--green);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* Responsive */
@media (max-width: 1050px) {
  .grid-4,
  .categories-grid,
  .chips-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-6,
  .why-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 640px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 86px;
  }

  .section {
    padding: 64px 0;
  }

  .grid-4,
  .grid-3,
  .grid-6,
  .categories-grid,
  .why-grid,
  .gallery-grid,
  .chips-grid,
  .steps-grid,
  .contact-grid,
  .combo-grid {
    grid-template-columns: 1fr;
  }

  .mobile-bar {
    display: grid;
  }

  .nav-right {
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .final-buttons .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation: none !important;
    transition: none !important;
  }
}

.btn-whatsapp,
.mobile-bar a:last-child {
  background: linear-gradient(135deg, #f5ecd7, #e8d5ae);
  color: #7a0c33;
  box-shadow: 0 14px 34px rgba(122, 12, 51, .18);
}

.btn-whatsapp:hover,
.mobile-bar a:last-child:hover {
  box-shadow: 0 18px 40px rgba(122, 12, 51, .28);
}

.hero-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}

.photo-card {
  margin: 0;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-photo {
  position: relative;
  margin-top: 34px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.wide-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.wide-photo-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(23, 6, 13, .6);
  color: #fff;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

@media (max-width: 640px) {
  .hero-photo {
    height: 200px;
  }

  .wide-photo img {
    height: 260px;
  }
}