/* ============================================================
   ADANI BANDRA RECLAMATION — one-page site
   Design tokens
   ============================================================ */

:root {
  --ivory: #F5F1E8;
  --charcoal: #151817;
  --stone: #D8D1C4;
  --champagne: #B79A5B;
  --white: #FFFFFF;

  --ink: var(--charcoal);
  --ink-soft: #4B4E4C;
  --line: rgba(21, 24, 23, 0.14);
  --line-on-dark: rgba(245, 241, 232, 0.16);

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Manrope', 'Inter', -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--champagne);
  display: inline-block;
  margin-bottom: 14px;
}

.section {
  padding: clamp(72px, 10vw, 140px) 0;
}
.section--dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.section--dark .eyebrow { color: var(--champagne); }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head--wide { max-width: 780px; }

h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 620px;
  margin-top: 18px;
}
.section--dark .lede { color: rgba(245,241,232,0.72); }

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}
.section--dark .rule { border-top-color: var(--line-on-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
  transition: background 0.25s ease, color 0.25s ease;
}
.btn--primary:hover { background: transparent; color: var(--charcoal); }
.section--dark .btn--primary {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}
.section--dark .btn--primary:hover { background: transparent; color: var(--ivory); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
  transition: background 0.25s ease, color 0.25s ease;
}
.btn--ghost:hover { background: var(--charcoal); color: var(--ivory); }
.section--dark .btn--ghost { color: var(--ivory); border-color: var(--line-on-dark); }
.section--dark .btn--ghost:hover { background: var(--ivory); color: var(--charcoal); }

.btn--accent {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--champagne);
}

.btn--sm { padding: 11px 20px; font-size: 13px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(245, 241, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--ivory);
  border: 1px solid rgba(245,241,232,0.5);
  padding: 8px 14px;
  transition: color 0.35s ease, border-color .35s ease;
}
.nav.is-scrolled .nav__logo {
  color: var(--charcoal);
  border-color: var(--line);
}
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ivory);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.35s ease, border-color 0.2s ease;
}
.nav.is-scrolled .nav__links a { color: var(--charcoal); }
.nav__links a:hover { border-bottom-color: currentColor; }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__cta .btn {
  padding: 11px 22px;
  font-size: 13px;
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--champagne);
}

.nav__burger {
  display: none;
  width: 26px; height: 20px;
  position: relative;
  background: none; border: none;
}
.nav__burger span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--ivory);
  transition: background .35s ease, transform .3s ease, opacity .3s ease;
}
.nav.is-scrolled .nav__burger span { background: var(--charcoal); }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 9px; }
.nav__burger span:nth-child(3) { top: 18px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  color: var(--ivory);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu li { border-top: 1px solid var(--line-on-dark); }
.mobile-menu li:last-child { border-bottom: 1px solid var(--line-on-dark); }
.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 28px;
}
.mobile-menu .btn { margin-top: 28px; }

/* ============================================================
   IMAGE PLACEHOLDERS
   ============================================================ */
.ph {
  background: var(--stone);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    135deg,
    rgba(21,24,23,0.05),
    rgba(21,24,23,0.05) 1px,
    transparent 1px,
    transparent 14px
  );
}
.ph span { position: relative; z-index: 1; padding: 0 20px; opacity: 0.65; }
.ph--dark { background: #2A2D2B; color: var(--stone); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--charcoal);
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 60px;
  color: var(--ivory);
}
.hero__eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 22px;
  line-height: 1.7;
}
.hero h1 {
  font-size: clamp(40px, 5.2vw, 68px);
  color: var(--white);
  max-width: 640px;
}
.hero__sub {
  margin-top: 26px;
  font-size: 17px;
  color: rgba(245,241,232,0.78);
  max-width: 460px;
}
.hero__sub-line {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(245,241,232,0.56);
  max-width: 460px;
  font-style: italic;
  font-family: var(--font-display);
}
.hero__cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__highlights {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px 32px;
  max-width: 520px;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 26px;
}
.hl__value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
}
.hl__label {
  font-size: 12px;
  color: rgba(245,241,232,0.55);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.hero__image { position: relative; }
.hero__image .ph { height: 100%; min-height: 420px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__image .ph { min-height: 320px; }
}

/* ============================================================
   INTRODUCTION (editorial highlights, not cards)
   ============================================================ */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.highlight {
  padding: 30px 26px 30px 0;
  border-right: 1px solid var(--line);
}
.highlight:last-child { border-right: none; }
.highlight__tag {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--champagne);
  font-weight: 700;
  margin-bottom: 14px;
}
.highlight h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.highlight p {
  font-size: 14.5px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlight { border-bottom: 1px solid var(--line); }
  .highlight:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .highlights { grid-template-columns: 1fr; }
  .highlight { border-right: none; padding-right: 0; }
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.intro__grid .lede { max-width: none; }
.intro__grid .lede + .lede { margin-top: 14px; }
@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   ARCHITECTURE (dark editorial band)
   ============================================================ */
.arch__gallery {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: clamp(360px, 46vw, 560px);
}
.arch__gallery .ph:nth-child(1) { grid-row: 1 / 3; }
@media (max-width: 800px) {
  .arch__gallery { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .arch__gallery .ph { min-height: 260px; }
  .arch__gallery .ph:nth-child(1) { grid-row: auto; }
}

/* ============================================================
   RESIDENCES (tabs)
   ============================================================ */
.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}
.tabs__btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 16px 30px 16px 0;
  margin-right: 34px;
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(21,24,23,0.4);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.tabs__btn.is-active {
  color: var(--charcoal);
  border-bottom-color: var(--champagne);
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 800px) {
  .tabs__panel.is-active { grid-template-columns: 1fr; gap: 28px; }
  .tabs__nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
.res__ph { min-height: 380px; }
.res__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 0;
  margin: 30px 0 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.res__meta div { }
.res__meta .k { font-size: 12px; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 6px; }
.res__meta .v { font-family: var(--font-display); font-size: 20px; }
.res__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FLOOR PLANS
   ============================================================ */
.plans__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.plan-card { }
.plan-card .ph { aspect-ratio: 4/3; min-height: 0; margin-bottom: 16px; cursor: pointer; }
.plan-card h4 { font-size: 16px; margin-bottom: 4px; }
.plan-card p { font-size: 13px; color: var(--ink-soft); }
@media (max-width: 800px) {
  .plans__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .plans__grid { grid-template-columns: 1fr; }
}
.plans__cta { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   AMENITIES (horizontal scroll)
   ============================================================ */
.amenity-scroll {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.amenity-scroll::-webkit-scrollbar { height: 5px; }
.amenity-scroll::-webkit-scrollbar-thumb { background: var(--line); }
.amenity-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.amenity-card .ph { height: 200px; margin-bottom: 16px; }
.amenity-card h4 { font-size: 17px; margin-bottom: 8px; }
.amenity-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ============================================================
   LIFESTYLE EXPERIENCE (dark)
   ============================================================ */
.day-cycle {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-on-dark);
}
.day-cycle__item {
  padding: 26px 20px 0 0;
  border-right: 1px solid var(--line-on-dark);
}
.day-cycle__item:last-child { border-right: none; }
.day-cycle__time {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--champagne);
  font-weight: 700;
  margin-bottom: 12px;
}
.day-cycle__item p { font-size: 14px; color: rgba(245,241,232,0.75); }
@media (max-width: 900px) {
  .day-cycle { grid-template-columns: 1fr 1fr; }
  .day-cycle__item { border-bottom: 1px solid var(--line-on-dark); padding-bottom: 20px; }
}
@media (max-width: 560px) {
  .day-cycle { grid-template-columns: 1fr; }
}

/* ============================================================
   LOCATION
   ============================================================ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.location__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.loc-cat__title {
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--champagne);
  margin-bottom: 10px;
}
.loc-cat p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 900px) {
  .location__grid { grid-template-columns: 1fr; gap: 36px; }
}

.loc-points {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}
.loc-point {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.loc-point span:last-child { color: var(--ink-soft); }

/* ============================================================
   SEA-FACING (cinematic, dark full bleed)
   ============================================================ */
.sea {
  position: relative;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 0;
}
.sea__ph { min-height: 62vh; }
.sea__text {
  padding: clamp(48px, 8vw, 80px) var(--gutter) clamp(60px, 9vw, 100px);
  max-width: 640px;
}

/* ============================================================
   GALLERY (masonry)
   ============================================================ */
.gallery__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.gtab {
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.gtab.is-active {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.masonry {
  columns: 3 220px;
  column-gap: 18px;
}
.masonry .ph {
  break-inside: avoid;
  margin-bottom: 18px;
  cursor: pointer;
}
.masonry .ph:nth-child(3n+1) { min-height: 260px; }
.masonry .ph:nth-child(3n+2) { min-height: 340px; }
.masonry .ph:nth-child(3n) { min-height: 200px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(21,24,23,0.94);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox__frame {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox__frame .ph { min-height: 60vh; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute;
  background: none;
  border: 1px solid var(--line-on-dark);
  color: var(--ivory);
  width: 44px; height: 44px;
  font-size: 18px;
}
.lightbox__close { top: -60px; right: 0; }
.lightbox__prev { left: -60px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: -60px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: absolute; bottom: -40px; left: 0;
  font-size: 13px; color: rgba(245,241,232,0.6);
}
@media (max-width: 800px) {
  .lightbox__prev, .lightbox__next { display: none; }
}

/* ============================================================
   DEVELOPER
   ============================================================ */
.developer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.developer__ph { aspect-ratio: 16/11; }
@media (max-width: 800px) {
  .developer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   WHY THIS ADDRESS
   ============================================================ */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 20px;
}
.reason__num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--champagne);
  margin-bottom: 12px;
}
.reason h3 { font-size: 19px; margin-bottom: 10px; }
.reason p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 800px) {
  .reasons { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reasons { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
}
.faq-item__icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
  transition: transform .25s ease;
}
.faq-item__icon::before { top: 10px; left: 3px; right: 3px; height: 1.5px; }
.faq-item__icon::after { left: 10px; top: 3px; bottom: 3px; width: 1.5px; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.is-open .faq-item__a { max-height: 240px; }
.faq-item__a p {
  padding-bottom: 24px;
  font-size: 14.5px;
  color: var(--ink-soft);
  max-width: 620px;
}

/* ============================================================
   FINAL CTA / FORM
   ============================================================ */
.final-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.final-cta__text h2 { color: var(--white); }
.final-cta__contact {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .final-cta { grid-template-columns: 1fr; gap: 40px; }
}

.form {
  background: rgba(245,241,232,0.04);
  border: 1px solid var(--line-on-dark);
  padding: 36px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245,241,232,0.6);
  margin-bottom: 8px;
}
.form-row input, .form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .2s ease;
}
.form-row input::placeholder { color: rgba(245,241,232,0.35); }
.form-row input:focus, .form-row select:focus { border-bottom-color: var(--champagne); }
.form-row select { color-scheme: dark; }
.form-row.has-error input, .form-row.has-error select { border-bottom-color: #C97B63; }
.form-row__err {
  display: none;
  font-size: 12px;
  color: #D99B87;
  margin-top: 6px;
}
.form-row.has-error .form-row__err { display: block; }

/* honeypot - hidden from real users, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form__submit { width: 100%; justify-content: center; margin-top: 6px; }
.form__note {
  font-size: 12px;
  color: rgba(245,241,232,0.5);
  margin-top: 16px;
}
.form__status {
  margin-top: 16px;
  font-size: 13.5px;
  display: none;
}
.form__status.is-visible { display: block; }
.form__status.is-error { color: #D99B87; }
.form__status.is-loading { color: rgba(245,241,232,0.6); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(245,241,232,0.5);
  padding: 40px 0;
  font-size: 13px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 28px;
}
.footer a { text-decoration: underline; text-underline-offset: 3px; }
.footer__rera {
  max-width: 720px;
  font-size: 12px;
  line-height: 1.6;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr 1.4fr;
  background: var(--charcoal);
  border-top: 1px solid var(--line-on-dark);
}
.sticky-cta a, .sticky-cta button {
  background: none;
  border: none;
  border-right: 1px solid var(--line-on-dark);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 600;
  padding: 16px 8px;
  text-align: center;
}
.sticky-cta button:last-child { border-right: none; background: var(--champagne); color: var(--charcoal); }
@media (max-width: 760px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: 56px; }
}

/* ============================================================
   QUICK-CAPTURE MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(21, 24, 23, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--charcoal);
  border: 1px solid var(--line-on-dark);
  padding: 40px 32px 32px;
  color: var(--ivory);
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  color: rgba(245,241,232,0.6);
  font-size: 22px;
  line-height: 1;
  transition: color 0.2s ease;
}
.modal__close:hover { color: var(--ivory); }

.modal__title {
  font-size: 26px;
  color: var(--white);
  max-width: 300px;
}
.modal__sub {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(245,241,232,0.65);
  max-width: 320px;
}

.modal__form { margin-top: 28px; }

.form-row--modal {
  margin-bottom: 14px;
}
.form-row--modal input {
  border: 1px solid var(--line-on-dark);
  background: rgba(245,241,232,0.03);
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-on-dark);
}
.form-row--modal input:focus {
  border-color: var(--champagne);
}
.form-row--modal.has-error input {
  border-color: #C97B63;
}

.modal__submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 16px 30px;
}

.modal__status {
  margin-top: 14px;
  font-size: 13px;
  display: none;
}
.modal__status.is-visible { display: block; }
.modal__status.is-error { color: #D99B87; }
.modal__status.is-loading { color: rgba(245,241,232,0.6); }

.modal__secure {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(245,241,232,0.55);
}
.modal__consent {
  margin-top: 10px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(245,241,232,0.45);
  text-align: center;
}
.modal__consent a {
  color: rgba(245,241,232,0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Buttons used outside their default section context (e.g. dark buttons
   placed on light backgrounds like res__meta / sticky bar) */
button.v.js-open-modal {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--champagne);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

.sticky-cta button.js-open-modal {
  width: 100%;
  background: var(--champagne);
  color: var(--charcoal);
}

/* ============================================================
   RESPONSIVE NAV SWAP
   ============================================================ */
@media (max-width: 900px) {
  .nav__links, .nav__cta .btn--ghost-label { display: none; }
  .nav__burger { display: block; }
}
