  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F5F0E8;
    --cream-dark: #EDE7D9;
    --forest: #1A3A2A;
    --forest-mid: #2B5640;
    --forest-light: #3D7357;
    --sage: #7BA899;
    --sage-light: #B8D4CE;
    --gold: #C8A96E;
    --gold-light: #E8D5A8;
    --gold-pale: #FAF4E6;
    --white: #FFFFFF;
    --text-dark: #0F2219;
    --text-mid: #3A5448;
    --text-muted: #7A9690;
    --border: rgba(26,58,42,0.12);
    --ff-display: 'DM Serif Display', Georgia, serif;
    --ff-body: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--ff-body);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245,240,232,0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 0 5vw;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo img { height: 32px; width: auto; }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover, .nav-links a.active { color: var(--forest); font-weight: 500; }

  .nav-cta {
    background: var(--forest) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--forest-mid) !important; }

  /* ── PAGE HEADER ── */
  .page-header {
    padding: 120px 5vw 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    border-bottom: 1px solid var(--border);
  }

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
  }

  .breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--forest); }
  .breadcrumb .sep { opacity: 0.4; }

  .page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--forest);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 1rem;
  }

  .page-eyebrow span { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

  .page-header h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--forest);
  }

  .page-header h1 em { font-style: italic; color: var(--forest-light); }

  .page-header-right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    justify-content: flex-end;
  }

  .page-header-desc {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
    max-width: 400px;
  }

  .included-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 400;
  }

  .pill svg { stroke: var(--sage); flex-shrink: 0; }

  /* ── COMPARISON BAND ── */
  .compare-band {
    background: var(--forest);
    padding: 18px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .compare-band-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .compare-band span {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
  }

  .compare-band strong {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
  }

  .compare-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.2);
  }

  .compare-band-link {
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
    white-space: nowrap;
  }

  .compare-band-link:hover { gap: 8px; }

  /* ── MAIN LAYOUT ── */
  .page-body {
    padding: 60px 5vw 100px;
  }

  /* ── PRODUCT CARDS (two-column layout) ── */
  .product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
  }

  .product-entry {
    background: var(--white);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    transition: box-shadow 0.25s;
    position: relative;
    border: 1px solid var(--border);
  }

  .product-entry:hover {
    z-index: 2;
    box-shadow: 0 0 0 2px var(--forest), 0 24px 60px rgba(26,58,42,0.1);
  }

  /* Best seller entry gets a subtle accent */
  .product-entry.featured {
    background: var(--white);
  }

  .product-entry.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest) 0%, var(--forest-light) 100%);
  }

  /* Image panel */
  .product-img-panel {
    position: relative;
    overflow: hidden;
    background: var(--cream);
    min-height: 240px;
    max-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-img-panel img {
    width: auto;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .product-entry:hover .product-img-panel img {
    transform: scale(1.03);
  }

  .product-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--forest);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
  }

  .product-badge.gold {
    background: var(--gold);
    color: var(--forest);
  }

  /* Content panel */
  .product-content {
    padding: 1.75rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .product-content-top {}

  .product-type-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.6rem;
  }

  .product-content h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 400;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .product-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  /* Feature bullets */
  .product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.5;
  }

  .feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .feature-dot svg { stroke: var(--forest); }

  /* What's included chips */
  .included-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
  }

  .chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-mid);
    background: var(--cream);
    border-radius: 100px;
    padding: 5px 11px;
  }

  .chip svg { stroke: var(--forest-light); }

  /* Pricing & CTA */
  .product-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1.25rem;
  }

  .product-pricing {}

  .price-from {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
  }

  .price-main {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--forest);
    line-height: 1;
  }

  .price-main sup {
    font-family: var(--ff-body);
    font-size: 1rem;
    vertical-align: super;
    line-height: 0;
  }

  .price-period {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 3px;
  }

  .price-original {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-family: var(--ff-body);
    font-size: 0.85rem;
    vertical-align: middle;
  }

  .product-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    background: var(--forest);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--forest);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
    white-space: nowrap;
  }

  .btn-ghost:hover { gap: 9px; }

  /* ── COMPARISON TABLE ── */
  .compare-section {
    margin-top: 60px;
  }

  .compare-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-bottom: 0.4rem;
  }

  .section-title {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--forest);
    font-weight: 400;
  }

  .section-title em { font-style: italic; color: var(--forest-light); }

  .compare-table-wrap {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }

  .compare-table thead {
    background: var(--forest);
  }

  .compare-table thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .compare-table thead th:first-child {
    color: rgba(255,255,255,0.4);
  }

  .compare-table thead th.featured-col {
    color: var(--gold);
  }

  .compare-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }

  .compare-table tbody tr:last-child { border-bottom: none; }
  .compare-table tbody tr:hover { background: var(--cream); }

  .compare-table td {
    padding: 1rem 1.5rem;
    color: var(--text-mid);
    vertical-align: middle;
  }

  .compare-table td:first-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
  }

  .check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #EBF5F1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .check svg { stroke: var(--forest-light); }

  .check.gold-check { background: var(--gold-pale); }
  .check.gold-check svg { stroke: var(--gold); }

  .dash {
    width: 22px; height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-light);
    font-size: 16px;
  }

  .table-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--forest);
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    margin-left: 8px;
    vertical-align: middle;
  }

  /* ── FAQ ── */
  .faq-section {
    margin-top: 60px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .faq-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--border);
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }

  .faq-item:last-child { border-bottom: none; }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 2.5rem;
    text-align: left;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.15s;
  }

  .faq-question:hover { background: var(--cream); }

  .faq-toggle {
    width: 24px; height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s, background 0.2s;
    font-size: 14px;
    color: var(--forest);
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
  }

  .faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
    font-weight: 300;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 2.5rem 1.25rem;
  }

  /* ── BOTTOM CTA ── */
  .bottom-cta {
    margin-top: 60px;
    background: var(--forest);
    border-radius: 24px;
    padding: 50px 3rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .bottom-cta::after {
    content: '';
    position: absolute;
    right: -80px; bottom: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,168,153,0.15) 0%, transparent 60%);
    pointer-events: none;
  }

  .bottom-cta h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .bottom-cta h2 em { color: var(--gold); font-style: italic; }

  .bottom-cta p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 300;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
  }

  .btn-white {
    background: var(--white);
    color: var(--forest);
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    transition: background 0.2s;
  }

  .btn-white:hover { background: var(--cream); }

  .cta-note {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    text-align: center;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    padding: 60px 5vw 40px;
    margin-top: 80px;
    color: rgba(255,255,255,0.5);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand > .footer-brand-logo { height: 28px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.8; }
  .footer-brand p { font-size: 13px; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,0.35); }

  .footer-col h5 {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col a { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col a:hover { color: rgba(255,255,255,0.7); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 12px;
  }

  /* ── REVEAL ── */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay { transition-delay: 0.12s; }

  @media (max-width: 900px) {
    .page-header { grid-template-columns: 1fr; gap: 2rem; padding-top: 100px; }
    .product-list { grid-template-columns: 1fr; }
    .product-entry { grid-template-columns: 1fr; }
    .product-img-panel { min-height: 260px; max-height: none; }
    .bottom-cta { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .compare-band-left { gap: 1rem; }
    .compare-divider { display: none; }
  }
