:root {
  --bg: #f5efe3;
  --bg-soft: #fbf8f0;
  --panel: rgba(255, 251, 243, 0.88);
  --panel-strong: #fffaf1;
  --ink: #18202b;
  --ink-soft: #59687b;
  --accent: #b96d1d;
  --accent-strong: #8e4d0f;
  --accent-soft: rgba(185, 109, 29, 0.12);
  --line: rgba(24, 32, 43, 0.09);
  --shadow: 0 28px 80px rgba(19, 28, 38, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(202, 152, 79, 0.24), transparent 22%),
    radial-gradient(circle at 100% 10%, rgba(42, 72, 98, 0.14), transparent 24%),
    linear-gradient(180deg, #f8f2e7 0%, #f4eddf 42%, #f5efe3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 78%);
}

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header,
.hero,
.proof-band,
.story-section,
.features-section,
.audience-section,
.process-section,
.cta-section,
.faq-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #213449, #385470);
  color: #fbf4e6;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: var(--shadow);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.72);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  opacity: 0.9;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7ef;
  box-shadow: 0 18px 40px rgba(142, 77, 15, 0.24);
}

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

.button-secondary {
  background: rgba(255, 250, 241, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-block {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: center;
  padding: 58px 0 52px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
  font-family: "Cormorant Garamond", serif;
}

h1 {
  max-width: 9ch;
  font-size: clamp(4rem, 7.8vw, 7rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.hero-lead,
.hero-support,
.section-heading,
.story-card p,
.feature-card p,
.audience-card p,
.process-grid p,
.cta-copy p,
.faq-item p,
.signal-card p,
.proof-band span,
.site-footer p,
.microcopy {
  color: var(--ink-soft);
  line-height: 1.7;
}

.hero-lead {
  max-width: 50ch;
  margin: 20px 0 0;
  font-size: 1.12rem;
}

.hero-support {
  max-width: 46ch;
  margin: 12px 0 0;
}

.hero-trust {
  max-width: 46ch;
  margin: 18px 0 0;
  padding-left: 18px;
  border-left: 2px solid rgba(142, 77, 15, 0.28);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.text-link {
  color: var(--ink);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.76);
  border: 1px solid rgba(24, 32, 43, 0.06);
  font-weight: 700;
}

.hero-card {
  position: relative;
  scroll-margin-top: 24px;
}

.hero-card::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(56, 84, 112, 0.18), rgba(174, 109, 45, 0.1));
  filter: blur(12px);
  z-index: -1;
}

.hero-card::before {
  inset: 24px -10px -24px 24px;
}

.signal-card,
.story-card,
.feature-card,
.audience-card,
.faq-item,
.process-section,
.proof-band,
.cta-panel {
  backdrop-filter: blur(12px);
}

.signal-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.card-label {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
}

.card-intro {
  margin: 0 0 20px;
}

.signup-form {
  display: grid;
  gap: 16px;
}

.signup-form label,
.signup-form fieldset {
  display: grid;
  gap: 8px;
}

.signup-form span,
.signup-form legend {
  font-size: 0.92rem;
  font-weight: 700;
}

.signup-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(28, 36, 49, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--ink);
}

.signup-form input:focus-visible {
  outline: 2px solid rgba(138, 79, 19, 0.22);
  outline-offset: 2px;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  position: relative;
}

.chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(28, 36, 49, 0.12);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.chip input:checked + span {
  background: rgba(174, 109, 45, 0.12);
  border-color: rgba(138, 79, 19, 0.45);
  color: var(--accent-strong);
}

.form-note,
.form-privacy,
.form-message {
  margin: 0;
  font-size: 0.92rem;
}

.form-privacy {
  color: var(--ink-soft);
  line-height: 1.6;
}

.form-message {
  min-height: 1.4em;
  font-weight: 700;
}

.form-message.error {
  color: #9b2c2c;
}

.form-message.success {
  color: #1f6b4d;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 26px;
  margin: 0 0 72px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.6);
  box-shadow: var(--shadow);
}

.proof-band article {
  display: grid;
  gap: 8px;
}

.proof-band strong {
  font-size: 1.02rem;
}

.story-section,
.features-section,
.audience-section,
.contact-section,
.faq-section {
  padding: 20px 0 8px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 24px;
}

.story-grid,
.feature-grid,
.audience-grid,
.contact-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: start;
}

.story-card,
.feature-card,
.audience-card,
.contact-copy,
.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
}

.feature-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-copy p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.contact-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-points li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 32, 43, 0.06);
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(28, 36, 49, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(138, 79, 19, 0.22);
  outline-offset: 2px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.process-section {
  margin: 58px 0;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(27, 48, 66, 0.94), rgba(54, 77, 102, 0.9)),
    rgba(27, 48, 66, 0.94);
  box-shadow: var(--shadow);
}

.process-section .section-heading,
.process-section strong,
.process-section p {
  color: #eef4fb;
}

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

.process-grid article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.cta-section {
  padding: 8px 0 18px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 248, 236, 0.92), rgba(255, 252, 245, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  inset: 22px;
}

.cta-copy p {
  margin: 14px 0 0;
}

.cta-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 22px 24px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 34px 0 10px;
}

.site-footer p {
  margin: 0;
}

.reveal,
.reveal-delay {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 980px) {
  .site-header,
  .hero,
  .proof-band,
  .story-grid,
  .feature-grid,
  .audience-grid,
  .contact-grid,
  .process-grid,
  .cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    display: grid;
  }

  .header-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .cta-actions {
    justify-items: stretch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding-top: 18px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 250, 241, 0.9);
    border: 1px solid rgba(24, 32, 43, 0.08);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav a {
    padding: 10px 4px;
  }

  .header-nav .button-secondary {
    width: 100%;
  }

  .hero {
    gap: 24px;
    padding-top: 28px;
  }

  .hero-card {
    scroll-margin-top: 16px;
  }

  h1 {
    max-width: none;
  }

  .signal-card,
  .story-card,
  .feature-card,
  .audience-card,
  .process-section,
  .cta-panel {
    padding: 22px;
  }

  .proof-band {
    margin-bottom: 48px;
  }

  .hero-actions,
  .chip-grid,
  .hero-points {
    flex-direction: column;
    align-items: stretch;
  }

  .text-link,
  .hero-points li,
  .chip span {
    text-align: center;
  }

  .site-footer {
    padding-top: 22px;
  }
}

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

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

  .reveal,
  .reveal-delay {
    opacity: 1;
    transform: none;
  }
}
