    /* ---------- Reset / Base ---------- */
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-size: 19px;
      line-height: 1.6;
      color: #1F1F1D;
      background: #FAF7F2;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.15;
      margin: 0;
      color: #1F1F1D;
    }

    h1 { font-size: 34px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }

    @media (min-width: 768px) {
      h1 { font-size: 42px; }
      h2 { font-size: 30px; }
      h3 { font-size: 22px; }
    }

    p { margin: 0; color: #3D3D3A; }
    a { color: #6B1F2A; text-decoration: none; }
    a:hover { text-decoration: underline; }

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

    /* ---------- Layout ---------- */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 24px;
    }
    @media (min-width: 768px) {
      .container { padding: 0 48px; }
    }

    section { padding: 64px 0; }
    @media (min-width: 768px) {
      section { padding: 96px 0; }
    }

    /* ---------- Eyebrow ---------- */
    .eyebrow {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #6B1F2A;
      margin-bottom: 16px;
    }

    /* ---------- Header / Nav ---------- */
    .site-header {
      border-bottom: 1px solid rgba(31,31,29,0.08);
      background: #FAF7F2;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      max-width: 1100px;
      margin: 0 auto;
      gap: 24px;
      flex-wrap: wrap;
    }
    @media (min-width: 768px) {
      .nav { padding: 24px 48px; }
    }
    .brand {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      font-size: 22px;
      color: #1F1F1D;
    }
    .brand:hover { text-decoration: none; }
    .nav-links {
      display: none;
      align-items: center;
      gap: 28px;
      font-size: 16px;
    }
    .nav-links a {
      color: #3D3D3A;
    }
    .nav-links a:hover {
      color: #6B1F2A;
      text-decoration: none;
    }
    .nav-cta {
      padding: 9px 18px;
      font-size: 15px;
    }
    @media (min-width: 900px) {
      .nav-links { display: flex; }
    }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 17px;
      font-weight: 500;
      text-align: center;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease;
    }
    .btn:hover { text-decoration: none; }
    .btn-primary {
      background: #6B1F2A;
      color: #FAF7F2;
    }
    .btn-primary:hover { background: #501720; }
    .btn-secondary {
      background: transparent;
      color: #1F1F1D;
      border-color: rgba(31,31,29,0.18);
    }
    .btn-secondary:hover { border-color: #1F1F1D; }
    .btn-light {
      background: #FAF7F2;
      color: #6B1F2A;
    }
    .btn-light:hover { background: #fff; }

    /* ---------- Hero ---------- */
    .hero {
      padding-top: 72px;
      padding-bottom: 80px;
    }
    @media (min-width: 768px) {
      .hero {
        padding-top: 112px;
        padding-bottom: 112px;
      }
    }
    .hero h1 {
      font-size: 36px;
      max-width: 18ch;
      margin-top: 8px;
      margin-bottom: 24px;
    }
    @media (min-width: 768px) {
      .hero h1 { font-size: 52px; }
    }
    .hero-sub {
      font-size: 19px;
      max-width: 60ch;
      margin-bottom: 36px;
      color: #3D3D3A;
    }
    @media (min-width: 768px) {
      .hero-sub { font-size: 20px; }
    }
    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ---------- Value points ---------- */
    .values {
      border-top: 1px solid rgba(31,31,29,0.12);
      padding-top: 56px;
      padding-bottom: 56px;
    }
    .values-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 768px) {
      .values-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }
    }
    .value h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }
    .value p {
      font-size: 15px;
      color: #3D3D3A;
    }

    /* ---------- Problem section ---------- */
    .problem h2 {
      max-width: 22ch;
      margin-bottom: 28px;
    }
    .problem-text {
      max-width: 62ch;
    }
    .problem-text p + p { margin-top: 20px; }

    /* ---------- Stats / Bevisen ---------- */
    .stats-band {
      background: #F2EDE4;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) {
      .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    }
    .stat-card {
      background: #FAF7F2;
      border: 1px solid rgba(31,31,29,0.10);
      border-radius: 8px;
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
    }
    .stat-num {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      font-size: 64px;
      line-height: 1;
      color: #6B1F2A;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .stat-text {
      font-size: 17px;
      line-height: 1.55;
      color: #1F1F1D;
      flex-grow: 1;
    }
    .stat-source {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid rgba(31,31,29,0.10);
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #3D3D3A;
    }
    .stats-note {
      max-width: 70ch;
      margin: 36px auto 0;
      text-align: center;
      font-size: 14px;
      color: #3D3D3A;
    }

    /* ---------- Packages ---------- */
    .section-head {
      max-width: 60ch;
      margin-bottom: 56px;
    }
    .section-head h2 { margin-bottom: 16px; }
    .section-head p { font-size: 18px; }

    .packages-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }
    @media (min-width: 768px) {
      .packages-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .packages-single {
      max-width: 520px;
      margin: 0 auto;
    }
    @media (min-width: 768px) {
      .packages-single { grid-template-columns: 1fr; }
    }
    .package {
      position: relative;
      background: #fff;
      border: 1px solid rgba(31,31,29,0.12);
      border-radius: 8px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
    }
    .package--featured {
      border: 1.5px solid #6B1F2A;
    }
    .package-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: #6B1F2A;
      color: #FAF7F2;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 4px;
    }
    .package h3 {
      font-size: 24px;
      margin-bottom: 4px;
    }
    .package-desc {
      font-size: 15px;
      color: #3D3D3A;
      margin-bottom: 24px;
    }
    .package-price {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      font-size: 30px;
      color: #1F1F1D;
      line-height: 1.2;
    }
    .package-price small {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #3D3D3A;
      display: block;
      margin-top: 2px;
    }
    .package-monthly {
      font-size: 16px;
      color: #3D3D3A;
      margin-top: 8px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(31,31,29,0.12);
      margin-bottom: 24px;
    }
    .package ul {
      list-style: none;
      padding: 0;
      margin: 0 0 28px;
      flex-grow: 1;
    }
    .package li {
      font-size: 16px;
      color: #1F1F1D;
      padding: 8px 0;
      padding-left: 24px;
      position: relative;
    }
    .package li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 17px;
      width: 12px;
      height: 1.5px;
      background: #6B1F2A;
    }
    .pricing-note {
      max-width: 70ch;
      margin: 40px auto 0;
      text-align: center;
      font-size: 15px;
      color: #3D3D3A;
    }

    /* ---------- Package details accordion ---------- */
    .package-details {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(31,31,29,0.10);
    }
    .package-details summary {
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: #6B1F2A;
      user-select: none;
      list-style: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 0;
    }
    .package-details summary::-webkit-details-marker { display: none; }
    .package-details summary::after {
      content: "+";
      font-size: 18px;
      font-weight: 400;
      line-height: 1;
      transition: transform 0.2s;
    }
    .package-details[open] summary::after {
      content: "−";
    }
    .package-details summary:hover {
      text-decoration: underline;
    }
    .package-details dl {
      margin: 16px 0 0;
      padding: 0;
    }
    .package-details dt {
      font-weight: 500;
      font-size: 14px;
      color: #1F1F1D;
      margin-top: 14px;
    }
    .package-details dt:first-child { margin-top: 0; }
    .package-details dd {
      margin: 4px 0 0;
      font-size: 14px;
      line-height: 1.55;
      color: #3D3D3A;
    }

    /* ---------- Process ---------- */
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 700px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; }
    }
    @media (min-width: 1000px) {
      .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
    }
    .step-num {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      font-size: 44px;
      color: #6B1F2A;
      line-height: 1;
      margin-bottom: 12px;
    }
    .step h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }
    .step p {
      font-size: 16px;
      color: #3D3D3A;
    }

    /* ---------- Examples ---------- */
    .example-featured {
      display: grid;
      grid-template-columns: 1fr;
      background: #FAF7F2;
      border: 1px solid rgba(31,31,29,0.12);
      border-radius: 8px;
      overflow: hidden;
      margin-bottom: 56px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .example-featured:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
      transform: translateY(-2px);
      text-decoration: none;
    }
    @media (min-width: 800px) {
      .example-featured { grid-template-columns: 1fr 1fr; }
    }
    .example-featured-img {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #C2A878 0%, #8B7B5E 50%, #5C5340 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px;
      text-align: center;
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      font-size: 26px;
      color: #FAF7F2;
      letter-spacing: -0.005em;
    }
    @media (min-width: 800px) {
      .example-featured-img { aspect-ratio: auto; min-height: 320px; }
    }
    .example-featured-body {
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #1F1F1D;
    }
    .real-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #6B1F2A;
      color: #FAF7F2;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
      margin-bottom: 16px;
      align-self: flex-start;
    }
    .real-badge::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ade80;
      box-shadow: 0 0 8px rgba(74,222,128,0.7);
    }
    .example-featured-body h3 {
      font-size: 28px;
      margin-bottom: 12px;
    }
    .example-featured-body p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
    }
    .visit-link {
      font-size: 15px;
      font-weight: 500;
      color: #6B1F2A;
    }

    .examples-subhead {
      max-width: 60ch;
      margin-bottom: 32px;
    }
    .examples-subhead .eyebrow {
      margin-bottom: 8px;
    }
    .examples-subhead h3 {
      font-size: 22px;
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      color: #1F1F1D;
      letter-spacing: -0.01em;
    }

    .examples-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 28px;
    }
    @media (min-width: 768px) {
      .examples-grid { grid-template-columns: repeat(3, 1fr); }
    }
    .example {
      display: block;
      color: inherit;
    }
    .example:hover { text-decoration: none; }
    .example-img {
      aspect-ratio: 4 / 3;
      border-radius: 8px;
      border: 1px solid rgba(31,31,29,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      text-align: center;
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 500;
      font-size: 22px;
      transition: transform 0.2s ease;
    }
    .example:hover .example-img {
      transform: translateY(-2px);
    }
    .example-img--1 { background: #E8DDD0; color: #5A3D2A; }
    .example-img--2 { background: #D8DCD3; color: #2D3D2A; }
    .example-img--3 { background: #E8C9A8; color: #6D2D2D; }
    .example-meta {
      margin-top: 16px;
      font-size: 16px;
      color: #1F1F1D;
    }
    .example-meta strong { font-weight: 500; }
    .example-meta span {
      display: block;
      color: #3D3D3A;
      font-size: 15px;
      margin-top: 2px;
    }

    /* ---------- About ---------- */
    .about-text {
      max-width: 62ch;
    }
    .about-text p { font-size: 19px; }

    /* ---------- Contact section (cream bg, not all red) ---------- */
    .contact {
      background: #F2EDE4;
      color: #1F1F1D;
    }
    .contact h2 {
      color: #1F1F1D;
      margin-bottom: 16px;
    }
    .contact p {
      color: #3D3D3A;
    }

    /* ---------- Waitlist form ---------- */
    .waitlist-eyebrow {
      color: #6B1F2A;
    }
    .waitlist-intro {
      max-width: 56ch;
      margin-top: 16px;
    }
    .waitlist-intro p + p { margin-top: 16px; }
    .waitlist-form {
      margin-top: 48px;
      max-width: 720px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      background: #FAF7F2;
      border: 1px solid rgba(31,31,29,0.10);
      border-radius: 12px;
      padding: 36px 32px;
    }
    @media (min-width: 600px) {
      .waitlist-form { padding: 40px 36px; }
      .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    }
    .field { display: flex; flex-direction: column; }
    .field label {
      font-size: 14px;
      font-weight: 500;
      color: #1F1F1D;
      margin-bottom: 6px;
      letter-spacing: 0.01em;
    }
    .field input,
    .field select,
    .field textarea {
      font-family: 'Inter', sans-serif;
      font-size: 17px;
      color: #1F1F1D;
      background: #fff;
      border: 1px solid rgba(31,31,29,0.18);
      border-radius: 6px;
      padding: 12px 14px;
      width: 100%;
      transition: border-color 0.15s ease, background 0.15s ease;
    }
    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(31,31,29,0.4);
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      outline: none;
      border-color: #6B1F2A;
      background: #fff;
    }
    .field select {
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%231F1F1D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
    }
    .field select option {
      background: #fff;
      color: #1F1F1D;
    }
    .field textarea {
      resize: vertical;
      min-height: 90px;
      font-family: 'Inter', sans-serif;
    }
    .submit-btn {
      justify-self: stretch;
      margin-top: 8px;
      padding: 14px 28px;
      font-size: 17px;
      background: #6B1F2A;
      color: #FAF7F2;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background 0.15s ease;
    }
    .submit-btn:hover { background: #501720; }
    .privacy-note {
      max-width: 720px;
      margin-top: 24px;
      font-size: 13px;
      color: #3D3D3A;
      line-height: 1.5;
    }
    .privacy-note a {
      color: #6B1F2A;
      text-decoration: underline;
    }

    /* ---------- Footer ---------- */
    .footer {
      padding: 32px 0 40px;
      border-top: 1px solid rgba(31,31,29,0.12);
      font-size: 14px;
      color: #3D3D3A;
    }
    .footer .container {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      align-items: center;
    }

    /* Form error */
    .form-error {
      margin: 16px 0 0;
      padding: 12px 16px;
      background: rgba(107,31,42,0.08);
      color: #6B1F2A;
      border-radius: 6px;
      font-size: 15px;
    }
    .submit-btn[disabled] {
      opacity: 0.6;
      cursor: wait;
    }

/* ---------- Mobile hamburger menu ---------- */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(31,31,29,0.18);
  padding: 8px 14px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: #1F1F1D;
}
.menu-toggle:hover { border-color: #1F1F1D; }
.menu-toggle::before {
  content: "";
  width: 18px;
  height: 12px;
  background:
    linear-gradient(#1F1F1D 2px, transparent 2px),
    linear-gradient(#1F1F1D 2px, transparent 2px),
    linear-gradient(#1F1F1D 2px, transparent 2px);
  background-size: 18px 2px;
  background-position: top, center, bottom;
  background-repeat: no-repeat;
}
@media (min-width: 900px) {
  .menu-toggle { display: none; }
}
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #FAF7F2;
  padding: 24px;
  gap: 18px;
  border-bottom: 1px solid rgba(31,31,29,0.10);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  z-index: 30;
}
.nav-links.open a {
  font-size: 18px;
  padding: 8px 0;
}
.nav-links a.active {
  color: #6B1F2A;
}

/* Active CTA in nav (highlighted page) */
.nav-cta.active {
  background: #501720;
}

/* Sticky bottom CTA on mobile */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FAF7F2;
  border-top: 1px solid rgba(31,31,29,0.12);
  padding: 12px 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.04);
}
.sticky-cta a {
  width: 100%;
  max-width: 400px;
  padding: 14px;
  background: #6B1F2A;
  color: #FAF7F2;
  text-align: center;
  border-radius: 6px;
  font-weight: 500;
  font-size: 16px;
}
.sticky-cta a:hover { text-decoration: none; background: #501720; }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}
.has-sticky-cta { padding-bottom: 88px; }
@media (min-width: 900px) {
  .has-sticky-cta { padding-bottom: 0; }
}
