
:root{
  --bg:#f5f2ec;
  --paper:#fffdf9;
  --paper-soft:#faf5ec;
  --ink:#171717;
  --muted:#5d5954;
  --line:#ddd2c3;
  --line-strong:#cfbea4;
  --accent:#29435f;
  --accent-soft:#e8eef6;
  --sand:#b88a42;
  --radius:20px;
  --radius-lg:30px;
  --shadow:0 20px 50px rgba(31, 27, 22, .08);
  --container:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184,138,66,.10), transparent 30%),
    radial-gradient(circle at top right, rgba(41,67,95,.08), transparent 34%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height:1.6;
}
a{color:inherit}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(245,242,236,.9);
  backdrop-filter: blur(12px);
  border-bottom:1px solid rgba(207,190,164,.55);
}
.site-header__inner{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.brand__mark{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg, var(--accent), #41648c);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  letter-spacing:.04em;
  box-shadow:var(--shadow);
}
.brand__text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand__text strong{font-size:15px}
.brand__text small{color:var(--muted); font-size:12px}

.site-nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.site-nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  font-size:14px;
  color:var(--muted);
}
.site-nav a:hover{
  background:#fff;
  color:var(--ink);
}
.site-nav__cta{
  background:var(--accent);
  color:#fff !important;
}

.hero-band{padding:34px 0 10px}
.hero-layout{
  display:grid;
  grid-template-columns:minmax(0, 1.18fr) 360px;
  gap:22px;
  align-items:start;
}
.hero-copy,
.hero-panel__card,
.product-card,
.info-block,
.step-card,
.form-shell,
.note-box,
.legal-card,
.thanks-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-copy{
  border-radius:var(--radius-lg);
  padding:34px;
}
.hero-kicker,
.section-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--sand);
  font-weight:700;
}
.hero-kicker::before,
.section-label::before{
  content:"";
  width:26px;
  height:1px;
  background:currentColor;
}
.hero-copy h1{
  font-family: Georgia, "Times New Roman", serif;
  font-weight:600;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.03em;
  margin:18px 0 16px;
  max-width:12ch;
}
.hero-lead{
  font-size:18px;
  color:#3f3b37;
  max-width:60ch;
  margin:0 0 20px;
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:20px;
}
.hero-points span{
  padding:10px 14px;
  border-radius:999px;
  background:var(--paper-soft);
  border:1px solid var(--line);
  font-size:14px;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}
.disclaimer{
  font-size:12.5px;
  color:var(--muted);
  max-width:70ch;
}

.hero-panel{
  display:grid;
  gap:16px;
}
.hero-panel__card{
  border-radius:24px;
  padding:22px;
}
.hero-panel__card--soft{
  background:linear-gradient(180deg, #faf3e8 0%, #fffdf9 100%);
}
.hero-panel__title{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:var(--muted);
  margin-bottom:12px;
}
.contact-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-top:1px solid var(--line);
  font-size:14px;
}
.contact-row:first-of-type{border-top:0; padding-top:0}
.contact-row span:first-child{color:var(--muted)}

.section{padding:24px 0}
.section--alt{
  background:linear-gradient(180deg, rgba(255,253,249,.28), rgba(255,253,249,.72));
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight:600;
  font-size:38px;
  letter-spacing:-.02em;
}
.section-head p{
  max-width:520px;
  color:var(--muted);
  margin:0;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.product-card{
  border-radius:24px;
  padding:22px;
  display:flex;
  flex-direction:column;
}
.product-card__eyebrow{
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--sand);
  font-weight:700;
  margin-bottom:10px;
}
.product-card__head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:start;
}
.product-card h3{
  margin:0;
  font-size:24px;
  line-height:1.15;
  font-family: Georgia, "Times New Roman", serif;
  font-weight:600;
}
.price-pill{
  white-space:nowrap;
  padding:8px 12px;
  border-radius:999px;
  background:var(--accent-soft);
  color:var(--accent);
  font-weight:700;
  font-size:14px;
}
.product-card__desc{
  color:var(--muted);
  margin:14px 0;
}
.feature-list{
  margin:0 0 18px;
  padding-left:18px;
}
.feature-list li{margin:8px 0}
.ghost-link{
  margin-top:auto;
  text-decoration:none;
  display:inline-flex;
  align-self:flex-start;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line-strong);
  background:#fff;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.info-block{
  border-radius:24px;
  padding:24px;
}
.info-block h3{
  margin:0 0 10px;
  font-size:22px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight:600;
}
.info-block p{margin:0; color:var(--muted)}

.process-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:14px;
}
.step-card{
  border-radius:24px;
  padding:20px;
}
.step-card__num{
  display:inline-flex;
  margin-bottom:14px;
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  background:var(--paper-soft);
  border:1px solid var(--line);
  color:var(--sand);
  font-weight:700;
}
.step-card h3{
  margin:0 0 8px;
  font-size:20px;
}
.step-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.faq-list{
  display:grid;
  gap:12px;
}
.faq-list details{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:var(--shadow);
}
.faq-list summary{
  cursor:pointer;
  font-weight:600;
}
.faq-list p{
  margin:10px 0 0;
  color:var(--muted);
}

.request-section{padding-bottom:42px}
.request-layout{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:22px;
  align-items:start;
}
.request-copy h2{
  margin:12px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight:600;
  font-size:42px;
  line-height:1.05;
}
.request-copy p{
  color:var(--muted);
  margin:0 0 16px;
  max-width:56ch;
}
.note-box{
  border-radius:22px;
  padding:18px 20px;
  margin:18px 0;
}
.note-box strong{
  display:block;
  margin-bottom:6px;
}
.note-box p{margin:0}

.form-shell{
  border-radius:28px;
  padding:24px;
}
.field-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px;
}
.field{display:block}
.field--full{grid-column:1 / -1}
.field span{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:7px;
}
.field input{
  width:100%;
  height:52px;
  padding:0 15px;
  border-radius:14px;
  border:1px solid var(--line-strong);
  background:#fff;
  font:inherit;
  color:var(--ink);
}
.field input:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(41,67,95,.10);
}

.choice-group{
  margin:18px 0 20px;
  padding:0;
  border:0;
}
.choice-group legend{
  font-size:13px;
  color:var(--muted);
  margin-bottom:12px;
  padding:0;
}
.choice-grid{
  display:grid;
  gap:12px;
}
.choice-card{
  display:block;
  cursor:pointer;
}
.choice-card input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.choice-card__inner{
  display:block;
  padding:16px;
  border-radius:18px;
  border:1px solid var(--line-strong);
  background:var(--paper-soft);
  transition:.2s ease;
}
.choice-card__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:6px;
}
.choice-card__name{
  font-weight:600;
  font-size:16px;
}
.choice-card__price{
  white-space:nowrap;
  font-weight:700;
  color:var(--accent);
}
.choice-card__text{
  display:block;
  color:var(--muted);
  font-size:14px;
}
.choice-card input:checked + .choice-card__inner{
  border-color:var(--accent);
  background:#edf3fa;
  box-shadow:0 0 0 4px rgba(41,67,95,.08);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  border:1px solid transparent;
  transition:.2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--accent);
  color:#fff;
}
.btn--secondary{
  background:#fff;
  color:var(--ink);
  border-color:var(--line-strong);
}
.btn--full{
  width:100%;
  cursor:pointer;
  font:inherit;
}
.form-note{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
  text-align:center;
}

.site-footer{
  border-top:1px solid var(--line);
  background:#efe7db;
}
.site-footer__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
  padding:26px 0 14px;
}
.footer-title{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  margin-bottom:8px;
}
.footer-muted{
  color:var(--muted);
  font-size:14px;
}
.site-footer__bottom{
  padding:0 0 26px;
}
.site-footer__bottom p{
  margin:0;
  color:var(--muted);
  font-size:12.5px;
}

.legal-page,
.thanks-page{
  min-height:100vh;
  background:
    radial-gradient(circle at top left, rgba(184,138,66,.10), transparent 30%),
    radial-gradient(circle at top right, rgba(41,67,95,.08), transparent 34%),
    var(--bg);
}
.legal-top{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
  padding:28px 0 0;
}
.legal-back{
  display:inline-flex;
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.legal-wrap{
  width:min(860px, calc(100% - 40px));
  margin:16px auto 40px;
}
.legal-card{
  border-radius:30px;
  padding:28px;
}
.legal-card h1{
  margin:12px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:42px;
  line-height:1.05;
}
.legal-card h2{
  margin:22px 0 10px;
  font-size:20px;
}
.legal-card p,
.legal-card li{
  color:var(--muted);
}
.legal-foot{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.thanks-wrap{
  min-height:100vh;
  display:grid;
  place-items:center;
  width:min(860px, calc(100% - 40px));
  margin:0 auto;
  padding:30px 0;
}
.thanks-card{
  width:100%;
  border-radius:30px;
  padding:34px;
  text-align:center;
}
.thanks-card h1{
  margin:14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:48px;
  line-height:1.02;
}
.thanks-card p{
  color:var(--muted);
  margin:0 auto 16px;
  max-width:58ch;
}
.thanks-meta{
  display:grid;
  gap:10px;
  margin:20px 0 18px;
}
.thanks-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

@media (max-width: 1100px){
  .hero-layout,
  .request-layout{
    grid-template-columns:1fr;
  }
  .process-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 900px){
  .site-header__inner{
    padding:12px 0;
    min-height:auto;
    align-items:flex-start;
    flex-direction:column;
  }
  .hero-copy h1{font-size:44px; max-width:none}
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .product-grid,
  .benefit-grid,
  .site-footer__grid{
    grid-template-columns:1fr;
  }
  .field-grid{
    grid-template-columns:1fr;
  }
  .field--full{grid-column:auto}
}
@media (max-width: 640px){
  .container{
    width:min(var(--container), calc(100% - 24px));
  }
  .hero-copy,
  .form-shell,
  .product-card,
  .info-block,
  .step-card,
  .thanks-card,
  .legal-card{
    padding:20px;
  }
  .hero-copy h1{font-size:36px}
  .section-head h2,
  .request-copy h2,
  .legal-card h1,
  .thanks-card h1{
    font-size:32px;
  }
  .process-grid{
    grid-template-columns:1fr;
  }
}
