:root{
  --bg:#f7f3ec;
  --paper:#fffdfa;
  --paper-2:#f2ece2;
  --ink:#171411;
  --muted:#6a6159;
  --line:rgba(23,20,17,.09);
  --sage:#91a98b;
  --plum:#80657d;
  --amber:#d2a26b;
  --shadow:0 24px 80px rgba(31,24,18,.08);
  --shadow-soft:0 14px 36px rgba(31,24,18,.06);
  --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 0% 0%, rgba(145,169,139,.15), transparent 32%),
    radial-gradient(circle at 100% 10%, rgba(128,101,125,.12), transparent 24%),
    linear-gradient(180deg,#fbf8f2 0%,#f6f2ea 100%);
  line-height:1.6;
}
h1,h2,h3,h4,p,ul{margin:0}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.container{width:min(calc(100% - 32px),var(--max));margin:0 auto}
.site-shell{padding:18px}
.topbar{
  position:sticky;top:0;z-index:40;
  backdrop-filter:blur(14px);
  background:rgba(251,248,242,.74);
  border:1px solid rgba(23,20,17,.06);
  border-radius:26px;
  box-shadow:var(--shadow-soft);
}
.topbar-inner{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:16px 22px;
}
.brand{
  display:flex;align-items:center;gap:14px;min-width:0
}
.mark{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(145deg,rgba(128,101,125,.18),rgba(145,169,139,.24));
  border:1px solid rgba(23,20,17,.08);
  position:relative;
}
.mark:before,.mark:after{
  content:"";position:absolute;border-radius:999px;background:rgba(23,20,17,.72)
}
.mark:before{width:15px;height:2px;left:13px;top:14px}
.mark:after{width:19px;height:2px;left:10px;top:24px}
.brand-text strong{display:block;font-size:.96rem;letter-spacing:.01em}
.brand-text span{display:block;color:var(--muted);font-size:.82rem}
.nav{
  display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end
}
.nav a{
  padding:10px 14px;border-radius:999px;font-size:.92rem;color:#2a2521;
  border:1px solid transparent;
}
.nav a:hover,.nav a.active{
  background:rgba(255,255,255,.75);
  border-color:rgba(23,20,17,.08);
}
.page{
  padding:28px 0 60px;
}
.hero{
  display:grid;grid-template-columns:1.18fr .82fr;gap:24px;align-items:stretch;
}
.hero-main,.hero-side,.panel,.footer-card,.guide-card,.faq-item,.process-card,.legal-card,.thank-card,.info-card,.note-card,.contact-card{
  background:rgba(255,253,250,.82);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
}
.hero-main{
  padding:44px;position:relative;overflow:hidden;
}
.hero-main:before{
  content:"";position:absolute;inset:auto -80px -110px auto;width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle, rgba(145,169,139,.25) 0%, rgba(145,169,139,0) 68%);
}
.overline{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border-radius:999px;
  background:rgba(128,101,125,.08);color:#433a42;font-size:.8rem;font-weight:600;
  letter-spacing:.02em;margin-bottom:18px;
}
.overline:before{
  content:"";width:7px;height:7px;border-radius:999px;background:var(--plum)
}
h1{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(2.8rem,5vw,5.5rem);
  line-height:.98;letter-spacing:-.04em;
  max-width:10ch;
}
.hero-copy{
  margin-top:20px;max-width:58ch;color:#3d3631;font-size:1.05rem
}
.hero-actions{
  display:flex;gap:12px;flex-wrap:wrap;margin-top:28px
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 18px;border-radius:18px;border:1px solid var(--line);
  font-weight:600;transition:.2s ease;cursor:pointer;
}
.btn-primary{
  background:linear-gradient(135deg,#1f1a16,#3a3028);color:#fff;
  box-shadow:0 14px 30px rgba(24,18,14,.18);
}
.btn-secondary{background:rgba(255,255,255,.72)}
.btn:hover{transform:translateY(-1px)}
.hero-rail{
  margin-top:34px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px
}
.mini{
  padding:16px 14px;border-radius:20px;
  background:rgba(255,255,255,.7);border:1px solid var(--line)
}
.mini strong{display:block;font-size:1.05rem;margin-bottom:3px}
.mini span{display:block;color:var(--muted);font-size:.9rem}
.hero-side{
  padding:24px;
  display:grid;grid-template-rows:auto auto 1fr;gap:16px
}
.hero-stack{
  display:grid;gap:16px
}
.note-card,.contact-card{
  padding:22px
}
.note-card h3,.contact-card h3,.panel h2,.section-head h2,.legal-card h1,.thank-card h1{font-family:Georgia, "Times New Roman", serif;letter-spacing:-.03em}
.note-card p,.contact-card p{color:var(--muted);margin-top:8px}
.signature{
  display:flex;justify-content:space-between;align-items:flex-end;gap:10px;margin-top:12px
}
.signature strong{font-size:1.02rem}
.signature span{display:block;color:var(--muted);font-size:.86rem}
.stack-grid{
  display:grid;grid-template-columns:1.02fr .98fr;gap:24px;margin-top:24px
}
.panel{padding:34px}
.section-head{
  display:flex;justify-content:space-between;align-items:end;gap:18px;margin-bottom:24px
}
.section-head p{max-width:58ch;color:var(--muted)}
.guides-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px
}
.guide-card{padding:22px;display:flex;flex-direction:column;gap:18px}
.guide-top{display:flex;justify-content:space-between;gap:14px;align-items:flex-start}
.guide-tag{
  padding:8px 11px;border-radius:999px;font-size:.78rem;font-weight:700;
  background:rgba(145,169,139,.14);color:#314236;text-transform:uppercase;letter-spacing:.04em
}
.price{
  font-size:1.22rem;font-weight:700;white-space:nowrap
}
.guide-card h3{font-family:Georgia, "Times New Roman", serif;font-size:1.75rem;line-height:1.06}
.guide-card p{color:var(--muted)}
.guide-line{
  height:1px;background:linear-gradient(90deg,rgba(23,20,17,.14),transparent)
}
.edu-grid,.faq-grid,.how-grid,.footer-grid,.legal-grid{
  display:grid;gap:18px
}
.edu-grid{grid-template-columns:1.1fr .9fr}
.info-card,.process-card,.faq-item,.footer-card,.legal-card,.thank-card{padding:24px}
.info-card ul,.legal-card ul{padding-left:18px;color:#3e3834}
.info-card li,.legal-card li{margin:.45rem 0}
.badge-note{
  display:inline-block;margin-bottom:12px;padding:7px 11px;border-radius:999px;
  background:rgba(210,162,107,.17);font-size:.78rem;font-weight:700;color:#6d4a22;text-transform:uppercase;letter-spacing:.04em
}
.how-grid{grid-template-columns:repeat(5,1fr)}
.process-card{display:flex;flex-direction:column;gap:12px;min-height:200px}
.step{
  width:36px;height:36px;border-radius:12px;display:grid;place-items:center;
  background:rgba(128,101,125,.1);font-weight:700
}
.process-card p,.faq-item p,.footer-card p,.legal-card p,.thank-card p{color:var(--muted)}
.faq-grid{grid-template-columns:repeat(2,1fr)}
.faq-item h3{font-size:1.02rem;margin-bottom:8px}
.inquiry{
  margin-top:24px;display:grid;grid-template-columns:.92fr 1.08fr;gap:24px
}
.form-card{
  background:linear-gradient(180deg, rgba(255,255,255,.8), rgba(244,237,228,.88));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  border-radius:var(--radius-xl);
  padding:28px
}
.form-grid{
  display:grid;grid-template-columns:repeat(2,1fr);gap:14px
}
label{display:block;font-size:.92rem;font-weight:600;margin-bottom:8px}
input,textarea,select{
  width:100%;padding:14px 16px;border-radius:16px;
  border:1px solid rgba(23,20,17,.12);background:rgba(255,255,255,.86);
  font:inherit;color:var(--ink)
}
textarea{min-height:140px;resize:vertical}
.full{grid-column:1/-1}
.helper{font-size:.88rem;color:var(--muted);margin-top:14px}
.callout{
  display:grid;grid-template-columns:auto 1fr;gap:12px;align-items:start;
  padding:16px;border-radius:20px;background:rgba(145,169,139,.11);margin-top:18px
}
.callout strong{display:block}
.footer-grid{grid-template-columns:1.1fr .9fr}
.footer-card ul{list-style:none;padding:0;margin:14px 0 0;display:grid;gap:10px}
.footer-card li{display:flex;justify-content:space-between;gap:18px;padding-bottom:10px;border-bottom:1px solid var(--line)}
.muted{color:var(--muted)}
.disclaimer{
  margin-top:28px;padding:16px 18px;border-radius:18px;
  border:1px solid rgba(23,20,17,.08);background:rgba(255,255,255,.64);font-size:.92rem;color:#3d3732
}
.page-hero{
  padding:38px;border-radius:var(--radius-xl);
  background:linear-gradient(145deg, rgba(255,253,250,.86), rgba(242,236,226,.9));
  border:1px solid var(--line);box-shadow:var(--shadow)
}
.page-hero h1,.thank-card h1{font-size:clamp(2.2rem,4vw,4rem);max-width:none}
.page-hero p{max-width:64ch;color:var(--muted);margin-top:14px}
.legal-grid{grid-template-columns:repeat(2,1fr);margin-top:24px}
.legal-card h2{font-family:Georgia, "Times New Roman", serif;font-size:1.55rem;margin-bottom:12px}
.legal-card h3{margin-top:14px;margin-bottom:8px;font-size:1.02rem}
.thank-wrap{max-width:860px;margin:0 auto}
.thank-card{padding:34px}
.inline-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}
.inline-links a{
  padding:10px 14px;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.78)
}
.small-print{font-size:.9rem;color:var(--muted)}
@media (max-width:1080px){
  .hero,.stack-grid,.inquiry,.footer-grid,.edu-grid{grid-template-columns:1fr}
  .how-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:760px){
  .site-shell{padding:12px}
  .topbar-inner{padding:14px 16px;align-items:flex-start;flex-direction:column}
  .hero-main,.panel,.form-card,.hero-side,.page-hero,.thank-card{padding:24px}
  .guides-grid,.faq-grid,.legal-grid,.form-grid,.hero-rail,.how-grid{grid-template-columns:1fr}
  h1{max-width:none}
  .section-head{align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
}
