:root {
  --bg: #f3eee4;
  --paper: #fbf8f1;
  --ink: #1c2b26;
  --muted: #58645d;
  --line: #cbbda6;
  --accent: #a45a2a;
  --accent-soft: #ead2bc;
  --deep: #2e4a41;
  --card: #f7f1e6;
  --shadow: 0 18px 45px rgba(28, 43, 38, 0.09);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(164, 90, 42, 0.08), transparent 28%),
    linear-gradient(180deg, #f5f0e6 0%, #f2ece2 46%, #efe8de 100%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
img { max-width: 100%; display: block; }

.page-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 22px auto 38px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(28, 43, 38, 0.1);
  background: rgba(251, 248, 241, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  position: sticky;
  top: 16px;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(28, 43, 38, 0.06);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.eyebrow,
.small-label,
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  color: var(--muted);
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.topnav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topnav a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: 0.25s ease;
  font-size: 0.92rem;
}

.topnav a:hover,
.button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.topnav a:hover {
  background: rgba(164, 90, 42, 0.1);
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  margin-top: 26px;
}

.hero-main,
.note-panel,
.section-box,
.card,
.legal-shell,
.thankyou-box,
.side-stack,
.contact-card,
.guide-card,
.faq-item,
.form-box,
.process-card,
.benefit-card,
.delivery-box,
.footer-grid {
  background: rgba(251, 248, 241, 0.9);
  border: 1px solid rgba(28, 43, 38, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 22px;
  overflow: hidden;
  position: relative;
}

.hero-main::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(164, 90, 42, 0.22), transparent 65%);
}

.hero-copy h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.6rem, 7vw, 5.1rem);
  line-height: 0.93;
  letter-spacing: -0.06em;
  max-width: 9ch;
}

.hero-copy p.lead {
  font-size: 1.07rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 0;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.button {
  background: var(--ink);
  color: #fff;
}

.ghost-button {
  border: 1px solid rgba(28, 43, 38, 0.18);
  background: transparent;
}

.hero-stamp {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(46, 74, 65, 0.98), rgba(28, 43, 38, 0.98));
  color: #eff2ef;
  position: relative;
  z-index: 1;
}

.hero-stamp strong {
  font-size: 2.1rem;
  line-height: 0.95;
}

.hero-stamp span {
  font-size: 0.82rem;
  color: rgba(239, 242, 239, 0.76);
}

.note-panel {
  padding: 26px;
  display: grid;
  gap: 18px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.note-tile {
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(234, 210, 188, 0.55), rgba(251, 248, 241, 0.82));
  border: 1px solid rgba(28, 43, 38, 0.08);
}

.note-tile strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.main-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  margin-top: 24px;
}

.side-stack {
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
  position: sticky;
  top: 110px;
}

.contact-card,
.delivery-box {
  padding: 18px;
  background: linear-gradient(180deg, rgba(247, 241, 230, 0.95), rgba(251, 248, 241, 0.95));
}

.contact-lines {
  display: grid;
  gap: 10px;
}

.contact-lines div {
  padding-top: 10px;
  border-top: 1px solid rgba(28, 43, 38, 0.1);
}

.section-box {
  padding: 30px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head h2,
.legal-shell h1,
.thankyou-box h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p {
  max-width: 36rem;
  color: var(--muted);
  margin: 0;
}

.guide-list,
.process-grid,
.benefit-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.guide-card {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 20px;
  align-items: start;
  padding: 22px;
}

.guide-index {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(164, 90, 42, 0.16), rgba(164, 90, 42, 0.02));
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 700;
}

.guide-card h3,
.benefit-card h3,
.process-card h3,
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.guide-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 120px;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 74, 65, 0.08);
  font-size: 0.83rem;
  color: var(--deep);
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.benefit-card,
.process-card,
.faq-item,
.form-box {
  padding: 22px;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card span.step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(164, 90, 42, 0.14);
  font-weight: 700;
  margin-bottom: 16px;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 18px;
}

.form-note {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(46, 74, 65, 0.98), rgba(28, 43, 38, 0.96));
  color: #eff2ef;
}

.form-note p,
.form-note li { color: rgba(239, 242, 239, 0.8); }
.form-note ul { padding-left: 18px; margin: 0; }

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(28, 43, 38, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(255,255,255,0.72);
  font: inherit;
  color: var(--ink);
}

textarea { min-height: 150px; resize: vertical; }

.disclaimer {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(164, 90, 42, 0.2);
  background: rgba(234, 210, 188, 0.45);
  color: #5f462f;
  font-size: 0.95rem;
}

.footer-grid {
  margin-top: 26px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 18px;
}

.footer-links,
.inline-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a,
.inline-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(46, 74, 65, 0.08);
  font-size: 0.88rem;
}

.legal-shell,
.thankyou-box {
  padding: 34px;
  margin-top: 28px;
}

.legal-shell p,
.legal-shell li,
.thankyou-box p {
  color: var(--muted);
}

.legal-shell h2 {
  margin: 30px 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.legal-shell ul,
.legal-shell ol { padding-left: 20px; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.info-cell {
  padding: 14px;
  border-radius: 16px;
  background: rgba(46, 74, 65, 0.06);
}

.info-cell strong {
  display: block;
  margin-bottom: 6px;
}

.thankyou-box {
  max-width: 820px;
  margin-inline: auto;
}

.return-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .hero,
  .main-grid,
  .form-layout,
  .footer-grid,
  .benefit-grid,
  .process-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .side-stack {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-shell { width: min(calc(100% - 24px), var(--max)); }
  .topbar { position: static; }
  .hero-main,
  .guide-card {
    grid-template-columns: 1fr;
  }
  .hero-stamp,
  .guide-meta {
    align-items: flex-start;
  }
  .note-grid { grid-template-columns: 1fr; }
  .section-box,
  .hero-main,
  .note-panel,
  .legal-shell,
  .thankyou-box,
  .footer-grid,
  .side-stack { padding: 22px; }
}
