:root{
  --bg:#f6f3ec;
  --paper:#fbfaf6;
  --ink:#1f2624;
  --muted:#66706d;
  --line:rgba(31,38,36,.10);
  --line-strong:rgba(31,38,36,.16);
  --accent:#4f6f67;
  --accent-2:#b98f63;
  --soft:#e8e2d6;
  --shadow:0 18px 60px rgba(29,34,32,.07);
  --shadow-soft:0 8px 28px rgba(29,34,32,.05);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;
  --max:1220px;
}

*{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(185,143,99,.13), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(79,111,103,.12), transparent 24%),
    linear-gradient(180deg,#faf8f2 0%, var(--bg) 42%, #f4f0e8 100%);
  line-height:1.6;
}

body.inner-page{
  background:
    radial-gradient(circle at 100% 0%, rgba(79,111,103,.08), transparent 26%),
    linear-gradient(180deg,#fbfaf7 0%, #f6f3ec 100%);
}

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 0 40px;
}

.topbar{
  position:sticky;
  top:14px;
  z-index:10;
  margin-bottom:28px;
}

.topbar .inner{
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background:rgba(251,250,246,.72);
  border:1px solid rgba(31,38,36,.08);
  border-radius:999px;
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 14px 12px 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand-mark{
  width:34px;height:34px;border-radius:12px;
  background:
    linear-gradient(145deg, rgba(79,111,103,.92), rgba(185,143,99,.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}
.brand-copy{min-width:0}
.kicker{
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.18em;
  color:var(--muted);
  margin-bottom:2px;
}
.brand-name{
  font-family: Georgia, "Times New Roman", serif;
  font-size:18px;
  line-height:1;
}

.nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:10px 14px;
  border-radius:999px;
  color:#31403c;
  font-size:14px;
}
.nav a:hover{background:rgba(79,111,103,.08)}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.hero-main,
.hero-side,
.panel,
.guide-card,
.note-card,
.step-card,
.faq-card,
.form-wrap,
.legal-card,
.thankyou-card{
  background:rgba(251,250,246,.9);
  border:1px solid var(--line);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow);
}

.hero-main{
  padding:34px;
  position:relative;
  overflow:hidden;
  min-height:560px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-main::before{
  content:"";
  position:absolute;
  inset:auto -60px -80px auto;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle, rgba(185,143,99,.16) 0%, rgba(185,143,99,0) 70%);
}
.hero-main::after{
  content:"";
  position:absolute;
  top:22px;right:22px;
  width:104px;height:104px;border-radius:28px;
  border:1px solid rgba(79,111,103,.14);
  background:linear-gradient(135deg, rgba(79,111,103,.10), rgba(255,255,255,.48));
}

.hero-intro{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:26px;
  align-items:start;
  position:relative;
  z-index:1;
}
.hero-rail{
  border-right:1px solid var(--line);
  padding-right:22px;
}
.rail-label{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:16px;
}
.rail-stack{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.rail-item strong{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
  margin-bottom:6px;
}
.rail-item span{
  font-size:14px;
  color:#2b3532;
}
.hero-copy h1{
  margin:0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(3rem, 5vw, 5.2rem);
  line-height:.97;
  letter-spacing:-.04em;
  max-width:10ch;
}
.lead{
  font-size:18px;
  color:#394542;
  max-width:58ch;
  margin:0 0 22px;
}
.inline-note{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(79,111,103,.15);
  background:rgba(79,111,103,.05);
  border-radius:999px;
  color:#355048;
  font-size:14px;
}
.inline-note::before{
  content:"";
  width:9px;height:9px;border-radius:50%;
  background:linear-gradient(135deg,var(--accent), var(--accent-2));
}

.hero-bottom{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  margin-top:26px;
}
.statement-box, .mini-mosaic{
  border-radius:26px;
  background:var(--paper);
  border:1px solid var(--line);
  padding:22px;
}
.statement-box p{
  margin:0;
  font-size:17px;
  color:#2f3c39;
}
.process-line{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}
.process-pill{
  padding:10px 12px;
  border-radius:18px;
  background:#f4f0e8;
  font-size:12px;
  color:#42514d;
  border:1px solid rgba(31,38,36,.07);
  text-align:center;
}
.mini-mosaic{
  display:grid;
  gap:12px;
  align-content:start;
}
.mini-mosaic .tile{
  border-radius:20px;
  padding:16px;
  background:linear-gradient(180deg,#fffdf8,#f4efe5);
  border:1px solid var(--line);
}
.tile strong{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--muted);
}
.tile p{
  margin:0;
  font-size:14px;
  color:#34413d;
}

.hero-side{
  padding:22px;
  display:grid;
  gap:18px;
}
.side-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(245,240,232,.92));
  border:1px solid var(--line);
  border-radius:26px;
  padding:22px;
}
.side-panel h3{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:28px;
  letter-spacing:-.03em;
}
.side-panel p{margin:0;color:#42504c}
.metric-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.metric{
  border-radius:22px;
  padding:20px;
  background:#f8f5ef;
  border:1px solid var(--line);
}
.metric strong{
  display:block;
  font-size:30px;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom:6px;
}
.metric span{font-size:14px;color:var(--muted)}
.contact-card{
  border-radius:26px;
  padding:22px;
  background:linear-gradient(160deg, rgba(79,111,103,.92), rgba(54,78,72,.95));
  color:#eef4f1;
}
.contact-card .kicker{color:rgba(238,244,241,.75)}
.contact-list{
  display:grid;gap:12px;margin-top:14px
}
.contact-list div{
  padding:12px 14px;border:1px solid rgba(255,255,255,.12);
  border-radius:16px;background:rgba(255,255,255,.06);
  word-break:break-word;
}

.section{
  margin-top:24px;
}
.section-grid{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:22px;
  align-items:start;
}
.section-aside{
  position:sticky;
  top:104px;
}
.section-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.18em;
  color:var(--muted);
  margin-bottom:14px;
}
.section-aside h2{
  margin:0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(2rem, 3vw, 3rem);
  line-height:1;
  letter-spacing:-.04em;
}
.section-aside p{
  margin:0;
  color:#50605b;
  max-width:30ch;
}
.aside-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(79,111,103,.06);
  border:1px solid rgba(79,111,103,.12);
  font-size:14px;
  color:#3b4d48;
}

.guides-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.guide-card{
  padding:22px;
  position:relative;
  overflow:hidden;
}
.guide-card::before{
  content:"";
  position:absolute;
  inset:-40% auto auto 65%;
  width:180px;height:180px;border-radius:40px;
  transform:rotate(22deg);
  background:linear-gradient(180deg, rgba(79,111,103,.11), rgba(185,143,99,.09));
}
.guide-top{
  position:relative;z-index:1;
  display:flex;align-items:flex-start;justify-content:space-between;gap:16px;
  margin-bottom:16px;
}
.guide-no{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:#f1ede3;
  border:1px solid var(--line);
  font-size:13px;
  color:#4b5a56;
}
.price-tag{
  padding:9px 12px;border-radius:999px;background:#1f2624;color:#fff;font-size:14px
}
.guide-card h3{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:28px;
  line-height:1.05;
  letter-spacing:-.03em;
  position:relative;z-index:1;
}
.guide-card p{
  margin:0 0 18px;
  color:#42514d;
  position:relative;z-index:1;
}
.guide-meta{
  display:flex;flex-wrap:wrap;gap:10px;
  position:relative;z-index:1;
}
.guide-meta span{
  padding:8px 12px;border-radius:999px;background:#f5f1e8;border:1px solid var(--line);
  font-size:12px;color:#4d5c57
}

.note-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
}
.panel{
  padding:24px;
}
.note-panel-grid{
  display:grid;
  gap:16px;
}
.note-card{
  padding:18px;
  background:linear-gradient(180deg,#fffdf8,#f6f2e9);
  border-radius:22px;
  border:1px solid var(--line);
}
.note-card strong{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
}
.note-card p{
  margin:0;
  color:#3f4c48;
}

.steps{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:14px;
}
.step-card{
  padding:18px;
  border-radius:24px;
}
.step-number{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background:#f2ede2;border:1px solid var(--line);font-size:13px;color:#4d5c57;
  margin-bottom:16px;
}
.step-card h3{
  margin:0 0 8px;font-size:17px
}
.step-card p{margin:0;color:#4a5955;font-size:14px}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.faq-card{padding:20px}
.faq-card h3{
  margin:0 0 10px;
  font-size:18px;
  font-family: Georgia, "Times New Roman", serif;
}
.faq-card p{margin:0;color:#4b5955}

.form-wrap{
  padding:24px;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field,
textarea{
  width:100%;
  border:1px solid var(--line-strong);
  background:#fcfbf8;
  border-radius:18px;
  padding:14px 15px;
  color:var(--ink);
  font:inherit;
  outline:none;
}
textarea{
  min-height:140px;
  resize:vertical;
}
.field:focus, textarea:focus{
  border-color:rgba(79,111,103,.4);
  box-shadow:0 0 0 4px rgba(79,111,103,.08);
}
.form-note{
  margin:14px 0 0;
  font-size:14px;
  color:#50605b;
}
.button-row{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 20px;
  border:none;
  border-radius:999px;
  background:#1f2624;
  color:white;
  font:inherit;
  cursor:pointer;
}
.button.secondary{
  background:#eef2ef;color:#2f403b;border:1px solid var(--line)
}

.footer{
  margin-top:24px;
}
.footer-card{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  padding:24px;
  border-radius:var(--radius-xl);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(251,250,246,.92), rgba(245,240,232,.88));
  box-shadow:var(--shadow);
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:14px;
}
.footer-links a{
  padding:10px 14px;
  border-radius:999px;
  background:#f1ece2;
  border:1px solid var(--line);
  font-size:14px;
}
.footer-meta{
  display:grid;
  gap:12px;
}
.meta-box{
  padding:16px 18px;border-radius:20px;background:#fcfbf8;border:1px solid var(--line)
}
.meta-box strong{
  display:block;margin-bottom:6px;font-size:12px;text-transform:uppercase;letter-spacing:.15em;color:var(--muted)
}
.disclaimer{
  margin-top:18px;
  padding:16px 18px;
  border-radius:20px;
  background:rgba(185,143,99,.09);
  border:1px solid rgba(185,143,99,.18);
  font-size:14px;
  color:#4d4a45;
}
.legal-main{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:22px;
}
.legal-sidebar{
  position:sticky;top:104px;
  align-self:start;
}
.legal-card{
  padding:28px;
}
.legal-card h1,
.thankyou-card h1{
  margin:0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(2.4rem, 5vw, 4rem);
  letter-spacing:-.04em;
  line-height:1;
}
.legal-card h2{
  margin:28px 0 10px;
  font-size:22px;
  font-family: Georgia, "Times New Roman", serif;
}
.legal-card p, .legal-card li{color:#45524e}
.legal-card ul{padding-left:20px}
.legal-lead{font-size:18px;color:#384542}
.back-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fbfaf6;
  margin-top:18px;
}
.thankyou-shell{
  min-height:calc(100vh - 90px);
  display:grid;
  place-items:center;
}
.thankyou-card{
  width:min(880px,100%);
  padding:30px;
}
.thankyou-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
}
.thankyou-panel{
  padding:22px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fcfbf8;
}
.thankyou-panel h2{
  margin:0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size:28px;
}
.list-clean{padding-left:18px;margin:0}
.list-clean li{margin:0 0 10px;color:#46534f}
.small{
  font-size:14px;
  color:var(--muted);
}
@media (max-width: 1080px){
  .hero-grid,.section-grid,.note-layout,.footer-card,.legal-main,.thankyou-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .section-aside,.legal-sidebar{position:static}
  .hero-intro{grid-template-columns:1fr}
  .hero-rail{border-right:none;border-bottom:1px solid var(--line);padding-right:0;padding-bottom:18px}
  .hero-bottom{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .topbar .inner{border-radius:28px;align-items:flex-start;flex-direction:column}
  .nav{justify-content:flex-start}
  .guides-grid,.faq-grid,.form-grid,.metric-grid,.steps{grid-template-columns:1fr}
  .hero-main,.hero-side,.panel,.guide-card,.form-wrap,.legal-card,.thankyou-card{padding:22px}
  .process-line{grid-template-columns:1fr 1fr}
  .hero-copy h1{max-width:none}
}
