/* =======================================================
   STEVORRA — Design Tokens
   ======================================================= */
:root{
  --navy:#0A1B2E;
  --navy-deep:#061019;
  --navy-mid:#122A44;
  --green:#1B4534;
  --green-deep:#123024;
  --ivory:#F7F4EE;
  --ivory-dim:#EFEBE1;
  --gold:#C9A052;
  --gold-light:#DDBD82;
  --ink:#1A1C1B;
  --stone:#726C5E;
  --maxw:1200px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Inter',-apple-system,sans-serif;
  background:var(--ivory);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
section[id]{scroll-margin-top:88px;}
img{max-width:100%;display:block;}
h1,h2,h3,h4{font-family:'Cormorant Garamond',Georgia,serif; font-weight:600; margin:0; letter-spacing:-0.01em; color:inherit;}
p{margin:0;}
a{color:inherit; text-decoration:none;}
ul{margin:0; padding:0; list-style:none;}
button{font-family:inherit;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 40px;}
@media (max-width:640px){ .wrap{padding:0 24px;} }

/* ---------- Utility ---------- */
.eyebrow{
  font-family:'Inter',sans-serif; font-weight:600; font-size:0.72rem;
  letter-spacing:0.22em; text-transform:uppercase;
}
.eyebrow-gold{ color:var(--gold); }
.eyebrow-green{ color:var(--green); }
.eyebrow-dash{ display:inline-block; width:22px; height:1px; background:currentColor; vertical-align:middle; margin-right:10px; opacity:0.85; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Inter',sans-serif; font-weight:600; font-size:0.82rem;
  letter-spacing:0.08em; text-transform:uppercase;
  padding:16px 28px; border-radius:3px; border:1px solid transparent;
  cursor:pointer; transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:var(--navy-deep); }
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-ghost-light{ border-color:rgba(247,244,238,0.45); color:var(--ivory); background:transparent; }
.btn-ghost-light:hover{ border-color:var(--ivory); background:rgba(247,244,238,0.08); }
.btn-ghost-dark{ border-color:rgba(10,27,46,0.35); color:var(--navy); background:transparent; }
.btn-ghost-dark:hover{ border-color:var(--navy); background:rgba(10,27,46,0.06); }
.btn:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }
.btn-block{ width:100%; justify-content:center; }

.hairline-light{ height:1px; background:rgba(247,244,238,0.16); border:0; }
.hairline-dark{ height:1px; background:rgba(10,27,46,0.14); border:0; }

/* ---------- Registration marks (signature motif) ---------- */
.reg-frame{ position:relative; }
.reg-mark{ position:absolute; width:22px; height:22px; opacity:0.55; pointer-events:none; }
.reg-mark.tl{ top:26px; left:26px; border-top:1px solid var(--gold); border-left:1px solid var(--gold); }
.reg-mark.tr{ top:26px; right:26px; border-top:1px solid var(--gold); border-right:1px solid var(--gold); }
.reg-mark.bl{ bottom:26px; left:26px; border-bottom:1px solid var(--gold); border-left:1px solid var(--gold); }
.reg-mark.br{ bottom:26px; right:26px; border-bottom:1px solid var(--gold); border-right:1px solid var(--gold); }
@media (max-width:640px){ .reg-mark{ width:14px; height:14px; } .reg-mark.tl,.reg-mark.tr{ top:16px; } .reg-mark.bl,.reg-mark.br{ bottom:16px; } .reg-mark.tl,.reg-mark.bl{ left:16px; } .reg-mark.tr,.reg-mark.br{ right:16px; } }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
  html{ scroll-behavior:auto; }
}

/* =======================================================
   Nav
   ======================================================= */
.site-nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(6,16,25,0.88); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(247,244,238,0.08);
  transition:background .3s ease, border-color .3s ease, padding .3s ease;
}
.site-nav.scrolled{ background:rgba(6,16,25,0.98); border-bottom-color:rgba(201,160,82,0.25); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:82px; transition:height .3s ease; }
.site-nav.scrolled .nav-inner{ height:68px; }
.nav-brand{ display:flex; align-items:center; gap:12px; position:relative; z-index:2; }
.nav-brand img{ height:90px; width:auto; }
.nav-brand span{ font-family:'Cormorant Garamond',serif; font-weight:600; font-size:1.35rem; letter-spacing:0.08em; color:var(--ivory); }
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{ font-size:0.76rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:rgba(247,244,238,0.72); transition:color .2s ease; }
.nav-links a:hover{ color:var(--gold); }
.nav-cta{ display:flex; align-items:center; gap:28px; position:relative; z-index:2; }
.nav-cta .btn{ padding:12px 22px; font-size:0.74rem; }
.nav-toggle{ display:none; background:none; border:0; color:var(--ivory); cursor:pointer; padding:10px; width:44px; height:44px; align-items:center; justify-content:center; }
.nav-toggle svg{ width:24px; height:24px; }

/* ---- Mobile nav: transparent bar (solid only once scrolled), full-height overlay menu, no CTA button ---- */
.mobile-panel{ display:none; }
@media (max-width:960px){
  .nav-links{ display:none; }
  .nav-cta .btn{ display:none; }
  .nav-toggle{ display:inline-flex; }

  .site-nav{ background:transparent; backdrop-filter:none; border-bottom-color:transparent; }
  .site-nav.scrolled{ background:rgba(6,16,25,0.95); backdrop-filter:blur(12px); border-bottom-color:rgba(201,160,82,0.2); }

  .nav-inner{ height:64px; }
  .site-nav.scrolled .nav-inner{ height:64px; }

  .mobile-panel{
    display:block; position:fixed; top:0; right:0; bottom:0; left:0; z-index:99;
    background:rgba(6,16,25,0.78);
    backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
    padding:118px 28px 40px;
    opacity:0; visibility:hidden; transform:translateY(-8px);
    transition:opacity .3s ease, transform .3s ease, visibility .3s ease;
    overflow-y:auto;
  }
  .mobile-panel.open{ opacity:1; transform:translateY(0); visibility:visible; }
  .mobile-panel a{ color:var(--ivory); }
  .mobile-link{ display:block; padding:17px 4px; font-family:'Cormorant Garamond',serif; font-size:1.65rem; border-bottom:1px solid rgba(247,244,238,0.14); }
}

/* =======================================================
   Hero
   ======================================================= */
.hero{
  position:relative; background:var(--navy-deep); color:var(--ivory);
  padding:190px 0 120px; overflow:hidden;
  background-image:radial-gradient(ellipse at 78% 18%, rgba(27,69,52,0.35), transparent 55%);
}
.hero-watermark{ position:absolute; right:-90px; bottom:-60px; width:560px; opacity:0.05; pointer-events:none; }
.hero-inner{ position:relative; max-width:700px; }
.hero-kicker{ margin-bottom:28px; }
.hero h1{ font-size:clamp(2.6rem, 4.6vw + 1rem, 5.1rem); line-height:1.06; color:var(--ivory); }
.hero h1 em{ font-style:italic; color:var(--gold); }
.hero-sub{ margin-top:28px; max-width:540px; font-size:1.15rem; line-height:1.75; color:rgba(247,244,238,0.78); }
.hero-actions{ display:flex; flex-wrap:wrap; gap:18px; margin-top:44px; }
.hero-meta{ margin-top:64px; padding-top:24px; border-top:1px solid rgba(247,244,238,0.16); font-size:0.72rem; letter-spacing:0.16em; text-transform:uppercase; color:rgba(247,244,238,0.5); max-width:540px; }

@media (max-width:640px){
  .hero{ padding:150px 0 84px; }
  .hero-actions{ flex-direction:column; align-items:flex-start; }
  .hero-actions .btn{ width:100%; justify-content:center; }
}

/* ---------- Label + content grid (shared pattern) ---------- */
.lc-grid{ display:grid; grid-template-columns:240px 1fr; gap:64px; }
.lc-label{ position:sticky; top:120px; align-self:start; }
.lc-rule{ width:34px; height:1px; margin-top:18px; }
@media (max-width:860px){ .lc-grid{ grid-template-columns:1fr; gap:28px; } .lc-label{ position:static; } }

/* ---------- Introduction ---------- */
.intro{ background:var(--ivory); padding:130px 0; }
.intro p{ font-size:1.2rem; line-height:1.8; color:var(--ink); max-width:640px; }
.intro p + p{ margin-top:24px; }
.intro-close{ margin-top:40px; font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.7rem; line-height:1.5; color:var(--green); max-width:600px; }

/* ---------- Who We Serve ---------- */
.serve{ background:var(--green); color:var(--ivory); padding:130px 0; }
.serve-head{ max-width:640px; margin-bottom:72px; }
.serve-head h2{ margin-top:18px; font-size:clamp(1.9rem,2vw + 1rem,2.9rem); color:var(--ivory); }
.serve-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(247,244,238,0.16); border:1px solid rgba(247,244,238,0.16); }
.serve-card{ background:var(--green); padding:44px 36px; }
.serve-num{ font-family:'Cormorant Garamond',serif; font-size:2.6rem; color:var(--gold); line-height:1; }
.serve-card h3{ margin-top:22px; font-size:1.45rem; color:var(--ivory); }
.serve-card p{ margin-top:16px; font-size:0.98rem; line-height:1.7; color:rgba(247,244,238,0.75); }
@media (max-width:860px){ .serve-grid{ grid-template-columns:1fr; } }

/* ---------- Services ---------- */
.services{ background:var(--ivory); padding:130px 0; }
.services-head{ max-width:640px; margin-bottom:56px; }
.services-head h2{ margin-top:18px; font-size:clamp(1.9rem,2vw + 1rem,2.9rem); color:var(--navy); }
.service-row{ display:grid; grid-template-columns:110px 1fr; gap:40px; padding:38px 0; border-top:1px solid rgba(10,27,46,0.14); align-items:start; }
.service-row:last-child{ border-bottom:1px solid rgba(10,27,46,0.14); }
.service-code{ font-family:'Cormorant Garamond',serif; font-size:2.2rem; color:var(--green); }
.service-body h3{ font-size:1.55rem; color:var(--navy); }
.service-body p{ margin-top:12px; font-size:1.02rem; line-height:1.7; color:var(--stone); max-width:600px; }
@media (max-width:640px){ .service-row{ grid-template-columns:1fr; gap:10px; } }

/* ---------- Difference ---------- */
.difference{ background:var(--navy); color:var(--ivory); padding:130px 0; }
.diff-list{ display:grid; grid-template-columns:1fr 1fr; gap:20px 60px; margin-top:20px; }
.diff-item{ display:flex; gap:18px; padding:28px 0; border-top:1px solid rgba(247,244,238,0.14); }
.diff-mark{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.5rem; color:var(--gold); flex-shrink:0; line-height:1.4; }
.diff-item p{ font-size:1.04rem; line-height:1.65; color:rgba(247,244,238,0.85); }
@media (max-width:860px){ .diff-list{ grid-template-columns:1fr; } }

/* ---------- How it works ---------- */
.process{ background:var(--ivory); padding:130px 0; }
.process-head{ max-width:640px; margin-bottom:72px; }
.process-head h2{ margin-top:18px; font-size:clamp(1.9rem,2vw + 1rem,2.9rem); color:var(--navy); }
.process-list{ position:relative; }
.process-list::before{ content:""; position:absolute; left:29px; top:8px; bottom:8px; width:1px; background:rgba(10,27,46,0.16); }
.process-item{ position:relative; display:grid; grid-template-columns:60px 1fr; gap:32px; padding-bottom:56px; }
.process-item:last-child{ padding-bottom:0; }
.process-num{ position:relative; z-index:1; width:60px; height:60px; border-radius:50%; border:1px solid var(--gold); background:var(--navy); display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--gold); }
.process-body h3{ font-size:1.4rem; color:var(--navy); padding-top:12px; }
.process-body p{ margin-top:10px; font-size:1rem; line-height:1.7; color:var(--stone); max-width:560px; }
@media (max-width:640px){ .process-item{ grid-template-columns:48px 1fr; gap:20px; } .process-num{ width:48px; height:48px; font-size:1.2rem; } .process-list::before{ left:23px; } }

/* ---------- Why choose us ---------- */
.whyus{ background:var(--green-deep); color:var(--ivory); padding:120px 0; }
.whyus-inner{ display:grid; grid-template-columns:240px 1fr; gap:64px; }
.whyus p{ font-family:'Cormorant Garamond',serif; font-style:italic; font-size:clamp(1.5rem,1.4rem + 1vw,2.3rem); line-height:1.55; color:var(--ivory); border-left:1px solid var(--gold); padding-left:36px; }
@media (max-width:860px){ .whyus-inner{ grid-template-columns:1fr; gap:28px; } .whyus p{ padding-left:22px; } }

/* ---------- Final CTA ---------- */
.cta-final{ position:relative; background:var(--navy-deep); color:var(--ivory); padding:150px 0; text-align:center; overflow:hidden; }
.cta-final-inner{ position:relative; max-width:640px; margin:0 auto; }
.cta-final h2{ font-size:clamp(2.1rem,2vw + 1.4rem,3.4rem); color:var(--ivory); }
.cta-final p{ margin-top:24px; font-size:1.15rem; line-height:1.7; color:rgba(247,244,238,0.75); }
.cta-final .btn{ margin-top:44px; }

/* ---------- Footer ---------- */
.site-footer{ background:var(--navy-deep); color:rgba(247,244,238,0.65); padding:80px 0 32px; border-top:1px solid rgba(201,160,82,0.2); }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:48px; }
.footer-brand{ display:flex; align-items:center; gap:12px; margin-bottom:20px; }
.footer-brand img{ height:34px; }
.footer-brand span{ font-family:'Cormorant Garamond',serif; font-size:1.5rem; color:var(--ivory); letter-spacing:0.08em; }
.footer-tagline{ font-size:0.9rem; color:rgba(247,244,238,0.55); max-width:280px; line-height:1.6; }
.footer-values{ margin-top:22px; font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); line-height:2; }
.footer-col h4{ font-family:'Inter',sans-serif; font-size:0.72rem; letter-spacing:0.16em; text-transform:uppercase; color:rgba(247,244,238,0.4); margin-bottom:20px; font-weight:600; }
.footer-col a, .footer-col p{ display:block; font-size:0.92rem; color:rgba(247,244,238,0.72); margin-bottom:13px; }
.footer-col a:hover{ color:var(--gold); }
.footer-bottom{ margin-top:72px; padding-top:28px; border-top:1px solid rgba(247,244,238,0.1); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:0.78rem; color:rgba(247,244,238,0.4); }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; gap:36px; } }
