* {
  box-sizing: border-box;
}

:root {
  --ink: #2a241d;
  --muted: #6f6254;
  --cream: #f7f0e4;
  --paper: #fffaf0;
  --sage: #9caf88;
  --olive: #4e6247;
  --clay: #c87954;
  --rust: #8c4c35;
  --line: rgba(42, 36, 29, 0.14);
  --shadow: 0 26px 70px rgba(74, 55, 37, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(156, 175, 136, 0.34), transparent 28rem),
    linear-gradient(135deg, #f3eadb 0%, #f8f2e7 46%, #e5dbcb 100%);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(42, 36, 29, 0.035) 1px, transparent 1px);
  background-size: 100% 3px;
  opacity: 0.38;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.72);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 14px;
  z-index: 5;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff8eb;
  background: var(--rust);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.top-nav a:hover {
  color: var(--ink);
}

.nav-pill {
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff7e8 !important;
  background: var(--olive);
}

.hero-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 30px auto 0;
  padding: clamp(24px, 4vw, 58px);
  border: 1px solid var(--line);
  border-radius: 40px;
  background: rgba(255, 250, 240, 0.62);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-note {
  width: max-content;
  max-width: 100%;
  margin-bottom: 34px;
  padding: 9px 16px;
  border-left: 4px solid var(--clay);
  background: rgba(200, 121, 84, 0.12);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  color: var(--rust);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-block;
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rust);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.88;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h3 {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 660px;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #fff8ec;
  background: var(--rust);
}

.button.primary:hover {
  background: #713927;
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.72);
}

.hero-card {
  padding: 28px;
  border-radius: 30px;
  background: #e1d2be;
  border: 1px solid rgba(42, 36, 29, 0.16);
  font-family: Inter, Arial, sans-serif;
}

.hero-card h2 {
  margin: 14px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
}

.soft-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.small-copy {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--muted);
}

.intro-strip,
.library-section,
.process-section,
.faq-section,
.request-section {
  width: min(1180px, calc(100% - 36px));
  margin: 96px auto 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 46px;
  align-items: start;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.offset-heading {
  margin-left: min(9vw, 90px);
}

.guide-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}

.guide {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(74, 55, 37, 0.08);
  font-family: Inter, Arial, sans-serif;
}

.featured-guide {
  grid-row: span 2;
  padding: 36px;
  background: var(--olive);
  color: #fff8ec;
}

.compact-guide.deep {
  background: #b96f4a;
  color: #fff8ec;
}

.compact-guide.pale {
  grid-column: span 2;
  min-height: 210px;
  background: #d8cbb4;
}

.guide-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.guide h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.guide p,
.guide li {
  color: inherit;
  opacity: 0.82;
}

.guide ul {
  padding-left: 18px;
}

.benefit-band {
  margin: 96px 0 0;
  padding: 70px max(18px, calc((100vw - 1180px) / 2));
  background: #2f3d2b;
  color: #fff9eb;
}

.benefit-band .section-kicker {
  color: #f2b28e;
}

.benefit-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.18);
}

.benefit-list div {
  padding: 28px;
  background: #2f3d2b;
}

.benefit-list span {
  display: block;
  margin-bottom: 28px;
  font-family: Inter, Arial, sans-serif;
  color: #f2b28e;
}

.benefit-list p {
  margin-bottom: 0;
  font-family: Inter, Arial, sans-serif;
  color: rgba(255, 249, 235, 0.72);
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  border-top: 1px solid var(--line);
}

.process-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 90px 0.6fr 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
}

.process-list li::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--rust);
  font-weight: 800;
}

.process-list span {
  color: var(--muted);
}

.narrow-heading {
  max-width: 620px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

details {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.68);
  border: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 16px 0 0;
  color: var(--muted);
}

.request-section {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 22px;
  padding: 28px;
  border-radius: 38px;
  background: #d8cbb4;
  border: 1px solid var(--line);
}

.request-copy {
  padding: 20px;
}

.request-copy p {
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin: 80px auto 30px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 900px;
  font-size: 13px;
}

.legal-page {
  background: linear-gradient(135deg, #efe4d3, #f8f1e6 54%, #d9c9b0);
}

.compact-header {
  margin-bottom: 50px;
}

.legal-shell,
.rules-shell {
  width: min(1060px, calc(100% - 36px));
  margin: 42px auto 0;
}

.legal-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 38px;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 26px;
  border-radius: 28px;
  background: #e0d0b9;
  border: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
}

.legal-sidebar h1,
.rules-hero h1,
.thanks-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.9;
}

.legal-content {
  padding: 36px;
  border-radius: 34px;
  background: rgba(255, 250, 240, 0.74);
  border: 1px solid var(--line);
  font-family: Inter, Arial, sans-serif;
}

.legal-content h2,
.rules-list h2 {
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.notice-box {
  margin-top: 30px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(140, 76, 53, 0.1);
  border: 1px solid rgba(140, 76, 53, 0.2);
  color: var(--rust);
  font-weight: 700;
}

.rules-hero {
  max-width: 760px;
  margin-bottom: 36px;
}

.rules-hero p,
.rules-list p {
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
}

.rules-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.rules-list article {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.72);
  border: 1px solid var(--line);
}

.rules-list article:last-child {
  grid-column: 1 / -1;
  background: #d8cbb4;
}

.centered-notice {
  max-width: 780px;
}

.legal-footer {
  grid-template-columns: repeat(3, auto);
  justify-content: start;
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(200, 121, 84, 0.2), transparent 26rem), #efe4d3;
}

.thanks-shell {
  width: min(820px, calc(100% - 36px));
  margin: 36px auto;
}

.thanks-card {
  padding: clamp(28px, 7vw, 70px);
  border-radius: 44px;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.centered-brand {
  justify-content: center;
  margin-bottom: 28px;
}

.thanks-card p {
  max-width: 610px;
  margin-left: auto;
  margin-right: auto;
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
}

.thanks-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0;
}

.thanks-next div {
  padding: 18px;
  border-radius: 20px;
  background: #e0d0b9;
  font-family: Inter, Arial, sans-serif;
}

.thanks-next strong,
.thanks-next span {
  display: block;
}

.thanks-next strong {
  color: var(--rust);
}

.thanks-footer {
  margin-top: 22px;
  text-align: center;
  font-family: Inter, Arial, sans-serif;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 880px) {
  .site-header,
  .top-nav,
  .hero-grid,
  .intro-strip,
  .guide-layout,
  .benefit-intro,
  .benefit-list,
  .request-section,
  .legal-shell,
  .rules-list,
  .faq-grid,
  .thanks-next {
    grid-template-columns: 1fr;
  }

  .site-header,
  .top-nav {
    border-radius: 26px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .compact-guide.pale,
  .rules-list article:last-child {
    grid-column: auto;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-sidebar {
    position: static;
  }

  .site-footer,
  .legal-footer {
    grid-template-columns: 1fr;
  }
}
