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

    :root {
      --cream:   #FFF6E7;
      --dark:    #4A1F0F;
      --orange:  #F08B1C;
      --orange2: #e07c10;
      --text:    #2a2a2a;
      --muted:   #6b6b6b;
    }

    body {
      font-family: 'Inter', Helvetica, Arial, sans-serif;
      background: #fff;
      color: var(--text);
      line-height: 1.65;
    }

    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ── TOP BAR ── */
    .topbar {
      background: var(--dark);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 8px 20px;
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      letter-spacing: 0.3px;
    }
    .topbar span { display: flex; align-items: center; gap: 6px; }

    /* ── HEADER ── */
    header {
      background: #fff;
      border-bottom: 1px solid #e8ddd0;
      padding: 14px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 22px;
      font-weight: 900;
      color: var(--dark);
      letter-spacing: -0.5px;
    }
    .header-cta {
      background: var(--orange);
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 9px 22px;
      border-radius: 6px;
      transition: background 0.2s;
    }
    .header-cta:hover { background: var(--orange2); }

    /* ── HERO ── */
    .hero {
      background: var(--cream);
      padding: 60px 40px 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }
    .hero-left { max-width: 420px; }
    .hero-left h1 {
      font-size: 38px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero-left p {
      font-size: 15px;
      color: var(--muted);
      margin-bottom: 30px;
      max-width: 340px;
    }
    .btn {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 14px 30px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.2px;
    }
    .btn:hover { background: var(--orange2); transform: translateY(-1px); }

    /* hero image grid */
    .hero-imgs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      max-width: 420px;
    }
    .hero-imgs img {
      border-radius: 12px;
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .hero-imgs img.tall {
      grid-row: span 2;
      height: 100%;
    }
    .hero-imgs .grid3 {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 10px;
    }
    .hero-imgs .grid3 img {
      height: 95px;
    }

    /* ── BADGES BAR ── */
    .badges {
      background: #fff;
      border-top: 1px solid #ede5d8;
      border-bottom: 1px solid #ede5d8;
      padding: 16px 40px;
      display: flex;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap;
    }
    .badge-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
    }
    .badge-item .badge-icon {
      width: 28px;
      height: 28px;
      background: var(--orange);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      color: #fff;
    }

    /* ── SECTION GENERIC ── */
    .section { padding: 70px 40px; }
    .section-inner { max-width: 960px; margin: 0 auto; }
    .section-title {
      font-size: 36px;
      font-weight: 900;
      color: var(--dark);
      text-align: center;
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      text-align: center;
      color: var(--muted);
      font-size: 15px;
      max-width: 560px;
      margin: 0 auto 48px;
    }

    /* ── FEATURES 2-COL ── */
    .features-layout {
      display: flex;
      gap: 50px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .features-list { flex: 1; min-width: 260px; }
    .feature-item { margin-bottom: 32px; }
    .feature-item h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 6px;
    }
    .feature-item h3 .fi {
      width: 36px;
      height: 36px;
      background: var(--orange);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #fff;
      flex-shrink: 0;
      margin: 0 auto 10px;
    }
    .feature-item p { font-size: 14px; color: var(--muted); text-align: center; }
    .features-img { flex: 1; min-width: 260px; text-align: center; }
    .features-img img {
      border-radius: 16px;
      width: 100%;
      max-width: 360px;
      margin: 0 auto;
    }
    .features-cta { text-align: center; margin-top: 40px; }

    /* ── BOTTLE SECTION ── */
    .bottle-section { background: var(--cream); }
    .bottle-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 36px;
    }
    .bottle-card {
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      background: #e8ddd0;
      min-height: 260px;
    }
    .bottle-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
    }
    .bottle-card-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(74,31,15,0.85) 0%, transparent 100%);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      padding: 40px 16px 16px;
      line-height: 1.4;
    }

    /* ── STATS ── */
    .stats-section {
      background: var(--dark);
      padding: 70px 40px;
    }
    .stats-section .section-title { color: #fff; }
    .stats-section .section-sub { color: rgba(255,255,255,0.7); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }
    .stat-card { text-align: center; }
    .stat-bar-wrap {
      background: rgba(255,255,255,0.15);
      border-radius: 30px;
      height: 8px;
      margin-bottom: 14px;
      overflow: hidden;
    }
    .stat-bar {
      background: var(--orange);
      height: 100%;
      border-radius: 30px;
    }
    .stat-pct {
      font-size: 42px;
      font-weight: 900;
      color: var(--orange);
      margin-bottom: 8px;
    }
    .stat-label {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 6px;
    }
    .stat-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
    }
    .stats-cta { text-align: center; margin-top: 40px; }

    /* ── FAQ ── */
    .faq-section { background: #fff; }
    .faq-layout {
      display: flex;
      gap: 60px;
      align-items: flex-start;
      flex-wrap: wrap;
    }
    .faq-img { flex: 0 0 260px; }
    .faq-img img { border-radius: 16px; width: 100%; }
    .faq-list { flex: 1; min-width: 260px; }
    .faq-item {
      border-bottom: 1px solid #e8ddd0;
      padding: 18px 0;
      cursor: pointer;
    }
    .faq-item:first-child { padding-top: 0; }
    .faq-question {
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .faq-question::after {
      content: "›";
      font-size: 20px;
      color: var(--orange);
      font-weight: 900;
      transform: rotate(90deg);
      transition: transform 0.2s;
    }
    .faq-answer {
      font-size: 14px;
      color: var(--muted);
      margin-top: 10px;
      display: none;
      line-height: 1.7;
    }
    .faq-item.open .faq-question::after { transform: rotate(-90deg); }
    .faq-item.open .faq-answer { display: block; }
    .faq-cta { text-align: center; margin-top: 40px; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.7);
      padding: 40px 40px 24px;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 28px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-logo {
      font-size: 20px;
      font-weight: 900;
      color: #fff;
    }
    .footer-links {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      font-size: 13px;
    }
    .footer-links a { color: rgba(255,255,255,0.7); }
    .footer-links a:hover { color: #fff; }
    .footer-bottom {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
      line-height: 1.7;
      margin-top: 16px;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      .hero { padding: 40px 20px; gap: 30px; }
      .hero-left h1 { font-size: 28px; }
      .section { padding: 50px 20px; }
      .section-title { font-size: 26px; }
      .bottle-cards { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; gap: 24px; }
      .faq-layout { flex-direction: column; }
      .faq-img { display: none; }
      header { padding: 14px 20px; }
      .topbar { gap: 16px; font-size: 11px; }
      .footer-top { flex-direction: column; }
    }
  