:root{
  --paper:#FAF7F1;
  --ink:#151B2B;
  --navy:#1E2B4F;
  --navy-deep:#131E3A;
  --sand:#C99B5F;
  --sand-soft:#EDE3D2;
  --line:rgba(21,27,43,.14);
  --radius:14px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--paper);
  color:var(--ink);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{font-family:'Lora',Georgia,serif;font-weight:500;line-height:1.14;letter-spacing:-0.01em}
em{font-style:italic;font-weight:400;color:var(--sand)}
.strip em,.cta em,.post em{font-style:inherit;font-family:inherit;font-weight:inherit;color:inherit}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:1160px;margin:0 auto;padding:0 24px}
.wrap-narrow{max-width:800px;margin:0 auto;padding:0 24px}
.eyebrow{
  font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--navy);display:inline-flex;align-items:center;gap:10px;margin-bottom:18px;
}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--sand)}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 26px;border-radius:999px;font-weight:600;font-size:15px;
  transition:transform .15s ease,box-shadow .15s ease,background .15s ease;
  cursor:pointer;border:1px solid transparent;
}
.btn:focus-visible{outline:3px solid var(--sand);outline-offset:2px}
.btn-primary{background:var(--navy);color:var(--paper)}
.btn-primary:hover{background:var(--navy-deep);transform:translateY(-1px)}
.btn-ghost{border-color:var(--line);color:var(--ink);background:transparent}
.btn-ghost:hover{border-color:var(--ink)}
.btn-sand{background:var(--sand);color:var(--navy-deep)}
.btn-sand:hover{filter:brightness(1.05);transform:translateY(-1px)}

/* LOGO MARK */
.logo{display:inline-flex;align-items:center}
.logo-mark{width:34px;height:auto;flex:none;margin-right:9px}
.hero{position:relative;overflow:hidden}
.hero .wrap{position:relative;z-index:1}
.page-hero{position:relative;overflow:hidden}
.hero::after,
.page-hero::after{
  content:"";position:absolute;right:-40px;bottom:-18px;width:240px;height:142px;
  background:url("/assets/logo-mark.png") no-repeat center/contain;
  opacity:.22;pointer-events:none;
}
.page-hero .wrap,.page-hero .wrap-narrow{position:relative;z-index:1}
.hero::after{width:330px;height:195px;right:-48px;bottom:-24px}
@media(max-width:900px){.hero::after,.page-hero::after{width:160px;height:95px;right:-24px}}

/* NAV */
header{
  position:sticky;top:0;z-index:50;
  background:rgba(250,247,241,.88);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{font-family:'Lora',Georgia,serif;font-size:23px;font-weight:600;letter-spacing:-.01em}
.logo span{color:#C9AF7E;margin-left:2.5px}
.nav-links{display:flex;gap:34px;font-size:15px;font-weight:500}
.nav-links a{opacity:.85;transition:opacity .15s}
.nav-links a:hover,.nav-links a.active{opacity:1}
.nav-links a.active{color:var(--navy);border-bottom:2px solid var(--sand)}
.nav .btn{padding:10px 20px}
.menu-btn{display:none;background:none;border:none;font-size:26px;cursor:pointer;color:var(--ink)}

/* HERO (home) */
.hero{padding:96px 0 72px;position:relative;overflow:hidden}
.hero h1{font-size:clamp(40px,6vw,72px);max-width:24ch;text-wrap:balance}
@media(max-width:760px){.br-lg{display:none}}
.hero p{max-width:52ch;margin:28px 0 36px;font-size:18px;color:rgba(21,27,43,.78)}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}

/* PAGE HERO (inner pages) */
.page-hero{padding:84px 0 56px}
.page-hero h1{font-size:clamp(36px,5vw,60px);max-width:18ch}
.page-hero p{max-width:56ch;margin-top:24px;font-size:18px;color:rgba(21,27,43,.78)}

.page-hero.center{text-align:center}
.page-hero .h1-sm{font-size:clamp(30px,4vw,48px)}
.page-hero.center h1{margin-left:auto;margin-right:auto}
.page-hero.center p{margin-left:auto;margin-right:auto}
.page-hero.center .eyebrow{justify-content:center}
.page-hero.center .eyebrow::after{content:"";width:26px;height:1px;background:var(--sand)}

.page-hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:44px;align-items:center}
.page-hero-grid img{border-radius:var(--radius);border:1px solid var(--line);width:100%;height:auto;box-shadow:0 18px 44px rgba(21,27,43,.10)}
@media(max-width:900px){.page-hero-grid{grid-template-columns:1fr}}

/* SECTIONS */
.strip{background:var(--navy);color:var(--paper);padding:64px 0}
.strip h2{font-size:clamp(26px,3.4vw,40px);max-width:26ch}
.strip em{color:var(--sand)}
.section{padding:96px 0}
.section-head{max-width:640px;margin-bottom:56px}
.section-head h2{font-size:clamp(30px,4vw,48px)}

/* CARDS */
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:34px 30px;transition:transform .2s ease,box-shadow .2s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:0 14px 34px rgba(21,27,43,.08)}
.card h3{font-size:22px;margin:0 0 14px}
.card p{color:rgba(21,27,43,.75);font-size:15px}
.card .mark{
  width:44px;height:44px;border-radius:10px;background:var(--sand-soft);
  display:flex;align-items:center;justify-content:center;margin-bottom:22px;
  color:var(--navy);
}
.card .mark svg{width:24px;height:24px}

/* SERVICE PILLARS */
.services-bg{background:var(--sand-soft)}
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:44px}
.pillar{background:#fff;border-radius:var(--radius);padding:36px 30px;border:1px solid var(--line)}
.pillar .tag{font-size:11px;font-weight:600;letter-spacing:.13em;text-transform:uppercase;color:var(--sand);margin-bottom:10px}
.pillar h3{font-size:21px;margin-bottom:12px}
.pillar>p{font-size:14.5px;color:rgba(21,27,43,.72);margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid var(--line)}
.pillar ul{list-style:none;display:grid;gap:9px}
.pillar li{font-size:14.5px;display:flex;gap:10px;align-items:baseline}
.pillar li::before{content:"•";color:var(--sand);flex:none;font-size:13px;line-height:inherit}

/* ROADMAP */
.rm-gate{display:flex;gap:10px;flex-wrap:wrap}
.rm-gate input{padding:13px 18px;border:1px solid var(--line);border-radius:999px;font:inherit;font-size:15px;min-width:250px;background:#fff;color:var(--ink)}
.rm-gate input:focus{outline:2px solid var(--sand);border-color:var(--sand)}
.rm-gate-note{font-size:12.5px;color:rgba(21,27,43,.55);margin-top:10px}
.rm-gate-done{font-size:15px;font-weight:600;color:var(--navy)}
.rm-gate-done a{text-decoration:underline;color:#8A6A38}

.rm-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.rm-grid .pillar h3{font-size:19px}
.rm-tie{display:inline-block;margin-top:20px;padding-top:16px;border-top:1px solid var(--line);font-size:14px;font-weight:600;color:var(--navy);width:100%}
.rm-tie:hover{color:#8A6A38}
.rm-cover{display:flex;justify-content:center}
.rm-cover-card{
  background:var(--navy);color:var(--paper);border-radius:var(--radius);
  padding:44px 38px;max-width:360px;width:100%;display:flex;flex-direction:column;gap:18px;
  box-shadow:0 18px 44px rgba(21,27,43,.18);
  background-image:url("/assets/logo-mark.png");background-repeat:no-repeat;
  background-position:right -52px bottom -20px;background-size:180px;
}
.rm-cover-card span{font-size:11px;letter-spacing:.16em;color:var(--sand);font-weight:600}
.rm-cover-card strong{font-family:'Lora',Georgia,serif;font-weight:500;font-size:28px;line-height:1.2}
.rm-cover-stages{
  font-size:13px;color:rgba(250,247,241,.75);
  display:grid;grid-template-columns:auto auto;justify-content:start;gap:7px 20px;
}
.rm-cover-stages > div{white-space:nowrap}
.rm-cover-stages b{color:var(--sand)}
.rm-table-wrap{background:#fff;border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;max-width:900px;margin:0 auto}
.rm-table{width:100%;border-collapse:collapse;font-size:15px}
.rm-table th{text-align:left;padding:16px 20px;background:var(--sand-soft);font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:var(--navy)}
.rm-table td{padding:14px 20px;border-top:1px solid var(--line)}
.rm-table td:first-child{font-weight:600;color:var(--navy)}
.rm-table td:last-child{white-space:nowrap}
@media(max-width:900px){
  .rm-grid{grid-template-columns:1fr}
  .rm-table{font-size:13.5px}
  .rm-table td:last-child{white-space:normal}
}

/* STEPS */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.step{border-top:2px solid var(--sand);padding-top:22px}
.step .num{font-family:'Lora',Georgia,serif;font-style:italic;color:var(--sand);font-size:19px;margin-bottom:10px}
.step h3{font-size:20px;margin-bottom:10px}
.step p{font-size:15px;color:rgba(21,27,43,.75)}

/* TOOLS */
.tools-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:14px}
.tool{
  background:#fff;border:1px solid var(--line);border-radius:10px;
  padding:22px 10px 16px;text-align:center;font-weight:600;font-size:14px;color:var(--navy);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:10px;
  min-height:104px;transition:transform .15s ease;
}
.tool:hover{transform:translateY(-2px)}
.tool img{height:34px;width:auto;opacity:.9}
.tool .wordmark{font-weight:700;font-size:19px;letter-spacing:-.01em;color:var(--navy);line-height:34px}
.tool small{display:block;font-weight:500;font-size:11px;color:rgba(21,27,43,.55)}

/* BLOG CARDS */
.posts{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.post{
  background:var(--navy);color:var(--paper);border-radius:var(--radius);
  padding:38px 34px;display:flex;flex-direction:column;gap:16px;min-height:240px;
  transition:transform .2s ease;
}
.post:hover{transform:translateY(-4px)}
.post .cat{font-size:11px;letter-spacing:.13em;text-transform:uppercase;color:var(--sand);font-weight:600}
.post h3{font-size:clamp(20px,2.2vw,26px);flex:1}
.post .read{font-size:14px;font-weight:600;color:var(--sand)}
.post .date{font-size:13px;color:rgba(250,247,241,.65)}

/* ARTICLE */
.article-head{padding:72px 0 40px;border-bottom:1px solid var(--line);margin-bottom:48px}
.article-head .cat{font-size:12px;letter-spacing:.13em;text-transform:uppercase;color:var(--sand);font-weight:600;display:block;margin-bottom:16px}
.article-head h1{font-size:clamp(30px,4.4vw,50px)}
.article-head .date{margin-top:18px;font-size:14px;color:rgba(21,27,43,.6)}
.article{padding-bottom:96px}
.article h2{font-size:clamp(24px,3vw,32px);margin:44px 0 16px}
.article h3{font-size:20px;margin:32px 0 12px}
.article p{margin-bottom:18px;font-size:16.5px;color:rgba(21,27,43,.86)}
.article ul,.article ol{margin:0 0 18px 22px;display:grid;gap:8px;font-size:16.5px;color:rgba(21,27,43,.86)}
.article strong{font-weight:600;color:var(--ink)}
.article .lead{font-size:19px;color:rgba(21,27,43,.75)}
.article .outro{
  background:var(--sand-soft);border-radius:var(--radius);padding:26px 28px;
  font-style:italic;margin-top:40px;
}

/* FAQ */
.faq-list{max-width:800px;display:grid;gap:12px}
.faq-list details{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:22px 26px;
}
.faq-list summary{
  font-family:'Lora',Georgia,serif;font-size:19px;font-weight:500;cursor:pointer;
  list-style:none;display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:"+";font-family:'Inter';color:var(--sand);font-size:24px;flex:none;transition:transform .2s}
.faq-list details[open] summary::after{transform:rotate(45deg)}
.faq-list details p{margin-top:14px;color:rgba(21,27,43,.78);font-size:15.5px}

/* ABOUT */
.founder-grid{display:grid;grid-template-columns:240px 1fr;gap:36px;align-items:start}
.founder-photo{max-width:240px}
@media(max-width:900px){
  .founder-grid{grid-template-columns:1fr}
  .founder-photo{max-width:240px}
}
.strip-light{background:var(--sand-soft);color:var(--ink)}
.strip-light .statement{color:var(--ink)}
.strip-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.team-photo-side{max-width:480px;justify-self:end}
.team-photo-side figcaption{color:rgba(21,27,43,.6)}
@media(max-width:900px){
  .strip-grid{grid-template-columns:1fr}
  .team-photo-side{max-width:100%;justify-self:start}
}
.about-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:28px;align-items:start}
.team-photo img{border-radius:var(--radius);border:1px solid var(--line);width:100%;height:auto}
.team-photo figcaption{font-size:13.5px;color:rgba(21,27,43,.6);margin-top:12px;line-height:1.5}
@media(max-width:900px){.about-grid{grid-template-columns:1fr}}
.founder{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:44px 40px;max-width:800px;
}
.founder p{margin-bottom:18px;font-size:16.5px;color:rgba(21,27,43,.86)}
.founder .sig{font-family:'Lora',Georgia,serif;font-style:italic;font-size:19px;color:var(--navy);margin-top:26px}
.statement{font-family:'Lora',Georgia,serif;font-weight:500;font-size:clamp(22px,2.8vw,30px);line-height:1.4;font-weight:500;max-width:34ch}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:24px}
.contact-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:40px 36px}
.contact-card h3{font-size:22px;margin-bottom:12px}
.contact-card p{font-size:15.5px;color:rgba(21,27,43,.75);margin-bottom:22px}
.contact-card .detail{font-size:15px;margin-bottom:10px;display:flex;gap:10px;align-items:baseline}
.contact-card .detail::before{content:"•";color:var(--sand);font-size:13px}

/* HOME CLOSING INSIGHTS */
.cta-insights{padding:96px 24px;text-align:center}
.cta-insights h2{margin:0 auto 40px}
.eyebrow-light{color:var(--sand)}
.eyebrow-light::before{background:var(--sand)}
.cta-insights .eyebrow{justify-content:center}
.cta-insights .eyebrow::after{content:"";width:26px;height:1px;background:var(--sand)}
.posts-light{text-align:left;margin-bottom:44px}
.post-white{background:#fff;color:var(--ink);padding:0;overflow:hidden;border:1px solid rgba(21,27,43,.14)}
.post-white .post-body{display:flex;flex-direction:column;gap:12px;padding:26px 28px;flex:1}
.post-white h3{color:var(--ink)}
.post-white .cat{color:#B0803E}
.post-white .read{color:var(--navy)}

/* CTA */
.cta{background:var(--navy-deep);color:var(--paper);text-align:center;padding:110px 24px}
.cta h2{font-size:clamp(32px,4.6vw,56px);max-width:20ch;margin:0 auto 34px}

/* FOOTER */
footer{padding:64px 0 40px;border-top:1px solid var(--line)}
.foot-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;margin-bottom:48px}
.foot-grid h4{font-size:12px;letter-spacing:.13em;text-transform:uppercase;color:rgba(21,27,43,.55);margin-bottom:14px;font-weight:600}
.foot-grid h4 a.foot-head{display:inline-block;font-size:inherit;letter-spacing:inherit;text-transform:inherit;color:inherit;font-weight:inherit;margin-bottom:0;opacity:1;text-decoration:none}
.foot-grid h4 a.foot-head:hover{color:var(--sand);opacity:1}
.foot-grid a{display:block;font-size:14.5px;margin-bottom:9px;opacity:.85}
.foot-grid a:hover{opacity:1}
.foot-note{font-size:13px;color:rgba(21,27,43,.55);display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;border-top:1px solid var(--line);padding-top:26px}


/* CENTERED VARIANTS */
.hero-c .wrap{text-align:center}
.hero-c h1{margin-left:auto;margin-right:auto}
.hero-c p{margin-left:auto;margin-right:auto}
.hero-c .hero-actions{justify-content:center}
.hero-c .eyebrow{justify-content:center}
.hero-c .eyebrow::after{content:"";width:26px;height:1px;background:var(--sand)}
.strip-c{margin-left:auto;margin-right:auto;text-align:center}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;max-width:680px}
.section-head.center .eyebrow::after{content:"";width:26px;height:1px;background:var(--sand)}

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

@media(max-width:900px){
  .cards,.pillars,.steps{grid-template-columns:1fr}
  .tools-grid{grid-template-columns:repeat(3,1fr)}
  .posts,.contact-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
  .nav-links{
    display:none;position:absolute;top:72px;left:0;right:0;
    background:var(--paper);flex-direction:column;gap:0;padding:8px 24px 20px;
    border-bottom:1px solid var(--line);
  }
  .nav-links.open{display:flex}
  .nav-links a{padding:12px 0}
  .nav-links a.active{border-bottom:none}
  .menu-btn{display:block}
  .nav .btn{display:none}
}
