/* ============================================================
   SOLA — shared luxury design system
   Used by all inner pages. Homepage carries its own inline copy.
   ============================================================ */

:root {
  --green: #243B2E;
  --green-deep: #0F1A14;
  --ink: #070C09;
  --gold: #B8943E;
  --gold-light: #D4BB7A;
  --cream: #F2ECD8;
  --paper: #EFE9DC;
  --ink-on-paper: #2A352C;
  --muted-paper: rgba(42,53,44,0.6);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body { font-family:'Inter', -apple-system, sans-serif; background:var(--ink); color:var(--cream); overflow-x:hidden; }
img { display:block; max-width:100%; }
a { color:inherit; }
::selection { background:var(--gold); color:var(--ink); }

/* Fine film grain */
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:300; opacity:0.035;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }

/* Primitives */
.kicker { font-family:'Inter', sans-serif; font-size:11px; font-weight:500; letter-spacing:0.32em; text-transform:uppercase; color:var(--gold); }
.idx { font-family:'Inter', sans-serif; font-size:11px; font-weight:500; letter-spacing:0.28em; color:var(--gold); }
.rule { width:44px; height:1px; background:var(--gold); opacity:0.75; }
.serif { font-family:'Cormorant Garamond', serif; }
.wrap { max-width:1120px; margin:0 auto; }
.wrap-narrow { max-width:780px; margin:0 auto; }

.section-head { display:flex; align-items:baseline; gap:16px; margin-bottom:clamp(34px,5vw,60px); }
.section-head .idx { white-space:nowrap; }
.section-head .line { flex:1; height:1px; background:currentColor; opacity:0.16; }

/* ═══ NAV ═══ */
nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 clamp(20px,4vw,64px); height:76px; background:transparent;
  transition:background .55s ease, height .45s ease, border-color .55s ease;
  border-bottom:1px solid transparent;
}
nav.scrolled, nav.solid {
  background:rgba(7,12,9,0.8); backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  height:62px; border-bottom:1px solid rgba(184,148,62,0.18);
}
.nav-wordmark { font-family:'Cormorant Garamond', serif; font-size:21px; font-weight:400; letter-spacing:0.46em; text-transform:uppercase; color:#fff; text-decoration:none; padding-left:3px; }
.nav-right { display:flex; align-items:center; gap:clamp(18px,2.3vw,38px); }
.nav-link { font-size:12px; font-weight:400; letter-spacing:0.04em; color:rgba(242,236,216,0.6); text-decoration:none; transition:color .25s; }
.nav-link:hover, .nav-link.active { color:#fff; }
.nav-cta { font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold); text-decoration:none; padding:9px 22px; border:1px solid rgba(184,148,62,0.5); border-radius:1px; transition:all .3s; }
.nav-cta:hover { background:var(--gold); color:var(--ink); border-color:var(--gold); }
.nav-menu-btn { display:none; background:none; border:none; color:#fff; cursor:pointer; padding:8px; font-size:20px; line-height:1; }

.mobile-menu { position:fixed; inset:0; z-index:200; background:var(--ink); display:none; flex-direction:column; align-items:center; justify-content:center; gap:28px; padding:80px 24px; }
.mobile-menu.open { display:flex; }
.mobile-menu-close { position:absolute; top:20px; right:24px; background:none; border:none; color:rgba(242,236,216,0.6); cursor:pointer; font-size:32px; line-height:1; padding:8px; }
.mobile-menu a { font-family:'Cormorant Garamond', serif; font-size:27px; font-weight:300; color:rgba(242,236,216,0.82); text-decoration:none; }
.mobile-menu a:hover { color:#fff; }
.mobile-menu .nav-cta { font-family:'Inter',sans-serif; font-size:12px; margin-top:12px; padding:13px 34px; }
@media(max-width:760px){ .nav-right{ display:none; } .nav-menu-btn{ display:block; } }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero { position:relative; min-height:62vh; display:flex; align-items:flex-end; overflow:hidden; background:var(--green-deep); padding:120px clamp(20px,6vw,80px) clamp(56px,8vh,96px); }
.page-hero.has-media { min-height:78vh; }
.page-hero-media { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.5; }
.page-hero-grad { position:absolute; inset:0; background:linear-gradient(to top, rgba(7,12,9,0.92) 0%, rgba(7,12,9,0.2) 55%, rgba(7,12,9,0.45) 100%); }
.page-hero-inner { position:relative; z-index:2; max-width:920px; }
.page-hero .rule { margin-bottom:22px; }
.page-hero .kicker { display:block; color:var(--gold-light); margin-bottom:18px; }
.page-hero h1 { font-family:'Cormorant Garamond', serif; font-weight:300; color:#fff; font-size:clamp(46px,7.5vw,104px); line-height:0.98; letter-spacing:-0.015em; }
.page-hero h1 em { font-style:italic; color:var(--gold-light); }
.page-hero-sub { font-size:15px; font-weight:300; line-height:1.85; color:rgba(242,236,216,0.6); margin-top:26px; max-width:480px; }

/* ═══ SECTIONS ═══ */
.section { padding:clamp(80px,13vh,180px) clamp(20px,6vw,80px); background:var(--ink); }
.section.deep { background:var(--green-deep); border-top:1px solid rgba(184,148,62,0.14); }
.section.green { background:var(--green); border-top:1px solid rgba(184,148,62,0.14); }
.section.light { background:var(--paper); color:var(--ink-on-paper); }
.section.light .section-head { color:var(--ink-on-paper); }
.section.light .idx, .section.light .kicker { color:var(--gold); }

.lead { font-family:'Cormorant Garamond', serif; font-weight:300; font-size:clamp(26px,3.4vw,46px); line-height:1.4; max-width:960px; }
.lead em { font-style:italic; color:var(--gold-light); }
.section.light .lead em { color:var(--gold); }

.prose { max-width:680px; }
.prose p { font-size:15px; font-weight:300; line-height:1.95; color:rgba(242,236,216,0.7); margin-top:20px; }
.prose p:first-child { margin-top:0; }
.section.light .prose p { color:var(--muted-paper); }
.prose h3 { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:clamp(22px,2.6vw,30px); line-height:1.2; margin-top:42px; color:var(--cream); }
.section.light .prose h3 { color:var(--ink-on-paper); }

/* ═══ EDITORIAL SPLIT (image + copy) ═══ */
.split { display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,90px); align-items:center; max-width:1180px; margin:0 auto; }
.split.reverse .split-figure { order:2; }
.split-figure { position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:2px; }
.split-figure img { width:100%; height:100%; object-fit:cover; transform:scale(1.04); transition:transform 1.6s cubic-bezier(.16,1,.3,1); }
.split-figure.visible img, .reveal.visible .split-figure img { transform:scale(1); }
.split-copy h2 { font-family:'Cormorant Garamond', serif; font-weight:300; font-size:clamp(30px,4vw,52px); line-height:1.12; letter-spacing:-0.01em; }
.split-copy .kicker { display:block; margin-bottom:18px; }
.split-copy p { font-size:15px; font-weight:300; line-height:1.9; margin-top:24px; max-width:440px; color:rgba(242,236,216,0.68); }
.section.light .split-copy p { color:var(--muted-paper); }
@media(max-width:860px){ .split{ grid-template-columns:1fr; gap:44px; } .split.reverse .split-figure{ order:0; } .split-figure{ aspect-ratio:3/2; } }

/* ═══ CARDS (values / press / pillars) ═══ */
.cards { display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.4vw,32px); }
.card { padding:clamp(28px,3vw,44px); border:1px solid rgba(184,148,62,0.16); border-radius:2px; transition:border-color .35s; }
.card:hover { border-color:rgba(184,148,62,0.4); }
.section.light .card { border-color:rgba(42,53,44,0.14); }
.section.light .card:hover { border-color:rgba(184,148,62,0.55); }
.card .num { font-family:'Cormorant Garamond', serif; font-weight:300; font-size:34px; color:var(--gold-light); line-height:1; }
.section.light .card .num { color:var(--gold); }
.card h3 { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:24px; margin-top:16px; color:var(--cream); }
.section.light .card h3 { color:var(--ink-on-paper); }
.card p { font-size:13.5px; font-weight:300; line-height:1.85; margin-top:14px; color:rgba(242,236,216,0.6); }
.section.light .card p { color:var(--muted-paper); }
.card a.card-link { display:inline-block; margin-top:20px; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); text-decoration:none; transition:opacity .2s; }
.card a.card-link:hover { opacity:0.7; }
@media(max-width:860px){ .cards{ grid-template-columns:1fr; } }

/* ═══ FAQ ACCORDION ═══ */
.faq { max-width:820px; margin:0 auto; }
.faq-item { border-bottom:1px solid rgba(184,148,62,0.2); }
.section.light .faq-item { border-bottom-color:rgba(42,53,44,0.14); }
.faq-q { width:100%; text-align:left; background:none; border:none; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:24px; padding:26px 0; font-family:'Cormorant Garamond', serif; font-weight:400; font-size:clamp(20px,2.2vw,26px); color:var(--cream); transition:color .2s; }
.section.light .faq-q { color:var(--ink-on-paper); }
.faq-q:hover { color:var(--gold-light); }
.section.light .faq-q:hover { color:var(--gold); }
.faq-sign { flex-shrink:0; width:18px; height:18px; position:relative; }
.faq-sign::before, .faq-sign::after { content:''; position:absolute; background:var(--gold); transition:transform .35s ease; }
.faq-sign::before { top:50%; left:0; right:0; height:1px; transform:translateY(-50%); }
.faq-sign::after { left:50%; top:0; bottom:0; width:1px; transform:translateX(-50%); }
.faq-item.open .faq-sign::after { transform:translateX(-50%) scaleY(0); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .45s cubic-bezier(.16,1,.3,1); }
.faq-a-inner { padding:0 0 28px; font-size:14.5px; font-weight:300; line-height:1.9; color:rgba(242,236,216,0.62); max-width:660px; }
.section.light .faq-a-inner { color:var(--muted-paper); }

/* ═══ FORMS ═══ */
.form { max-width:560px; }
.field { margin-bottom:22px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field label { display:block; font-size:10px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:rgba(242,236,216,0.5); margin-bottom:10px; }
.section.light .field label { color:var(--muted-paper); }
.input, .select, .textarea {
  width:100%; padding:15px 16px; background:rgba(7,12,9,0.28); border:1px solid rgba(242,236,216,0.22);
  border-radius:1px; font-family:'Inter', sans-serif; font-size:14px; font-weight:300; color:#fff; outline:none;
  transition:border-color .25s; appearance:none;
}
.section.light .input, .section.light .select, .section.light .textarea { background:#fff; border-color:rgba(42,53,44,0.16); color:var(--ink-on-paper); }
.input:focus, .select:focus, .textarea:focus { border-color:var(--gold-light); }
.section.light .input:focus, .section.light .select:focus, .section.light .textarea:focus { border-color:var(--gold); }
.input::placeholder, .textarea::placeholder { color:rgba(242,236,216,0.4); }
.section.light .input::placeholder, .section.light .textarea::placeholder { color:rgba(42,53,44,0.4); }
.textarea { min-height:150px; resize:vertical; line-height:1.7; }
.select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8943E' stroke-width='1.4' fill='none'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 16px center; padding-right:40px; }
.btn { display:inline-block; background:var(--gold); border:none; color:var(--ink); cursor:pointer; font-family:'Inter', sans-serif; font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; padding:16px 34px; border-radius:1px; transition:background .25s; text-decoration:none; }
.btn:hover { background:var(--gold-light); }
.btn-block { width:100%; }
.form-note { font-size:11px; color:rgba(242,236,216,0.42); margin-top:14px; letter-spacing:0.02em; }
.section.light .form-note { color:rgba(42,53,44,0.45); }
.form-success { display:none; }
.form-success.show { display:block; }
.form-success .serif { font-family:'Cormorant Garamond', serif; font-weight:300; font-style:italic; font-size:28px; color:var(--gold-light); }
.section.light .form-success .serif { color:var(--gold); }
.form-success p { font-size:14px; font-weight:300; color:rgba(242,236,216,0.62); margin-top:10px; }
.section.light .form-success p { color:var(--muted-paper); }
@media(max-width:560px){ .field-row{ grid-template-columns:1fr; } }

/* ═══ CONTACT INFO COLUMN ═══ */
.info-block { padding:26px 0; border-bottom:1px solid rgba(184,148,62,0.16); }
.section.light .info-block { border-bottom-color:rgba(42,53,44,0.12); }
.info-block:first-child { padding-top:0; }
.info-block:last-child { border-bottom:none; }
.info-block h3 { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:22px; margin-bottom:10px; }
.info-block p { font-size:14px; font-weight:300; line-height:1.85; color:rgba(242,236,216,0.62); }
.section.light .info-block p { color:var(--muted-paper); }
.info-block a { color:var(--gold-light); text-decoration:none; transition:opacity .2s; }
.section.light .info-block a { color:var(--gold); }
.info-block a:hover { opacity:0.7; }
.info-email { font-family:'Cormorant Garamond', serif; font-size:20px; display:inline-block; margin-top:8px; }

/* ═══ LEGAL CONTENT ═══ */
.legal { background:var(--paper); color:var(--ink-on-paper); padding:clamp(60px,9vh,120px) clamp(20px,6vw,80px); }
.legal-inner { max-width:780px; margin:0 auto; }
.legal-inner h2 { font-family:'Cormorant Garamond', serif; font-weight:400; font-size:clamp(24px,3vw,34px); line-height:1.2; margin:48px 0 16px; color:var(--ink-on-paper); }
.legal-inner h2:first-child { margin-top:0; }
.legal-inner h3 { font-family:'Cormorant Garamond', serif; font-weight:500; font-size:20px; margin:32px 0 12px; color:var(--ink-on-paper); }
.legal-inner p, .legal-inner li { font-size:14.5px; font-weight:300; line-height:1.85; color:var(--muted-paper); }
.legal-inner p { margin-bottom:16px; }
.legal-inner ul, .legal-inner ol { margin:0 0 16px 22px; }
.legal-inner li { margin-bottom:8px; }
.legal-inner a { color:var(--gold); text-decoration:underline; text-underline-offset:2px; }
.legal-inner strong { font-weight:600; color:var(--ink-on-paper); }
.legal-inner table { width:100%; border-collapse:collapse; margin:20px 0; font-size:13.5px; }
.legal-inner th, .legal-inner td { text-align:left; padding:12px 14px; border:1px solid rgba(42,53,44,0.16); vertical-align:top; font-weight:300; }
.legal-inner th { font-weight:600; background:rgba(184,148,62,0.08); }
.legal-updated { font-size:12px; letter-spacing:0.04em; color:rgba(42,53,44,0.5); margin-bottom:40px; }

/* ═══ FOOTER ═══ */
footer { background:var(--ink); padding:clamp(48px,7vh,72px) clamp(20px,6vw,80px) 44px; border-top:1px solid rgba(184,148,62,0.12); }
.footer-top { max-width:1120px; margin:0 auto 38px; display:flex; align-items:flex-start; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.footer-logo { font-family:'Cormorant Garamond', serif; font-size:24px; font-weight:400; letter-spacing:0.42em; text-transform:uppercase; color:rgba(242,236,216,0.9); }
.footer-tag { font-size:12px; font-weight:300; line-height:1.7; color:rgba(242,236,216,0.5); margin-top:14px; max-width:280px; }
.footer-social { display:flex; gap:20px; }
.footer-social a { font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(242,236,216,0.6); text-decoration:none; transition:color .2s; }
.footer-social a:hover { color:var(--gold-light); }
.footer-bottom { max-width:1120px; margin:0 auto; padding-top:26px; border-top:1px solid rgba(184,148,62,0.12); display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; }
.footer-links { display:flex; gap:22px; flex-wrap:wrap; }
.footer-links a { font-size:12px; font-weight:300; color:rgba(242,236,216,0.55); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:rgba(242,236,216,1); }
.footer-copy { font-size:11px; color:rgba(242,236,216,0.45); }
@media(max-width:720px){ .footer-bottom{ flex-direction:column; align-items:flex-start; } }

/* ═══ REVEALS (JS-gated so no-JS still shows everything) ═══ */
.js .reveal { opacity:0; transform:translateY(28px); transition:opacity 1.05s cubic-bezier(.16,1,.3,1), transform 1.05s cubic-bezier(.16,1,.3,1); }
.js .reveal-mask { opacity:0; transform:translateY(42px); transition:opacity 1.1s cubic-bezier(.16,1,.3,1), transform 1.25s cubic-bezier(.16,1,.3,1); }
.reveal.visible, .reveal-mask.visible { opacity:1; transform:none; }
@media(prefers-reduced-motion:reduce){
  .js .reveal, .js .reveal-mask { opacity:1; transform:none; transition:none; }
  .split-figure img { transform:none; transition:none; }
}
