:root {
  --bg: #efe8da;
  --bg-soft: #f7f3ea;
  --surface: rgba(255, 252, 244, 0.78);
  --surface-strong: rgba(255, 252, 244, 0.92);
  --surface-dark: #1f2b22;
  --text: #182118;
  --text-muted: #596559;
  --sage: #5d735f;
  --sage-soft: #d8e1d1;
  --copper: #c8744e;
  --copper-soft: rgba(200, 116, 78, 0.14);
  --line: rgba(24, 33, 24, 0.12);
  --line-strong: rgba(24, 33, 24, 0.22);
  --shadow-soft: 0 24px 64px rgba(26, 21, 15, 0.12), 0 2px 0 rgba(255, 255, 255, 0.58) inset;
  --shadow-card: 0 18px 40px rgba(26, 21, 15, 0.1), 0 1px 0 rgba(255, 255, 255, 0.62) inset;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100vw - 32px));
  --sans: "Sora", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 116, 78, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(93, 115, 95, 0.18), transparent 22%),
    linear-gradient(180deg, #f6f0e3 0%, #efe8da 42%, #ebe1d2 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-tap-highlight-color: rgba(93, 115, 95, 0.18);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)),
    radial-gradient(rgba(24, 33, 24, 0.055) 0.65px, transparent 0.65px);
  background-size: auto, 7px 7px;
  opacity: 0.34;
  mix-blend-mode: multiply;
}

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

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

button,
.button,
.button-link,
.nav-toggle,
summary {
  touch-action: manipulation;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  background: var(--surface-dark);
  color: #f6f0e3;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 234, 0.72);
  border-bottom: 1px solid rgba(24, 33, 24, 0.08);
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: calc(env(safe-area-inset-top) + 18px) 0 18px;
}

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

.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 24, 0.14);
  box-shadow: var(--shadow-card);
}

.brand__eyebrow {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
}

.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  background: rgba(93, 115, 95, 0.1);
  color: var(--text);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: 16px;
  color: var(--text);
  box-shadow: var(--shadow-card);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.store-note strong {
  color: var(--text);
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.button:hover,
.button:focus-visible,
.button-link:hover,
.button-link:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--surface-dark);
  color: #f6f0e3;
  box-shadow: 0 18px 36px rgba(31, 43, 34, 0.22);
}

.button--secondary {
  background: var(--surface-strong);
  color: var(--text);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-card);
}

.button--ghost {
  background: transparent;
  color: var(--sage);
  border-color: rgba(93, 115, 95, 0.22);
}

.page-main {
  padding: 32px 0 80px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 26px;
  align-items: stretch;
  padding-top: 26px;
}

.hero-copy,
.hero-panel,
.panel,
.legal-shell,
.faq-block,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(24, 33, 24, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.panel,
.legal-shell,
.faq-block,
.cta-panel {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(250, 246, 237, 0.82));
}

.hero-copy {
  padding: clamp(28px, 4vw, 48px);
}

.hero-copy::after,
.panel::after,
.legal-shell::after,
.faq-block::after,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 48%),
    linear-gradient(180deg, transparent, rgba(93, 115, 95, 0.03));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-title,
.section-title,
.cta-panel h2,
.faq-block h2 {
  font-family: var(--serif);
  color: var(--text);
  line-height: 0.95;
  text-wrap: balance;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.lede,
.hero-note,
.section-copy,
.panel p,
.legal-body p,
.legal-body li,
.faq-intro,
.footer-copy {
  color: var(--text-muted);
  font-size: 1rem;
}

.lede {
  max-width: 54ch;
  margin: 20px 0 28px;
  font-size: 1.05rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.hero-meta__item {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 33, 24, 0.08);
  background: rgba(255, 254, 250, 0.74);
}

.hero-meta__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sage);
}

.hero-meta__value {
  display: block;
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.hero-panel {
  min-height: 680px;
  background:
    linear-gradient(180deg, rgba(27, 37, 29, 0.98), rgba(21, 30, 22, 0.96)),
    radial-gradient(circle at top right, rgba(200, 116, 78, 0.28), transparent 28%);
  color: #f4ecdc;
}

.hero-panel__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  height: 100%;
  padding: clamp(26px, 3vw, 34px);
}

.specimen-grid {
  position: relative;
  padding: 22px;
  min-height: 430px;
  border-radius: 28px;
  border: 1px solid rgba(244, 236, 220, 0.14);
  background:
    linear-gradient(rgba(93, 115, 95, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 115, 95, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(200, 116, 78, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  background-size: 74px 74px, 74px 74px, auto, auto;
}

.specimen-grid__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.08);
  border: 1px solid rgba(255, 252, 244, 0.16);
  font-size: 0.8rem;
  color: #e7dec9;
}

.coil-mark {
  width: min(100%, 460px);
  margin: 56px auto 0;
  transform: translateZ(0);
}

.hero-panel__caption {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(244, 236, 220, 0.78);
}

.caption-stack strong,
.hero-callout strong,
.info-card strong {
  display: block;
  color: #f4ecdc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.caption-stack span {
  display: block;
  margin-top: 4px;
  max-width: 20ch;
}

.hero-callout {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 244, 0.08);
  border: 1px solid rgba(255, 252, 244, 0.12);
}

.hero-callout p {
  margin: 8px 0 0;
  color: rgba(244, 236, 220, 0.82);
}

.section {
  margin-top: 26px;
  scroll-margin-top: 110px;
}

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

.section-title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
}

.section-copy {
  max-width: 48ch;
  margin: 0;
}

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

.panel {
  padding: 22px;
}

.panel h3,
.panel h4,
.legal-body h2,
.legal-body h3,
.footer-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--text);
}

.feature-card {
  grid-column: span 3;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--copper-soft);
  border: 1px solid rgba(200, 116, 78, 0.16);
  color: var(--copper);
}

.feature-card p,
.info-card p,
.support-card p {
  margin-bottom: 0;
}

.feature-link,
.inline-link {
  color: var(--copper);
  font-weight: 600;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 18px;
}

.step-list,
.bullet-list,
.legal-list,
.faq-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.step-list li,
.bullet-list li,
.legal-list li {
  margin-bottom: 12px;
  color: var(--text-muted);
}

.stat-block {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stat-tile {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 33, 24, 0.08);
  background: rgba(255, 254, 250, 0.7);
}

.stat-tile strong {
  display: block;
  font-size: 1.4rem;
  font-variant-numeric: tabular-nums;
}

.stat-tile span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

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

.info-card,
.support-card,
.legal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(24, 33, 24, 0.1);
  box-shadow: var(--shadow-card);
}

.info-card__eyebrow,
.legal-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(93, 115, 95, 0.1);
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.faq-block {
  padding: 28px;
}

.faq-item {
  border-top: 1px solid rgba(24, 33, 24, 0.08);
}

.faq-item:first-of-type {
  border-top: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--text-muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 18px;
  margin-top: 26px;
  padding: 28px;
}

.cta-panel h2,
.page-title {
  margin: 0 0 14px;
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-panel__aside {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(31, 43, 34, 0.96);
  color: #f4ecdc;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel__aside p {
  color: rgba(244, 236, 220, 0.82);
}

.cta-panel__aside a {
  color: #f4ecdc;
  font-weight: 600;
}

.page-header {
  padding-top: 22px;
}

.page-header__inner {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.88), rgba(250, 246, 237, 0.8));
  border: 1px solid rgba(24, 33, 24, 0.12);
  box-shadow: var(--shadow-soft);
}

.page-title {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.page-subtitle {
  max-width: 56ch;
  margin: 0;
  color: var(--text-muted);
}

.legal-shell {
  margin-top: 22px;
  padding: 28px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(93, 115, 95, 0.08);
}

.legal-body {
  display: grid;
  gap: 22px;
}

.legal-body section {
  scroll-margin-top: 110px;
}

.legal-body h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
}

.legal-body h3 {
  margin-top: 14px;
  font-size: 1.22rem;
}

.legal-body p,
.legal-body li {
  max-width: 72ch;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.site-footer {
  padding: 0 0 calc(26px + env(safe-area-inset-bottom));
}

.site-footer__inner {
  width: var(--container);
  margin: 26px auto 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(24, 33, 24, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(180px, 0.45fr));
  gap: 18px;
}

.footer-title {
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links strong {
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--copper);
}

.footer-copy {
  max-width: 44ch;
  margin: 10px 0 0;
}

.footer-small {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .split-layout,
  .cta-panel,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: span 6;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    align-items: start;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: end;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    width: min(320px, calc(100vw - 32px));
    padding: 10px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: var(--surface-strong);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }

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

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-meta,
  .stat-block,
  .matrix,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: span 12;
  }

  .page-main {
    padding-top: 20px;
  }

  .hero-panel {
    min-height: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
