:root{
  --bg:#f7f3ee;
  --paper:#fffdf9;
  --ink:#17212a;
  --muted:#60707c;
  --line:rgba(23,33,42,.10);
  --soft:#efe8df;
  --card:#fffaf4;
  --accent:#7a8f78;
  --accent-2:#cab18d;
  --accent-3:#d9dfe7;
  --shadow:0 28px 70px rgba(33,40,52,.08);
  --radius-xl:34px;
  --radius-lg:24px;
  --radius-md:18px;
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(202,177,141,.18), transparent 28%),
    radial-gradient(circle at top right, rgba(122,143,120,.13), transparent 28%),
    linear-gradient(180deg, #fcfaf6 0%, #f6f1ea 100%);
  line-height:1.6;
}

h1,h2,h3,h4,p{margin:0}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{width:min(calc(100% - 40px), var(--max)); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(12px);
  background:rgba(252,250,246,.78);
  border-bottom:1px solid rgba(23,33,42,.06);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; min-height:78px;
}
.brand{
  display:flex; align-items:center; gap:14px; font-weight:700; letter-spacing:.01em;
}
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  background:linear-gradient(135deg, rgba(122,143,120,.88), rgba(202,177,141,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65), 0 16px 28px rgba(62,71,84,.16);
  position:relative;
}
.brand-mark::before,
.brand-mark::after{
  content:""; position:absolute; border-radius:999px;
  background:rgba(255,255,255,.75);
}
.brand-mark::before{width:18px; height:3px; left:13px; top:15px}
.brand-mark::after{width:12px; height:3px; left:16px; top:24px}
.nav{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  padding:10px 14px; border-radius:999px; color:#32424f; font-size:.95rem;
}
.nav a:hover{background:rgba(23,33,42,.05)}
.nav .cta{
  background:#1a232b; color:#fff; box-shadow:var(--shadow);
}

.hero{
  padding:42px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0,1.5fr) minmax(320px,.92fr);
  gap:24px;
  align-items:stretch;
}
.hero-main,
.hero-rail,
.surface,
.guide-card,
.note,
.panel,
.faq-item,
.form-shell,
.page-hero,
.content-card{
  background:rgba(255,253,249,.92);
  border:1px solid rgba(23,33,42,.08);
  box-shadow:var(--shadow);
}

.hero-main{
  border-radius:40px;
  padding:42px;
  display:grid;
  grid-template-columns:minmax(0,1.2fr) 220px;
  gap:28px;
  min-height:540px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,250,244,.96)),
    linear-gradient(135deg, rgba(122,143,120,.12), rgba(202,177,141,.12));
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(23,33,42,.08);
  background:rgba(255,255,255,.72);
  color:#42515d;
  font-size:.9rem;
  margin-bottom:22px;
}
.eyebrow::before{
  content:"";
  width:8px;height:8px;border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
}
.hero h1{
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size:clamp(2.8rem, 5vw, 5.2rem);
  line-height:.95;
  letter-spacing:-.04em;
  max-width:10ch;
}
.hero-copy{
  margin-top:18px;
  max-width:58ch;
  font-size:1.08rem;
  color:#41525d;
}
.hero-actions{
  display:flex; flex-wrap:wrap; gap:14px; margin-top:28px;
}
.button{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:50px; padding:0 18px; border-radius:999px;
  border:1px solid rgba(23,33,42,.09);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover{transform:translateY(-1px)}
.button.primary{
  background:#1b242c; color:#fff; box-shadow:0 16px 32px rgba(27,36,44,.18);
}
.button.secondary{background:rgba(255,255,255,.74)}

.hero-side{
  display:flex; flex-direction:column; gap:14px;
}
.mini-panel{
  border-radius:22px;
  padding:18px;
  background:linear-gradient(180deg, rgba(244,239,232,.88), rgba(255,253,249,.98));
  border:1px solid rgba(23,33,42,.08);
}
.mini-panel h3{font-size:.95rem; color:#40505d; margin-bottom:8px}
.mini-panel p{font-size:.95rem; color:#6a7984}
.hero-rail{
  border-radius:36px;
  padding:22px;
  display:grid;
  gap:18px;
  align-content:start;
  background:
    linear-gradient(180deg, rgba(246,242,235,.9), rgba(255,253,249,.96));
}
.rail-card{
  border-radius:24px;
  padding:22px;
  border:1px solid rgba(23,33,42,.08);
  background:rgba(255,255,255,.68);
}
.rail-card h3{
  font-size:1rem; color:#3e4d5b; margin-bottom:12px;
}
.rail-card strong{
  display:block;
  font-size:2rem;
  letter-spacing:-.04em;
  margin-bottom:4px;
}
.rail-list{display:grid; gap:12px}
.rail-item{
  display:grid; grid-template-columns:32px 1fr; gap:12px; align-items:start;
}
.rail-index{
  width:32px;height:32px;border-radius:50%;
  display:grid;place-items:center;
  font-size:.9rem; font-weight:700;
  background:rgba(122,143,120,.14);
  color:#33423f;
}
.rail-item p{color:#596972; font-size:.95rem}

.section{
  padding:28px 0;
}
.section-grid{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) minmax(260px,.82fr);
  gap:24px;
}
.section-head{
  padding:34px;
  border-radius:34px;
}
.section-head h2{
  font-family: "Iowan Old Style", Georgia, serif;
  font-size:clamp(2rem, 3vw, 3.3rem);
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:14px;
}
.section-head p{max-width:58ch; color:#566671}
.side-stack{
  display:grid; gap:18px;
}
.note{
  padding:24px; border-radius:28px;
  background:linear-gradient(180deg, rgba(255,251,245,.9), rgba(245,239,231,.96));
}
.note small{
  display:block; text-transform:uppercase; letter-spacing:.12em;
  color:#74828b; margin-bottom:10px; font-size:.76rem;
}
.note p{color:#55646f}

.guides-wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
.guide-card{
  border-radius:30px;
  padding:28px;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(220px,.58fr);
  gap:22px;
  background:linear-gradient(180deg, rgba(255,254,251,.98), rgba(249,244,236,.96));
}
.guide-tag{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(122,143,120,.14);
  color:#344540;
  font-size:.86rem;
  margin-bottom:16px;
}
.guide-card h3{
  font-family: "Iowan Old Style", Georgia, serif;
  font-size:2rem;
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:12px;
}
.guide-card p{color:#576772; max-width:52ch}
.guide-meta{
  display:grid; align-content:space-between; gap:18px;
}
.price-box{
  border-radius:22px;
  padding:18px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(23,33,42,.08);
}
.price-box span{
  display:block; color:#75838d; font-size:.88rem; margin-bottom:4px;
}
.price-box strong{
  display:block; font-size:2.2rem; letter-spacing:-.05em;
}
.guide-bullets{
  display:grid; gap:8px; color:#4d5d68; font-size:.95rem;
}
.guide-bullets div{
  padding-left:18px; position:relative;
}
.guide-bullets div::before{
  content:""; width:7px; height:7px; border-radius:999px;
  background:linear-gradient(135deg, var(--accent), var(--accent-2));
  position:absolute; left:0; top:.65em;
}

.panel-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.panel{
  border-radius:28px; padding:24px;
}
.panel strong{
  display:block; font-size:1.15rem; margin-bottom:10px;
}
.panel p{color:#5b6b76}
.panel .number{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:rgba(202,177,141,.16);
  color:#50412e;
  font-weight:800;
  margin-bottom:16px;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.faq-item{
  border-radius:26px; padding:24px;
}
.faq-item h3{margin-bottom:10px; font-size:1.06rem}
.faq-item p{color:#596973}

.form-shell{
  border-radius:36px;
  padding:32px;
  background:linear-gradient(180deg, rgba(248,244,237,.95), rgba(255,253,249,.98));
}
.form-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.8fr);
  gap:24px;
}
.form-copy h2{
  font-family:"Iowan Old Style", Georgia, serif;
  font-size:clamp(2.1rem, 3.2vw, 3.4rem);
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:12px;
}
.form-copy p{color:#566671; max-width:54ch}
.form-points{
  display:grid; gap:10px; margin-top:18px; color:#4c5d68;
}
.form-points div{
  padding:12px 14px; border-radius:16px;
  background:rgba(255,255,255,.76); border:1px solid rgba(23,33,42,.07);
}
.form-box{
  display:grid; gap:12px;
}
label{
  font-size:.9rem; color:#42515c; display:grid; gap:8px;
}
input, textarea, select{
  width:100%;
  border:1px solid rgba(23,33,42,.12);
  background:rgba(255,255,255,.84);
  color:var(--ink);
  border-radius:18px;
  padding:14px 16px;
  font:inherit;
  outline:none;
}
input:focus, textarea:focus, select:focus{
  border-color:rgba(122,143,120,.7);
  box-shadow:0 0 0 4px rgba(122,143,120,.12);
}
textarea{min-height:128px; resize:vertical}

.footer{
  padding:28px 0 44px;
}
.footer-shell{
  border-radius:34px;
  padding:28px;
  background:rgba(26,35,43,.96);
  color:#eef3f5;
  box-shadow:0 30px 70px rgba(19,26,33,.28);
}
.footer-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) repeat(2, minmax(180px,.55fr));
  gap:24px;
}
.footer-shell p, .footer-shell a{color:rgba(238,243,245,.8)}
.footer-links{display:grid; gap:10px}
.footer small{
  display:block; margin-top:18px; color:rgba(238,243,245,.7)
}

.page-wrap{
  padding:40px 0 28px;
}
.page-hero{
  border-radius:38px;
  padding:34px;
  margin-bottom:20px;
  background:linear-gradient(180deg, rgba(255,253,249,.96), rgba(247,241,233,.96));
}
.page-hero h1{
  font-family:"Iowan Old Style", Georgia, serif;
  font-size:clamp(2.5rem, 4vw, 4.1rem);
  line-height:1;
  letter-spacing:-.04em;
  margin-bottom:10px;
}
.page-hero p{max-width:65ch; color:#566671}
.content-grid{
  display:grid; gap:18px;
}
.content-card{
  border-radius:30px; padding:28px;
}
.content-card h2{
  font-family:"Iowan Old Style", Georgia, serif;
  font-size:1.8rem; letter-spacing:-.03em;
  margin-bottom:12px;
}
.content-card h3{
  font-size:1rem; margin:18px 0 8px;
}
.content-card p, .content-card li{color:#566671}
.content-card ul{
  margin:10px 0 0 20px; padding:0; display:grid; gap:8px;
}
.back-link{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(23,33,42,.08);
  background:rgba(255,255,255,.78);
  margin-bottom:18px;
}

.disclaimer{
  margin-top:18px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(23,33,42,.08);
  color:#53626d;
  font-size:.92rem;
}

@media (max-width: 1080px){
  .hero-grid,
  .section-grid,
  .form-grid,
  .footer-grid,
  .guide-card,
  .hero-main{
    grid-template-columns:1fr;
  }
  .hero-main{min-height:auto}
  .panel-grid,
  .faq-grid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .container{width:min(calc(100% - 24px), var(--max))}
  .topbar-inner{padding:10px 0}
  .nav{gap:6px}
  .nav a{padding:9px 12px; font-size:.92rem}
  .hero{padding-top:20px}
  .hero-main,
  .hero-rail,
  .section-head,
  .guide-card,
  .panel,
  .faq-item,
  .form-shell,
  .page-hero,
  .content-card,
  .footer-shell{padding:22px}
  .hero h1{max-width:unset}
}