/* ================================================================== *
 * EVERSTONE — UI/UX modelled on linkaproduction.com
 * Geist thin · warm dark taupe · monochrome editorial · huge thin type
 * right-stacked nav · horizontal-scroll slider · thin rule lines.
 * ================================================================== */
:root {
  --bg: #2c2926;
  --bg2: #211e1c;
  --fg: #ffffff;
  --muted: rgba(255,255,255,0.52);
  --faint: rgba(255,255,255,0.30);
  --line: rgba(255,255,255,0.16);
  --gold: #c8a45c;
  --col: clamp(210px, 24vw, 360px);   /* right index column width */
  --sans: "Geist", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { background: var(--bg); color: var(--fg); font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--fg); color: var(--bg); }
h1, h2 { font-weight: 100; letter-spacing: -0.02em; line-height: 0.94; }

/* shared media + veil */
.media { position: absolute; inset: 0; overflow: hidden; }
.media img { transform: scale(1.02); }
.veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,18,16,0.35) 0%, rgba(20,18,16,0.05) 30%, rgba(20,18,16,0.35) 70%, rgba(20,18,16,0.75) 100%); }

[data-src] { opacity: 0; transition: opacity 1.1s var(--ease); }
[data-src].loaded { opacity: 1; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* thin vertical rule (index-column divider) */
.rule-v { position: absolute; top: 0; bottom: 0; right: var(--col); width: 1px; background: var(--line); z-index: 3; pointer-events: none; }

/* ============ HEADER ============ */
#head { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; display: flex; align-items: flex-start; justify-content: space-between; padding: 30px clamp(24px, 3.4vw, 52px); text-shadow: 0 1px 22px rgba(0,0,0,0.5); pointer-events: none; }
#head a, #head .lang { pointer-events: auto; }
/* top scrim keeps the thin nav legible over bright slider images */
#head::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 150px; background: linear-gradient(180deg, rgba(18,16,14,0.55) 0%, rgba(18,16,14,0) 100%); z-index: -1; pointer-events: none; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 130px; width: auto; display: block; }
.logo span { font-size: 24px; font-weight: 300; letter-spacing: 0.12em; color: #fff; }
.nav { display: flex; flex-direction: row; align-items: center; gap: clamp(20px,2.4vw,36px); text-align: right; }
.nav a { font-size: 16px; font-weight: 300; color: #fff; opacity: 0.92; transition: opacity 0.3s; }
.nav a:hover { opacity: 0.5; }
.nav .lang { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.55); }
.nav .lang b { color: #fff; font-weight: 400; }
@media (max-width: 780px) { #head { mix-blend-mode: normal; } .nav { flex-direction: row; gap: 16px; align-items: center; }
  .nav a { font-size: 13px; } .nav .lang { display: none; } .logo img { height: 80px; } }

/* ============ HERO ============ */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; }
.hero .media img { animation: slowpan 30s ease-in-out infinite alternate; }
.hero-carousel .hc-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease; }
.hero-carousel .hc-slide.is-active { opacity: 1; }
@keyframes slowpan { from { transform: scale(1.04); } to { transform: scale(1.14) translateY(-2%); } }
.hero-head { position: absolute; left: clamp(24px, 3.4vw, 52px); bottom: clamp(60px, 9vh, 120px); z-index: 4; }
.hero-head h1 { font-size: clamp(56px, 12vw, 172px); color: #fff; }
.hero-aside { position: absolute; right: 0; bottom: clamp(60px, 9vh, 120px); width: var(--col); padding: 0 clamp(24px, 3.4vw, 52px) 0 26px; z-index: 4; }
.cue { font-size: 15px; color: rgba(255,255,255,0.8); display: inline-flex; align-items: center; gap: 8px; }
.cue i { color: var(--gold); font-style: normal; }
.cue:hover { color: #fff; }
.hero-foot { position: absolute; left: clamp(24px, 3.4vw, 52px); top: 46vh; z-index: 4; font-size: 13px; letter-spacing: 0.02em; color: var(--muted); }
@media (max-width: 780px) { .rule-v { display: none; } .hero-aside { width: auto; left: clamp(24px,5vw,40px); right: auto; bottom: 34px; padding: 0; } .hero-foot { display: none; } }

/* ============ COLLECTIONS — horizontal slider ============ */
.slider { position: relative; height: 400vh; }               /* 6 panels */
.slider-vp { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.slider-track { display: flex; height: 100vh; width: 400vw; will-change: transform; }
.panel { position: relative; width: 100vw; height: 100vh; overflow: hidden; flex: none; }
.panel .media img { transform: scale(1.06); }
.panel-idx { position: absolute; left: clamp(24px, 3.4vw, 52px); top: clamp(96px, 13vh, 150px); z-index: 4; font-size: 13px; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); }
.panel h2 { position: absolute; left: clamp(24px, 3.4vw, 52px); bottom: clamp(60px, 9vh, 120px); z-index: 4; font-size: clamp(58px, 13vw, 190px); color: #fff; }
.panel-aside { position: absolute; right: 0; bottom: clamp(64px, 9.5vh, 128px); width: var(--col); padding: 0 clamp(24px, 3.4vw, 52px) 0 26px; z-index: 4; }
.panel-aside p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.82); margin-bottom: 16px; font-weight: 300; }
.panel-aside a { font-size: 13px; color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: opacity 0.3s; }
.panel-aside a:hover { opacity: 0.6; }
@media (max-width: 780px) {
  /* stack panels vertically on mobile (no horizontal pin) */
  .slider { height: auto; }
  .slider-vp { position: static; height: auto; overflow: visible; }
  .slider-track { display: block; width: 100%; height: auto; transform: none !important; }
  .panel { width: 100%; height: 60vh; min-height: 440px; }
  .panel-idx { top: clamp(80px,10vh,110px); }
  .panel-aside { width: auto; left: clamp(24px,5vw,40px); right: auto; bottom: 32px; padding: 0; max-width: 86%; }
  .panel h2 { bottom: 116px; font-size: clamp(42px, 12vw, 62px); }
}

/* ============ PRESENTATION ============ */
.present { padding: clamp(110px, 18vw, 240px) clamp(24px, 6vw, 120px); max-width: 1400px; margin: 0 auto; }
.present-ey { font-size: 13px; letter-spacing: 0.16em; color: var(--faint); margin-bottom: 40px; }
.present-lead { font-size: clamp(26px, 4vw, 58px); font-weight: 200; line-height: 1.28; letter-spacing: -0.01em; color: var(--muted); max-width: 1180px; }
.present-lead b { color: #fff; font-weight: 300; }
.present-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: clamp(60px, 8vw, 110px); border-top: 1px solid var(--line); padding-top: 40px; }
.present-meta div { display: flex; flex-direction: column; gap: 10px; font-size: 12px; letter-spacing: 0.12em; color: var(--muted); }
.present-meta span { font-size: clamp(22px, 2.6vw, 34px); font-weight: 200; color: #fff; letter-spacing: 0; }
@media (max-width: 720px) { .present-meta { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; } }

/* ============ EXPERTISE ============ */
.expertise { }
.exp-row { position: relative; height: 92vh; min-height: 560px; overflow: hidden; display: flex; align-items: flex-end; }
.exp-row .media img { transform: scale(1.04); transition: transform 1.4s var(--ease); }
.exp-row:hover .media img { transform: scale(1.1); }
.exp-row .veil { background: linear-gradient(90deg, rgba(20,18,16,0.82) 0%, rgba(20,18,16,0.35) 45%, rgba(20,18,16,0.1) 100%); }
.exp-row.alt .veil { background: linear-gradient(270deg, rgba(20,18,16,0.82) 0%, rgba(20,18,16,0.35) 45%, rgba(20,18,16,0.1) 100%); }
.exp-body { position: relative; z-index: 3; padding: 0 clamp(24px, 5vw, 90px) clamp(56px, 8vh, 100px); max-width: 640px; }
.exp-row.alt .exp-body { margin-left: auto; text-align: right; }
.exp-idx { font-size: 13px; letter-spacing: 0.16em; color: var(--gold); }
.exp-body h2 { font-size: clamp(52px, 9vw, 132px); color: #fff; margin: 10px 0 18px; }
.exp-body p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.8); font-weight: 300; max-width: 420px; }
.exp-row.alt .exp-body p { margin-left: auto; }
.exp-body a { display: inline-block; margin-top: 22px; font-size: 13px; color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 3px; }
@media (max-width: 780px) { .exp-row { height: 62vh; min-height: 440px; } .exp-body { padding: 0 clamp(24px,5vw,40px) 42px; } .exp-body h2 { font-size: clamp(40px, 11vw, 60px); margin: 8px 0 14px; } .exp-row.alt .exp-body { text-align: left; } .exp-row .veil, .exp-row.alt .veil { background: linear-gradient(180deg, rgba(20,18,16,0.3), rgba(20,18,16,0.85)); } }

/* ============ FOOTER ============ */
.foot { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: clamp(120px, 16vw, 200px) clamp(24px, 5vw, 70px) 30px; }
.foot .media img { transform: scale(1.08); }
.foot-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,27,24,0.72), rgba(20,18,16,0.92)); }
.foot-inner { position: relative; z-index: 3; display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; flex-wrap: wrap; flex: 1; }
.foot-ey { font-size: 13px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 20px; }
.foot-head h2 { font-size: clamp(52px, 10vw, 150px); color: #fff; }
.foot-cols { display: grid; grid-template-columns: repeat(3, minmax(150px, auto)); gap: 40px; }
.foot-cols h4 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; font-weight: 400; }
.foot-cols a, .foot-cols span { display: block; font-size: 15px; color: rgba(255,255,255,0.82); margin-bottom: 8px; transition: color 0.3s; }
.foot-cols a:hover { color: #fff; }
.social { display: flex !important; gap: 12px; align-items: center; }
.social a { border-bottom: none; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: rgba(255,255,255,.85); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.social a:hover { background: var(--gold); color: #181512; border-color: var(--gold); }
.social svg { width: 17px; height: 17px; display: block; }
.foot-bottom { position: relative; z-index: 3; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 28px; padding-top: 40px; margin-top: 40px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.foot-bottom .credit a { color: rgba(255,255,255,.7); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: color .3s var(--ease), border-color .3s var(--ease); }
.foot-bottom .credit a:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 780px) { .foot-inner { flex-direction: column; align-items: flex-start; } .foot-cols { grid-template-columns: 1fr 1fr; } }

/* ================================================================== *
 * INTERNAL PAGES (products · marble series · heritage · contact)
 * ================================================================== */
.ihero { position: relative; min-height: 74vh; display: flex; align-items: flex-end; overflow: hidden; }
.ihero .veil { background: linear-gradient(180deg, rgba(18,16,14,0.55) 0%, rgba(18,16,14,0.2) 40%, rgba(18,16,14,0.7) 100%); }
.ihero-in { position: relative; z-index: 3; padding: 0 clamp(24px,5vw,90px) clamp(48px,7vh,90px); max-width: 1000px; }
.crumb { font-size: 12px; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.crumb a { color: var(--gold); } .crumb span { margin: 0 8px; color: var(--faint); }
.ihero-in h1 { font-size: clamp(48px,9vw,128px); color: #fff; }
.ihero-in .lead { margin-top: 20px; font-size: clamp(15px,1.7vw,18px); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.82); max-width: 640px; }

.isection { padding: clamp(70px,10vw,150px) clamp(24px,6vw,120px); max-width: 1320px; margin: 0 auto; }
.isection.tight { max-width: 1000px; }
.ilead { font-size: clamp(22px,3vw,40px); font-weight: 200; line-height: 1.32; color: var(--muted); max-width: 1000px; }
.ilead b { color: #fff; font-weight: 300; }
.ihead { margin-bottom: clamp(34px,4vw,60px); }
.ihead h2 { font-size: clamp(30px,4.4vw,58px); color: #fff; }
.ihead .eyebrow, .isection .eyebrow { font-size: 13px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 18px; }

/* card grid (marble names / applications / categories) */
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(14px,1.6vw,24px); }
.grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(12px,1.4vw,20px); }
@media (max-width: 900px){ .grid3{grid-template-columns:repeat(2,1fr);} .grid4{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 560px){ .grid3,.grid4{grid-template-columns:1fr;} }

.mcard { border: 1px solid var(--line); border-radius: 2px; overflow: hidden; background: var(--bg2); transition: border-color .3s var(--ease); }
.mcard:hover { border-color: rgba(255,255,255,0.34); }
.mcard .ph { aspect-ratio: 4/3; position: relative; background-size: cover; background-position: center; }
.mcard .ph::after { content: attr(data-tag); position: absolute; top: 10px; left: 12px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.mcard .mb { padding: 16px 18px 20px; }
.mcard .mb h3 { font-size: 19px; font-weight: 300; color: #fff; letter-spacing: .01em; }
.mcard .mb span { display: block; font-size: 12.5px; color: var(--muted); margin-top: 6px; }

/* category cards (link cards) */
.ccard { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--line); }
.ccard .ph { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease); }
.ccard:hover .ph { transform: scale(1.06); }
.ccard::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,9,8,.9)); }
.ccard .cc { position: absolute; left: 0; bottom: 0; z-index: 2; padding: 24px; }
.ccard .cc span { font-size: 12px; letter-spacing: .2em; color: var(--gold); }
.ccard .cc h3 { font-size: clamp(22px,2.4vw,30px); font-weight: 300; color: #fff; margin-top: 8px; }

/* spec + list */
.specs { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; border-top: 1px solid var(--line); padding-top: 34px; margin-top: 40px; }
.specs div { font-size: 13px; color: var(--muted); }
.specs b { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; font-weight: 400; }
@media (max-width:640px){ .specs{grid-template-columns:1fr;gap:24px;} }
.tick { list-style: none; display: grid; gap: 14px; }
.tick li { position: relative; padding-left: 26px; font-size: 15px; color: rgba(255,255,255,.82); }
.tick li::before { content:""; position:absolute; left:0; top:12px; width:14px; height:1px; background:var(--gold); }

/* FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 26px 40px 26px 0; position: relative; font-size: clamp(17px,2vw,22px); font-weight: 300; color: #fff; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 24px; font-size: 24px; font-weight: 200; color: var(--gold); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .fa { padding: 0 40px 28px 0; font-size: 15px; line-height: 1.7; color: var(--muted); max-width: 780px; }

/* CTA band */
.icta { text-align: center; padding: clamp(80px,12vw,160px) clamp(24px,6vw,90px); border-top: 1px solid var(--line); }
.icta h2 { font-size: clamp(34px,6vw,84px); color: #fff; }
.icta p { margin: 20px auto 34px; color: var(--muted); max-width: 520px; font-size: 15px; line-height: 1.7; }
.ibtn { display:inline-block; font-size: 13px; letter-spacing: .2em; text-transform: uppercase; color:#fff; border-bottom:1px solid var(--gold); padding-bottom:5px; }

/* locations (across india) */
.locs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px 24px; margin-top: 30px; }
.locs a, .locs span { font-size: clamp(20px,2.4vw,32px); font-weight: 200; color: rgba(255,255,255,.5); transition: color .3s; letter-spacing: -.01em; }
.locs a:hover { color: #fff; }
@media (max-width:820px){ .locs{grid-template-columns:repeat(2,1fr);} }

/* extracted wordmark lockup (contact + footer) */
.foot-wordmark { width: clamp(240px, 32vw, 420px); height: auto; display: block; margin-bottom: 26px; }
.contact-wordmark { width: clamp(220px, 30vw, 380px); height: auto; display: block; margin-bottom: 34px; }

/* WhatsApp floating chat button (bottom-left) */
.wa-float { position: fixed; left: 22px; bottom: 22px; z-index: 300; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,.42); transition: transform .3s var(--ease), box-shadow .3s; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 34px rgba(0,0,0,.55); }
.wa-float svg { display: block; }
@media (max-width: 640px) { .wa-float { left: 16px; bottom: 16px; width: 52px; height: 52px; } }

/* scroll performance: keep the pan-animated media on their own GPU layer */
.hero .media img, .feature-media img, .craft-visual img, .foot .media img { will-change: transform; backface-visibility: hidden; }
.slider-vp { transform: translateZ(0); }

/* ---- photo gallery (fixed-aspect grid: proper lazy-load, clean) ---- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery a, .gallery .gitem { position: relative; overflow: hidden; border-radius: 2px; border: 1px solid var(--line); aspect-ratio: 4 / 3; background: var(--bg2); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s var(--ease), opacity 1s var(--ease); }
.gallery a:hover img, .gallery .gitem:hover img { transform: scale(1.05); }
@media (max-width: 900px){ .gallery { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px){ .gallery { grid-template-columns: 1fr; } }
/* Studio B header logo (text wordmark) */
.logo span { white-space: nowrap; }

/* ---- project directory list ---- */
.projlist { columns: 3 260px; column-gap: 44px; margin-top: 10px; }
.projlist p { break-inside: avoid; margin: 0 0 14px; padding-left: 18px; position: relative; font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.45; }
.projlist p::before { content: ""; position: absolute; left: 0; top: 10px; width: 9px; height: 1px; background: var(--gold); }
.projlist b { color: #fff; font-weight: 400; }
.projlist small { display: block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
@media (max-width: 640px){ .projlist { columns: 1; } }

/* ---- media features: portrait, clickable ---- */
.gallery.portrait { grid-template-columns: repeat(4, 1fr); }
.gallery.portrait a, .gallery.portrait .gitem { aspect-ratio: 600 / 848; cursor: pointer; }
.gallery.portrait a:hover { border-color: var(--gold); }
@media (max-width: 900px){ .gallery.portrait { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .gallery.portrait { grid-template-columns: repeat(2,1fr); } }

/* ---- SBA logo image (header + footer) ---- */
.logo-img { height: 130px; width: auto; display: block; }
.foot-logo-img { height: 260px; width: auto; display: block; margin-bottom: 24px; }
@media (max-width: 780px){ .logo-img { height: 80px; padding: 10px 13px; } .foot-logo-img { height: 190px; } }

/* ---- project filter + status list ---- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 clamp(30px,4vw,44px); }
.fbtn { font-family: inherit; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); background: none; border: 1px solid var(--line); border-radius: 100px; padding: 11px 22px; cursor: pointer; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.fbtn:hover { color: #fff; border-color: var(--muted); }
.fbtn.is-active { background: var(--gold); color: #181512; border-color: var(--gold); }
.plist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(30px,5vw,80px); border-top: 1px solid var(--line); }
.pli { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.pli[hidden] { display: none; }
.pli b { font-weight: 300; font-size: clamp(16px,1.7vw,20px); color: #fff; }
.pli .st { font-style: normal; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; padding: 4px 12px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); }
.pli .st.done { color: #a9c3a3; border-color: rgba(169,195,163,.4); }
.pli .st.live { color: var(--gold); border-color: rgba(200,164,100,.55); }
.pli .st.soon { color: #cbb083; border-color: rgba(203,176,131,.45); }
@media (max-width: 720px){ .plist { grid-template-columns: 1fr; } }
/* ---- contact map ---- */
.mapwrap { position: relative; width: 100%; aspect-ratio: 16/6; min-height: 320px; border: 1px solid var(--line); overflow: hidden; filter: grayscale(1) contrast(.95) brightness(.9); }
.mapwrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width:640px){ .mapwrap { aspect-ratio: 3/4; } }

/* ---- founder profile (About) ---- */
.founder { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px,5vw,70px); align-items: center; }
.founder-img { }
.founder-img img { width: 100%; height: auto; display: block; }
.founder-txt .eyebrow { color: var(--gold); }
.founder-txt h2 { color: #fff; margin: 6px 0 20px; }
.founder-txt p.bio { color: var(--muted); font-size: 16px; line-height: 1.85; }
@media (max-width: 820px){ .founder { grid-template-columns: 1fr; } .founder-img { max-width: 420px; } }
