@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,900&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root{
  --paper:#EDEEE5;
  --paper-raised:#F6F6F0;
  --ink:#20261F;
  --band:#2C5449;
  --band-dark:#213F37;
  --band-text:#F3F1E4;
  --gold:#C7973F;
  --gold-dark:#A87A2C;
  --muted:#5B6459;
  --rule: rgba(32,38,31,0.18);
  --rule-strong: rgba(32,38,31,0.32);
  --max: 1080px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'IBM Plex Sans', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1, h2, h3{
  font-family:'Fraunces', serif;
  font-weight:700;
  line-height:1.1;
  margin:0;
}

p{ margin:0; }

a{ color:inherit; }

img{ max-width:100%; display:block; }

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 24px;
}

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:3px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:13px 22px;
  border-radius:8px;
  font-family:'IBM Plex Sans', sans-serif;
  font-weight:600;
  font-size:0.98rem;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform 0.15s ease, background 0.15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-gold{
  background:var(--gold);
  color:var(--ink);
}
.btn-gold:hover{ background:var(--gold-dark); }
.btn-outline{
  background:transparent;
  border-color:var(--band-text);
  color:var(--band-text);
}
.btn-outline:hover{ background:rgba(243,241,228,0.1); }
.btn-outline-ink{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline-ink:hover{ background:rgba(32,38,31,0.06); }

/* ---------- Nav ---------- */
.site-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--paper);
  border-bottom:1px solid var(--rule);
}
.site-nav .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:72px;
}
.nav-brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--ink);
}
.nav-brand img{ width:36px; height:36px; }
.nav-brand span{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.15rem;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links a{
  text-decoration:none;
  font-size:0.95rem;
  font-weight:500;
  color:var(--ink);
  padding:6px 2px;
  border-bottom:2px solid transparent;
}
.nav-links a:hover{ border-color:var(--gold); }
.nav-cta{ display:flex; align-items:center; gap:16px; }
.nav-toggle{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
}
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width:820px){
  .nav-links{
    position:absolute;
    top:72px; left:0; right:0;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    border-bottom:1px solid var(--rule);
    max-height:0;
    overflow:hidden;
    transition:max-height 0.25s ease;
  }
  .nav-links.open{ max-height:400px; }
  .nav-links li{ width:100%; }
  .nav-links a{
    display:block;
    padding:14px 24px;
    border-bottom:1px solid var(--rule);
    border-left:2px solid transparent;
  }
  .nav-links a:hover{ border-left-color:var(--gold); border-color:var(--rule); }
  .nav-cta .btn-outline-ink{ display:none; }
  .nav-toggle{ display:block; }
}

/* ---------- Hero ---------- */
.hero{
  background:var(--band);
  color:var(--band-text);
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;
  align-items:center;
  padding-top:72px;
  padding-bottom:72px;
}
.hero h1{
  font-size:2.9rem;
  color:#fff;
  max-width:14ch;
}
.hero .lede{
  margin-top:18px;
  font-size:1.15rem;
  color:var(--band-text);
  max-width:42ch;
}
.hero .cta-row{
  margin-top:32px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.hero .reach{
  margin-top:22px;
  font-size:0.92rem;
  color:#CFE0D4;
}
.hero .reach a{ text-decoration:underline; text-underline-offset:3px; }

.hero-medallion{
  justify-self:center;
}
.hero-medallion img{
  width:min(280px, 60vw);
  height:auto;
}

@media (max-width:820px){
  .hero .wrap{
    grid-template-columns:1fr;
    padding-top:40px;
    padding-bottom:48px;
    text-align:left;
  }
  .hero-medallion{ justify-self:start; margin-top:8px; }
  .hero h1{ font-size:2.2rem; max-width:none; }
}

/* ---------- Section shell ---------- */
section{ padding:76px 0; }
.section-head{ max-width:56ch; margin-bottom:44px; }
.section-head h2{ font-size:2rem; }
.section-head p{ margin-top:12px; color:var(--muted); font-size:1.05rem; }

.alt-bg{ background:var(--paper-raised); }

/* ---------- Services grid ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:36px 28px;
}
.service{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.service .icon{
  width:44px; height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--band);
}
.service .icon svg{ width:100%; height:100%; }
.service h3{
  font-family:'IBM Plex Sans', sans-serif;
  font-weight:600;
  font-size:1.02rem;
}
.service p{ color:var(--muted); font-size:0.92rem; }

@media (max-width:820px){
  .services-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:520px){
  .services-grid{ grid-template-columns:1fr; }
}

/* ---------- How it works ---------- */
.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:8px;
  counter-reset:step;
}
.step{
  position:relative;
  padding-top:20px;
  border-top:3px solid var(--gold);
}
.step .num{
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.6rem;
  color:var(--gold-dark);
}
.step h3{
  margin-top:10px;
  font-family:'IBM Plex Sans', sans-serif;
  font-weight:600;
  font-size:1.02rem;
}
.step p{ margin-top:6px; color:var(--muted); font-size:0.92rem; }

@media (max-width:820px){
  .steps{ grid-template-columns:repeat(2, 1fr); gap:28px 24px; }
}
@media (max-width:520px){
  .steps{ grid-template-columns:1fr; }
}

/* ---------- Pricing ---------- */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-top:1px dashed var(--rule-strong);
  border-left:1px dashed var(--rule-strong);
}
.price-card{
  padding:32px 28px;
  border-right:1px dashed var(--rule-strong);
  border-bottom:1px dashed var(--rule-strong);
}
.price-card h3{
  font-family:'IBM Plex Sans', sans-serif;
  font-weight:600;
  font-size:1.05rem;
}
.price-card .amount{
  margin-top:14px;
  font-family:'Fraunces', serif;
  font-weight:700;
  font-size:1.9rem;
  color:var(--band);
}
.price-card .desc{
  margin-top:10px;
  color:var(--muted);
  font-size:0.95rem;
}

@media (max-width:820px){
  .pricing-grid{ grid-template-columns:1fr; }
}

.pricing-note{
  margin-top:28px;
  padding-top:20px;
  border-top:1px dashed var(--rule-strong);
  font-size:0.95rem;
  color:var(--muted);
}
.pricing-note b{ color:var(--band); }

/* ---------- Why us ---------- */
.why-list{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px 40px;
  list-style:none;
  margin:0;
  padding:0;
}
.why-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding-bottom:20px;
  border-bottom:1px solid var(--rule);
}
.why-list .tick{
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background:var(--band);
  color:var(--band-text);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.85rem;
}
.why-list p{ font-size:1rem; padding-top:2px; }

@media (max-width:640px){
  .why-list{ grid-template-columns:1fr; }
}

/* ---------- Contact / Footer ---------- */
.contact{
  background:var(--band);
  color:var(--band-text);
}
.contact .wrap{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:28px;
}
.contact h2{ color:#fff; font-size:1.9rem; }
.contact .lines{ margin-top:14px; color:var(--band-text); font-size:1.02rem; }
.contact .lines a{ text-decoration:underline; text-underline-offset:3px; }
.contact .cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

footer{
  background:var(--band-dark);
  color:#CFE0D4;
  font-size:0.85rem;
  padding:22px 0;
}
footer .wrap{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}