/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 1734:0 Unexpected "<"

**/
<style>
  /* ============================================
     RESTORA — DESIGN TOKENS
     ============================================ */
  :root {
    /* Palette */
    --cream: #F4ECE0;
    --cream-deep: #EBE0CF;
    --bone: #FAF6EE;
    --ink: #141210;
    --ink-soft: #2D2725;
    --wine: #5C2A3B;
    --wine-deep: #421F2C;
    --terracotta: #C8704F;
    --terracotta-deep: #A85B3D;
    --sage: #6F8060;
    --rose: #E5C7BD;
    --rose-light: #EFD9D0;
    --gold: #B8965F;
    --line: #D9CFC0;
    --line-soft: #E8DFD0;
 
    /* Typography — simpler, more readable for 50+ audience */
    --serif: 'Lora', Georgia, 'Times New Roman', serif;
    --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
 
    /* Spacing scale */
    --s1: 0.5rem;
    --s2: 1rem;
    --s3: 1.5rem;
    --s4: 2rem;
    --s5: 3rem;
    --s6: 4rem;
    --s7: 5.5rem;
    --s8: 8rem;
 
    /* Containers */
    --container: 1280px;
    --container-narrow: 960px;
    --container-text: 720px;
  }
 
  /* ============================================
     RESET & BASE — Larger base sizes for readability
     ============================================ */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  body {
    margin: 0;
    font-family: var(--sans);
    font-size: 18px;              /* up from 16px */
    line-height: 1.6;
    color: var(--ink);
    background: var(--bone);
    font-weight: 400;
  }
  @media (max-width: 600px) {
    body { font-size: 17px; }
  }
  img { max-width: 100%; display: block; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  a { color: inherit; text-decoration: none; }
  ul { padding: 0; margin: 0; list-style: none; }
 
  /* ============================================
     TYPOGRAPHY — Larger sizes, stronger weights
     ============================================ */
  .display-xl {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .display-l {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .display-m {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.625rem, 2.75vw, 2.25rem);
    line-height: 1.2;
    color: var(--ink);
  }
  .display-s {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.375rem;
    line-height: 1.3;
    color: var(--ink);
  }
  .eyebrow {
    font-family: var(--sans);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wine);
  }
  .body-l {
    font-size: 1.1875rem;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  .body {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  .body-s {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }
 
  em.serif-em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
  }
 
  /* ============================================
     LAYOUT HELPERS
     ============================================ */
  .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s3); }
  .container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s3); }
  .container-text { max-width: var(--container-text); margin: 0 auto; padding: 0 var(--s3); }
  .section-pad { padding: var(--s7) 0; }
  .section-pad-sm { padding: var(--s5) 0; }
  @media (max-width: 768px) {
    .section-pad { padding: var(--s6) 0; }
  }
 
  /* ============================================
     ANNOUNCEMENT BAR
     ============================================ */
  .announce {
    background: var(--wine-deep);
    color: var(--cream);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .announce-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--s4);
    flex-wrap: wrap;
    text-transform: uppercase;
    font-weight: 700;
  }
  .announce-divider { opacity: 0.5; }
  @media (max-width: 640px) {
    .announce { font-size: 0.75rem; }
    .announce-inner { gap: var(--s2); }
  }
 
  /* ============================================
     NAVIGATION
     ============================================ */
  .nav {
    background: var(--bone);
    border-bottom: 1px solid var(--line-soft);
    position: sticky;
    top: 38px;
    z-index: 99;
  }
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s2) var(--s3);
    max-width: var(--container);
    margin: 0 auto;
  }
  .nav-logo {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
  }
  .nav-logo::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--terracotta);
    border-radius: 50%;
    margin-left: 3px;
    vertical-align: middle;
    margin-bottom: 6px;
  }
  .nav-links {
    display: flex;
    gap: var(--s4);
    align-items: center;
  }
  .nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
  }
  .nav-link:hover { color: var(--terracotta); }
  .nav-icons {
    display: flex;
    gap: var(--s2);
    align-items: center;
  }
  .nav-icon {
    width: 24px;
    height: 24px;
    color: var(--ink);
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-logo { font-size: 1.75rem; }
  }
 
  /* ============================================
     HERO BLOCK
     ============================================ */
  .hero {
    background: var(--cream);
    padding: var(--s5) 0 var(--s6);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, var(--rose-light) 0%, transparent 60%);
    opacity: 0.4;
    pointer-events: none;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s6);
    align-items: center;
    position: relative;
  }
  @media (max-width: 980px) {
    .hero { padding: var(--s4) 0 var(--s5); }
    .hero-grid { grid-template-columns: 1fr; gap: var(--s5); }
  }
 
  /* Hero Image Gallery */
  .gallery { position: relative; }
  .gallery-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream-deep) 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gallery-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 30% 40%, rgba(92,42,59,0.08) 0%, transparent 50%),
      radial-gradient(circle at 70% 70%, rgba(200,112,79,0.06) 0%, transparent 50%);
  }
  .placeholder-label {
    position: relative;
    text-align: center;
    padding: var(--s3);
    background: rgba(250,246,238,0.92);
    border: 1px dashed var(--wine);
    border-radius: 4px;
    max-width: 80%;
  }
  .placeholder-label .eyebrow { color: var(--wine); margin-bottom: 0.5rem; font-size: 0.75rem; }
  .placeholder-label .desc { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.5; }
  .gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s1);
    margin-top: var(--s2);
  }
  .gallery-thumb {
    aspect-ratio: 1;
    background: var(--cream-deep);
    border-radius: 4px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--wine);
    cursor: pointer;
    transition: border-color 0.2s;
    font-weight: 600;
  }
  .gallery-thumb:hover { border-color: var(--terracotta); }
  .gallery-thumb.active { border-color: var(--wine); border-width: 2px; }
  .gallery-video-strip {
    margin-top: var(--s3);
    padding-top: var(--s3);
    border-top: 1px solid var(--line-soft);
  }
  .gallery-video-label {
    font-size: 0.8125rem;
    color: var(--wine);
    font-weight: 700;
    margin-bottom: var(--s1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .gallery-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s1);
  }
  .gallery-video {
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, var(--wine) 0%, var(--ink) 100%);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    cursor: pointer;
  }
  .play-icon {
    width: 32px;
    height: 32px;
    background: rgba(244,236,224,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid var(--wine);
    margin-left: 2px;
  }
 
  /* Hero Conversion Block */
  .hero-content { max-width: 560px; }
  .hero-eyebrow {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(92,42,59,0.08);
    border: 1px solid rgba(92,42,59,0.2);
    border-radius: 100px;
    color: var(--wine);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: var(--s3);
  }
  .hero-headline {
    margin: 0 0 var(--s3);
    color: var(--ink);
  }
  .hero-headline em {
    font-style: italic;
    color: var(--wine);
    font-weight: 500;
  }
  .hero-sub {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 var(--s4);
    font-weight: 400;
  }
  @media (max-width: 600px) {
    .hero-sub { font-size: 1.0625rem; }
  }
  .hero-rating {
    display: flex;
    align-items: center;
    gap: var(--s2);
    margin-bottom: var(--s4);
    font-size: 0.9375rem;
    color: var(--ink-soft);
    flex-wrap: wrap;
  }
  .hero-rating strong { color: var(--ink); }
  .stars { color: var(--gold); letter-spacing: 1px; font-size: 1.125rem; }
  .hero-bullets {
    margin: 0 0 var(--s4);
    padding: var(--s4) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .hero-bullets li {
    display: flex;
    gap: var(--s2);
    margin-bottom: var(--s3);
    font-size: 1.0625rem;
    color: var(--ink);
    line-height: 1.5;
  }
  .hero-bullets li:last-child { margin-bottom: 0; }
  .hero-bullets li strong { font-weight: 700; }
  .bullet-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--wine);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 2px;
  }
  .hero-urgency {
    background: rgba(200,112,79,0.1);
    border-left: 3px solid var(--terracotta);
    padding: var(--s2) var(--s3);
    margin-bottom: var(--s4);
    font-size: 0.9375rem;
    color: var(--ink);
    line-height: 1.5;
    border-radius: 0 4px 4px 0;
  }
  .hero-urgency strong { color: var(--terracotta-deep); font-weight: 700; }
 
  /* Single Product Price Block (replaces bundle ladder) */
  .product-card {
    background: var(--bone);
    border: 2px solid var(--wine);
    border-radius: 6px;
    padding: var(--s3);
    margin-bottom: var(--s3);
  }
  .product-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s3);
    margin-bottom: var(--s3);
  }
  .product-card-name {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 4px;
  }
  .product-card-tag {
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .product-card-price-block {
    text-align: right;
    flex-shrink: 0;
  }
  .product-card-price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--wine);
    line-height: 1;
    margin-bottom: 4px;
  }
  .product-card-orig {
    font-size: 0.9375rem;
    text-decoration: line-through;
    color: var(--ink-soft);
    opacity: 0.7;
  }
  .product-card-save {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 10px;
    background: var(--sage);
    color: var(--bone);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 3px;
  }
 
  /* Quantity Selector */
  .qty-row {
    display: flex;
    align-items: center;
    gap: var(--s2);
    padding-top: var(--s2);
    border-top: 1px solid var(--line-soft);
  }
  .qty-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
  }
  .qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--line);
    border-radius: 4px;
    background: var(--bone);
  }
  .qty-btn {
    width: 38px;
    height: 38px;
    font-size: 1.125rem;
    color: var(--ink);
    background: transparent;
    font-weight: 700;
    transition: background 0.2s;
  }
  .qty-btn:hover { background: var(--cream-deep); }
  .qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
  }
 
  /* CTA Buttons */
  .btn-primary {
    display: block;
    width: 100%;
    background: var(--terracotta);
    color: var(--bone);
    padding: 1.125rem var(--s4);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    text-align: center;
    transition: background 0.2s;
    margin-bottom: var(--s2);
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--terracotta-deep); }
  .btn-secondary {
    display: block;
    width: 100%;
    background: var(--ink);
    color: var(--bone);
    padding: 0.9375rem var(--s4);
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 4px;
    text-align: center;
    margin-bottom: var(--s3);
    letter-spacing: 0.05em;
  }
 
  .hero-micro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s2) var(--s3);
    font-size: 0.8125rem;
    color: var(--ink);
    margin-bottom: var(--s3);
    font-weight: 600;
  }
  .micro-badge {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .micro-badge::before {
    content: '✓';
    color: var(--sage);
    font-weight: 900;
    font-size: 1rem;
  }
  .payment-icons {
    display: flex;
    gap: var(--s1);
    align-items: center;
    flex-wrap: wrap;
  }
  .pay-icon {
    height: 26px;
    padding: 0 8px;
    min-width: 42px;
    background: var(--line-soft);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    color: var(--ink-soft);
    font-weight: 700;
    letter-spacing: 0.02em;
  }
 
  /* ============================================
     TRUST BADGE STRIP
     ============================================ */
  .trust-strip {
    background: var(--ink);
    color: var(--cream);
    padding: var(--s4) 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s3);
    text-align: center;
  }
  @media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
    .trust-grid > *:last-child { grid-column: 1 / -1; }
  }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s1);
  }
  .trust-icon {
    width: 38px;
    height: 38px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
  }
  .trust-label {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
  }
 
  /* ============================================
     SECTION HEADER PATTERN
     ============================================ */
  .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--s5);
  }
  .section-head .eyebrow { margin-bottom: var(--s2); }
  .section-head .display-l { margin: 0 0 var(--s3); }
  .section-head em {
    font-style: italic;
    color: var(--wine);
    font-weight: 500;
  }
  .section-head p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.125rem;
    line-height: 1.55;
  }
  @media (max-width: 600px) {
    .section-head p { font-size: 1.0625rem; }
  }
 
  /* ============================================
     HOW IT WORKS
     ============================================ */
  .how-section { background: var(--bone); }
  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
  }
  @media (max-width: 900px) {
    .how-grid { grid-template-columns: 1fr; gap: var(--s5); }
  }
  .how-block {
    position: relative;
  }
  .how-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--terracotta);
    margin-bottom: var(--s3);
    font-style: italic;
  }
  .how-block h3 {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 600;
    margin: 0 0 var(--s3);
    line-height: 1.2;
    color: var(--ink);
  }
  .how-block p {
    margin: 0 0 var(--s2);
    color: var(--ink-soft);
    line-height: 1.65;
    font-size: 1.0625rem;
  }
  .how-block p strong { color: var(--ink); font-weight: 700; }
  .how-anchor {
    border-top: 1px solid var(--line);
    padding-top: var(--s2);
    margin-top: var(--s3);
    font-size: 0.875rem;
    color: var(--ink-soft);
    font-style: italic;
    line-height: 1.55;
  }
 
  /* ============================================
     RESEARCH SECTION
     ============================================ */
  .research-section {
    background: var(--wine-deep);
    color: var(--cream);
    position: relative;
  }
  .research-section .eyebrow { color: var(--terracotta); }
  .research-section .section-head .display-l { color: var(--cream); }
  .research-section .section-head em { color: var(--rose-light); }
  .research-section .section-head p { color: rgba(244,236,224,0.8); }
  .research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s4);
  }
  @media (max-width: 900px) {
    .research-grid { grid-template-columns: 1fr; gap: var(--s4); }
  }
  .research-block {
    background: rgba(244,236,224,0.05);
    border: 1px solid rgba(244,236,224,0.15);
    padding: var(--s4);
    border-radius: 6px;
  }
  .research-block h3 {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 600;
    margin: 0 0 var(--s2);
    color: var(--cream);
  }
  .research-block p {
    color: rgba(244,236,224,0.88);
    line-height: 1.65;
    margin: 0;
    font-size: 1rem;
  }
  .research-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 1.625rem;
    margin-bottom: var(--s3);
  }
 
  /* Timeline */
  .timeline-wrapper {
    margin-top: var(--s6);
    padding-top: var(--s5);
    border-top: 1px solid rgba(244,236,224,0.18);
  }
  .timeline-label {
    text-align: center;
    color: var(--terracotta);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--s4);
  }
  .timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s2);
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(244,236,224,0.3);
  }
  @media (max-width: 700px) {
    .timeline { grid-template-columns: 1fr; gap: var(--s3); }
    .timeline::before { display: none; }
  }
  .tl-item {
    text-align: center;
    position: relative;
  }
  .tl-dot {
    width: 14px;
    height: 14px;
    background: var(--terracotta);
    border-radius: 50%;
    margin: 0 auto var(--s2);
    border: 4px solid var(--wine-deep);
    position: relative;
    z-index: 1;
  }
  .tl-year {
    font-family: var(--serif);
    font-size: 1.625rem;
    color: var(--cream);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 4px;
  }
  .tl-desc {
    font-size: 0.8125rem;
    color: rgba(244,236,224,0.78);
    line-height: 1.45;
    font-weight: 500;
  }
 
  /* ============================================
     PRESS LOGO BAR
     ============================================ */
  .press-section {
    background: var(--cream);
    padding: var(--s5) 0;
  }
  .press-label {
    text-align: center;
    color: var(--wine);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--s3);
  }
  .press-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--s4);
  }
  .press-logo {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--ink-soft);
    opacity: 0.7;
    transition: opacity 0.2s;
    letter-spacing: 0.02em;
  }
  .press-logo:hover { opacity: 1; }
  @media (max-width: 600px) {
    .press-logos { gap: var(--s2); }
    .press-logo { font-size: 1.125rem; }
  }
 
  /* ============================================
     BRAND STORY
     ============================================ */
  .story-section {
    background: var(--bone);
    position: relative;
  }
  .story-content {
    max-width: 720px;
    margin: 0 auto;
  }
  .story-content > p {
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: var(--s3);
    font-weight: 400;
  }
  .story-content > p:first-of-type {
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--wine);
    font-style: italic;
    font-weight: 500;
    border-left: 3px solid var(--terracotta);
    padding-left: var(--s3);
    margin-bottom: var(--s5);
  }
  .story-content > p strong {
    font-weight: 700;
    color: var(--wine);
  }
  .story-divider {
    width: 80px;
    height: 1px;
    background: var(--terracotta);
    margin: var(--s5) auto;
  }
  .story-final {
    text-align: center;
    font-family: var(--serif);
    font-size: 1.5rem !important;
    line-height: 1.45 !important;
    color: var(--ink) !important;
    border-left: none !important;
    padding-left: 0 !important;
    font-style: normal !important;
    font-weight: 600 !important;
  }
  @media (max-width: 600px) {
    .story-content > p { font-size: 1.125rem; }
    .story-content > p:first-of-type { font-size: 1.25rem; }
    .story-final { font-size: 1.25rem !important; }
  }
 
  /* ============================================
     VISUAL PROOF WALL
     ============================================ */
  .proof-section { background: var(--cream); }
  .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s2);
  }
  @media (max-width: 900px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .proof-card {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cream-deep) 0%, var(--rose-light) 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .proof-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 30% 30%, rgba(92,42,59,0.08) 0%, transparent 50%);
  }
  .proof-card-overlay {
    position: relative;
    background: linear-gradient(to top, rgba(20,18,16,0.95) 0%, rgba(20,18,16,0) 100%);
    color: var(--cream);
    padding: var(--s5) var(--s3) var(--s3);
  }
  .proof-stars {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .proof-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.45;
    margin-bottom: var(--s1);
  }
  .proof-attr {
    font-size: 0.8125rem;
    opacity: 0.92;
    font-weight: 700;
  }
  .proof-placeholder-tag {
    position: absolute;
    top: var(--s1);
    left: var(--s1);
    background: rgba(250,246,238,0.9);
    color: var(--wine);
    font-size: 0.6875rem;
    padding: 3px 7px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
  }
 
  /* ============================================
     COMPARISON TABLE
     ============================================ */
  .compare-section { background: var(--bone); }
  .compare-wrap {
    max-width: 960px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 6px;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    width: 100%;
    min-width: 720px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bone);
  }
  .compare-table th,
  .compare-table td {
    padding: var(--s2);
    text-align: center;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.9375rem;
  }
  .compare-table th:first-child,
  .compare-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--ink);
    padding-left: var(--s3);
  }
  .compare-table thead th {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: var(--s3) var(--s2);
  }
  .compare-table thead th.featured {
    background: var(--wine);
    color: var(--cream);
    position: relative;
  }
  .compare-table thead th.featured::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--terracotta);
  }
  .compare-table td.featured-col {
    background: rgba(92,42,59,0.05);
    font-weight: 700;
  }
  .check-yes { color: var(--sage); font-weight: 900; font-size: 1.25rem; }
  .check-no { color: #b94747; font-weight: 900; font-size: 1.125rem; opacity: 0.75; }
  .compare-note {
    text-align: center;
    margin-top: var(--s3);
    font-size: 0.8125rem;
    color: var(--ink-soft);
    font-style: italic;
  }
 
  /* ============================================
     GUARANTEE SECTION
     ============================================ */
  .guarantee-section {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    position: relative;
  }
  .guarantee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 20%, rgba(200,112,79,0.12) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(92,42,59,0.18) 0%, transparent 50%);
    pointer-events: none;
  }
  .guarantee-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
  }
  .guarantee-seal {
    width: 140px;
    height: 140px;
    border: 3px solid var(--terracotta);
    border-radius: 50%;
    margin: 0 auto var(--s3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    color: var(--terracotta);
    position: relative;
  }
  .guarantee-seal::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(200,112,79,0.5);
    border-radius: 50%;
  }
  .seal-num {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
  }
  .seal-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
    color: var(--cream);
    opacity: 0.92;
  }
  .guarantee-section h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    margin: 0 0 var(--s2);
    color: var(--cream);
    line-height: 1.15;
  }
  .guarantee-section h2 em { font-style: italic; color: var(--rose-light); font-weight: 500; }
  .guarantee-sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--rose-light);
    margin-bottom: var(--s4);
    font-weight: 500;
  }
  .guarantee-body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(244,236,224,0.92);
    margin-bottom: var(--s3);
  }
  .guarantee-sig {
    font-family: var(--serif);
    font-style: italic;
    color: var(--terracotta);
    font-size: 1.0625rem;
    font-weight: 600;
  }
 
  /* ============================================
     FOUR PILLAR FEATURES
     ============================================ */
  .pillars-section { background: var(--bone); }
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s3);
  }
  @media (max-width: 900px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  }
  .pillar {
    text-align: center;
    padding: var(--s4) var(--s3);
    border: 1px solid var(--line);
    background: var(--bone);
    border-radius: 6px;
    transition: border-color 0.2s, background 0.2s;
  }
  .pillar:hover { border-color: var(--wine); background: var(--cream); }
  .pillar-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--s3);
    border: 2px solid var(--wine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine);
  }
  .pillar h3 {
    font-family: var(--serif);
    font-size: 1.1875rem;
    font-weight: 700;
    margin: 0 0 var(--s2);
    color: var(--ink);
  }
  .pillar p {
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
  }
 
  /* ============================================
     FEATURED TESTIMONIALS
     ============================================ */
  .feature-test-section { background: var(--cream); }
  .feature-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s3);
  }
  @media (max-width: 900px) {
    .feature-test-grid { grid-template-columns: 1fr; }
  }
  .test-card {
    background: var(--bone);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: var(--s4);
    display: flex;
    flex-direction: column;
  }
  .test-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream-deep) 100%);
    margin-bottom: var(--s3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 700;
    font-size: 0.75rem;
    border: 1px solid var(--line);
  }
  .test-stars {
    color: var(--gold);
    font-size: 0.9375rem;
    letter-spacing: 1px;
    margin-bottom: var(--s2);
  }
  .test-headline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--wine);
    line-height: 1.3;
    margin: 0 0 var(--s3);
  }
  .test-body {
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: var(--s3);
    flex: 1;
  }
  .test-attr {
    font-size: 0.9375rem;
    color: var(--wine);
    font-weight: 700;
    padding-top: var(--s3);
    border-top: 1px solid var(--line-soft);
  }
 
  /* ============================================
     SECOND CTA SECTION (simple, no bundles)
     ============================================ */
  .second-cta-section {
    background: var(--cream);
    text-align: center;
  }
  .second-cta-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bone);
    border: 2px solid var(--wine);
    border-radius: 8px;
    padding: var(--s4);
  }
  .second-cta-name {
    font-family: var(--serif);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--s1);
  }
  .second-cta-tag {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    margin-bottom: var(--s3);
  }
  .second-cta-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--s2);
    margin-bottom: var(--s3);
  }
  .second-cta-price {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wine);
    line-height: 1;
  }
  .second-cta-orig {
    font-size: 1.125rem;
    text-decoration: line-through;
    color: var(--ink-soft);
    opacity: 0.7;
  }
 
  /* ============================================
     REVIEW WALL
     ============================================ */
  .reviews-section { background: var(--bone); }
  .reviews-header {
    text-align: center;
    margin-bottom: var(--s4);
  }
  .review-avg {
    display: inline-flex;
    align-items: baseline;
    gap: var(--s1);
    margin-bottom: var(--s1);
  }
  .review-avg-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--ink);
    font-weight: 700;
    line-height: 1;
  }
  .review-avg-stars {
    color: var(--gold);
    font-size: 1.375rem;
    letter-spacing: 2px;
  }
  .review-count {
    font-size: 0.9375rem;
    color: var(--ink-soft);
    letter-spacing: 0.02em;
    font-weight: 500;
  }
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s2);
    margin-top: var(--s4);
  }
  @media (max-width: 900px) {
    .review-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .review-grid { grid-template-columns: 1fr; }
  }
  .review-card {
    background: var(--bone);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: var(--s3);
  }
  .review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--s1);
  }
  .review-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
  }
  .review-verified {
    font-size: 0.6875rem;
    background: rgba(111,128,96,0.18);
    color: #4d5a44;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .review-stars {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: var(--s1);
  }
  .review-body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .review-cta {
    text-align: center;
    margin-top: var(--s4);
  }
  .btn-outline {
    display: inline-block;
    padding: var(--s2) var(--s4);
    border: 2px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .btn-outline:hover { background: var(--ink); color: var(--bone); }
 
  /* ============================================
     FAQ
     ============================================ */
  .faq-section { background: var(--cream); }
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .faq-item {
    border-bottom: 1px solid var(--line);
  }
  .faq-q {
    width: 100%;
    text-align: left;
    padding: var(--s3) 0;
    background: none;
    border: none;
    font-family: var(--serif);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s2);
    line-height: 1.35;
  }
  .faq-q::after {
    content: '+';
    font-family: var(--sans);
    font-size: 1.75rem;
    color: var(--terracotta);
    font-weight: 400;
    transition: transform 0.2s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .faq-item.open .faq-a {
    max-height: 600px;
    padding-bottom: var(--s3);
  }
  .faq-a p {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.7;
    font-size: 1.0625rem;
  }
  @media (max-width: 600px) {
    .faq-q { font-size: 1.0625rem; }
    .faq-a p { font-size: 1rem; }
  }
 
  /* ============================================
     FINAL CTA
     ============================================ */
  .final-cta-section {
    background: var(--wine-deep);
    color: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 70% 20%, rgba(200,112,79,0.14) 0%, transparent 50%),
      radial-gradient(circle at 20% 80%, rgba(229,199,189,0.1) 0%, transparent 50%);
    pointer-events: none;
  }
  .final-cta-content {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
  }
  .final-cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.75vw, 3rem);
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 var(--s3);
    color: var(--cream);
  }
  .final-cta-section h2 em {
    font-style: italic;
    color: var(--rose-light);
    font-weight: 500;
  }
  .final-cta-section .sub {
    font-family: var(--serif);
    font-style: italic;
    color: var(--rose-light);
    font-size: 1.25rem;
    margin-bottom: var(--s4);
    font-weight: 500;
  }
  .final-product-card {
    background: rgba(244,236,224,0.08);
    border: 1px solid rgba(244,236,224,0.2);
    padding: var(--s3) var(--s4);
    border-radius: 6px;
    margin-bottom: var(--s4);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s2);
  }
  .final-product-label {
    text-align: left;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .final-product-price {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
  }
  .btn-cta-large {
    display: inline-block;
    background: var(--terracotta);
    color: var(--bone);
    padding: 1.25rem var(--s5);
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
  }
  .btn-cta-large:hover { background: var(--terracotta-deep); }
  .final-trust {
    display: flex;
    justify-content: center;
    gap: var(--s3);
    flex-wrap: wrap;
    margin-top: var(--s4);
    font-size: 0.875rem;
    color: rgba(244,236,224,0.85);
    font-weight: 600;
  }
 
  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background: var(--ink);
    color: var(--cream);
    padding: var(--s6) 0 var(--s3);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: var(--s5);
    margin-bottom: var(--s5);
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: var(--s4); }
  }
  .footer-logo {
    font-family: var(--serif);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--s2);
  }
  .footer-tagline {
    color: rgba(244,236,224,0.78);
    font-style: italic;
    font-family: var(--serif);
    font-size: 1.0625rem;
    margin-bottom: var(--s3);
  }
  .footer-col h4 {
    font-family: var(--sans);
    font-size: 0.8125rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 var(--s2);
    font-weight: 700;
  }
  .footer-col ul li {
    margin-bottom: 0.75rem;
  }
  .footer-col ul a {
    font-size: 0.9375rem;
    color: rgba(244,236,224,0.85);
    transition: color 0.2s;
    font-weight: 500;
  }
  .footer-col ul a:hover { color: var(--terracotta); }
  .footer-newsletter p {
    font-size: 0.9375rem;
    color: rgba(244,236,224,0.78);
    margin: 0 0 var(--s2);
    line-height: 1.55;
  }
  .newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(244,236,224,0.25);
    border-radius: 4px;
    overflow: hidden;
  }
  .newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.875rem var(--s2);
    color: var(--cream);
    font-family: var(--sans);
    font-size: 0.9375rem;
    outline: none;
  }
  .newsletter-form input::placeholder { color: rgba(244,236,224,0.55); }
  .newsletter-form button {
    background: var(--terracotta);
    color: var(--cream);
    padding: 0 var(--s3);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .footer-bottom {
    padding-top: var(--s3);
    border-top: 1px solid rgba(244,236,224,0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: rgba(244,236,224,0.6);
    flex-wrap: wrap;
    gap: var(--s2);
  }
  .footer-socials {
    display: flex;
    gap: var(--s2);
  }
  .footer-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(244,236,224,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(244,236,224,0.78);
    transition: all 0.2s;
  }
  .footer-social:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
  }
 
  /* ============================================
     UTILITIES
     ============================================ */
  .text-center { text-align: center; }
 
  /* Smooth reveal on scroll */
  @media (prefers-reduced-motion: no-preference) {
    .fade-up {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }
  }
</style>