@charset "utf-8";
/* ══════════════════════════════════════════════════════════
   Elysian Health — Template-4 Luxury / Chapters Theme
   ══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --gold:  #c4956a;
    --plum:  #2c2035;
    --cream: #faf6f2;
    --ink:   #2c2035;
    --gold-light: rgba(196, 149, 106, 0.12);
    --gold-mid:   rgba(196, 149, 106, 0.40);
    --cream-dark: #f0ebe4;
    --border-clr: rgba(44, 32, 53, 0.12);
    --muted-fg:   #7a6e82;
    --font-serif: "Fraunces", Georgia, serif;
    --font-sans:  "Inter", system-ui, -apple-system, sans-serif;
}

/* ── Base Overrides ── */
body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.02em;
}

/* ── Utility: Eyebrow ── */
.eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

/* ── Utility: Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--plum);
    color: var(--cream);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 2px solid var(--plum);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 4px 4px 0 var(--gold);
    text-decoration: none;
    font-family: var(--font-sans);
    line-height: 1;
}
.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--gold);
    color: var(--cream);
    text-decoration: none;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--cream);
    color: var(--plum);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 2px solid var(--plum);
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-sans);
    line-height: 1;
}
.btn-ghost:hover {
    background: var(--cream-dark);
    color: var(--plum);
    text-decoration: none;
}

/* ── Promo Banner ── */
.t4-promo-banner {
    width: 100%;
    background: var(--plum);
    color: var(--cream);
    text-align: center;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.t4-promo-banner a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
}
.t4-promo-banner a:hover {
    color: var(--gold);
}

/* ── Sticky Header ── */
.t4-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-clr);
}
.t4-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.t4-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
}
.t4-logo-brand {
    font-family: var(--font-serif);
    font-size: 30px;
    letter-spacing: -0.5px;
    color: var(--ink);
    font-weight: 500;
}
.t4-logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
}

/* ── Desktop Nav ── */
.t4-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.t4-nav li a {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.t4-nav li a:hover,
.t4-nav li a.active {
    color: var(--gold);
}

.t4-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.t4-cart-link:hover {
    color: var(--gold);
}

/* ── Mobile Nav Toggle ── */
.t4-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.t4-mobile-toggle .bar1,
.t4-mobile-toggle .bar2,
.t4-mobile-toggle .bar3 {
    width: 26px;
    height: 3px;
    background-color: var(--ink);
    transition: 0.3s;
    border-radius: 2px;
}
.t4-mobile-toggle .bar2 {
    margin: 5px 0;
}
.t4-mobile-toggle.active .bar1 {
    transform: rotate(-45deg) translate(-6px, 5px);
}
.t4-mobile-toggle.active .bar2 {
    opacity: 0;
}
.t4-mobile-toggle.active .bar3 {
    transform: rotate(45deg) translate(-6px, -5px);
}

/* ── Mobile Nav Panel ── */
.t4-mobile-nav {
    display: none;
    background: var(--cream);
    border-top: 1px solid var(--border-clr);
    padding: 24px;
}
.t4-mobile-nav.open {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.t4-mobile-nav a {
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-clr);
}
.t4-mobile-nav a:hover {
    color: var(--gold);
}

/* ── Section Container ── */
.t4-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Grid System ── */
.t4-grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    align-items: center;
}
.t4-col-5 { grid-column: span 5; }
.t4-col-6 { grid-column: span 6; }
.t4-col-7 { grid-column: span 7; }

/* ══════════════════════════
   HERO
   ══════════════════════════ */
.t4-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-clr);
    padding: 64px 0 96px;
}
.t4-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 0.92;
    color: var(--ink);
    font-weight: 400;
    margin: 24px 0 0;
}
.t4-hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.t4-hero-desc {
    margin-top: 32px;
    max-width: 480px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted-fg);
}
.t4-hero-cta {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.t4-hero-badges {
    margin-top: 56px;
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-fg);
}
.t4-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
}

/* ── Hero Image ── */
.t4-hero-img-wrap {
    position: relative;
}
.t4-hero-img-bg {
    position: absolute;
    inset: -24px;
    background: rgba(44, 32, 53, 0.05);
    border-radius: 2px;
    transform: rotate(-2deg);
}
.t4-hero-img-wrap img {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 2px;
}
.t4-fig-caption {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--cream);
    border: 1px solid var(--border-clr);
    padding: 20px 24px;
    max-width: 240px;
}
.t4-fig-caption .eyebrow {
    margin-bottom: 8px;
}
.t4-fig-caption p {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
    margin: 0;
}

/* ══════════════════════════
   ASSURANCE BAR
   ══════════════════════════ */
.t4-assurance {
    border-bottom: 1px solid var(--border-clr);
    background: rgba(196, 149, 106, 0.06);
    padding: 40px 0;
}
.t4-assurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.t4-assurance-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.t4-assurance-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.t4-assurance-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    stroke-width: 1.5;
}
.t4-assurance-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.t4-assurance-sub {
    font-size: 12px;
    color: var(--muted-fg);
    margin-top: 4px;
}

/* ══════════════════════════
   CHAPTER I — THE PRACTICE
   ══════════════════════════ */
.t4-chapter-1 {
    padding: 112px 0;
}
.t4-chapter-1 .t4-ch1-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 5/4;
}
.t4-chapter-1 h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: var(--ink);
    margin-top: 24px;
}
.t4-chapter-1 h2 em {
    font-style: italic;
    color: var(--gold);
}
.t4-chapter-1 .t4-ch1-desc {
    margin-top: 32px;
    color: var(--muted-fg);
    line-height: 1.7;
    max-width: 560px;
    font-size: 16px;
}
.t4-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.t4-feature-card {
    border-top: 1px solid var(--border-clr);
    padding-top: 20px;
}
.t4-feature-card svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    stroke-width: 1.5;
    margin-bottom: 12px;
}
.t4-feature-card h4 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--ink);
    margin: 0;
}
.t4-feature-card p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-fg);
    line-height: 1.6;
}

/* ══════════════════════════
   CHAPTER II — THE SELECTION
   ══════════════════════════ */
.t4-chapter-2 {
    padding: 112px 0 128px;
    background: var(--plum);
    color: var(--cream);
}
.t4-ch2-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}
.t4-ch2-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1;
    color: var(--cream);
    margin-top: 24px;
}
.t4-ch2-header h2 em {
    font-style: italic;
    color: var(--gold);
}
.t4-ch2-header p {
    margin-top: 24px;
    color: rgba(250, 246, 242, 0.70);
    line-height: 1.6;
}
.t4-ch2-product-img {
    position: relative;
    background: rgba(250, 246, 242, 0.05);
    padding: 40px;
}
.t4-ch2-product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 5/6;
}
.t4-ch2-product-img .t4-ref-label {
    position: absolute;
    top: 24px;
    left: 24px;
}

/* ── Product Cards Grid ── */
.t4-product-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}
.t4-product-card {
    text-align: left;
    padding: 20px;
    border: 1px solid rgba(250, 246, 242, 0.20);
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--cream);
    display: block;
}
.t4-product-card:hover {
    border-color: var(--gold-mid);
    text-decoration: none;
    color: var(--cream);
}
.t4-product-card-name {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--cream);
    margin-bottom: 4px;
}
.t4-product-card-price {
    font-size: 13px;
    color: rgba(250, 246, 242, 0.70);
}
.t4-product-card-tier {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 6px;
}

/* ── Purchase Toggle ── */
.t4-purchase-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 40px;
}
.t4-toggle-btn {
    padding: 20px;
    border: 1px solid rgba(250, 246, 242, 0.20);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--cream);
}
.t4-toggle-btn.active {
    border-color: var(--gold);
    background: var(--gold-light);
}
.t4-toggle-btn:hover {
    border-color: var(--gold-mid);
}
.t4-toggle-btn-title {
    font-family: var(--font-serif);
    font-size: 18px;
}
.t4-toggle-btn-sub {
    font-size: 12px;
    color: rgba(250, 246, 242, 0.60);
    margin-top: 4px;
}

/* ── Add to Cart (in dark section) ── */
.t4-ch2-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.t4-atc-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--plum);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    font-family: var(--font-sans);
}
.t4-atc-btn:hover {
    background: var(--cream);
    color: var(--plum);
    text-decoration: none;
}
.t4-payment-methods {
    font-size: 12px;
    color: rgba(250, 246, 242, 0.50);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ══════════════════════════
   CHAPTER III — THE RITUAL
   ══════════════════════════ */
.t4-chapter-3 {
    padding: 112px 0;
}
.t4-ch3-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}
.t4-ch3-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1;
    color: var(--ink);
    margin-top: 24px;
}
.t4-ch3-header h2 em {
    font-style: italic;
    color: var(--gold);
}
.t4-ch3-header p {
    margin-top: 24px;
    color: var(--muted-fg);
    line-height: 1.6;
}
.t4-ritual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-clr);
}
.t4-ritual-card {
    background: var(--cream);
    padding: 40px 56px;
}
.t4-ritual-numeral {
    font-family: var(--font-serif);
    font-size: 3.75rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
    line-height: 1;
}
.t4-ritual-card h3 {
    margin-top: 24px;
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--ink);
}
.t4-ritual-card p {
    margin-top: 16px;
    color: var(--muted-fg);
    line-height: 1.6;
    font-size: 15px;
}

/* ══════════════════════════
   HOW IT WORKS
   ══════════════════════════ */
.t4-how-it-works {
    padding: 112px 0 128px;
    background: rgba(196, 149, 106, 0.06);
    border-top: 1px solid var(--border-clr);
    border-bottom: 1px solid var(--border-clr);
}
.t4-hiw-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}
.t4-hiw-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-top: 24px;
}
.t4-hiw-header p {
    margin-top: 24px;
    color: var(--muted-fg);
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}
.t4-hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.t4-hiw-step {
    text-align: center;
}
.t4-hiw-step h3 {
    margin-top: 16px;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--ink);
}
.t4-hiw-divider {
    width: 32px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto;
}
.t4-hiw-step p {
    color: var(--muted-fg);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
    font-size: 15px;
}
.t4-hiw-cta {
    margin-top: 64px;
    text-align: center;
}

/* ══════════════════════════
   FAQ
   ══════════════════════════ */
.t4-faq {
    padding: 80px 0;
}
.t4-faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.t4-faq-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--ink);
    margin-top: 16px;
}
.t4-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.t4-faq-item {
    border-bottom: 1px solid var(--border-clr);
    overflow: hidden;
}
.t4-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    transition: color 0.2s;
}
.t4-faq-question:hover {
    color: var(--gold);
}
.t4-faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    transition: transform 0.3s;
    margin-left: 16px;
}
.t4-faq-item.open .t4-faq-icon {
    transform: rotate(45deg);
}
.t4-faq-answer {
    display: none;
    padding: 0 0 24px;
}
.t4-faq-item.open .t4-faq-answer {
    display: block;
}
.t4-faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-fg);
    margin: 0;
}

/* ══════════════════════════
   FOOTER
   ══════════════════════════ */
.t4-footer {
    background: var(--plum);
    color: var(--cream);
    margin-top: 0;
}
.t4-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding: 80px 0;
}
.t4-footer-brand {
    grid-column: span 1;
}
.t4-footer-brand .t4-logo-brand {
    color: var(--cream);
    font-size: 36px;
}
.t4-footer-brand .t4-logo-sub {
    color: var(--gold);
}
.t4-footer-quote {
    margin-top: 24px;
    max-width: 380px;
    color: rgba(250, 246, 242, 0.70);
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}
.t4-footer h4 {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}
.t4-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.t4-footer-links li {
    margin-bottom: 12px;
}
.t4-footer-links li a {
    font-size: 14px;
    color: rgba(250, 246, 242, 0.80);
    text-decoration: none;
    transition: color 0.2s;
}
.t4-footer-links li a:hover {
    color: var(--gold);
}
.t4-footer-links li span {
    font-size: 14px;
    color: rgba(250, 246, 242, 0.80);
}
.t4-footer-links li.t4-return-addr {
    padding-top: 12px;
    font-size: 12px;
    color: rgba(250, 246, 242, 0.50);
}

/* ── Footer Bottom / Disclaimer ── */
.t4-footer-bottom {
    border-top: 1px solid rgba(250, 246, 242, 0.10);
    padding: 24px 0;
}
.t4-footer-bottom p {
    font-size: 11px;
    color: rgba(250, 246, 242, 0.50);
    line-height: 1.7;
    margin: 0;
}
.t4-footer-bottom .t4-copyright {
    margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE: TABLET (max-width: 1023px)
   ══════════════════════════════════════════════════════════ */
@media only screen and (max-width: 1023px) {
    .t4-header-inner {
        height: 64px;
        padding: 0 16px;
    }
    .t4-logo-brand {
        font-size: 24px;
    }
    .t4-nav,
    .t4-cart-link {
        display: none;
    }
    .t4-mobile-toggle {
        display: block;
    }

    /* Hero */
    .t4-grid-12 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .t4-col-5, .t4-col-6, .t4-col-7 {
        grid-column: span 1;
    }
    .t4-hero {
        padding: 40px 0 60px;
    }
    .t4-hero h1 {
        font-size: 2.75rem;
    }
    .t4-fig-caption {
        display: none;
    }

    /* Assurance */
    .t4-assurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Chapters */
    .t4-chapter-1, .t4-chapter-3 {
        padding: 64px 0;
    }
    .t4-chapter-2 {
        padding: 64px 0 80px;
    }
    .t4-ch2-header {
        margin-bottom: 48px;
    }
    .t4-feature-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Ritual grid */
    .t4-ritual-grid {
        grid-template-columns: 1fr;
    }
    .t4-ritual-card {
        padding: 32px 24px;
    }

    /* How It Works */
    .t4-how-it-works {
        padding: 64px 0 80px;
    }
    .t4-hiw-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .t4-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }
    .t4-footer-brand {
        grid-column: span 1;
    }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE: MOBILE (max-width: 767px)
   ══════════════════════════════════════════════════════════ */
@media only screen and (max-width: 767px) {
    .t4-container {
        padding: 0 16px;
    }
    .t4-header-inner {
        height: 56px;
    }
    .t4-logo-brand {
        font-size: 22px;
    }

    /* Hero */
    .t4-hero {
        padding: 24px 0 40px;
    }
    .t4-hero h1 {
        font-size: 2rem;
    }
    .t4-hero-desc {
        font-size: 16px;
    }
    .t4-hero-badges {
        gap: 16px;
        font-size: 10px;
        flex-wrap: wrap;
    }
    .t4-hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary, .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Assurance */
    .t4-assurance {
        padding: 24px 0;
    }
    .t4-assurance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Chapters */
    .t4-chapter-1, .t4-chapter-3 {
        padding: 40px 0;
    }
    .t4-chapter-2 {
        padding: 40px 0 56px;
    }
    .t4-ch2-header h2 {
        font-size: 2rem;
    }
    .t4-ch3-header h2 {
        font-size: 2rem;
    }
    .t4-ch3-header, .t4-ch2-header {
        margin-bottom: 40px;
    }
    .t4-product-cards {
        grid-template-columns: 1fr;
    }
    .t4-purchase-toggle {
        grid-template-columns: 1fr;
    }

    /* Ritual */
    .t4-ritual-card {
        padding: 24px 20px;
    }
    .t4-ritual-numeral {
        font-size: 2.5rem;
    }

    /* How It Works */
    .t4-how-it-works {
        padding: 40px 0 56px;
    }

    /* FAQ */
    .t4-faq {
        padding: 40px 0;
    }
    .t4-faq-question {
        font-size: 15px;
        padding: 18px 0;
    }

    /* Footer */
    .t4-footer-grid {
        padding: 40px 0;
        gap: 28px;
    }
    .t4-footer-quote {
        font-size: 16px;
    }
}

/* ── SVG icon helper ── */
.t4-icon-inline {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* ── Muted foreground text ── */
.t4-muted {
    color: var(--muted-fg);
}

/* ── Text alignment helpers ── */
.t4-text-center { text-align: center; }
.t4-text-left   { text-align: left; }

/* ── Product image in Ch2 order fix ── */
@media only screen and (max-width: 1023px) {
    .t4-ch2-img-col {
        order: -1;
    }
}

/* === PRODUCT PAGE OVERRIDES === */

.prodBreadcrm {
    background: #faf6f2;
    border-bottom: 1px solid #e8ddd2;
}

.prodBreadcrm p,
.prodBreadcrm a {
    color: #2c2035;
    font-family: 'Inter', sans-serif;
}

.prodBreadcrm span {
    color: #c4956a;
}

.section-2 {
    background: #faf6f2;
}

.s1-p1 {
    font-family: 'Fraunces', serif;
    color: #2c2035;
    font-weight: 400;
    font-style: italic;
}

.s1-p1 span {
    color: #c4956a;
    font-style: normal;
}

.sec-line-2 {
    display: none;
}

.s1-p2 {
    font-family: 'Inter', sans-serif;
    color: #666;
}

.s2-prd-box {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    border: 1px solid #efe6dc;
    transition: all 0.4s ease;
}

.s2-bx-arw {
    display: none;
}

.s2-p1 {
    background: #2c2035;
    font-family: 'Fraunces', serif;
    font-size: 20px;
    line-height: 28px;
    padding: 16px 20px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.s2-p2 {
    background: linear-gradient(to right, #faf6f2, #f5ede3);
    color: #2c2035;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marg-1 .s2-p2,
.s2-3rd-box .s2-p2 {
    background: linear-gradient(to right, #faf6f2, #f5ede3);
}

.s2-prd-div {
    padding: 28px 20px;
}

.s2-price-div {
    background: #fff;
    border: none;
    border-top: 1px solid #efe6dc;
    padding: 24px 20px;
}

.s2-prc-arw {
    display: none;
}

.s2-p3 {
    font-family: 'Fraunces', serif;
    color: #2c2035;
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 18px;
    font-weight: 400;
}

.s2-p3 span {
    font-size: 16px;
    color: #c4956a;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-btn {
    font-family: 'Inter', sans-serif;
    border: 1px solid #c4956a;
    color: #fff;
    background: #c4956a;
    border-radius: 2px;
    font-size: 13px;
    line-height: 46px;
    width: 220px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.shop-btn:hover {
    background: #2c2035;
    color: #fff;
    border-color: #2c2035;
}

.shop-btn i {
    color: inherit;
}

.s2-prd-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(44,32,53,0.1);
}
