:root {
  --black: #070705;
  --charcoal: #11110e;
  --ivory: #f4efe4;
  --ivory-2: #ebe3d5;
  --gold: #d6b44e;
  --gold-2: #f1d773;
  --muted: #aaa49a;
  --line: rgba(214,180,78,.22);
  --bg: #070705;
  --bg-soft: #10100d;
  --surface: rgba(18,18,15,.82);
  --text: #fff8ea;
  --text-soft: rgba(255,248,234,.68);
  --shadow: 0 30px 90px rgba(0,0,0,.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --nav-bg: rgba(7,7,5,.78);
  --nav-text: rgba(255,248,234,.76);
  --input-bg: rgba(255,255,255,.07);
  --input-border: rgba(255,255,255,.15);
}

html[data-theme="light"] {
  --bg: #f7f1e6;
  --bg-soft: #eee6d8;
  --surface: rgba(255,255,255,.78);
  --text: #11110e;
  --text-soft: rgba(17,17,14,.68);
  --line: rgba(154,119,30,.23);
  --shadow: 0 28px 80px rgba(82,64,30,.16);
  --nav-bg: rgba(247,241,230,.86);
  --nav-text: rgba(17,17,14,.72);
  --input-bg: rgba(255,255,255,.74);
  --input-border: rgba(17,17,14,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .35s ease, color .35s ease;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); }
.center { text-align: center; }
.page-grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: fixed; left: 50%; top: 24px; transform: translateX(-50%); z-index: 1000;
  width: min(1180px, calc(100% - 48px)); min-height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 10px 14px 10px 20px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--nav-bg); backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transition: all .3s ease;
}
.site-header.scrolled { top: 12px; min-height: 66px; }
.brand, .footer-logo { position: relative; display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo { width: 245px; height: auto; object-fit: contain; }
.logo-dark-text { display: none; }
.logo-light-text { display: block; }
html[data-theme="light"] .site-header .logo-dark-text { display: block; }
html[data-theme="light"] .site-header .logo-light-text { display: none; }

/* footer always dark: always light logo */
.footer-logo .logo, .footer-logo-img { width: 335px; height: auto; object-fit: contain; }
.footer-logo .logo-dark-text, .footer-logo .logo-light-text { display: none !important; }

.desktop-nav {
  display: flex; align-items: center; gap: 2px; position: relative;
  border: 1px solid rgba(214,180,78,.10);
  border-radius: var(--radius-pill);
  padding: 5px;
}
.desktop-nav a {
  position: relative; z-index: 2;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px; letter-spacing: .17em; text-transform: uppercase; font-weight: 900;
  color: var(--nav-text);
  transition: color .25s ease;
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--text); }
.nav-cursor {
  position: absolute; z-index: 1; top: 5px; left: 5px; height: calc(100% - 10px);
  width: 0; opacity: 0; border-radius: var(--radius-pill);
  background: var(--text);
  mix-blend-mode: difference;
  pointer-events: none;
  transition: left .28s ease, width .28s ease, opacity .2s ease;
}
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

/* Theme switch */
.theme-switch {
  width: 64px; height: 34px; padding: 4px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: #080807; color: #fff;
  display: inline-flex; align-items: center; position: relative; overflow: hidden;
  transition: background .3s ease, border-color .3s ease;
}
html[data-theme="light"] .theme-switch { background: #fff; border-color: rgba(17,17,14,.18); }
.switch-dot {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: #20201b; color: #fff; transform: translateX(0);
  transition: transform .3s ease, background .3s ease, color .3s ease;
  position: relative; z-index: 2; font-size: 12px;
}
html[data-theme="light"] .switch-dot { transform: translateX(30px); background: #eee; color: #111; }
.switch-ghost { position: absolute; right: 9px; color: rgba(255,255,255,.45); font-size: 13px; line-height: 1; }
html[data-theme="light"] .switch-ghost { left: 9px; right: auto; color: #111; }
html[data-theme="dark"] .switch-ghost .moon-icon { display: none; }
html[data-theme="light"] .switch-dot .moon-icon { display: none; }
html[data-theme="light"] .switch-dot:after { content: '☀'; }
html[data-theme="dark"] .switch-dot .moon-icon { font-size: 0; }
html[data-theme="dark"] .switch-dot:after { content: '●'; font-size: 12px; }

.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; border-radius: 2px; }
.mobile-menu { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: var(--radius-pill); font-weight: 900;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.liquid-btn {
  color: #090806;
  background: radial-gradient(circle at 30% 20%, #fff0a0, #d6b44e 38%, #a97914 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.48), inset 0 -12px 20px rgba(111,73,5,.18), 0 16px 35px rgba(214,180,78,.25);
  position: relative; overflow: hidden;
}
.liquid-btn:before {
  content: ''; position: absolute; inset: -80% -35%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.75) 48%, transparent 62%);
  transform: translateX(-60%) rotate(8deg);
  transition: transform .75s ease;
}
.liquid-btn:hover:before { transform: translateX(60%) rotate(8deg); }
.liquid-btn span { position: relative; z-index: 1; }
.btn-gold { color: #0b0905; background: linear-gradient(135deg, #f3d871, #b78a21); box-shadow: 0 18px 35px rgba(214,180,78,.2); }
.btn-glass { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.11); backdrop-filter: blur(10px); }
.btn-outline { border-color: var(--line); color: var(--text); background: transparent; }
.btn-full { width: 100%; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 150px 0 76px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: slowZoom 22s ease-in-out infinite alternate; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.55) 52%, rgba(0,0,0,.30) 100%), radial-gradient(circle at 80% 10%, rgba(214,180,78,.28), transparent 35%); }
html[data-theme="light"] .hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.40) 56%, rgba(0,0,0,.18) 100%); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) 365px; gap: 48px; align-items: end; }
.eyebrow, .section-label, .form-kicker {
  color: var(--gold-2); text-transform: uppercase; letter-spacing: .30em; font-size: 11px; font-weight: 900; margin-bottom: 20px;
}
.eyebrow span { display: inline-block; width: 60px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 14px; }
.hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(34px, 4.05vw, 58px); line-height: 1.04; letter-spacing: -.048em; margin: 0; max-width: 610px; color: #fff; }
.hero-subtext { color: rgba(255,255,255,.76); font-size: clamp(14px, 1vw, 16.5px); line-height: 1.58; max-width: 520px; margin: 20px 0 0; }
.hero-subtext strong { color: #fff; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.trust-strip { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.trust-strip div { border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.07); border-radius: 18px; padding: 12px 16px; backdrop-filter: blur(10px); }
.trust-strip strong { display: block; color: #fff; font-size: 16px; }
.trust-strip span { display: block; color: rgba(255,255,255,.6); margin-top: 4px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.hero-form, .contact-form {
  border: 1px solid rgba(214,180,78,.28); background: rgba(12,12,9,.78); backdrop-filter: blur(24px);
  border-radius: 28px; padding: 26px; box-shadow: var(--shadow); color: #fff;
}
.hero-form h2 { margin: 0 0 8px; font-size: 24px; letter-spacing: -.03em; }
.hero-form p { color: rgba(255,255,255,.64); margin: 0 0 18px; line-height: 1.55; font-size: 14px; }
label { display: block; margin-bottom: 14px; }
label span { display: block; font-size: 11px; letter-spacing: .13em; text-transform: uppercase; font-weight: 900; color: var(--gold-2); margin-bottom: 8px; }
input, select, textarea { width: 100%; border: 1px solid var(--input-border); background: var(--input-bg); color: inherit; border-radius: 14px; padding: 14px 15px; outline: none; }
select option { color: #111; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }

/* Sections */
.section { padding: 86px 0; position: relative; background: var(--bg); }
.section:nth-of-type(even) { background: var(--bg-soft); }
.section h2 { font-family: 'Manrope', sans-serif; font-size: clamp(27px, 2.55vw, 40px); line-height: 1.12; letter-spacing: -.04em; margin: 0; }
.section p { color: var(--text-soft); font-size: 15px; line-height: 1.68; }
.card-grid { display: grid; gap: 20px; margin-top: 40px; }
.three { grid-template-columns: repeat(3, 1fr); }

.spot-card, .standard-item, .location-card, .vision-panel, .founder-card, .contact-form {
  border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius-xl); box-shadow: var(--shadow); overflow: hidden;
}
.glow-card { position: relative; isolation: isolate; }
.glow-card:before {
  content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: radial-gradient(240px 240px at var(--x, 50%) var(--y, 50%), rgba(241,215,115,.68), transparent 62%),
              linear-gradient(135deg, transparent, rgba(214,180,78,.24), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; opacity: .65; z-index: -1;
}
.glow-card:after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(260px 260px at var(--x, 50%) var(--y, 50%), rgba(214,180,78,.08), transparent 65%);
  pointer-events: none; z-index: -1;
}
.spot-card { padding: 28px; min-height: 210px; }
.number { color: var(--gold-2); font-weight: 900; letter-spacing: .14em; }
.spot-card h3, .standard-item h3, .location-card h3 { font-size: 19px; letter-spacing: -.03em; margin: 20px 0 10px; }
.spot-card p { font-size: 15.5px; margin: 0; }

.split { display: grid; grid-template-columns: .95fr 1fr; gap: 56px; align-items: center; }
.split-media img { width: 100%; aspect-ratio: 1.18; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.mini-list { display: grid; gap: 12px; margin: 26px 0 28px; }
.mini-list div { padding: 18px 0; border-top: 1px solid var(--line); }
.mini-list strong { display: block; font-size: 16px; }
.mini-list span { color: var(--text-soft); display: block; margin-top: 6px; line-height: 1.5; }

.section-head { display: flex; justify-content: space-between; gap: 42px; align-items: end; margin-bottom: 46px; }
.section-head p { max-width: 450px; margin: 0; }
.location-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.location-card img { width: 100%; height: 340px; object-fit: cover; }
.location-content { padding: 30px; }
.location-content span { color: var(--gold-2); text-transform: uppercase; font-size: 11px; font-weight: 900; letter-spacing: .25em; }
.location-content h3 { margin: 16px 0 10px; font-size: 26px; }
.text-link { color: var(--gold-2); font-weight: 900; }

.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.standard-item { padding: 24px; min-height: 132px; }
.standard-item h3 { margin-top: 22px; }

.vision-panel { padding: clamp(32px, 5vw, 70px); background: linear-gradient(135deg, rgba(214,180,78,.16), transparent 45%), var(--surface); }
.vision-copy { max-width: 850px; }
blockquote { margin: 28px 0 0; font-size: clamp(22px, 2.1vw, 32px); line-height: 1.14; letter-spacing: -.035em; color: var(--gold-2); font-weight: 900; }
.founder-section { background: linear-gradient(135deg, var(--bg), var(--bg-soft)); }
.founder-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 56px; align-items: center; }
.founder-card { padding: 16px; background: radial-gradient(circle at 50% 25%, rgba(214,180,78,.34), transparent 50%), var(--surface); }
.founder-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 22px; }
.founder-copy p { max-width: 650px; }
.founder-name { border-top: 1px solid var(--line); margin-top: 28px; padding-top: 20px; }
.founder-name strong { display: block; font-size: 17px; }
.founder-name span { color: var(--text-soft); display: block; margin-top: 5px; }

/* Contact always readable in both themes */
.contact-section {
  background: radial-gradient(circle at 82% 20%, rgba(214,180,78,.18), transparent 35%), linear-gradient(135deg, #080806, #14120d);
  color: #fff;
}
.contact-grid { display: grid; grid-template-columns: 1fr 430px; gap: 68px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy p { color: rgba(255,255,255,.72); }
.contact-details { display: grid; gap: 12px; margin-top: 30px; }
.contact-details a, .contact-details span { color: rgba(255,255,255,.76); font-size: 16px; }
.contact-section .contact-form { background: rgba(255,255,255,.09); color: #fff; }
.contact-section input, .contact-section select, .contact-section textarea { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); color: #fff; }
.contact-section input::placeholder, .contact-section textarea::placeholder { color: rgba(255,255,255,.48); }


/* Light theme contact readability fix */
html[data-theme="light"] .contact-section {
  background: radial-gradient(circle at 82% 20%, rgba(214,180,78,.16), transparent 35%), linear-gradient(135deg, #f5efe4, #ebe0cf);
  color: #11110e;
}
html[data-theme="light"] .contact-copy h2,
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .contact-details a,
html[data-theme="light"] .contact-details span {
  color: #11110e;
}
html[data-theme="light"] .contact-copy p,
html[data-theme="light"] .contact-details a,
html[data-theme="light"] .contact-details span {
  opacity: .78;
}
html[data-theme="light"] .contact-section .section-label,
html[data-theme="light"] .contact-section label span {
  color: #b28b24;
}
html[data-theme="light"] .contact-section .contact-form {
  background: rgba(255,255,255,.70);
  color: #11110e;
  border-color: rgba(154,119,30,.25);
  box-shadow: 0 28px 80px rgba(82,64,30,.16);
}
html[data-theme="light"] .contact-section input,
html[data-theme="light"] .contact-section select,
html[data-theme="light"] .contact-section textarea {
  background: rgba(255,255,255,.86);
  border-color: rgba(17,17,14,.20);
  color: #11110e;
}
html[data-theme="light"] .contact-section input::placeholder,
html[data-theme="light"] .contact-section textarea::placeholder {
  color: rgba(17,17,14,.42);
}

/* Footer */
.site-footer { padding: 68px 0 26px; background: #080806; color: #fff; border-top: 1px solid rgba(214,180,78,.2); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 32px; border-bottom: 1px solid rgba(214,180,78,.2); }
.back-to-top { border: 0; background: transparent; color: var(--gold-2); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; cursor: pointer; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 70px; padding: 40px 0; }
.footer-grid h3 { text-transform: uppercase; letter-spacing: .18em; font-size: 13px; }
.footer-grid p, .footer-grid a, .footer-grid span { display: block; color: rgba(255,255,255,.64); line-height: 1.8; margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; color: rgba(255,255,255,.48); font-size: 13px; }
.footer-bottom p { margin: 0; max-width: 820px; line-height: 1.6; }

/* WhatsApp authentic */
.whatsapp {
  position: fixed; right: 26px; bottom: 26px; z-index: 999;
  display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 20px;
  background: #25D366; color: #fff; border-radius: var(--radius-pill); font-weight: 900;
  box-shadow: 0 18px 40px rgba(37,211,102,.28), 0 15px 35px rgba(0,0,0,.22);
}
.whatsapp svg { width: 26px; height: 26px; color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.07); } }

@media (max-width: 1180px) {
  .logo { width: 210px; }
  .desktop-nav a { padding-inline: 10px; letter-spacing: .13em; }
  }
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-block; }
  .mobile-menu {
    position: fixed; z-index: 999; left: 24px; right: 24px; top: 104px; padding: 24px;
    border: 1px solid var(--line); border-radius: 28px; background: var(--surface);
    backdrop-filter: blur(20px); box-shadow: var(--shadow);
  }
  .mobile-menu.open { display: grid; gap: 18px; }
  .mobile-menu a { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }
  .mobile-cta { margin-top: 8px; }
  .hero-content, .split, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-form { max-width: 520px; }
  .three, .standards-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { top: 12px; width: calc(100% - 24px); min-height: 66px; padding: 9px 10px 9px 14px; }
  .logo { width: 176px; }
    .theme-switch { width: 58px; height: 32px; }
  html[data-theme="light"] .switch-dot { transform: translateX(26px); }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { padding: 112px 0 56px; min-height: auto; }
  .hero-content { gap: 30px; }
  .eyebrow, .section-label, .form-kicker { font-size: 9px; letter-spacing: .22em; }
  .eyebrow span { width: 34px; }
  .hero h1 { font-family: 'Manrope', sans-serif; font-size: clamp(34px, 4.05vw, 58px); line-height: 1.04; letter-spacing: -.048em; margin: 0; max-width: 610px; color: #fff; }
  .hero-subtext { color: rgba(255,255,255,.76); font-size: clamp(14px, 1vw, 16.5px); line-height: 1.58; max-width: 520px; margin: 20px 0 0; }
  .hero-form { padding: 22px; border-radius: 24px; }
  .trust-strip { gap: 8px; }
  .trust-strip div { flex: 1 1 30%; padding: 11px 9px; }
  .trust-strip strong { font-size: 13px; }
  .trust-strip span { font-size: 8.5px; }
  .section { padding: 86px 0; position: relative; background: var(--bg); }
  .section h2 { font-family: 'Manrope', sans-serif; font-size: clamp(27px, 2.55vw, 40px); line-height: 1.12; letter-spacing: -.04em; margin: 0; }
  .section p { color: var(--text-soft); font-size: 15px; line-height: 1.68; }
  .three, .standards-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .location-card img { height: 250px; }
  .location-content h3 { margin: 16px 0 10px; font-size: 26px; }
  .founder-card img { aspect-ratio: 3/4; }
  .footer-top { display: grid; }
  .footer-logo-img { width: 265px; }
  .footer-bottom { display: block; }
  .whatsapp { right: 14px; bottom: 14px; min-height: 50px; padding: 0 16px; }
  .whatsapp span { display: none; }
}
@media (max-width: 420px) {
  .logo { width: 158px; }
  .site-header { gap: 8px; }
  .theme-switch { width: 54px; }
}


/* V8 size refinements */
@media (min-width: 1081px) {
  .header-actions { gap: 8px; }
  .site-header { padding-right: 18px; }
}
@media (max-width: 720px) {
  .hero-copy { max-width: 100%; }
  .hero-cta-row { margin-top: 24px; }
  .trust-strip { margin-top: 26px; }
  .spot-card h3, .standard-item h3 { font-size: 18px; }
  .location-content h3 { margin: 16px 0 10px; font-size: 26px; }
  blockquote { margin: 28px 0 0; font-size: clamp(22px, 2.1vw, 32px); line-height: 1.14; letter-spacing: -.035em; color: var(--gold-2); font-weight: 900; }
}


/* V9 final typography tightening */
@media (min-width: 1081px) {
  .hero h1 { font-size: clamp(34px, 4.05vw, 58px) !important; max-width: 610px; }
  .section h2 { font-size: clamp(27px, 2.55vw, 40px) !important; }
  .contact-copy h2 { max-width: 560px; }
  .split-copy h2 { max-width: 560px; }
  .section-head h2 { max-width: 560px; }
  .narrow { width: min(760px, calc(100% - 48px)); }
}
@media (max-width: 720px) {
  .hero h1 { font-size: clamp(30px, 8.2vw, 40px) !important; line-height: 1.08; }
  .section h2 { font-size: clamp(25px, 7vw, 34px) !important; line-height: 1.12; }
  .hero-form h2 { font-size: 20px; }
  .contact-copy h2 { max-width: 95%; }
}





/* =========================================================
   V11 — FINAL NAV HOVER COMPONENT REBUILD
   Keeps the moving hover pill, removes white pill issue
   ========================================================= */

/* Desktop nav shell */
.desktop-nav.magnetic-nav {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
  isolation: isolate !important;
  overflow: hidden !important;
  border-radius: 999px !important;
}

/* Nav links stay readable above the moving pill */
.desktop-nav.magnetic-nav a {
  position: relative !important;
  z-index: 3 !important;
  border-radius: 999px !important;
  background: transparent !important;
  transition: color .22s ease, background .22s ease !important;
}

/* The moving pill */
.desktop-nav.magnetic-nav .nav-cursor {
  position: absolute !important;
  z-index: 1 !important;
  top: 5px !important;
  left: 5px !important;
  height: calc(100% - 10px) !important;
  width: 0;
  opacity: 0;
  border-radius: 999px !important;
  pointer-events: none !important;
  mix-blend-mode: normal !important;
  background: linear-gradient(135deg, rgba(214, 180, 78, .30), rgba(214, 180, 78, .10)) !important;
  border: 1px solid rgba(214, 180, 78, .42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 10px 24px rgba(214,180,78,.12) !important;
  transition: left .28s ease, width .28s ease, opacity .18s ease !important;
}

/* Dark theme text behavior */
html[data-theme="dark"] .desktop-nav.magnetic-nav a {
  color: rgba(255, 248, 234, .72) !important;
}

html[data-theme="dark"] .desktop-nav.magnetic-nav a:hover {
  color: #f1d773 !important;
  background: transparent !important;
}

/* Light theme text behavior */
html[data-theme="light"] .desktop-nav.magnetic-nav a {
  color: rgba(17, 17, 14, .72) !important;
}

html[data-theme="light"] .desktop-nav.magnetic-nav a:hover {
  color: #11110e !important;
  background: transparent !important;
}

html[data-theme="light"] .desktop-nav.magnetic-nav .nav-cursor {
  background: linear-gradient(135deg, rgba(17, 17, 14, .08), rgba(214, 180, 78, .14)) !important;
  border: 1px solid rgba(154, 119, 30, .24) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 10px 24px rgba(82,64,30,.08) !important;
}

/* Compact hero headline */
.hero h1 {
  font-size: clamp(30px, 3.35vw, 50px) !important;
  line-height: 1.08 !important;
  max-width: 560px !important;
  letter-spacing: -0.043em !important;
}

.hero-subtext {
  max-width: 500px !important;
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(27px, 7.2vw, 36px) !important;
    line-height: 1.1 !important;
    max-width: 92% !important;
  }

  .hero-subtext {
    font-size: 13.5px !important;
    max-width: 92% !important;
  }
}

/* Remove any old hover white / difference behavior */
.desktop-nav a:hover {
  background: transparent !important;
}

.nav-cursor {
  mix-blend-mode: normal !important;
}


/* V15 founder image + contact address desktop alignment fix */
.founder-card {
  overflow: hidden;
}
.founder-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  background: transparent;
}
.contact-details .address {
  display: block;
  max-width: 520px;
  line-height: 1.65;
  white-space: normal;
}
@media (max-width: 1080px) {
  .contact-details .address {
    max-width: 100%;
  }
}
