    /* ─────────────────────────────────────
       Reset & Root
    ───────────────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --gold: #C9A96E;
      --gold-d: #9B7A3F;
      --gold-l: #F5EDD8;
      --gold-ll: #FBF7EF;
      --brown: #2C1A0E;
      --brown-m: #5C3D2E;
      --brown-t: #8B7A6A;
      --cream: #FAF7F2;
      --cream-d: #EFE6D8;
      --white: #FFFDF8;
      --dark: #1A0F07;
      --muted: #9B8878;
      --border: rgba(201, 169, 110, .25);
      --shadow: 0 8px 40px rgba(44, 26, 14, .08);
      --shadow-lg: 0 24px 60px rgba(44, 26, 14, .12);
      --transition: .4s cubic-bezier(.4, 0, .2, 1);
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      background: var(--cream);
      color: var(--dark);
      overflow-x: hidden;
      width: 100%;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.15;
      font-weight: 400;
    }

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

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

    em {
      font-style: italic;
    }

    /* ─────────────────────────────────────
       Utility
    ───────────────────────────────────── */
    .container {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 36px;
      border-radius: 2px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: .8rem;
      cursor: pointer;
      letter-spacing: .08em;
      text-transform: uppercase;
      transition: var(--transition);
      border: none;
    }

    .btn-primary {
      background: var(--brown);
      color: var(--gold);
    }

    .btn-primary:hover {
      background: var(--brown-m);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(44, 26, 14, .2);
    }

    .btn-outline {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--brown);
    }

    .btn-outline:hover {
      background: var(--gold);
      color: var(--white);
      transform: translateY(-1px);
    }

    .btn-gold {
      background: var(--gold);
      color: var(--white);
      border: 1px solid var(--gold-d);
    }

    .btn-gold:hover {
      background: var(--gold-d);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(155, 122, 63, .25);
    }

    .btn-white {
      background: var(--white);
      color: var(--brown);
      border: 1px solid var(--cream-d);
    }

    .btn-white:hover {
      background: var(--gold-ll);
      transform: translateY(-1px);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: 'Poppins', sans-serif;
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--gold-d);
      margin-bottom: 16px;
    }

    .section-label::before,
    .section-label::after {
      content: '';
      flex: 0 0 24px;
      height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 16px;
      color: var(--dark);
    }

    .section-title em {
      color: var(--gold-d);
    }

    .section-sub {
      font-size: .92rem;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.9;
      font-weight: 300;
    }

    .text-center {
      text-align: center;
    }

    .gold-line {
      display: block;
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 20px auto;
    }

    .gold-line-left {
      margin: 20px 0;
    }

    /* ─────────────────────────────────────
       Scroll Reveal
    ───────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal-l {
      opacity: 0;
      transform: translateX(-32px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal-r {
      opacity: 0;
      transform: translateX(32px);
      transition: opacity .8s ease, transform .8s ease;
    }

    .reveal.visible,
    .reveal-l.visible,
    .reveal-r.visible {
      opacity: 1;
      transform: translate(0);
    }

    /* ─────────────────────────────────────
       Navbar
    ───────────────────────────────────── */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1002;
      padding: 22px 0;
      transition: var(--transition);
    }

    #navbar.scrolled {
      background: rgba(250, 247, 242, .96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 600;
      color: var(--dark);
      letter-spacing: .02em;
    }

    .nav-logo-icon {
      width: 34px;
      height: 34px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .05em;
      color: var(--gold-d);
    }

    .nav-logo-img {
      object-fit: cover;
      padding: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }

    .nav-links a {
      font-size: .78rem;
      font-weight: 400;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--brown-m);
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--gold-d);
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1px;
      background: var(--dark);
      transition: var(--transition);
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--cream);
      z-index: 1001;
      flex-direction: column;
      padding: 80px 32px 40px;
      gap: 0;
      overflow-y: auto;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-size: 1rem;
      font-weight: 400;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      color: var(--dark);
      letter-spacing: .05em;
    }

    .mobile-menu a:last-child {
      border-bottom: none;
      margin-top: 24px;
    }

    .mobile-menu .btn-primary {
      color: var(--gold);
    }

    /* ─────────────────────────────────────
       Hero
    ───────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    /* Subtle textured background lines */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg,
          transparent,
          transparent 79px,
          rgba(201, 169, 110, .06) 80px);
      pointer-events: none;
    }

    .hero-deco-top {
      position: absolute;
      top: 0;
      right: 0;
      width: 40vw;
      height: 100%;
      background: linear-gradient(135deg, var(--gold-ll) 0%, transparent 60%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
      padding: 60px 0;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .hero-eyebrow-line {
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .hero-eyebrow span {
      font-size: .7rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold-d);
    }

    .hero-title {
      font-size: clamp(2.6rem, 5.5vw, 4.4rem);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 24px;
      color: var(--dark);
    }

    .hero-title em {
      color: var(--gold-d);
      font-style: italic;
    }

    .hero-desc {
      font-size: .95rem;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 40px;
      max-width: 440px;
    }

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

    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 52px;
      padding-top: 36px;
      border-top: 1px solid var(--border);
    }

    .hero-stat-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--brown);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: .72rem;
      color: var(--muted);
      margin-top: 4px;
      letter-spacing: .04em;
    }

    /* Phone mockup */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .phone-frame-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      isolation: isolate;
    }

    .hero-visual {
      overflow: visible;
    }

    .phone-frame {
      width: 240px;
      height: 480px;
      border: 1px solid var(--brown-m);
      border-radius: 32px;
      background: var(--dark);
      position: relative;
      overflow: hidden;
      box-shadow:
        0 0 0 6px rgba(44, 26, 14, .04),
        0 40px 80px rgba(44, 26, 14, .3),
        inset 0 0 0 1px rgba(201, 169, 110, .15);
    }

    .phone-notch {
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 6px;
      background: rgba(201, 169, 110, .3);
      border-radius: 3px;
      z-index: 2;
    }

    .phone-screen-inner {
      width: 100%;
      height: 100%;
      background: linear-gradient(175deg, #FBF8F3 0%, #F5EDD8 45%, #2C1A0E 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 36px 18px 20px;
    }

    .ps-brand {
      font-family: 'Poppins', sans-serif;
      font-size: .45rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--brown-t);
      margin-bottom: 6px;
    }

    .ps-ornament {
      width: 40px;
      height: 1px;
      background: var(--gold);
      margin: 6px auto;
    }

    .ps-couple {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.25rem;
      font-weight: 300;
      color: var(--dark);
      text-align: center;
      line-height: 1.3;
    }

    .ps-amp {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: .85rem;
      color: var(--gold);
      margin: 2px 0;
    }

    .ps-date {
      font-size: .5rem;
      color: var(--brown-t);
      letter-spacing: .15em;
      text-transform: uppercase;
      margin-top: 8px;
      text-align: center;
    }

    .ps-countdown {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .ps-count-item {
      text-align: center;
    }

    .ps-count-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: .85rem;
      color: var(--brown);
      font-weight: 600;
      background: rgba(201, 169, 110, .12);
      width: 28px;
      height: 28px;
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ps-count-label {
      font-size: .35rem;
      color: var(--brown-t);
      margin-top: 2px;
      letter-spacing: .1em;
    }

    .ps-rsvp {
      margin-top: auto;
      width: 100%;
      background: var(--brown);
      color: var(--gold);
      border-radius: 2px;
      padding: 8px 16px;
      font-family: 'Poppins', sans-serif;
      font-size: .52rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-align: center;
      text-transform: uppercase;
    }

    /* Side card */
    .phone-side-card {
      position: absolute;
      left: -80px;
      top: 50%;
      transform: translateY(-50%) rotate(-4deg);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 16px 18px;
      width: 140px;
      box-shadow: var(--shadow);
    }

    .psc-label {
      font-size: .6rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .psc-price-old {
      font-size: .65rem;
      color: var(--muted);
      text-decoration: line-through;
    }

    .psc-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--brown);
      font-weight: 600;
      line-height: 1;
    }

    .psc-badge {
      display: inline-block;
      margin-top: 6px;
      background: var(--gold-ll);
      border: 1px solid var(--gold);
      color: var(--gold-d);
      font-size: .55rem;
      font-weight: 500;
      letter-spacing: .05em;
      padding: 2px 8px;
    }

    .phone-deco-ring {
      position: absolute;
      right: -60px;
      bottom: 40px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      border: 1px solid var(--border);
      pointer-events: none;
      overflow: hidden;
    }

    .phone-deco-ring::before {
      content: '';
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      border: 1px solid var(--gold-l);
    }

    /* Phone raw image (PNG already contains mockup) */
    .phone-img-raw {
      width: 100%;
      max-width: 480px;
      height: auto;
      display: block;
      filter: drop-shadow(0 40px 80px rgba(44, 26, 14, .3));
    }

    @media (max-width: 768px) {
      .phone-img-raw {
        max-width: 300px;
        margin: 0 auto;
      }
    }

    @media (max-width: 360px) {
      .phone-img-raw {
        max-width: 240px;
      }
    }

    /* ─────────────────────────────────────
       Portfolio
    ───────────────────────────────────── */
    #portfolio {
      padding: 120px 0;
      background: var(--cream);
      border-top: 1px solid var(--border);
    }

    .portfolio-header {
      margin-bottom: 72px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .portfolio-item {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: 1px solid var(--border);
      background: var(--white);
      touch-action: manipulation;
      -webkit-tap-highlight-color: rgba(201, 169, 110, .15);
      user-select: none;
      -webkit-user-select: none;
    }

    .portfolio-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(44, 26, 14, 0);
      transition: var(--transition);
    }

    .portfolio-item:hover::after {
      background: rgba(44, 26, 14, .45);
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-item img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
      transition: transform .6s cubic-bezier(.4,0,.2,1);
    }

    .portfolio-item:hover img {
      transform: scale(1.04);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .4s ease;
      z-index: 2;
      gap: 12px;
    }

    .portfolio-overlay-icon {
      width: 52px;
      height: 52px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      background: rgba(201,169,110,.15);
      color: var(--gold-l);
    }

    .portfolio-overlay-label {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold-l);
      font-weight: 500;
    }

    .portfolio-label {
      padding: 16px 20px;
      border-top: 1px solid var(--border);
      background: var(--white);
    }

    .portfolio-label span {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: var(--dark);
      font-weight: 400;
    }

    .portfolio-label small {
      display: block;
      font-size: .7rem;
      color: var(--muted);
      margin-top: 2px;
      letter-spacing: .04em;
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(26, 15, 7, .92);
      z-index: 200;
      align-items: center;
      justify-content: center;
      padding: 32px;
      backdrop-filter: blur(8px);
    }

    .lightbox.open {
      display: flex;
    }

    .lightbox-img-wrap {
      position: relative;
      max-height: 90vh;
      max-width: 480px;
      width: 100%;
    }

    .lightbox-img-wrap img {
      width: 100%;
      height: auto;
      max-height: 90vh;
      object-fit: contain;
      border: 1px solid rgba(201,169,110,.2);
      border-radius: 2px;
    }

    .lightbox-close {
      position: absolute;
      top: -16px;
      right: -16px;
      width: 36px;
      height: 36px;
      border: 1px solid var(--gold);
      background: var(--brown);
      color: var(--gold);
      font-size: .9rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: var(--transition);
      z-index: 3;
    }

    .lightbox-close:hover {
      background: var(--gold);
      color: var(--brown);
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border: 1px solid rgba(201,169,110,.3);
      background: rgba(44,26,14,.6);
      color: var(--gold-l);
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .lightbox-nav:hover {
      background: rgba(201,169,110,.15);
      border-color: var(--gold);
    }

    .lightbox-prev { left: -56px; }
    .lightbox-next { right: -56px; }

    @media (max-width: 1024px) {
      .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      #portfolio { padding: 72px 0; }

      .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .portfolio-item img {
        height: 300px;
      }

      .lightbox-nav { display: none; }
    }

    /* ─────────────────────────────────────
       Ticker
    ───────────────────────────────────── */
    .ticker-wrap {
      background: var(--brown);
      overflow: hidden;
      padding: 14px 0;
      white-space: nowrap;
      border-top: 1px solid rgba(201, 169, 110, .2);
      border-bottom: 1px solid rgba(201, 169, 110, .2);
    }

    .ticker {
      display: inline-flex;
      animation: ticker 25s linear infinite;
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 0 48px;
      color: rgba(255, 253, 248, .7);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 400;
    }

    .ticker-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    @keyframes ticker {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    /* ─────────────────────────────────────
       About
    ───────────────────────────────────── */
    #about {
      padding: 120px 0;
      background: var(--cream);
      overflow: hidden;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-card {
      background: var(--brown);
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .about-card::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 110, .1);
      pointer-events: none;
    }

    .about-card-ornament {
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: rgba(201, 169, 110, .1);
      position: absolute;
      top: 16px;
      right: 24px;
      line-height: 1;
      pointer-events: none;
      font-style: italic;
    }

    .about-card h3 {
      font-size: 1.8rem;
      color: var(--gold-l);
      margin-bottom: 16px;
      font-weight: 300;
    }

    .about-card p {
      color: rgba(251, 247, 239, .6);
      line-height: 1.9;
      font-size: .88rem;
    }

    .about-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      margin-top: 32px;
      border: 1px solid rgba(201, 169, 110, .15);
    }

    .about-stat-box {
      padding: 20px 16px;
      background: rgba(255, 255, 255, .03);
      border-right: 1px solid rgba(201, 169, 110, .1);
    }

    .about-stat-box:nth-child(even) {
      border-right: none;
    }

    .about-stat-box:nth-child(3),
    .about-stat-box:nth-child(4) {
      border-top: 1px solid rgba(201, 169, 110, .1);
    }

    .about-stat-val {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.6rem;
      color: var(--gold);
      font-weight: 600;
      line-height: 1;
    }

    .about-stat-lbl {
      font-size: .65rem;
      color: rgba(255, 255, 255, .4);
      margin-top: 4px;
      letter-spacing: .05em;
    }

    .about-content {
      padding-left: 16px;
    }

    .about-content h2 {
      margin-bottom: 8px;
    }

    .about-content .gold-line-left {
      margin: 20px 0;
    }

    .about-content p {
      color: var(--brown-t);
      line-height: 1.9;
      margin-bottom: 14px;
      font-size: .9rem;
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .about-tag {
      padding: 5px 14px;
      border: 1px solid var(--border);
      color: var(--brown-m);
      font-size: .72rem;
      letter-spacing: .04em;
      font-weight: 400;
    }

    /* ─────────────────────────────────────
       Products
    ───────────────────────────────────── */
    #products {
      padding: 120px 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .products-header {
      margin-bottom: 72px;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2px;
    }

    .product-card {
      background: var(--cream);
      position: relative;
      transition: var(--transition);
      border: 1px solid var(--border);
    }

    .product-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .product-card.featured {
      border-color: var(--gold);
    }

    .product-card-top {
      padding: 48px 40px 36px;
      position: relative;
      border-bottom: 1px solid var(--border);
      background: linear-gradient(135deg, var(--gold-ll) 0%, var(--cream) 100%);
    }

    .product-card.coming-soon .product-card-top {
      background: linear-gradient(135deg, #F9F6F2 0%, var(--white) 100%);
    }

    .product-num {
      position: absolute;
      top: 20px;
      right: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      color: rgba(201, 169, 110, .25);
      line-height: 1;
      font-weight: 300;
    }

    .product-icon {
      width: 48px;
      height: 48px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 24px;
      background: var(--white);
    }

    .product-card.coming-soon .product-icon {
      border-color: var(--border);
    }

    .product-promo {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--brown);
      color: var(--gold);
      font-size: .62rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 12px;
      margin-bottom: 16px;
    }

    .product-name {
      font-size: 1.8rem;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .product-tagline {
      color: var(--brown-t);
      font-size: .85rem;
      line-height: 1.7;
    }

    .product-card-bottom {
      padding: 36px 40px;
    }

    .price-block {
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }

    .price-old {
      font-size: .82rem;
      color: var(--muted);
      text-decoration: line-through;
    }

    .price-new {
      display: flex;
      align-items: baseline;
      gap: 4px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 600;
      color: var(--brown);
      line-height: 1;
      margin-top: 4px;
    }

    .price-new .currency {
      font-size: 1.3rem;
    }

    .price-new .period {
      font-size: .78rem;
      color: var(--muted);
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      margin-left: 4px;
    }

    .price-saving {
      display: inline-block;
      margin-top: 8px;
      border: 1px solid var(--gold);
      color: var(--gold-d);
      font-size: .62rem;
      letter-spacing: .08em;
      padding: 2px 10px;
    }

    .price-coming {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      color: var(--muted);
      font-style: italic;
      font-weight: 300;
    }

    .feature-list {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: .84rem;
      color: var(--brown-t);
      line-height: 1.5;
    }

    .fi {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      border: 1px solid var(--gold);
      color: var(--gold-d);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .55rem;
      margin-top: 1px;
    }

    .product-card.coming-soon .fi {
      border-color: var(--border);
      color: var(--muted);
    }

    .coming-soon-overlay {
      position: absolute;
      inset: 0;
      background: rgba(250, 247, 242, .75);
      backdrop-filter: blur(3px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cs-inner {
      text-align: center;
    }

    .cs-ornament {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      letter-spacing: .2em;
      color: var(--brown-t);
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .cs-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      color: var(--brown);
      font-style: italic;
    }

    /* ─────────────────────────────────────
       How It Works
    ───────────────────────────────────── */
    #how {
      padding: 120px 0;
      background: var(--cream);
      overflow: hidden;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 72px;
      position: relative;
    }

    .steps::before {
      content: '';
      position: absolute;
      top: 28px;
      left: calc(12.5% + 16px);
      right: calc(12.5% + 16px);
      height: 1px;
      background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
    }

    .step-card {
      padding: 0 24px 32px;
      text-align: center;
      position: relative;
    }

    .step-num-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }

    .step-num {
      width: 56px;
      height: 56px;
      border: 1px solid var(--gold);
      background: var(--cream);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      color: var(--brown);
      position: relative;
      z-index: 1;
    }

    .step-icon {
      font-size: 1.4rem;
      margin-bottom: 14px;
    }

    .step-title {
      font-size: 1.1rem;
      margin-bottom: 10px;
      font-weight: 400;
    }

    .step-desc {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────
       Features
    ───────────────────────────────────── */
    #features {
      padding: 120px 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 72px;
      border: 1px solid var(--border);
    }

    .feature-card {
      padding: 36px 32px;
      background: var(--white);
      transition: var(--transition);
      position: relative;
      border-right: 1px solid var(--border);
    }

    .feature-card:nth-child(3n) {
      border-right: none;
    }

    .feature-card:hover {
      background: var(--gold-ll);
    }

    .feature-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 32px;
      right: 32px;
      height: 1px;
      background: var(--border);
    }

    .feature-card:nth-child(n+7)::after {
      display: none;
    }

    .feature-card-icon {
      font-size: 1.5rem;
      margin-bottom: 16px;
      display: block;
      line-height: 1;
    }

    .feature-card h3 {
      font-size: 1.05rem;
      margin-bottom: 8px;
      font-weight: 400;
      color: var(--dark);
    }

    .feature-card p {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.7;
    }

    /* ─────────────────────────────────────
       Partner / EO
    ───────────────────────────────────── */
    #partner {
      padding: 120px 0;
      background: var(--brown);
      position: relative;
      overflow: hidden;
    }

    #partner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(0deg, transparent, transparent 59px,
          rgba(201, 169, 110, .04) 60px);
      pointer-events: none;
    }

    #partner::after {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .partner-inner {
      position: relative;
      z-index: 1;
    }

    .partner-header {
      color: var(--gold-l);
      margin-bottom: 72px;
    }

    .partner-header .section-label {
      color: var(--gold);
    }

    .partner-header .section-label::before,
    .partner-header .section-label::after {
      background: rgba(201, 169, 110, .5);
    }

    .partner-header .section-title {
      color: var(--gold-l);
    }

    .partner-header .section-sub {
      color: rgba(245, 237, 216, .5);
    }

    .partner-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .partner-benefits {
      display: flex;
      flex-direction: column;
      gap: 1px;
      border: 1px solid rgba(201, 169, 110, .15);
    }

    .benefit-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: rgba(255, 255, 255, .03);
      padding: 28px 24px;
      transition: var(--transition);
      border-bottom: 1px solid rgba(201, 169, 110, .1);
    }

    .benefit-item:last-child {
      border-bottom: none;
    }

    .benefit-item:hover {
      background: rgba(201, 169, 110, .06);
    }

    .benefit-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      color: rgba(201, 169, 110, .3);
      line-height: 1;
      flex-shrink: 0;
      width: 32px;
      font-weight: 300;
    }

    .benefit-content h4 {
      color: var(--gold-l);
      font-size: 1rem;
      margin-bottom: 6px;
      font-weight: 400;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
    }

    .benefit-content p {
      color: rgba(245, 237, 216, .5);
      font-size: .82rem;
      line-height: 1.7;
    }

    .partner-cta-box {
      border: 1px solid rgba(201, 169, 110, .2);
      padding: 48px 40px;
      background: rgba(255, 255, 255, .03);
    }

    .partner-cta-box h3 {
      color: var(--gold-l);
      font-size: 2rem;
      margin-bottom: 12px;
      font-weight: 300;
    }

    .partner-cta-box>p {
      color: rgba(245, 237, 216, .5);
      font-size: .85rem;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .partner-contacts {
      display: flex;
      flex-direction: column;
      gap: 1px;
      margin-bottom: 28px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, .04);
      padding: 16px 20px;
      transition: var(--transition);
      cursor: pointer;
      border: 1px solid rgba(201, 169, 110, .1);
    }

    .contact-item:hover {
      background: rgba(201, 169, 110, .08);
      border-color: rgba(201, 169, 110, .3);
    }

    .contact-item-icon {
      width: 32px;
      height: 32px;
      border: 1px solid rgba(201, 169, 110, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }

    .contact-item-text {
      flex: 1;
    }

    .contact-item-label {
      font-size: .6rem;
      color: rgba(255, 255, 255, .35);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .contact-item-value {
      font-size: .85rem;
      color: var(--gold-l);
      font-weight: 400;
      margin-top: 2px;
    }

    .contact-item-arrow {
      color: rgba(201, 169, 110, .4);
      font-size: .75rem;
    }

    /* ─────────────────────────────────────
       Testimonials
    ───────────────────────────────────── */
    #testimonials {
      padding: 120px 0;
      background: var(--cream);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 72px;
    }

    .testi-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 36px 32px;
      position: relative;
      transition: var(--transition);
    }

    .testi-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: var(--gold);
    }

    .testi-card::before {
      content: '\201C';
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      line-height: 1;
      color: rgba(201, 169, 110, .15);
      position: absolute;
      top: 12px;
      left: 20px;
      pointer-events: none;
    }

    .testi-stars {
      color: var(--gold);
      font-size: .85rem;
      letter-spacing: 3px;
      margin-bottom: 16px;
    }

    .testi-text {
      font-size: .86rem;
      color: var(--brown-t);
      line-height: 1.85;
      margin-bottom: 28px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 40px;
      height: 40px;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: .75rem;
      color: var(--gold-d);
      flex-shrink: 0;
      background: var(--gold-ll);
    }

    .testi-name {
      font-size: .88rem;
      font-weight: 500;
      color: var(--dark);
    }

    .testi-role {
      font-size: .72rem;
      color: var(--muted);
    }

    /* ─────────────────────────────────────
       CTA Banner
    ───────────────────────────────────── */
    #cta {
      padding: 120px 0;
      background: linear-gradient(135deg, var(--brown) 0%, #1A0F07 100%);
      position: relative;
      overflow: hidden;
      border-top: 1px solid rgba(201, 169, 110, .2);
    }

    #cta::before {
      content: '';
      position: absolute;
      top: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .cta-deco {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 110, .07);
      pointer-events: none;
    }

    .cta-deco-1 {
      width: 500px;
      height: 500px;
      top: -200px;
      right: -100px;
    }

    .cta-deco-2 {
      width: 300px;
      height: 300px;
      bottom: -100px;
      left: -80px;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
    }

    .cta-inner h2 {
      color: var(--gold-l);
      font-size: clamp(2rem, 4vw, 3.4rem);
      margin-bottom: 8px;
      font-weight: 300;
    }

    .cta-inner .gold-line {
      margin: 20px auto;
    }

    .cta-inner p {
      color: rgba(245, 237, 216, .55);
      font-size: .9rem;
      margin-bottom: 44px;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.9;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* ─────────────────────────────────────
       Footer
    ───────────────────────────────────── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(201, 169, 110, .15);
      padding: 64px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand .nav-logo {
      color: var(--gold-l);
      margin-bottom: 16px;
    }

    .footer-brand p {
      font-size: .82rem;
      color: rgba(255, 253, 248, .4);
      line-height: 1.8;
      max-width: 280px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .social-btn {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(201, 169, 110, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      transition: var(--transition);
      color: rgba(255, 253, 248, .4);
    }

    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .footer-col h5 {
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      list-style: none;
    }

    .footer-links a {
      font-size: .8rem;
      color: rgba(255, 253, 248, .4);
      transition: color .2s;
    }

    .footer-links a:hover {
      color: var(--gold-l);
    }

    .footer-bottom {
      border-top: 1px solid rgba(201, 169, 110, .1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .75rem;
      color: rgba(255, 253, 248, .25);
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ─────────────────────────────────────
       Responsive — Tablet
    ───────────────────────────────────── */
    @media (max-width: 1024px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .about-content {
        padding-left: 0;
      }

      .partner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

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

      .footer-brand {
        grid-column: 1 / -1;
      }

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

      .features-grid .feature-card:nth-child(3n) {
        border-right: 1px solid var(--border);
      }

      .features-grid .feature-card:nth-child(2n) {
        border-right: none;
      }

      .steps::before {
        left: 50px;
        right: 50px;
      }
    }

    /* ─────────────────────────────────────
       Responsive — Mobile
    ───────────────────────────────────── */
    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }

      /* Navbar */
      .nav-links,
      .nav-cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      /* Hero */
      #hero {
        padding-top: 72px;
        padding-bottom: 52px;
        min-height: auto;
      }

      .hero-deco-top {
        display: none;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 28px 0;
      }

      .hero-visual {
        order: -1;
      }

      .phone-frame-wrap {
        justify-content: center;
      }

      .phone-frame {
        width: 180px;
        height: 360px;
        border-radius: 24px;
      }

      .phone-screen-inner {
        padding: 28px 14px 14px;
      }

      .phone-side-card,
      .phone-deco-ring {
        display: none;
      }

      .hero-title {
        font-size: clamp(1.8rem, 6.5vw, 2.6rem);
      }

      .hero-desc {
        font-size: .88rem;
        margin-bottom: 28px;
      }

      .hero-stats {
        flex-wrap: wrap;
        gap: 20px 28px;
        margin-top: 32px;
        padding-top: 24px;
      }

      .hero-stat-value {
        font-size: 1.8rem;
      }

      /* Sections */
      #about,
      #products,
      #how,
      #features,
      #testimonials,
      #partner,
      #cta {
        padding: 72px 0;
      }

      /* About */
      .about-card {
        padding: 36px 28px;
      }

      /* Products */
      .products-grid {
        grid-template-columns: 1fr;
      }

      .product-card-top {
        padding: 32px 28px 28px;
      }

      .product-card-bottom {
        padding: 28px;
      }

      /* Steps */
      .steps {
        grid-template-columns: 1fr 1fr;
        margin-top: 48px;
      }

      .steps::before {
        display: none;
      }

      /* Features */
      .features-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
      }

      .feature-card {
        border-right: none !important;
      }

      .feature-card::after {
        left: 28px;
        right: 28px;
      }

      /* Testimonials */
      .testi-grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
      }

      /* Partner */
      .partner-header {
        margin-bottom: 48px;
      }

      .partner-cta-box {
        padding: 36px 28px;
      }

      /* CTA */
      .cta-inner h2 {
        font-size: clamp(1.8rem, 5.5vw, 2.6rem);
      }

      .cta-inner p {
        font-size: .85rem;
        margin-bottom: 32px;
      }

      /* Footer */
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-brand {
        grid-column: auto;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ─────────────────────────────────────
       Responsive — Small Mobile
    ───────────────────────────────────── */
    @media (max-width: 480px) {
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
      }

      .hero-stats {
        gap: 14px 24px;
      }

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

      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .cta-actions .btn {
        width: 100%;
        max-width: 340px;
        justify-content: center;
      }

      .price-new {
        font-size: 2.4rem;
      }
    }

    /* ─────────────────────────────────────
       Responsive — Very Small
    ───────────────────────────────────── */
    @media (max-width: 360px) {
      .phone-frame {
        width: 150px;
        height: 300px;
        border-radius: 20px;
      }

      .hero-stats {
        flex-direction: column;
        gap: 12px;
      }

      .hero-stat-value {
        font-size: 1.5rem;
      }
    }

    /* ─────────────────────────────────────
       Promo Popup
    ───────────────────────────────────── */
    .promo-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(26, 15, 7, .75);
      backdrop-filter: blur(6px);
      z-index: 1003;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-sizing: border-box;
      overflow: hidden;
    }

    .promo-overlay.open {
      display: flex;
    }

    .promo-modal {
      background: var(--white);
      border-radius: 4px;
      position: relative;
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 32px 80px rgba(0,0,0,.35);
      animation: promoIn .4s cubic-bezier(.4,0,.2,1) forwards;
      scrollbar-width: none;
    }

    @keyframes promoIn {
      from { opacity: 0; transform: translateY(24px) scale(.97); }
      to   { opacity: 1; transform: translateY(0) scale(1); }
    }

    .promo-modal::-webkit-scrollbar { display: none; }

    .promo-close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(26,15,7,.6);
      border: 1px solid rgba(201,169,110,.3);
      color: var(--gold-l);
      font-size: .8rem;
      cursor: pointer;
      touch-action: manipulation;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: background .2s;
    }

    .promo-close:hover {
      background: var(--brown);
    }

    .promo-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .promo-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .promo-img:first-child {
      border-radius: 4px 0 0 0;
    }

    .promo-img:last-child {
      border-radius: 0 4px 0 0;
    }

    .promo-footer {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border);
      background: var(--white);
    }

    .promo-btn {
      flex: 1;
      background: var(--brown);
      color: var(--gold);
      border: none;
      padding: 13px 24px;
      border-radius: 2px;
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      font-size: .82rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-align: center;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .15s;
      display: block;
    }

    .promo-btn:hover {
      background: var(--brown-m);
      transform: translateY(-1px);
    }

    .promo-skip {
      background: none;
      border: 1px solid var(--border);
      color: var(--muted);
      padding: 13px 20px;
      border-radius: 2px;
      font-family: 'Poppins', sans-serif;
      font-size: .78rem;
      letter-spacing: .06em;
      cursor: pointer;
      touch-action: manipulation;
      white-space: nowrap;
      transition: border-color .2s, color .2s;
    }

    .promo-skip:hover {
      border-color: var(--brown-t);
      color: var(--brown);
    }

    .promo-dots {
      display: none;
    }

    @media (max-width: 520px) {
      .promo-overlay {
        padding: 12px;
        align-items: center;
      }

      .promo-modal {
        max-height: 90vh;
        max-width: 100%;
        width: 100%;
        border-radius: 12px;
        overflow-y: auto;
      }

      .promo-images {
        display: flex;
        flex-direction: row;
        grid-template-columns: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
      }

      .promo-images::-webkit-scrollbar {
        display: none;
      }

      .promo-img {
        flex: 0 0 100%;
        width: 100%;
        height: 370px;
        object-fit: cover;
        object-position: top;
        scroll-snap-align: start;
        border-radius: 0;
      }

      .promo-img:first-child {
        border-radius: 12px 12px 0 0;
      }

      .promo-img:last-child {
        border-radius: 0;
      }

      .promo-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        padding: 10px 0 4px;
        background: var(--white);
      }

      .promo-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--cream-d);
        transition: background .25s, transform .25s;
      }

      .promo-dot.active {
        background: var(--gold);
        transform: scale(1.3);
      }

      .promo-footer {
        flex-direction: row;
        padding: 12px 14px;
        gap: 8px;
      }

      .promo-btn {
        font-size: .8rem;
        padding: 11px 14px;
        flex: 1;
      }

      .promo-skip {
        font-size: .75rem;
        padding: 11px 14px;
        white-space: nowrap;
      }
    }

    /* ─────────────────────────────────────
       Floating WhatsApp Button
    ───────────────────────────────────── */
    .wa-fab {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,.45);
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
    }

    .wa-fab:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(37,211,102,.55);
    }

    .wa-fab-ping {
      position: absolute;
      top: 2px;
      right: 2px;
      width: 14px;
      height: 14px;
      background: #ff4444;
      border: 2px solid #fff;
      border-radius: 50%;
      animation: waBadge 2.5s infinite;
    }

    @keyframes waBadge {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    @media (max-width: 480px) {
      .wa-fab {
        bottom: 20px;
        right: 16px;
      }
    }
