    :root {
      --regal-black: #11100f;
      --regal-plum: #5d1c34;
      --regal-gold: #a67d44;
      --regal-sage: #899481;
      --regal-beige: #cdbcab;
      --regal-ivory: #efe9e1;

      --bg-main: var(--regal-ivory);
      --bg-card: #ffffff;
      --text-main: #221f1b;
      --text-muted: #6b6660;
      --radius-lg: 18px;
      --radius-md: 14px;
      --shadow-soft: 0 18px 45px rgba(17, 16, 15, 0.13);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #ffffff 0, var(--bg-main) 40%, #e3dacd 100%);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

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

    .page {
      min-height: 100vh;
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 1.5rem 1.25rem 3rem;
    }

    /* SIMPLE NAV */

    .top-nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
      gap: 1rem;
    }

    .nav-brand {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 1rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--regal-black);
    }

    .nav-links {
      display: none;
      gap: 1.2rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--regal-gold);
      transition: width 150ms ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* HERO */

    .hero {
      padding-top: 1.2rem;
      padding-bottom: 2.25rem;
    }

    .hero-inner {
      background: linear-gradient(135deg, var(--regal-black), var(--regal-plum));
      color: #fff;
      border-radius: 24px;
      padding: 1.8rem 1.6rem 1.9rem;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .hero-inner::before {
      content: "";
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(circle at 0% 0%, rgba(166, 125, 68, 0.16), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(203, 188, 171, 0.16), transparent 55%);
      mix-blend-mode: screen;
      opacity: 0.9;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      background: rgba(239, 233, 225, 0.12);
      border: 1px solid rgba(239, 233, 225, 0.25);
      backdrop-filter: blur(6px);
      margin-bottom: 1rem;
    }

    .badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--regal-gold);
    }

    .hero-title {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 2rem;
      line-height: 1.1;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .hero-subtitle {
      font-size: 0.98rem;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 1rem;
    }

    .position-line {
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.76);
      margin-bottom: 1.6rem;
    }

    .position-line strong {
      color: #fff;
      font-weight: 600;
    }

    .hero-highlight {
      display: flex;
      flex-wrap: wrap;
      gap: 1.1rem;
      margin-bottom: 1.4rem;
    }

    .stat-chip {
      padding: 0.6rem 0.85rem;
      border-radius: 999px;
      border: 1px solid rgba(239, 233, 225, 0.3);
      background: rgba(17, 16, 15, 0.35);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.09em;
    }

    .stat-chip span {
      font-weight: 600;
      color: #fff;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 0.3rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 0.7rem 1.4rem;
      font-size: 0.9rem;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
      text-decoration: none;
      font-weight: 500;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--regal-gold), #c5a26a);
      color: var(--regal-black);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    }

    .btn-ghost {
      background: rgba(239, 233, 225, 0.06);
      border-color: rgba(239, 233, 225, 0.5);
      color: #fff;
    }

    .btn-ghost:hover {
      background: rgba(239, 233, 225, 0.18);
    }

    .hero-note {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 0.4rem;
    }

    /* SECTIONS */

    section {
      margin-bottom: 2.4rem;
    }

    .section-title {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 1.3rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      color: var(--regal-black);
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      margin-bottom: 1.2rem;
    }

    .card {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      padding: 1.2rem 1.3rem 1.3rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(17, 16, 15, 0.04);
    }

    .card + .card {
      margin-top: 1rem;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1rem;
      margin-bottom: 0.4rem;
    }

    .card-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--regal-black);
    }

    .pill {
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(137, 148, 129, 0.1);
      color: var(--regal-sage);
      border: 1px solid rgba(137, 148, 129, 0.35);
      white-space: nowrap;
    }

    .card-body p {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 0.35rem;
    }

    .price {
      margin-top: 0.4rem;
      font-weight: 600;
      color: var(--regal-plum);
      font-size: 0.96rem;
    }

    .list {
      list-style: none;
      margin: 0.4rem 0 0.4rem;
      padding-left: 0;
    }

    .list li {
      position: relative;
      padding-left: 1.1rem;
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55rem;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--regal-gold);
    }

    .grid-two {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.1rem;
    }

    .stats-column {
      display: none;
    }

    .stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
      margin-top: 0.8rem;
    }

    .stat-card {
      padding: 0.75rem 0.9rem;
      border-radius: var(--radius-md);
      background: rgba(203, 188, 171, 0.22);
      border: 1px solid rgba(17, 16, 15, 0.06);
    }

    .stat-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 0.25rem;
    }

    .stat-value {
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--regal-black);
    }

    .stat-note {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.1rem;
    }

    /* Audience */

    .demographics-list li strong {
      font-weight: 600;
      color: var(--regal-plum);
    }

    /* Terms */

    .terms-list li strong {
      color: var(--regal-black);
    }

    /* Brands / Video */

    .brands-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.9rem;
      margin-top: 0.6rem;
      margin-bottom: 1.1rem;
    }

    .brand-pill {
      padding: 0.5rem 1rem;
      border-radius: 999px;
      border: 1px solid rgba(17, 16, 15, 0.12);
      background: rgba(239, 233, 225, 0.8);
      font-size: 0.85rem;
      font-weight: 500;
    }

    .brand-logo {
      background: #fff;
      border-radius: 999px;
      padding: 0.4rem 1rem;
      border: 1px solid rgba(17, 16, 15, 0.08);
      font-size: 0.86rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 90px;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: #000;
    }

    .video-wrapper iframe {
      position: absolute;
      inset: 0;
      border: 0;
      width: 100%;
      height: 100%;
    }

    .video-caption {
      margin-top: 0.55rem;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    /* PROCESS */

    .process-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.9rem;
      margin-top: 0.6rem;
    }

    .process-step {
      display: flex;
      gap: 0.8rem;
      align-items: flex-start;
    }

    .step-number {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: var(--regal-gold);
      color: var(--regal-black);
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      flex-shrink: 0;
      margin-top: 0.15rem;
    }

    .process-title {
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--regal-black);
      margin-bottom: 0.1rem;
    }

    .process-text {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* BANNER */

    .banner {
      border-radius: var(--radius-lg);
      padding: 0.9rem 1rem;
      background: linear-gradient(135deg, rgba(166, 125, 68, 0.12), rgba(93, 28, 52, 0.12));
      border: 1px solid rgba(166, 125, 68, 0.45);
      color: var(--regal-black);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 1.6rem;
    }

    .banner-icon {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      background: var(--regal-gold);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--regal-black);
      flex-shrink: 0;
    }

    /* SOCIAL PROOF */

    .quote {
      font-size: 0.9rem;
      font-style: italic;
      color: var(--text-muted);
      border-left: 3px solid var(--regal-gold);
      padding-left: 0.9rem;
      margin-bottom: 0.7rem;
    }

    .quote span {
      display: block;
      margin-top: 0.35rem;
      font-style: normal;
      font-size: 0.83rem;
      color: var(--regal-black);
      font-weight: 600;
    }

    .comment-bubble {
      margin-top: 0.7rem;
      padding: 0.7rem 0.85rem;
      border-radius: var(--radius-md);
      background: rgba(239, 233, 225, 0.75);
      font-size: 0.86rem;
      color: var(--text-main);
    }

    /* CONTACT */

    .contact-card {
      background: linear-gradient(135deg, var(--regal-plum), var(--regal-black));
      color: #fff;
      border-radius: 22px;
      padding: 1.4rem 1.3rem 1.5rem;
      box-shadow: var(--shadow-soft);
      text-align: left;
    }

    .contact-title {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 1.3rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .contact-text {
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 1rem;
    }

    .contact-details {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .contact-details strong {
      color: #fff;
    }

    .contact-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .btn-light {
      background: var(--regal-ivory);
      color: var(--regal-black);
      border-color: transparent;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .btn-outline-light {
      border-color: rgba(239, 233, 225, 0.7);
      color: #fff;
      background: transparent;
    }

    .btn-outline-light:hover {
      background: rgba(239, 233, 225, 0.12);
    }

    /* FOOTER */

    footer {
      border-top: 1px solid rgba(17, 16, 15, 0.08);
      padding-top: 1.1rem;
      font-size: 0.83rem;
      color: var(--text-muted);
      margin-top: 2rem;
      text-align: center;
    }

    footer strong {
      color: var(--regal-black);
    }

    /* MEDIA QUERIES */

    @media (min-width: 640px) {
      .container {
        padding-inline: 1.8rem;
      }

      .nav-links {
        display: flex;
      }

      .hero-inner {
        padding: 2.1rem 2.1rem 2.3rem;
      }

      .hero-title {
        font-size: 2.4rem;
      }

      .hero-subtitle {
        font-size: 1.02rem;
      }

      .grid-two {
        grid-template-columns: 1.1fr 1.1fr;
      }

      .card {
        padding: 1.4rem 1.5rem 1.5rem;
      }

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

    @media (min-width: 900px) {
      .container {
        padding-inline: 2rem;
      }

      .hero-inner {
        display: grid;
        grid-template-columns: 1.7fr 1.2fr;
        align-items: center;
        column-gap: 2rem;
      }

      .hero-highlight {
        margin-bottom: 1.8rem;
      }

      .stats-column {
        display: block;
        position: relative;
        z-index: 1;
        justify-self: end;
        max-width: 260px;
      }

      .stats-panel {
        background: rgba(239, 233, 225, 0.14);
        border-radius: 18px;
        padding: 1.1rem 1.2rem;
        border: 1px solid rgba(239, 233, 225, 0.4);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
      }

      .stats-panel-row {
        display: flex;
        justify-content: space-between;
        gap: 0.75rem;
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
      }

      .stats-panel-row span:first-child {
        color: rgba(239, 233, 225, 0.8);
      }

      .stats-panel-row span:last-child {
        font-weight: 600;
      }

      .stats-panel small {
        display: block;
        margin-top: 0.4rem;
        font-size: 0.78rem;
        color: rgba(239, 233, 225, 0.8);
      }

      .hero-actions {
        margin-top: 0.4rem;
      }
    }

    @media (min-width: 1100px) {
      .hero-title {
        font-size: 2.7rem;
      }
    }


/* Subtle animations */
section[id] {
  scroll-margin-top: 18px;
}

/*
  Reveal animation is enabled only when JS opts-in by adding `has-reveal` on <html>.
  This avoids hiding content if JS fails to load.
*/
.reveal {
  --reveal-delay: 0ms;
}

html.has-reveal .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 520ms ease-out, transform 520ms ease-out;
  transition-delay: var(--reveal-delay);
  will-change: opacity, transform;
}

html.has-reveal .reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.anchor-flash {
  border-radius: var(--radius-lg);
  animation: anchorFlash 900ms ease-out 1;
}

@keyframes anchorFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(166, 125, 68, 0), 0 0 0 rgba(17, 16, 15, 0);
  }
  35% {
    box-shadow: 0 0 0 6px rgba(166, 125, 68, 0.14), 0 18px 45px rgba(17, 16, 15, 0.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(166, 125, 68, 0), 0 0 0 rgba(17, 16, 15, 0);
  }
}

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

  html.has-reveal .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .anchor-flash {
    animation: none;
  }
}


/* Extracted from inline style="" attributes */
.youtube-handle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.stats-row--spaced {
  margin-top: 0.9rem;
}

.card--mt-lg {
  margin-top: 1.1rem;
}

.card--mb-xl {
  margin-bottom: 1.4rem;
}

.card-title--mb-sm {
  margin-bottom: 0.6rem;
}

.card-title--mb-md {
  margin-bottom: 0.7rem;
}

.link-underline {
  color: inherit;
  text-decoration: underline;
}
