:root {
  color-scheme: light;
  --canvas: #f7f4ed;
  --surface: #fffdf8;
  --sage: #8fa18d;
  --sage-dark: #536354;
  --sage-deep: #39483c;
  --gold: #76591a;
  --gold-soft: #d8c89f;
  --ink: #171612;
  --muted: #66635b;
  --border: #e4ddd0;
  --shadow: 0 22px 60px rgba(47, 42, 30, 0.08);
  --serif: Georgia, "Times New Roman", serif;
  --display: Didot, "Bodoni 72", "Bodoni MT", "Libre Bodoni", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--sage-deep);
}

a:focus-visible,
summary:focus-visible {
  border-radius: 6px;
  outline: 3px solid #b68b26;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(118, 89, 26, 0.12);
  background: rgba(247, 244, 237, 0.94);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border: 1px solid rgba(118, 89, 26, 0.2);
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(47, 42, 30, 0.08);
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45em;
}

h1,
h2,
h3 {
  margin-block: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.42rem;
}

p {
  margin-block: 0;
}

.eyebrow,
.section-number {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.lede {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.58;
}

.hero {
  padding: clamp(72px, 10vw, 136px) 0;
  overflow: hidden;
}

.home-hero {
  position: relative;
}

.home-hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -220px;
  right: -160px;
  border-radius: 50%;
  background: rgba(143, 161, 141, 0.25);
  content: "";
  filter: blur(1px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.button-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 750;
  text-decoration: none;
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-primary:hover {
  background: var(--sage-deep);
  color: white;
}

.button-secondary {
  border-color: var(--border);
  background: var(--surface);
  color: var(--ink);
}

.button-light {
  background: var(--surface);
  color: var(--sage-deep);
}

.journey-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: linear-gradient(145deg, #657563, var(--sage-dark));
  box-shadow: var(--shadow);
  color: white;
}

.journey-card .eyebrow {
  color: white;
}

.journey-card h2 {
  margin-top: 20px;
  font-size: 2.25rem;
}

.journey-card p:not(.eyebrow) {
  margin-top: 18px;
  color: white;
}

.journey-card .text-link {
  margin-top: 28px;
  display: inline-block;
  color: white;
}

.feature-section {
  padding: 40px 0 120px;
}

.feature-section > h2 {
  max-width: 700px;
  margin-top: 16px;
}

.feature-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(47, 42, 30, 0.045);
}

.card-number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  margin-top: 54px;
  font-size: 2rem;
}

.feature-card p {
  max-width: 470px;
  margin-top: 16px;
  color: var(--muted);
}

.feature-card .text-link {
  margin-top: 24px;
  display: inline-block;
  font-weight: 750;
}

.page-hero {
  padding: clamp(66px, 9vw, 110px) 0 clamp(54px, 7vw, 84px);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.updated {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.93rem;
}

.content-section {
  padding: 76px 0 0;
}

.content-section > h2 {
  margin-top: 14px;
}

.faq-list {
  margin-top: 34px;
  border-top: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  content: "+";
  font-size: 1.15rem;
  line-height: 1;
}

details[open] summary::after {
  content: "×";
}

.answer {
  max-width: 720px;
  padding: 0 48px 28px 0;
  color: var(--muted);
}

.answer p + p {
  margin-top: 12px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(30px, 6vw, 48px);
  border-radius: 24px;
  background: linear-gradient(145deg, var(--sage-dark), var(--sage-deep));
  color: white;
}

.contact-card .eyebrow {
  color: #f0dfb3;
}

.contact-card h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.contact-card p:not(.eyebrow) {
  max-width: 550px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.safety-note {
  margin: 20px 8px 100px;
  padding-left: 18px;
  border-left: 3px solid var(--gold-soft);
  color: var(--muted);
}

.policy-layout {
  padding: 76px 0 116px;
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  justify-content: space-between;
  gap: 72px;
}

.policy-nav {
  position: sticky;
  top: 30px;
  align-self: start;
  display: block;
}

.policy-nav ol {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.policy-nav li + li {
  margin-top: 9px;
}

.policy-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.policy section {
  scroll-margin-top: 30px;
}

.policy section + section {
  margin-top: 68px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

.plain-summary {
  padding: clamp(28px, 5vw, 40px);
  border: 1px solid rgba(83, 99, 84, 0.18);
  border-radius: 22px;
  background: rgba(143, 161, 141, 0.14);
}

.plain-summary h2 {
  font-size: 2rem;
}

.plain-summary p {
  margin-top: 16px;
}

.policy .section-number {
  margin-bottom: 12px;
}

.policy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.policy h3 {
  margin-top: 32px;
}

.policy p:not(.section-number),
.policy ul,
.policy address {
  margin-top: 18px;
  color: #4f4c45;
}

.policy ul {
  padding-left: 1.25rem;
}

.policy li + li {
  margin-top: 10px;
}

.policy address {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  font-style: normal;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #f0ece3;
}

.footer-inner {
  min-height: 150px;
  padding-block: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner > :last-child {
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.error-page h1 {
  margin-top: 16px;
  font-size: clamp(2.7rem, 8vw, 5.3rem);
}

@media (max-width: 840px) {
  .hero-grid,
  .feature-grid,
  .contact-card,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .journey-card {
    max-width: 580px;
  }

  .contact-card {
    justify-items: start;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .policy-nav {
    position: static;
  }

  .policy-nav ol {
    columns: 2;
  }

  .footer-inner {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-inner > :last-child {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .header-inner {
    flex-wrap: wrap;
    padding-block: 8px;
  }

  nav {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  .shell,
  .narrow {
    width: min(100% - 40px, 1180px);
  }

  .header-inner {
    min-height: 70px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 0.92rem;
  }

  .brand span {
    font-size: 1.32rem;
  }

  .hero {
    padding: 62px 0 86px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .feature-section {
    padding-bottom: 84px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card h3 {
    margin-top: 38px;
  }

  .policy-nav ol {
    columns: 1;
  }

  .policy section + section {
    margin-top: 52px;
    padding-top: 50px;
  }

  .answer {
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

@media print {
  .site-header,
  .site-footer,
  .policy-nav,
  .button-row {
    display: none;
  }

  body {
    background: white;
  }

  .policy-layout {
    display: block;
    padding: 0;
  }

  .policy section + section {
    break-inside: avoid;
  }
}
