/* ═══════════════════════════════════════════════════════════════
   NESTFINDER — Ultra-Luxury Global Stylesheet
   Palette: Obsidian · Champagne Gold · Platinum · Ivory
   Fonts: Italiana (display) + Raleway (body)
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Raleway:wght@200;300;400;500;600&family=IM+Fell+English:ital@0;1&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Core palette */
  --obsidian:    #080808;
  --obsidian-2:  #111111;
  --obsidian-3:  #1A1A1A;
  --obsidian-4:  #242424;
  --champagne:   #C8993A;
  --champagne-lt:#DEB96A;
  --champagne-dk:#A07828;
  --platinum:    #C4BCAF;
  --ivory:       #F5F0E8;
  --ivory-dk:    #EDE7DC;
  --cream:       #FAF8F4;
  --white:       #FFFFFF;
  --ink:         #2A2318;
  --muted:       #8A7E70;
  --border-dark: rgba(255,255,255,.08);
  --border-light: rgba(40,30,20,.12);
  --border-gold: rgba(200,153,58,.3);

  /* Typography */
  --ff-display: 'Italiana', 'Times New Roman', serif;
  --ff-fell:    'IM Fell English', Georgia, serif;
  --ff-body:    'Raleway', system-ui, sans-serif;

  /* Radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-sm:   0 2px 16px rgba(0,0,0,.15);
  --shadow-md:   0 8px 40px rgba(0,0,0,.22);
  --shadow-lg:   0 20px 80px rgba(0,0,0,.32);
  --shadow-gold: 0 8px 40px rgba(200,153,58,.2);
  --shadow-card: 0 4px 30px rgba(0,0,0,.12);

  /* Layout */
  --max-w: 1380px;
  --pad-v: 120px;
  --pad-v-sm: 72px;
  --pad-h: 48px;

  --ease: cubic-bezier(.4,0,.2,1);
  --transition: all .32s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
@media (max-width: 768px) { :root { --pad-h: 24px; } }

/* ── TYPOGRAPHY SCALE ── */
.display {
  font-family: var(--ff-display);
  font-size: clamp(52px, 8vw, 110px);
  line-height: .96;
  letter-spacing: -.01em;
  font-weight: 400;
}
.h1 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: .01em;
  font-weight: 400;
}
.h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 400;
}
.h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.15;
  font-weight: 400;
}
.h4 {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
}
.overline {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
}
.body-lg { font-size: 17px; font-weight: 300; line-height: 1.85; color: var(--muted); }
.body-md { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--muted); }
.body-sm { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--muted); }
.caption { font-size: 11px; font-weight: 400; letter-spacing: .06em; color: var(--muted); }

/* ── ORNAMENTAL DIVIDERS ── */
.rule-gold {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
}
.rule-gold::before,
.rule-gold::after {
  content: '';
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}
.rule-gold .diamond {
  width: 6px; height: 6px;
  background: var(--champagne);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hairline { width: 40px; height: 1px; background: var(--champagne); margin: 16px 0; }
.hairline-center { margin: 16px auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap; cursor: pointer;
  border: none; background: none;
}
.btn-champagne {
  background: var(--champagne);
  color: var(--obsidian);
  padding: 16px 36px;
  border-radius: var(--r-xs);
}
.btn-champagne:hover {
  background: var(--champagne-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-dark {
  background: var(--obsidian);
  color: var(--ivory);
  padding: 16px 36px;
  border-radius: var(--r-xs);
  border: 1px solid var(--obsidian-4);
}
.btn-dark:hover {
  background: var(--obsidian-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 15px 36px;
  border-radius: var(--r-xs);
}
.btn-outline-light:hover { border-color: var(--champagne); color: var(--champagne); }
.btn-outline-dark {
  border: 1px solid var(--border-light);
  color: var(--ink);
  padding: 15px 36px;
  border-radius: var(--r-xs);
}
.btn-outline-dark:hover { border-color: var(--champagne); color: var(--champagne); }
.btn-outline-gold {
  border: 1px solid var(--border-gold);
  color: var(--champagne);
  padding: 15px 36px;
  border-radius: var(--r-xs);
}
.btn-outline-gold:hover { background: var(--champagne); color: var(--obsidian); }
.btn-ghost-gold {
  color: var(--champagne);
  font-size: 10px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 0;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.btn-ghost-gold:hover { border-color: var(--champagne); }
.btn-sm { padding: 11px 24px; font-size: 10px; }
.btn-lg { padding: 20px 48px; font-size: 12px; letter-spacing: .2em; }

/* ── BADGE CHIPS ── */
.chip {
  display: inline-block;
  padding: 4px 14px;
  font-size: 9px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: var(--r-xs);
}
.chip-gold  { background: var(--champagne); color: var(--obsidian); }
.chip-dark  { background: var(--obsidian); color: var(--champagne); border: 1px solid var(--champagne); }
.chip-glass { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(6px); }
.chip-ivory { background: var(--ivory); color: var(--ink); border: 1px solid var(--border-light); }
.chip-green { background: #1a3020; color: #6fcf97; border: 1px solid #2a4030; }

/* ── SITE HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 76px;
  transition: background .4s var(--ease), box-shadow .4s;
}
.site-header.transparent { background: transparent; }
.site-header.solid {
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  display: flex; align-items: center;
  height: 76px; gap: 0;
}
.nav-logo {
  /* font-family: var(--ff-display);
  font-size: 28px; font-weight: 400;
  color: var(--white);
  letter-spacing: .03em;
  flex-shrink: 0; margin-right: 56px;
  transition: opacity .2s; */
 
}
.nav-logo img{
   height: 30%;
   width: 30%;
}


.nav-logo em { color: var(--champagne); font-style: normal; }
.nav-logo:hover { opacity: .85; }
.nav-links {
  display: flex; gap: 0; flex: 1;
}
.nav-links a {
  font-size: 10px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding: 8px 18px;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 18px; right: 18px;
  height: 1px; background: var(--champagne);
  transform: scaleX(0);
  transition: transform .28s var(--ease);
  transform-origin: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 14px; align-items: center; margin-left: auto; }
.nav-cta-sm {
  font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.nav-cta-sm:hover { color: var(--white); }
.nav-cta {
  background: var(--champagne);
  color: var(--obsidian);
  padding: 10px 22px;
  border-radius: var(--r-xs);
  font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--champagne-lt); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  padding: 8px; margin-left: auto; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white); border-radius: 1px;
  transition: var(--transition);
}

/* Mobile drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 950;
  background: var(--obsidian);
  padding: 0 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; border-bottom: 1px solid var(--border-dark);
}
.mob-close { font-size: 22px; color: rgba(255,255,255,.4); cursor: pointer; transition: color .2s; }
.mob-close:hover { color: var(--white); }
.mobile-nav-links a {
  display: block; font-family: var(--ff-display);
  font-size: 40px; color: rgba(255,255,255,.6);
  padding: 18px 0; border-bottom: 1px solid var(--border-dark);
  transition: color .2s;
}
.mobile-nav-links a:hover { color: var(--champagne); }
.mob-actions { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }

/* ── PROPERTY CARD ── */
.prop-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.prop-img {
  position: relative; height: 230px; overflow: hidden;
}
.prop-img img { height: 100%; transition: transform .6s var(--ease); }
.prop-card:hover .prop-img img { transform: scale(1.07); }
.prop-chips {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.prop-fav {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(8,8,8,.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: 14px;
  transition: var(--transition);
}
.prop-fav:hover { background: var(--champagne); color: var(--obsidian); }
.prop-photo-pill {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(8,8,8,.6); backdrop-filter: blur(6px);
  color: rgba(255,255,255,.8); font-size: 10px; font-weight: 400;
  letter-spacing: .08em; padding: 4px 10px; border-radius: 20px;
}
.prop-body { padding: 22px; }
.prop-price {
  font-family: var(--ff-display);
  font-size: 26px; font-weight: 400; color: var(--champagne);
  line-height: 1;
}
.prop-price sub { font-family: var(--ff-body); font-size: 12px; font-weight: 300; color: var(--muted); vertical-align: baseline; }
.prop-title {
  font-size: 14px; font-weight: 400; color: var(--ink);
  margin: 8px 0 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.prop-location {
  font-size: 12px; font-weight: 300; color: var(--muted);
  letter-spacing: .02em;
  display: flex; align-items: center; gap: 5px;
}
.prop-verified {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 500; letter-spacing: .08em;
  color: #6fcf97; margin-top: 8px;
}
.prop-specs {
  display: flex; gap: 20px;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.spec { display: flex; flex-direction: column; }
.spec strong { font-family: var(--ff-display); font-size: 16px; font-weight: 400; color: var(--ink); }
.spec span { font-size: 10px; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }
.prop-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  border-top: 1px solid var(--border-light);
  background: var(--ivory);
}
.prop-agent { display: flex; align-items: center; gap: 9px; }
.prop-agent-img {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1.5px solid var(--border-gold);
}
.prop-agent-name { font-size: 12px; font-weight: 400; color: var(--ink); }
.prop-agent-role { font-size: 10px; font-weight: 300; color: var(--muted); letter-spacing: .04em; }
.prop-enquire {
  font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--champagne); border: 1px solid var(--border-gold);
  padding: 8px 16px; border-radius: var(--r-xs);
  transition: var(--transition);
}
.prop-enquire:hover { background: var(--champagne); color: var(--obsidian); }

/* ── PROJECT CARD ── */
.project-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--obsidian-2);
  transition: var(--transition);
  cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-card-img { position: relative; height: 300px; overflow: hidden; }
.project-card-img img { height: 100%; transition: transform .7s var(--ease); }
.project-card:hover .project-card-img img { transform: scale(1.08); }
.project-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.85) 0%, rgba(8,8,8,.2) 55%, transparent 100%);
}
.project-card-top {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.project-card-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px;
}
.project-developer {
  font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 4px;
}
.project-title {
  font-family: var(--ff-display);
  font-size: 26px; font-weight: 400; color: var(--white);
  line-height: 1.1; margin-bottom: 4px;
}
.project-loc {
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}
.project-price-tag {
  font-family: var(--ff-display);
  font-size: 18px; color: var(--champagne); font-weight: 400;
}
.project-body { padding: 20px 22px; background: var(--white); }
.project-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.project-stat { font-size: 11px; font-weight: 300; color: var(--muted); }
.project-stat strong { display: block; font-family: var(--ff-display); font-size: 16px; font-weight: 400; color: var(--ink); }
.project-card-foot {
  padding: 14px 22px;
  border-top: 1px solid var(--border-light);
  background: var(--ivory);
  display: flex; justify-content: space-between; align-items: center;
}
.rera-tag { font-size: 10px; font-weight: 300; color: var(--muted); letter-spacing: .04em; }
.rera-tag span { color: var(--champagne); font-weight: 400; }

/* ── SEARCH BOX ── */
.search-panel {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.search-tabs { display: flex; border-bottom: 1px solid var(--border-light); }
.s-tab {
  flex: 1; padding: 16px 8px;
  font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-align: center;
  border-bottom: 2px solid transparent;
  transition: var(--transition); cursor: pointer;
}
.s-tab.active { color: var(--champagne); border-color: var(--champagne); background: rgba(200,153,58,.04); }
.s-tab:hover { color: var(--champagne); }
.search-fields { display: flex; align-items: stretch; }
.s-field {
  flex: 1; border-right: 1px solid var(--border-light); padding: 14px 20px;
}
.s-field:last-of-type { border-right: none; }
.s-label {
  font-size: 9px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 5px;
}
.s-field input, .s-field select {
  width: 100%; border: none; outline: none;
  font-family: var(--ff-body); font-size: 14px; font-weight: 300;
  color: var(--ink); background: transparent;
}
.s-field select { cursor: pointer; }
.s-btn {
  flex-shrink: 0; background: var(--champagne); color: var(--obsidian);
  padding: 14px 36px; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  transition: var(--transition);
}
.s-btn:hover { background: var(--champagne-lt); }
.search-quick {
  padding: 10px 20px; border-top: 1px solid var(--border-light);
  font-size: 11px; font-weight: 300; color: var(--muted);
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.search-quick strong { font-weight: 400; color: var(--ink); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.q-link { font-size: 11px; color: var(--champagne); transition: opacity .2s; }
.q-link:hover { opacity: .7; }

/* ── FILTER CHIPS ── */
.f-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.f-chip {
  padding: 8px 20px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-xs);
  font-size: 10px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; background: transparent; color: var(--muted);
  transition: var(--transition);
}
.f-chip.active, .f-chip:hover {
  border-color: var(--champagne);
  background: var(--champagne);
  color: var(--obsidian);
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--obsidian);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-h);
}
.stat-item {
  padding: 40px 24px; text-align: center;
  border-right: 1px solid var(--border-dark);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px); font-weight: 400;
  color: var(--champagne); display: block; line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 8px;
}

/* ── CITY CARD ── */
.city-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-md); cursor: pointer;
}
.city-card img {
  width: 100%; height: 100%; transition: transform .6s var(--ease);
}
.city-card:hover img { transform: scale(1.08); }
.city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.8) 0%, rgba(8,8,8,.1) 65%);
  transition: background .3s;
}
.city-card:hover .city-card-overlay { background: linear-gradient(to top, rgba(8,8,8,.88) 0%, rgba(8,8,8,.2) 65%); }
.city-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px;
}
.city-card-name { font-family: var(--ff-display); font-size: 26px; font-weight: 400; color: var(--white); }
.city-card-count { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.55); margin-top: 3px; letter-spacing: .05em; }

/* ── WHY CARDS ── */
.why-card {
  padding: 40px 36px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  background: var(--white);
  border-top: 2px solid var(--champagne);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); }
.why-icon { font-size: 28px; margin-bottom: 20px; }
.why-card h3 { font-family: var(--ff-display); font-size: 24px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.why-card p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; }

/* ── TESTIMONIAL CARD ── */
.testi-card {
  padding: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-md);
}
.testi-opening {
  font-family: var(--ff-display);
  font-size: 72px; color: var(--champagne);
  line-height: .6; opacity: .5; margin-bottom: 20px;
}
.testi-text {
  font-family: var(--ff-fell);
  font-size: 16px; font-style: italic;
  color: rgba(255,255,255,.7); line-height: 1.85; margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 1.5px solid var(--champagne);
}
.testi-name { font-size: 13px; font-weight: 400; color: var(--white); }
.testi-sub { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.4); margin-top: 2px; letter-spacing: .03em; }
.testi-stars { color: var(--champagne); letter-spacing: 3px; font-size: 12px; margin-bottom: 20px; }

/* ── CONTACT / ENQUIRY MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,8,8,.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px;
  max-width: 500px; width: 100%;
  position: relative;
  animation: modalUp .32s var(--ease);
}
@keyframes modalUp {
  from { transform: translateY(28px) scale(.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.modal-close {
  position: absolute; top: 22px; right: 22px;
  font-size: 18px; color: var(--muted); cursor: pointer; transition: color .2s;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--ivory);
}
.modal-close:hover { color: var(--ink); }
.modal-box .overline { margin-bottom: 6px; }
.modal-box .h3 { color: var(--ink); margin-bottom: 6px; }
.modal-box .body-sm { margin-bottom: 28px; }
.form-grp { margin-bottom: 16px; }
.form-grp label {
  display: block; font-size: 9px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-grp input, .form-grp select, .form-grp textarea {
  width: 100%; border: 1px solid var(--border-light);
  border-radius: var(--r-sm); padding: 13px 16px;
  font-family: var(--ff-body); font-size: 14px; font-weight: 300;
  color: var(--ink); background: var(--ivory);
  outline: none; transition: border-color .2s;
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  border-color: var(--champagne); background: var(--white);
}
.form-grp textarea { resize: vertical; min-height: 86px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--obsidian);
  padding: 130px var(--pad-h) 90px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1600') center/cover;
  opacity: .06;
}
.page-hero .overline { margin-bottom: 14px; }
.page-hero .h1 { color: var(--white); }
.page-hero .body-lg { color: rgba(255,255,255,.5); max-width: 520px; margin: 18px auto 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 400; letter-spacing: .08em;
  color: rgba(255,255,255,.35);
  padding: 0 0 22px;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: var(--champagne); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }
.breadcrumb.dark-bc a { color: var(--muted); }
.breadcrumb.dark-bc { color: var(--muted); }
.breadcrumb.dark-bc a:hover { color: var(--champagne); }

/* ── NEWSLETTER ── */
.nl-form { display: flex; max-width: 480px; }
.nl-form input {
  flex: 1; border: 1px solid var(--border-light);
  border-right: none; border-radius: var(--r-xs) 0 0 var(--r-xs);
  padding: 14px 18px; font-family: var(--ff-body);
  font-size: 13px; font-weight: 300; color: var(--ink);
  background: var(--white); outline: none;
  transition: border-color .2s;
}
.nl-form input:focus { border-color: var(--champagne); }
.nl-form button {
  background: var(--champagne); color: var(--obsidian);
  padding: 14px 24px; border-radius: 0 var(--r-xs) var(--r-xs) 0;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  transition: var(--transition); white-space: nowrap;
}
.nl-form button:hover { background: var(--champagne-lt); }

/* ── FOOTER ── */
.site-footer {
  background: var(--obsidian);
  border-top: 1px solid var(--border-dark);
  padding: 90px var(--pad-h) 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px; max-width: var(--max-w); margin: 0 auto 72px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 30px; font-weight: 400; color: var(--white);
  display: block; margin-bottom: 18px; letter-spacing: .02em;
}
.footer-logo em { color: var(--champagne); font-style: normal; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.85; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 26px; }
.social-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.4);
  transition: var(--transition);
}
.social-icon:hover { border-color: var(--champagne); color: var(--champagne); background: rgba(200,153,58,.08); }
.footer-col-title {
  font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 22px;
}
.footer-col a {
  display: block; font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,.45); margin-bottom: 12px; transition: color .2s;
}
.footer-col a:hover { color: var(--champagne); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  max-width: var(--max-w); margin: 0 auto;
  font-size: 11px; font-weight: 300; color: rgba(255,255,255,.2);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer-bottom a:hover { color: var(--champagne); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ── SECTION LAYOUTS ── */
.sec { padding: var(--pad-v) var(--pad-h); }
.sec-sm { padding: var(--pad-v-sm) var(--pad-h); }
.sec-dark { background: var(--obsidian); }
.sec-obsidian2 { background: var(--obsidian-2); }
.sec-ivory { background: var(--ivory); }
.sec-cream { background: var(--cream); }
.sec-white { background: var(--white); }
.sec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.inner { max-width: var(--max-w); margin: 0 auto; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media(max-width:1100px) { .grid-4{grid-template-columns:repeat(2,1fr)} }
@media(max-width:900px)  { .grid-3{grid-template-columns:repeat(2,1fr)} }
@media(max-width:640px)  { .grid-4,.grid-3,.grid-2{grid-template-columns:1fr} }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:nth-child(even) { border-bottom: none; }
}
@media(max-width:768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  :root { --pad-v: 72px; --pad-v-sm: 48px; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .nl-form { flex-direction: column; }
  .nl-form input { border-right: 1px solid var(--border-light); border-radius: var(--r-xs); }
  .nl-form button { border-radius: var(--r-xs); margin-top: 8px; }
  .search-fields { flex-direction: column; }
  .s-field { border-right: none; border-bottom: 1px solid var(--border-light); }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
}

/* ── UTILITIES ── */
.tc { text-align: center; }
.tr { text-align: right; }
.tgold { color: var(--champagne); }
.twhite { color: var(--white); }
.tmuted { color: var(--muted); }
.tink   { color: var(--ink); }
.mt4{margin-top:4px} .mt8{margin-top:8px} .mt12{margin-top:12px}
.mt16{margin-top:16px} .mt20{margin-top:20px} .mt24{margin-top:24px}
.mt32{margin-top:32px} .mt40{margin-top:40px} .mt48{margin-top:48px}
.mb8{margin-bottom:8px} .mb12{margin-bottom:12px} .mb16{margin-bottom:16px}
.mb24{margin-bottom:24px} .mb32{margin-bottom:32px} .mb48{margin-bottom:48px}
