/* =========================================================
   Mansarovar Residency — landing page
   Palette grounded in the building itself:
   terracotta-brick accent + cream facade + blue-hour indigo
   Type: Fraunces (display serif) + Manrope (body)
   ========================================================= */

:root {
  /* Brand */
  --terracotta:      #A85A38;
  --terracotta-deep: #8C4527;
  --terracotta-soft: #C9805C;
  --clay-tint:       #F3E7DF;

  /* Neutrals */
  --cream:      #FBF7F0;
  --cream-2:    #F4ECE0;
  --ink:        #201A16;
  --ink-soft:   #4B403A;
  --line:       #E6DCCF;
  --white:      #ffffff;

  /* Blue hour (dark sections) */
  --indigo:      #1B2436;
  --indigo-2:    #232F46;
  --indigo-line: #33405b;

  /* Accents */
  --gold:   #C79A54;
  --sage:   #7C8A63;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing / shape */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --container: 1200px;
  --shadow-sm: 0 2px 10px rgba(32,26,22,.06);
  --shadow-md: 0 12px 34px rgba(32,26,22,.12);
  --shadow-lg: 0 30px 70px rgba(32,26,22,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.1; font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 5vw, 40px); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: .82em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; min-height: 48px; line-height: 1.1;
  transition: transform .18s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 22px rgba(168,90,56,.32); }
.btn--primary:hover { background: var(--terracotta-deep); box-shadow: 0 12px 28px rgba(168,90,56,.4); }
.btn--outline { background: transparent; color: var(--terracotta-deep); border-color: var(--terracotta); }
.btn--outline:hover { background: var(--clay-tint); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--lg { padding: 1em 1.8em; font-size: 1.02rem; min-height: 54px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: #efe7dc; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 8px; }
.topbar__note { margin: 0; display: flex; align-items: center; gap: 8px; letter-spacing: .01em; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,84,.25); flex: none; }
.topbar__phone { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: #fff; white-space: nowrap; }
.topbar__phone:hover { color: var(--terracotta-soft); }
@media (max-width: 620px){ .topbar__note { font-size: .72rem; } .topbar__note br { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,240,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: box-shadow .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(251,247,240,.94); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { color: var(--terracotta); display: grid; place-items: center; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; }
.brand__accent { color: var(--terracotta); }
.brand__by { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav > a:not(.btn) { padding: 10px 14px; font-weight: 600; font-size: .95rem; border-radius: 8px; color: var(--ink-soft); transition: color .18s var(--ease), background .18s var(--ease); }
.nav > a:not(.btn):hover { color: var(--terracotta-deep); background: var(--clay-tint); }
.nav__cta { margin-left: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  /* IMPORTANT: backdrop-filter on the header makes it the containing block for
     fixed descendants, which clipped the drawer to the header's height and let
     its links spill over the hero. Drop the blur on mobile so the drawer is
     fixed to the viewport (full height, fully opaque). */
  .site-header,
  .site-header.is-scrolled {
    backdrop-filter: none; -webkit-backdrop-filter: none;
    background: var(--cream);
  }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    height: 100vh; height: 100dvh; overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--cream); padding: 90px 22px 28px; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .3s var(--ease); z-index: 95;
  }
  .nav.is-open { transform: translateX(0); }
  .nav > a:not(.btn){ font-size: 1.05rem; padding: 14px; }
  .nav__cta { margin-left: 0; margin-top: 10px; }

  /* Dim scrim behind the drawer; tap to close */
  .nav-scrim {
    position: fixed; inset: 0; background: rgba(20,16,12,.5);
    opacity: 0; visibility: hidden; z-index: 88;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
  }
  .nav-scrim.is-open { opacity: 1; visibility: visible; }
}

/* ---------- Hero: elevation banner + write-up below (no text over the building) ---------- */
.hero { background: var(--cream); }
.hero__banner { position: relative; margin: 0; }
.hero__img {
  width: 100%; height: clamp(340px, 52vw, 640px);
  object-fit: cover; object-position: center 32%; display: block;
}
.hero__pin {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,16,12,.60); color: #fff; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 9px 16px; border-radius: 999px; font-size: .84rem; font-weight: 600;
}
.hero__pin svg { color: var(--gold); }

.hero__writeup { padding-block: clamp(34px, 5vw, 60px); }
.hero__intro { max-width: 940px; }
.hero__eyebrow {
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  font-size: .78rem; color: var(--terracotta); margin: 0 0 16px;
}
.hero__title { font-size: clamp(2.3rem, 5.6vw, 4.4rem); font-weight: 600; color: var(--ink); }
.hero__title em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.hero__sub { max-width: 58ch; margin-top: 18px; font-size: clamp(1.02rem, 2.1vw, 1.2rem); color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin: 42px 0 0; padding: 26px 4px 0; border-top: 1px solid var(--line);
}
.stat { padding: 4px 24px 4px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 4px; font-weight: 600; }
.stat dd { margin: 0; font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.55rem); font-weight: 600; color: var(--ink); }
.stat__note { color: var(--terracotta); }
@media (max-width: 620px){
  .hero__img { height: clamp(240px, 60vw, 420px); }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .stat:nth-child(2){ border-right: 0; }
}

/* ---------- USP strip ---------- */
.usps { background: var(--white); border-bottom: 1px solid var(--line); }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding-block: 22px; }
.usp { display: flex; align-items: center; gap: 14px; padding: 10px 18px; }
.usp + .usp { border-left: 1px solid var(--line); }
.usp svg { width: 30px; height: 30px; color: var(--terracotta); flex: none; }
.usp strong { display: block; font-size: .98rem; }
.usp span { font-size: .82rem; color: var(--ink-soft); }
@media (max-width: 860px){
  .usps__grid { grid-template-columns: 1fr 1fr; }
  .usp:nth-child(odd){ border-left: 0; }
  .usp:nth-child(n+3){ border-top: 1px solid var(--line); }
}
@media (max-width: 480px){ .usps__grid { grid-template-columns: 1fr; } .usp { border-left: 0 !important; } .usp:nth-child(n+2){ border-top: 1px solid var(--line); } }

/* ---------- Section basics ---------- */
.section { padding-block: clamp(56px, 9vw, 110px); }
.eyebrow { font-weight: 700; letter-spacing: .2em; text-transform: uppercase; font-size: .76rem; color: var(--terracotta); margin: 0 0 12px; }
.eyebrow--light { color: var(--gold); }
.section__title { font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 600; }
.section__head { max-width: 720px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section__lead { font-size: 1.1rem; color: var(--ink-soft); margin-top: 14px; }
.section__lead--light { color: rgba(255,255,255,.8); }

/* ---------- Overview ---------- */
.overview__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.overview__media { position: relative; }
.overview__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 1/1; object-fit: cover; }
.overview__badge {
  position: absolute; right: -14px; bottom: -18px; background: var(--terracotta); color: #fff;
  border-radius: var(--radius); padding: 16px 22px; display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.overview__badge-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; line-height: 1; }
.overview__badge-label { font-size: .82rem; line-height: 1.2; font-weight: 600; }
.overview__copy .section__title { margin-bottom: 18px; }
.ticklist { list-style: none; padding: 0; margin: 20px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.ticklist li { position: relative; padding-left: 30px; font-weight: 500; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--clay-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A85A38'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}
@media (max-width: 860px){
  .overview__grid { grid-template-columns: 1fr; }
  .overview__media { max-width: 520px; margin-inline: auto; }
  .ticklist { grid-template-columns: 1fr; }
}

/* ---------- Residences ---------- */
.residences { background: var(--cream-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--terracotta-soft); }
.card--featured { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.card--featured::after { content:""; position:absolute; inset:0; border-radius: var(--radius-lg); border: 2px solid var(--terracotta); pointer-events:none; z-index: 1; }
.card__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--terracotta); color: #fff; font-size: .74rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; white-space: nowrap;
  padding: 7px 18px; border-radius: 999px; box-shadow: var(--shadow-md);
}
.card__name { font-size: 1.7rem; }
.card__area { color: var(--ink-soft); font-size: .92rem; font-weight: 600; margin: 4px 0 0; }
.card__price { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--terracotta-deep); margin: 18px 0 4px; }
.card__from { font-family: var(--font-body); font-size: .8rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .08em; display: block; }
.card__star { color: var(--gold); font-size: 1.2rem; vertical-align: super; }
.card__features { list-style: none; padding: 18px 0 24px; margin: 12px 0 0; border-top: 1px solid var(--line); display: grid; gap: 12px; flex: 1; }
.card__features li { position: relative; padding-left: 26px; font-size: .96rem; }
.card__features li::before { content:""; position:absolute; left:0; top:7px; width:14px; height:14px; border-radius:50%; background: var(--clay-tint); box-shadow: inset 0 0 0 4px var(--terracotta); }
.card__cta { margin-top: auto; width: 100%; }
.fineprint { font-size: .82rem; color: var(--ink-soft); margin-top: 26px; text-align: center; max-width: 780px; margin-inline: auto; }
@media (max-width: 860px){
  .cards { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .card--featured { margin-top: 22px; }
}

/* ---------- Amenities (dark) ---------- */
.amenities { background: var(--indigo); color: #fff; }
.amenity-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.amenity-feature__media { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.amenity-feature__media img { aspect-ratio: 16/9; object-fit: cover; width: 100%; transition: transform .5s var(--ease); }
.amenity-feature__media:hover img { transform: scale(1.05); }
.amenity-feature__media figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 26px 22px 16px;
  background: linear-gradient(transparent, rgba(10,14,24,.85)); font-weight: 700; letter-spacing: .02em;
}
.amenity-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: 26px 14px; background: var(--indigo-2); border: 1px solid var(--indigo-line); border-radius: var(--radius);
  font-weight: 600; font-size: .96rem; transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.amenity:hover { transform: translateY(-4px); border-color: var(--gold); background: #26334c; }
.amenity svg { width: 34px; height: 34px; color: var(--gold); }
@media (max-width: 860px){ .amenity-feature { grid-template-columns: 1fr; } .amenity-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Gallery ---------- */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery__item { padding: 0; border: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); box-shadow: var(--shadow-sm); position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: "⤢"; position: absolute; right: 12px; bottom: 10px; color: #fff; font-size: 1.1rem; opacity: 0; transform: translateY(6px); transition: .25s var(--ease); text-shadow: 0 2px 6px rgba(0,0,0,.5); }
.gallery__item:hover::after { opacity: 1; transform: translateY(0); }
.gallery__item--tall { grid-row: span 2; grid-column: span 2; }
@media (max-width: 860px){
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--tall { grid-column: span 2; }
}

/* ---------- Location ---------- */
.location { background: var(--cream-2); }
.location__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.location__address { font-style: normal; font-size: 1.14rem; font-weight: 600; line-height: 1.6; margin: 6px 0 22px; }
.connectivity { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.connectivity li { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.connectivity__time { display: inline-grid; place-items: center; min-width: 58px; padding: 6px 10px; background: var(--terracotta); color: #fff; border-radius: 999px; font-size: .82rem; font-weight: 700; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.location__map iframe { display: block; width: 100%; height: 420px; border: 0; }
@media (max-width: 860px){ .location__grid { grid-template-columns: 1fr; } .location__map iframe { height: 320px; } }

/* ---------- Enquiry (dark) ---------- */
.enquire { background: var(--ink); color: #fff; }
.enquire__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.enquire__text { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 44ch; }
.enquire__contacts { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.enquire__contacts li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.enquire__contacts svg { color: var(--gold); flex: none; }
.enquire__contacts a:hover { color: var(--terracotta-soft); }

.enquire__form { background: var(--cream); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); box-shadow: var(--shadow-lg); }
.form__intro { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 0 0 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field__opt { color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .18s var(--ease), box-shadow .18s var(--ease); min-height: 48px;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(168,90,56,.16); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.14); }
.field__error { display: block; color: #c0392b; font-size: .82rem; font-weight: 600; margin-top: 5px; min-height: 1em; }
.form__note { font-weight: 600; margin: 12px 0 0; min-height: 1.2em; }
.form__note.is-ok { color: #2c7a4b; }
.form__consent { font-size: .78rem; color: var(--ink-soft); margin: 14px 0 0; }
@media (max-width: 860px){ .enquire__grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: #17120f; color: #d9cfc4; padding-top: clamp(48px, 6vw, 76px); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand--footer .brand__name { color: #fff; font-size: 1.15rem; }
.brand--footer .brand__mark { color: var(--terracotta-soft); }
.brand--footer .brand__by { color: #a89a8c; }
.site-footer__desc { margin-top: 16px; color: #b3a698; max-width: 34ch; }
.site-footer h3 { font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #a89a8c; margin: 0 0 16px; font-weight: 700; }
.site-footer__links, .site-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.site-footer__links a, .site-footer__contact a { color: #d9cfc4; width: fit-content; transition: color .18s var(--ease); }
.site-footer__links a:hover, .site-footer__contact a:hover { color: var(--terracotta-soft); }
.site-footer__contact address { font-style: normal; color: #b3a698; margin-top: 4px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-block: 22px; font-size: .84rem; color: #a89a8c; }
.site-footer__rera strong { color: #d9cfc4; }
.disclaimer { font-size: .74rem; color: #857a6e; padding-bottom: 30px; margin: 0; line-height: 1.6; }
@media (max-width: 780px){ .site-footer__grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Floating action buttons ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: flex; flex-direction: column; gap: 12px; }
.fab__btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform .2s var(--ease); }
.fab__btn:hover { transform: scale(1.08); }
.fab__btn--wa { background: #25D366; }
.fab__btn--call { background: var(--terracotta); }
@media (max-width: 620px){ .fab__btn { width: 52px; height: 52px; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(12,10,8,.92); display: grid; place-items: center; padding: 20px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.28); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; } }
