/* ============================================================
   AVANI LUX BEAUTY — Design System
   ============================================================ */

/* Accessibility utility */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --cream:        #FAF6F1;
  --cream-dark:   #F2EBE1;
  --cream-mid:    #EDE4D9;
  --gold:         #C9A96E;
  --gold-light:   #DFC18B;
  --gold-subtle:  rgba(201, 169, 110, 0.18);
  --charcoal:     #2C2822;
  --charcoal-mid: #4A4540;
  --muted:        #8A8178;
  --white:        #FFFCF8;

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --ease-soft:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-elegant: cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm:  4px;
  --radius-md:  12px;
  --radius-lg:  24px;

  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

p { font-size: 0.95rem; line-height: 1.75; color: var(--charcoal-mid); }

/* ── Gold line divider ── */
.gold-line {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}
.gold-line--left { margin-left: 0; }

/* ── Layout ── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.container--narrow { max-width: 860px; margin: 0 auto; }

section { padding: 100px 0; }
section.pt-sm { padding-top: 60px; }
section.pb-sm { padding-bottom: 60px; }

.text-center { text-align: center; }
.text-muted   { color: var(--muted); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-elegant);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn--primary:hover {
  background: var(--charcoal-mid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(44, 40, 34, 0.18);
}

.btn--gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--ghost:hover {
  background: var(--charcoal);
  color: var(--cream);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease-soft), box-shadow 0.4s var(--ease-soft);
}
.nav.scrolled {
  background: rgba(250, 246, 241, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.2);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav__logo span { color: var(--gold); }
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  transition: color 0.2s ease;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-elegant);
}
.nav__links a:hover { color: var(--charcoal); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: 10px 22px;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em !important;
  font-weight: 500 !important;
  transition: background 0.3s ease, transform 0.3s ease !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  transform: none;
}
.nav__cta::after { display: none !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0; right: -100%;
  width: min(380px, 100vw);
  height: 100dvh;
  background: var(--cream);
  z-index: 999;
  padding: 120px 48px 48px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: right 0.5s var(--ease-elegant);
  border-left: 1px solid var(--gold-subtle);
}
.nav__mobile.open { right: 0; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile .btn { align-self: flex-start; margin-top: 1rem; }
.nav__overlay {
  position: fixed; inset: 0;
  background: rgba(44,40,34,0.4);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav__overlay.open { opacity: 1; pointer-events: all; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 5% 80px 8%;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-elegant) 0.3s forwards;
}
.hero__title {
  margin: 1rem 0 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 0.9s var(--ease-elegant) 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--charcoal-mid);
  max-width: 400px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-elegant) 0.7s forwards;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-elegant) 0.9s forwards;
}
.hero__trust {
  margin-top: 3rem;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-elegant) 1.1s forwards;
}
.hero__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.hero__trust small {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s var(--ease-soft);
  filter: brightness(0.96) saturate(0.95);
}
.hero__image img.loaded { transform: scale(1); }
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
  z-index: 1;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Services highlight ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--cream-mid);
  border: 1.5px solid var(--cream-mid);
  margin-top: 4rem;
}
.service-card {
  background: var(--cream);
  padding: 40px 32px;
  position: relative;
  cursor: default;
  transition: transform 0.4s var(--ease-elegant), box-shadow 0.4s var(--ease-elegant);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-elegant);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(44,40,34,0.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.service-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.service-card__desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.service-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}
.service-card__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
}
.service-card__duration { color: var(--muted); letter-spacing: 0.05em; }

/* ── Benefits section ── */
.benefits {
  background: var(--charcoal);
  color: var(--cream);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}
.benefit__nr {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.benefit h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.benefit p { color: rgba(250,246,241,0.6); font-size: 0.875rem; }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--cream-dark);
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: box-shadow 0.3s ease;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(201,169,110,0.12); }
.review-card__quote {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 28px; left: 28px;
  opacity: 0.5;
}
.review-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  padding-top: 0.5rem;
  margin-bottom: 1.2rem;
}
.review-card__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.review-card__author { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── Gallery teaser ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-elegant), filter 0.4s ease;
  filter: brightness(0.97) saturate(0.9);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(44,40,34,0);
  transition: background 0.4s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item__overlay {
  background: rgba(44,40,34,0.18);
}
.gallery-item__overlay span {
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease 0.1s;
}
.gallery-item:hover .gallery-item__overlay span { opacity: 1; transform: translateY(0); }

/* ── Location section ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.location-info { }
.location-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.location-detail__icon {
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--gold);
}
.location-detail__text { font-size: 0.9rem; }
.location-detail__text strong { display: block; font-weight: 500; color: var(--charcoal); }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin-top: 0.5rem;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-mid);
  color: var(--charcoal-mid);
}
.schedule-row .day { font-weight: 400; }
.location-map {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.location-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.05);
}

/* ── CTA final ── */
.cta-final {
  background: var(--cream-dark);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: 'AVANI';
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(201,169,110,0.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  font-weight: 300;
  letter-spacing: 0.3em;
}
.cta-final h2 { margin-bottom: 1rem; }
.cta-final p { max-width: 480px; margin: 0 auto 2.5rem; }

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(250,246,241,0.7);
  padding: 60px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand .nav__logo { color: var(--cream); margin-bottom: 1rem; display: block; }
.footer__brand p { font-size: 0.85rem; max-width: 240px; }
.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(250,246,241,0.65);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(250,246,241,0.4);
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(250,246,241,0.6);
  transition: all 0.3s ease;
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--cream-dark);
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--gold-subtle);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { max-width: 500px; margin: 0 auto; font-size: 1rem; }

/* ── Services page ── */
.services-category { margin-bottom: 5rem; }
.services-category__title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.services-table th {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--gold-subtle);
  text-align: left;
}
.services-table th:last-child { text-align: right; }
.services-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-mid);
  font-size: 0.92rem;
  vertical-align: middle;
}
.services-table td:last-child { text-align: right; }
.services-table tr:last-child td { border-bottom: none; }
.services-table .service-name { font-family: var(--font-serif); font-size: 1.05rem; }
.services-table .service-desc { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.services-table .duration { color: var(--muted); font-size: 0.82rem; }
.services-table .price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold);
}

/* ── Gallery page ── */
.gallery-full {
  columns: 3;
  column-gap: 4px;
  margin-top: 3rem;
}
.gallery-full .gallery-item {
  break-inside: avoid;
  margin-bottom: 4px;
  aspect-ratio: auto;
  cursor: pointer;
}
.gallery-full .gallery-item img { width: 100%; height: auto; }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3/4;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-elegant);
}
.about-image:hover img { transform: scale(1.04); }
.about-content { }
.about-content h2 { margin: 1rem 0; }
.about-values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--cream-dark);
  border-left: 2px solid var(--gold);
}
.about-value__icon { font-size: 1.2rem; flex-shrink: 0; }
.about-value__text h5 { font-family: var(--font-sans); font-weight: 500; font-size: 0.88rem; margin-bottom: 2px; }
.about-value__text p { font-size: 0.8rem; margin: 0; }

/* ── Policies ── */
.policies-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
.policy-item {
  border-left: 1px solid var(--gold);
  padding-left: 2rem;
}
.policy-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.policy-item p { font-size: 0.9rem; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(44,40,34,0.95);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  color: var(--cream);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }

/* ── Sticky CTA pulse ── */
@keyframes gold-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(201, 169, 110, 0); }
}

/* ── Utility ── */
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero__image::before {
    background: linear-gradient(to bottom, rgba(250,246,241,0.85) 40%, rgba(250,246,241,0.5));
  }
  .hero__content {
    position: relative;
    z-index: 2;
    padding: 120px 6% 80px;
    min-height: 100svh;
  }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-image   { aspect-ratio: 16/9; order: -1; }
  .location-grid { grid-template-columns: 1fr; }
  .gallery-full  { columns: 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  section { padding: 70px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid  { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: auto; aspect-ratio: 1; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .gallery-full { columns: 1; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-final { padding: 80px 0; }
}
