/* =========================================================
   Alpha Health — Core Stylesheet
   Theme: Cymbiotika-style (forest green + white)
   ========================================================= */

:root {
    /* Brand palette — Cymbiotika-style: mostly white with strategic dark-green moments.
       Most surfaces are white/cream; .surface-dark + .footer use the brand-green tokens. */

    /* Light surfaces (default) */
    --navy-900: #ffffff;          /* body background */
    --navy-800: #faf7f1;          /* subtle cream alt-section bg */
    --navy-700: #ffffff;          /* card surface */
    --navy-600: #f3ecdd;          /* hover wash */
    --navy-500: #153e35;          /* deep ink contrast */

    /* Dark surfaces (used on .surface-dark, .footer, hero etc.) */
    --brand-green:        #153e35;
    --brand-green-deep:   #0f2e27;
    --brand-green-soft:   #1d4d42;
    --brand-green-hover:  #1a4738;

    /* Accents */
    --gold-500: #153e35;          /* primary action — brand green pill */
    --gold-400: #1a4738;          /* button hover */
    --gold-300: #8a6a26;          /* warm gold for eyebrows, prices, fine type */
    --ink-on-accent: #ffffff;     /* text on green buttons */

    /* Ink — text on white surfaces */
    --cream-100: #153e35;         /* primary ink — dark green */
    --cream-50:  rgba(21, 62, 53, 0.85);
    --text-soft: rgba(21, 62, 53, 0.70);
    --text-mute: rgba(21, 62, 53, 0.48);
    --line:      rgba(21, 62, 53, 0.10);

    /* Inverted ink tokens (auto-applied inside .surface-dark / .footer) */
    --ink-dark:        #ffffff;
    --text-soft-dark:  rgba(255, 255, 255, 0.72);
    --text-mute-dark:  rgba(255, 255, 255, 0.50);
    --line-dark:       rgba(255, 255, 255, 0.14);

    /* Type */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;

    /* Layout */
    --container: 1280px;
    --gutter: clamp(20px, 4vw, 48px);
    --radius: 4px;
    --radius-lg: 12px;

    /* Motion */
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--navy-900);
    color: var(--cream-100);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

::selection { background: var(--gold-400); color: var(--ink-on-accent); }

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.section { padding: clamp(80px, 12vw, 140px) 0; }
.section--alt { background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%); }

.eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-400);
    font-weight: 500;
    margin-bottom: 20px;
}
.eyebrow--gold { color: var(--gold-300); }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.section__title em { font-style: italic; color: var(--gold-400); }
.section__sub { color: var(--text-soft); font-size: 17px; margin: 0; }
.section__cta { text-align: center; margin-top: 56px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.35s var(--ease);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold-500);
    color: var(--ink-on-accent);
}
.btn--gold:hover {
    background: var(--gold-400);
    color: var(--ink-on-accent);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
}
.btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--cream-100);
}
.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--cream-100);
    color: var(--cream-100);
}

/* ---------- Announcement bar ---------- */
.announcement {
    background: var(--navy-800);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-300);
    padding: 10px 0;
    font-weight: 500;
}
.announcement__track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: scroll-left 38s linear infinite;
    width: max-content;
}
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s var(--ease);
}
.header.is-scrolled { background: rgba(255, 255, 255, 0.96); box-shadow: 0 4px 20px -10px rgba(22, 17, 10, 0.08); }
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}
.logo { display: block; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }

.nav ul {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav a {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--cream-100);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--gold-300); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--cream-100);
    transition: all 0.3s var(--ease);
    position: relative;
}
.icon-btn:hover { background: rgba(201, 169, 97, 0.1); color: var(--gold-300); }
.cart-count {
    position: absolute;
    top: 4px; right: 2px;
    background: var(--gold-500);
    color: var(--ink-on-accent);
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
}
.nav-toggle span {
    height: 1.5px;
    background: var(--cream-100);
    transition: all 0.3s var(--ease);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: calc(100vh - 76px - 38px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(60px, 10vw, 120px) 0 80px;
}
.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 70%, rgba(243, 236, 221, 0.7) 0%, transparent 70%),
        linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    z-index: 0;
}
.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 17, 10, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 17, 10, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 6.5vw, 84px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 0 0 24px;
}
.hero__title em { font-style: italic; color: var(--gold-400); font-weight: 300; }
.hero__lede {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 520px;
    margin: 0 0 36px;
    line-height: 1.7;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero__meta {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.hero__meta > div { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold-400);
    font-weight: 400;
}
.hero__meta span {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.hero__product {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px -30px rgba(22, 17, 10, 0.18);
}
.hero__product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    filter: brightness(1.02) saturate(1.02);
    transform: scale(1.02);
    transition: transform 1.2s var(--ease);
}
.hero__product:hover img { transform: scale(1.06); }
.hero__product-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(ellipse, rgba(201, 169, 97, 0.22) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.hero__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--line);
    color: var(--gold-300);
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: var(--radius);
}

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--text-mute);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero__scroll span {
    width: 1px;
    height: 28px;
    background: linear-gradient(180deg, var(--gold-400), transparent);
    animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { transform: scaleY(0.6); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Trust strip ---------- */
.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 36px 0;
    background: var(--navy-800);
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-soft);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}
.trust__item svg { color: var(--gold-400); flex-shrink: 0; }

/* ---------- Product cards ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.product {
    display: block;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    position: relative;
}
.product:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.45);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.18);
}
.product__media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
}
.product__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.8s var(--ease);
    filter: brightness(1);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold-500);
    color: var(--ink-on-accent);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 2px;
}
.product__body { padding: 22px 22px 24px; }
.product__body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 6px;
    color: var(--cream-100);
}
.product__body p { font-size: 13px; color: var(--text-mute); margin: 0 0 16px; }
.product__foot { display: flex; justify-content: space-between; align-items: center; }
.price { font-size: 17px; color: var(--gold-400); font-weight: 500; }
.rating { font-size: 12px; color: var(--text-soft); }

.product--sm { min-width: 280px; }
.product--sm .product__body { padding: 18px 18px 22px; }
.product--sm h3 { font-size: 19px; }

/* ---------- Science section ---------- */
.science {
    padding: clamp(80px, 12vw, 140px) 0;
    background:
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(201, 169, 97, 0.14) 0%, transparent 60%),
        var(--navy-800);
    position: relative;
}
.science__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.science__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}
.science__media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(1) contrast(1.02);
}
.science__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    padding: 18px 24px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 20px 40px -20px rgba(22, 17, 10, 0.2);
}
.science__badge strong {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold-400);
    font-weight: 500;
    line-height: 1;
}
.science__badge span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
}

.science__content h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.science__content p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 32px;
}
.science__list { margin: 0 0 40px; }
.science__list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--cream-100);
    display: flex;
    gap: 18px;
    align-items: baseline;
}
.science__list span {
    font-family: var(--font-display);
    color: var(--gold-400);
    font-size: 14px;
    letter-spacing: 0.1em;
    min-width: 28px;
}

/* ---------- Bestseller rail ---------- */
.rail {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 calc(var(--gutter) * -1);
    padding: 0 var(--gutter);
    scroll-behavior: smooth;
}
.rail::-webkit-scrollbar { display: none; }
.rail__track {
    display: flex;
    gap: 24px;
    padding-bottom: 8px;
}
.rail__controls {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 36px;
}
.rail__controls .icon-btn {
    border: 1px solid var(--line);
    width: 48px;
    height: 48px;
}

/* ---------- Reviews ---------- */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.review {
    padding: 36px 32px;
    border: 1px solid var(--line);
    background: var(--navy-700);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
}
.review:hover {
    border-color: rgba(176, 136, 51, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -22px rgba(22, 17, 10, 0.15);
}
.review__stars { color: var(--gold-400); font-size: 16px; letter-spacing: 3px; margin-bottom: 18px; }
.review p {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.55;
    color: var(--cream-100);
    margin: 0 0 24px;
    font-style: italic;
    font-weight: 400;
}
.review footer { font-size: 13px; color: var(--text-mute); letter-spacing: 0.04em; }
.review footer strong { color: var(--cream-100); font-weight: 500; }

/* ---------- White label CTA ---------- */
.whitelabel-cta {
    padding: clamp(80px, 12vw, 130px) 0;
    background:
        radial-gradient(ellipse 50% 60% at 10% 50%, rgba(201, 169, 97, 0.22) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.whitelabel-cta__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.whitelabel-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.whitelabel-cta h2 em { font-style: italic; color: var(--gold-400); }
.whitelabel-cta p { color: var(--text-soft); font-size: 17px; max-width: 540px; margin: 0; }
.whitelabel-cta__action { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.micro { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Newsletter ---------- */
.newsletter { padding: 100px 0; text-align: center; }
.newsletter__inner { max-width: 620px; margin: 0 auto; }
.newsletter h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    margin: 0 0 12px;
}
.newsletter p { color: var(--text-soft); margin: 0 0 32px; }
.newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto 18px;
}
.newsletter__form input {
    flex: 1;
    padding: 15px 20px;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--cream-100);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s var(--ease);
}
.newsletter__form input:focus {
    outline: none;
    border-color: var(--gold-400);
}
.newsletter__form input::placeholder { color: var(--text-mute); }

/* ---------- Footer ---------- */
.footer {
    background: var(--navy-900);
    border-top: 1px solid var(--line);
    padding: 80px 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
}
.footer__logo { height: 42px; width: auto; margin-bottom: 20px; }
.footer__brand p { color: var(--text-mute); font-size: 14px; max-width: 320px; }
.footer h4 {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-400);
    font-weight: 500;
    margin: 0 0 22px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul a {
    color: var(--text-soft);
    font-size: 14px;
    transition: color 0.3s var(--ease);
}
.footer ul a:hover { color: var(--gold-300); }
.footer__bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-mute);
    font-size: 12px;
    letter-spacing: 0.04em;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--gold-300); }

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 48px; }
    .hero__product { max-width: 480px; margin: 0 auto; width: 100%; }
    .science__grid { grid-template-columns: 1fr; gap: 56px; }
    .whitelabel-cta__inner { grid-template-columns: 1fr; gap: 36px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
    .trust__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .trust__item { font-size: 11px; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: 0;
        width: 86%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy-700);
        border-left: 1px solid var(--line);
        padding: 100px 32px 32px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease);
        z-index: 95;
        box-shadow: -20px 0 40px -20px rgba(22, 17, 10, 0.15);
    }
    .nav.is-open { transform: translateX(0); }
    .nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
    .nav a { font-size: 16px; }

    .header__inner { height: 64px; }
    .logo img { height: 32px; }
    .header__actions { gap: 0; }
    .header__actions .icon-btn { width: 36px; height: 36px; }

    .hero__meta { gap: 22px; flex-wrap: wrap; }
    .hero__meta strong { font-size: 22px; }

    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer__brand { grid-column: span 2; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }

    .newsletter__form { flex-direction: column; }
    .newsletter__form .btn { width: 100%; }
}

@media (max-width: 480px) {
    .trust__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { width: 100%; }
}

/* =========================================================
   Shop page + Cart drawer
   ========================================================= */

/* Active nav link */
.nav a.is-active { color: var(--gold-300); }
.nav a.is-active::after { transform: scaleX(1); }

/* ---------- Page header ---------- */
.page-header {
    padding: 60px 0 50px;
    background:
        radial-gradient(ellipse 40% 80% at 80% 50%, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
        var(--navy-800);
    border-bottom: 1px solid var(--line);
}
.breadcrumb {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-bottom: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.breadcrumb a:hover { color: var(--gold-300); }
.page-header__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 18px;
    letter-spacing: -0.015em;
}
.page-header__title em { font-style: italic; color: var(--gold-400); }
.page-header__lede {
    color: var(--text-soft);
    font-size: 17px;
    max-width: 640px;
    margin: 0;
    line-height: 1.7;
}

/* ---------- Shop layout ---------- */
.shop { padding: 60px 0 120px; }
.shop__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 56px;
    align-items: start;
}

/* ---------- Filters ---------- */
.filters {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.filters__group h3 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    margin: 0 0 14px;
}
.filter-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: var(--cream-50);
    transition: color 0.25s var(--ease);
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.filter-link em {
    font-style: normal;
    font-size: 11px;
    color: var(--text-mute);
    letter-spacing: 0.05em;
}
.filter-link:hover { color: var(--gold-300); }
.filter-link.is-active {
    color: var(--gold-500);
    font-weight: 500;
}
.filter-link.is-active em { color: var(--gold-400); }

.filters__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--cream-50);
    text-transform: capitalize;
    transition: all 0.25s var(--ease);
}
.chip:hover { border-color: var(--gold-400); color: var(--gold-500); }
.chip.is-active {
    background: var(--gold-500);
    color: var(--ink-on-accent);
    border-color: var(--gold-500);
}

.filters__price label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.filters__price input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 2px;
    background: var(--line);
    border-radius: 2px;
    outline: none;
}
.filters__price input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    background: var(--gold-500);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(176, 136, 51, 0.4);
}
.filters__price input[type="range"]::-moz-range-thumb {
    width: 18px; height: 18px;
    background: var(--gold-500);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}
.filters__price output {
    display: block;
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold-400);
}

.btn--block { display: flex; width: 100%; }

/* ---------- Shop main ---------- */
.shop__main { min-width: 0; }
.shop__bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
}
.shop__count {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.shop__sort { display: flex; align-items: center; gap: 12px; }
.shop__sort label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.shop__sort select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--cream-100);
    padding: 9px 36px 9px 14px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b08833' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.25s var(--ease);
}
.shop__sort select:focus { outline: none; border-color: var(--gold-400); }

/* Shop grid override: 3 columns instead of 4, add-to-cart sits below card */
.product-grid--shop { grid-template-columns: repeat(3, 1fr); }
.product-grid--shop .product { display: flex; flex-direction: column; }
.product__link { display: block; color: inherit; }
.product__add {
    margin: 0 18px 18px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--cream-100);
    background: var(--navy-700);
    transition: all 0.25s var(--ease);
}
.product__add:hover {
    background: var(--gold-500);
    color: var(--ink-on-accent);
    border-color: var(--gold-500);
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-soft);
}
.empty-state h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 24px;
}

/* ---------- Cart drawer ---------- */
.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(22, 17, 10, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    z-index: 199;
}
.cart-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 100%;
    max-width: 440px;
    background: var(--navy-700);
    box-shadow: -20px 0 60px -20px rgba(22, 17, 10, 0.25);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    z-index: 200;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer__head h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin: 0;
}
.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 8px 28px;
}
.cart-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-soft);
}
.cart-empty p { margin-bottom: 24px; font-size: 15px; }

.cart-line {
    display: flex;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.cart-line__img {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-800);
}
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__body { flex: 1; }
.cart-line__body h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 4px;
}
.cart-line__price { font-size: 14px; color: var(--gold-500); font-weight: 500; }
.cart-line__qty {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cart-line__qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--cream-100);
    transition: all 0.2s var(--ease);
}
.cart-line__qty button:hover { border-color: var(--gold-400); color: var(--gold-500); }
.cart-line__qty span { min-width: 24px; text-align: center; font-size: 14px; font-weight: 500; }
.cart-line__remove {
    margin-left: auto;
    width: auto !important;
    padding: 0 12px;
    font-size: 11px !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mute) !important;
    border: none !important;
}
.cart-line__remove:hover { color: var(--gold-500) !important; }

.cart-drawer__foot {
    padding: 24px 28px 28px;
    border-top: 1px solid var(--line);
    background: var(--navy-800);
}
.cart-drawer__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}
.cart-drawer__row span {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.cart-drawer__row strong {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold-500);
    font-weight: 500;
}
.cart-drawer__foot .micro { display: block; margin-bottom: 16px; }
.cart-drawer__foot .btn:disabled { opacity: 0.4; cursor: not-allowed; }
.cart-drawer__foot .btn:disabled:hover { transform: none; box-shadow: none; }

/* ---------- Shop responsive ---------- */
@media (max-width: 1024px) {
    .shop__layout { grid-template-columns: 1fr; gap: 40px; }
    .filters {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px 36px;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--line);
    }
    .filters__group { flex: 1; min-width: 240px; }
    .filters .btn--block { width: auto; flex: 0 0 auto; align-self: end; }
    .product-grid--shop { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .product-grid--shop { grid-template-columns: 1fr; }
    .filters__group { flex: 1 1 100%; }
    .cart-drawer { max-width: 100%; }
    .shop__bar { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* =========================================================
   Product Detail Page (PDP)
   ========================================================= */

.sr-only {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.pdp { padding: 40px 0 80px; }
.pdp .breadcrumb { margin-bottom: 32px; }

.pdp__layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ---------- Gallery ---------- */
.pdp__gallery { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 110px; }
.pdp__main-image {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
    border: 1px solid var(--line);
}
.pdp__main-image img {
    width: 100%; height: 100%; object-fit: contain;
    padding: 32px;
    transition: transform 0.6s var(--ease);
}
.pdp__main-image:hover img { transform: scale(1.04); }
.pdp__main-image .product__tag { top: 18px; left: 18px; }

.pdp__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.pdp__thumbs:has(> :only-child) { display: none; }
.pdp__thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    background: var(--navy-800);
    transition: all 0.25s var(--ease);
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover { border-color: var(--gold-400); }
.pdp__thumb.is-active { border-color: var(--gold-500); }

/* ---------- Info ---------- */
.pdp__info .eyebrow { text-transform: capitalize; letter-spacing: 0.18em; }
.pdp__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 54px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.pdp__tagline {
    font-size: 17px;
    color: var(--text-soft);
    margin: 0 0 20px;
}

.pdp__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--text-soft);
}
.pdp__stars { color: var(--gold-400); letter-spacing: 2px; font-size: 15px; }

.pdp__price { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.pdp__price-current {
    font-family: var(--font-display);
    font-size: 38px;
    color: var(--cream-100);
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.pdp__price-meta { font-size: 13px; color: var(--text-mute); }

/* ---------- Purchase options ---------- */
.pdp__purchase {
    border: 0;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pdp__option {
    display: block;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    background: var(--navy-700);
    position: relative;
}
.pdp__option:hover { border-color: var(--gold-400); }
.pdp__option.is-selected {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 1px var(--gold-500) inset;
}
.pdp__option input { position: absolute; opacity: 0; pointer-events: none; }
.pdp__option-body {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}
.pdp__option-body strong {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--cream-100);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pdp__option-body em {
    font-style: normal;
    font-size: 17px;
    color: var(--gold-500);
    font-weight: 500;
    font-family: var(--font-display);
}
.pdp__option-meta {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
}
.pdp__option-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--gold-500);
    color: var(--ink-on-accent);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* ---------- Buy row ---------- */
.pdp__buy {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 28px;
}
.pdp__qty {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--navy-700);
}
.pdp__qty button {
    width: 28px;
    height: 28px;
    font-size: 18px;
    color: var(--cream-100);
    transition: color 0.2s var(--ease);
}
.pdp__qty button:hover { color: var(--gold-500); }
.pdp__qty span { min-width: 28px; text-align: center; font-weight: 500; font-size: 15px; }
.pdp__add { flex: 1; padding: 18px 24px; font-size: 13px; }

/* ---------- Assurance ---------- */
.pdp__assurance {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
}
.pdp__assurance li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-soft);
}
.pdp__assurance svg { color: var(--gold-500); flex-shrink: 0; }

/* ---------- Tabs ---------- */
.pdp__tabs { margin-top: 100px; }
.pdp__tabs-nav {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pdp__tabs-nav::-webkit-scrollbar { display: none; }
.pdp__tab {
    padding: 14px 4px;
    margin-right: 28px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-mute);
    border-bottom: 2px solid transparent;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}
.pdp__tab:hover { color: var(--cream-100); }
.pdp__tab.is-active {
    color: var(--gold-500);
    border-bottom-color: var(--gold-500);
}

.pdp__panel {
    display: none;
    max-width: 760px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}
.pdp__panel.is-active { display: block; }
.pdp__panel h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--cream-100);
    margin: 24px 0 8px;
}
.pdp__panel h4:first-child { margin-top: 0; }
.pdp__panel p { margin: 0 0 16px; }
.pdp__benefits {
    margin-top: 20px;
    padding-left: 0;
}
.pdp__benefits li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--line);
    position: relative;
    color: var(--cream-100);
    font-size: 15px;
}
.pdp__benefits li::before {
    content: '';
    position: absolute;
    left: 0; top: 19px;
    width: 16px; height: 1px;
    background: var(--gold-500);
}

.pdp__table {
    width: 100%;
    border-collapse: collapse;
}
.pdp__table th, .pdp__table td {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    font-size: 15px;
}
.pdp__table th {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
}
.pdp__table td { color: var(--cream-100); }
.pdp__table td:last-child { color: var(--text-soft); text-align: right; }
.pdp__small { font-size: 13px; color: var(--text-mute); margin-top: 18px; }

.pdp__lab { display: flex; flex-direction: column; }
.pdp__lab-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.pdp__lab-row span { color: var(--text-soft); font-size: 14px; }
.pdp__lab-row strong { color: var(--gold-500); font-size: 14px; font-weight: 500; }

/* ---------- Review summary ---------- */
.pdp-reviews { padding: 100px 0; background: var(--navy-800); border-top: 1px solid var(--line); }
.pdp-reviews__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 56px;
}
.pdp-reviews__summary { display: flex; align-items: center; gap: 18px; }
.pdp-reviews__big {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
}
.pdp-reviews__stars { color: var(--gold-400); letter-spacing: 3px; font-size: 18px; margin-bottom: 4px; }
.pdp-reviews__summary span { font-size: 13px; color: var(--text-mute); }

/* ---------- PDP responsive ---------- */
@media (max-width: 1024px) {
    .pdp__layout { grid-template-columns: 1fr; gap: 48px; }
    .pdp__gallery { position: static; max-width: 600px; }
}
@media (max-width: 640px) {
    .pdp { padding: 24px 0 60px; }
    .pdp__title { font-size: 32px; }
    .pdp__price-current { font-size: 32px; }
    .pdp__tabs { margin-top: 60px; }
    .pdp__buy { flex-direction: column; }
    .pdp__qty { justify-content: center; padding: 8px 12px; }
    .pdp-reviews__head { align-items: flex-start; }
}

/* =========================================================
   White Label Page
   ========================================================= */

/* ---------- Hero ---------- */
.wl-hero {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0 100px;
    overflow: hidden;
}
.wl-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 30% 30%, rgba(201, 169, 97, 0.22) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 80%, rgba(243, 236, 221, 0.7) 0%, transparent 70%),
        linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
    z-index: 0;
}
.wl-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(22, 17, 10, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 17, 10, 0.045) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.wl-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}
.wl-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 28px;
    letter-spacing: -0.015em;
}
.wl-hero__title em { font-style: italic; color: var(--gold-400); font-weight: 300; }
.wl-hero__lede {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.wl-hero__cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.wl-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid var(--line);
}
.wl-hero__stats > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}
.wl-hero__stats strong {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
}
.wl-hero__stats span {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
}

/* ---------- Logo bar ---------- */
.wl-logos {
    padding: 50px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--navy-800);
}
.wl-logos__caption {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin: 0 0 28px;
}
.wl-logos__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 56px;
}
.wl-logo {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.12em;
    color: var(--cream-50);
    opacity: 0.55;
    transition: opacity 0.3s var(--ease);
    font-weight: 500;
    white-space: nowrap;
}
.wl-logo:hover { opacity: 1; color: var(--gold-500); }

/* ---------- Value props ---------- */
.wl-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.wl-value {
    padding: 36px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--navy-700);
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.wl-value:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.45);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.18);
}
.wl-value__num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold-400);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1;
}
.wl-value h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--cream-100);
}
.wl-value p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

/* ---------- Live demo ---------- */
.wl-demo { padding: clamp(80px, 12vw, 140px) 0; }
.wl-demo__tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.wl-demo__tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--cream-50);
    background: var(--navy-700);
    transition: all 0.25s var(--ease);
    cursor: pointer;
}
.wl-demo__tab:hover { border-color: var(--gold-400); }
.wl-demo__tab.is-active {
    background: var(--cream-100);
    color: var(--ink-on-accent);
    border-color: var(--cream-100);
}
.wl-demo__swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.wl-demo__preview {
    --demo-bg: #153e35;
    --demo-surface: #1d4d42;
    --demo-ink: #ffffff;
    --demo-accent: #d4be8d;
    --demo-accent-ink: #153e35;
    --demo-font: 'Cormorant Garamond', serif;
    max-width: 1080px;
    margin: 0 auto;
}
.wl-demo__device {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 40px 80px -40px rgba(22, 17, 10, 0.3);
    background: var(--demo-bg);
    transition: background 0.5s var(--ease);
}
.wl-demo__chrome {
    background: #1d4d42;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.wl-demo__chrome > span {
    width: 11px; height: 11px; border-radius: 50%;
    background: #265a4e;
}
.wl-demo__chrome em {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-style: normal;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    background: #1d4d42;
    padding: 4px 14px;
    border-radius: 12px;
    letter-spacing: 0.02em;
}
.wl-demo__site {
    background: var(--demo-bg);
    color: var(--demo-ink);
    transition: background 0.5s var(--ease), color 0.5s var(--ease);
}
.wl-demo__nav {
    padding: 18px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.wl-demo__nav strong {
    font-family: var(--demo-font);
    font-weight: 600;
    letter-spacing: 0.18em;
    font-size: 15px;
}
.wl-demo__nav ul {
    display: flex;
    gap: 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--demo-ink);
    opacity: 0.7;
}
.wl-demo__hero {
    padding: 56px 32px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}
.wl-demo__eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--demo-accent);
    font-weight: 600;
    margin-bottom: 14px;
}
.wl-demo__copy h3 {
    font-family: var(--demo-font);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 500;
    margin: 0 0 12px;
    line-height: 1.05;
    letter-spacing: -0.01em;
}
.wl-demo__copy p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0 0 22px;
    line-height: 1.6;
}
.wl-demo__btn {
    display: inline-block;
    padding: 11px 22px;
    background: var(--demo-accent);
    color: var(--demo-accent-ink);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    font-weight: 500;
}
.wl-demo__product {
    aspect-ratio: 4 / 5;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
        linear-gradient(160deg, var(--demo-surface), color-mix(in srgb, var(--demo-accent) 18%, var(--demo-surface)));
    border-radius: 8px;
    transition: background 0.5s var(--ease);
}
.wl-demo__cards {
    padding: 0 32px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.wl-demo__card {
    aspect-ratio: 1 / 1.1;
    background:
        linear-gradient(160deg, var(--demo-surface), color-mix(in srgb, var(--demo-accent) 10%, var(--demo-surface)));
    border-radius: 6px;
}

.wl-demo__caption {
    text-align: center;
    margin: 36px auto 0;
    max-width: 560px;
    font-size: 14px;
    color: var(--text-mute);
}
.wl-demo__caption em { font-style: italic; color: var(--gold-500); font-weight: 500; }

/* ---------- Steps ---------- */
.wl-steps {
    list-style: none;
    padding: 0;
    max-width: 880px;
    margin: 0 auto;
    counter-reset: step;
}
.wl-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--line);
}
.wl-step:last-child { border-bottom: 0; }
.wl-step__num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold-400);
    font-weight: 400;
    line-height: 1;
    opacity: 0.4;
}
.wl-step h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 8px;
    color: var(--cream-100);
}
.wl-step p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
    max-width: 600px;
}
.wl-step__time {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 500;
}

/* ---------- What's included ---------- */
.wl-included__layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.wl-included__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.wl-included__lede {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}
.wl-included {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
}
.wl-included li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--cream-100);
}
.wl-included svg { color: var(--gold-500); flex-shrink: 0; }

/* ---------- Pricing tiers ---------- */
.wl-pricing { padding: clamp(80px, 12vw, 140px) 0; }
.wl-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.wl-tier {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s var(--ease);
}
.wl-tier:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 136, 51, 0.35);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.18);
}
.wl-tier h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 16px;
}
.wl-tier__price { margin-bottom: 20px; }
.wl-tier__amount {
    font-family: var(--font-display);
    font-size: 44px;
    color: var(--cream-100);
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.wl-tier__period {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.wl-tier > p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.wl-tier ul {
    flex: 1;
    margin-bottom: 28px;
}
.wl-tier li {
    padding: 9px 0 9px 22px;
    font-size: 14px;
    color: var(--cream-50);
    position: relative;
    line-height: 1.5;
}
.wl-tier li::before {
    content: '';
    position: absolute;
    left: 0; top: 17px;
    width: 12px; height: 1px;
    background: var(--gold-500);
}
.wl-tier--featured {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    border-color: var(--gold-500);
    box-shadow: 0 22px 48px -22px rgba(176, 136, 51, 0.35);
    transform: scale(1.02);
}
.wl-tier--featured:hover { transform: translateY(-4px) scale(1.02); }
.wl-tier__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: var(--ink-on-accent);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ---------- FAQ ---------- */
.wl-faq__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.wl-faq__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 18px;
}
.wl-faq__title em { font-style: italic; color: var(--gold-400); }
.wl-faq__lede { color: var(--text-soft); font-size: 15px; }
.wl-faq__lede a { color: var(--gold-500); border-bottom: 1px solid var(--gold-400); }
.wl-faq__lede a:hover { color: var(--gold-300); }

.wl-faq { display: flex; flex-direction: column; }
.wl-faq__item {
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
}
.wl-faq__item summary {
    cursor: pointer;
    padding: 18px 40px 18px 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    list-style: none;
    position: relative;
    color: var(--cream-100);
    transition: color 0.25s var(--ease);
}
.wl-faq__item summary::-webkit-details-marker { display: none; }
.wl-faq__item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--gold-500);
    transition: transform 0.3s var(--ease);
    font-weight: 300;
}
.wl-faq__item[open] summary { color: var(--gold-500); }
.wl-faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.wl-faq__item p {
    margin: 0 60px 18px 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 15px;
}

/* ---------- Apply ---------- */
.wl-apply {
    padding: clamp(80px, 12vw, 130px) 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-700) 100%);
    border-top: 1px solid var(--line);
}
.wl-apply__inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.wl-apply__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.wl-apply__copy h2 em { font-style: italic; color: var(--gold-400); }
.wl-apply__copy > p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 480px;
}
.wl-apply__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.wl-apply__highlights li {
    font-size: 14px;
    color: var(--cream-50);
    letter-spacing: 0.02em;
}

.wl-apply__form {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 30px 60px -30px rgba(22, 17, 10, 0.2);
}
.wl-apply__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wl-apply__form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wl-apply__form label > span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 500;
}
.wl-apply__form input,
.wl-apply__form select,
.wl-apply__form textarea {
    padding: 13px 16px;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--cream-100);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.25s var(--ease);
}
.wl-apply__form input:focus,
.wl-apply__form select:focus,
.wl-apply__form textarea:focus {
    outline: none;
    border-color: var(--gold-400);
}
.wl-apply__form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b08833' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.wl-apply__form textarea { resize: vertical; }
.wl-apply__success {
    margin: 0;
    padding: 14px 16px;
    background: rgba(176, 136, 51, 0.12);
    border: 1px solid var(--gold-400);
    border-radius: var(--radius);
    color: var(--gold-300);
    font-size: 14px;
    text-align: center;
}

/* ---------- White Label responsive ---------- */
@media (max-width: 1024px) {
    .wl-values { grid-template-columns: repeat(2, 1fr); }
    .wl-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .wl-included__layout { grid-template-columns: 1fr; gap: 40px; }
    .wl-tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .wl-tier--featured { transform: none; }
    .wl-tier--featured:hover { transform: translateY(-4px); }
    .wl-faq__layout { grid-template-columns: 1fr; gap: 40px; }
    .wl-apply__inner { grid-template-columns: 1fr; gap: 48px; }
    .wl-demo__hero { grid-template-columns: 1fr; }
    .wl-demo__cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .wl-values { grid-template-columns: 1fr; }
    .wl-step { grid-template-columns: 1fr; gap: 12px; }
    .wl-step__num { font-size: 40px; }
    .wl-included { grid-template-columns: 1fr; }
    .wl-apply__row { grid-template-columns: 1fr; }
    .wl-apply__form { padding: 24px; }
    .wl-logos__row { gap: 28px; }
    .wl-logo { font-size: 14px; }
    .wl-demo__nav { padding: 14px 18px; }
    .wl-demo__nav ul { display: none; }
    .wl-demo__hero { padding: 32px 18px; }
    .wl-demo__cards { padding: 0 18px 24px; }
}

/* =========================================================
   Our Science Page
   ========================================================= */

/* ---------- Hero ---------- */
.sci-hero {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0 100px;
    overflow: hidden;
}
.sci-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 20% 30%, rgba(201, 169, 97, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(243, 236, 221, 0.85) 0%, transparent 70%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    z-index: 0;
}
.sci-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(176, 136, 51, 0.08) 1px, transparent 1.2px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.sci-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.sci-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 78px);
    font-weight: 400;
    line-height: 1.05;
    margin: 0 0 28px;
    letter-spacing: -0.015em;
}
.sci-hero__title em { font-style: italic; color: var(--gold-400); font-weight: 300; }
.sci-hero__lede {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 720px;
    margin: 0 auto 56px;
    line-height: 1.7;
}
.sci-hero__metric {
    display: flex;
    justify-content: center;
}
.sci-hero__metric > div {
    background: var(--navy-700);
    border: 1px solid var(--line);
    padding: 28px 40px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: 0 24px 50px -28px rgba(22, 17, 10, 0.18);
    text-align: left;
}
.sci-hero__metric strong {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 64px);
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
}
.sci-hero__metric span {
    font-size: 13px;
    color: var(--text-soft);
    max-width: 280px;
    line-height: 1.5;
}

/* ---------- Problem ---------- */
.sci-problem {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.sci-problem__media {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.sci-stat {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    transition: all 0.35s var(--ease);
}
.sci-stat:hover {
    transform: translateX(6px);
    border-color: rgba(176, 136, 51, 0.35);
}
.sci-stat strong {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 60px);
    color: var(--text-mute);
    font-weight: 500;
    line-height: 1;
    min-width: 140px;
}
.sci-stat span {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
}
.sci-stat--gold {
    background: linear-gradient(135deg, var(--navy-900) 0%, rgba(201, 169, 97, 0.12) 100%);
    border-color: var(--gold-400);
}
.sci-stat--gold strong { color: var(--gold-500); }
.sci-stat--gold span { color: var(--cream-100); font-weight: 500; }

.sci-problem__content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.sci-problem__content h2 em { font-style: italic; color: var(--gold-400); }
.sci-problem__content p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 16px;
}

/* ---------- Three pillars ---------- */
.sci-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sci-pillar {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all 0.35s var(--ease);
}
.sci-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.4);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.18);
}
.sci-pillar__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.sci-pillar__num {
    position: absolute;
    top: 28px;
    right: 28px;
    font-family: var(--font-display);
    color: var(--text-mute);
    font-size: 14px;
    letter-spacing: 0.1em;
}
.sci-pillar h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 14px;
    color: var(--cream-100);
}
.sci-pillar > p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.sci-pillar__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sci-pillar__list li {
    font-size: 13px;
    color: var(--cream-50);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.sci-pillar__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 10px; height: 1px;
    background: var(--gold-500);
}

/* ---------- Bioavailability chart ---------- */
.sci-chart-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--navy-800);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.sci-chart {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sci-chart__row {
    display: grid;
    grid-template-columns: 220px 1fr 60px;
    gap: 28px;
    align-items: center;
}
.sci-chart__label {
    font-size: 14px;
    color: var(--cream-50);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.sci-chart__bar {
    height: 14px;
    background: rgba(22, 17, 10, 0.06);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.sci-chart__bar span {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--text-mute), var(--cream-50));
    border-radius: 8px;
    transition: width 1.6s cubic-bezier(.2,.7,.2,1);
}
.sci-chart.is-animated .sci-chart__bar span { width: var(--w); }
.sci-chart__row--featured .sci-chart__label { color: var(--gold-500); }
.sci-chart__row--featured .sci-chart__bar span {
    background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
    box-shadow: 0 0 14px rgba(201, 169, 97, 0.45);
}
.sci-chart__val {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream-100);
    font-weight: 500;
    text-align: right;
}
.sci-chart__row--featured .sci-chart__val { color: var(--gold-500); }

.sci-chart__note {
    max-width: 800px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.65;
    letter-spacing: 0.02em;
}

/* ---------- Manufacturing ---------- */
.sci-mfg {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.sci-mfg__content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.sci-mfg__content h2 em { font-style: italic; color: var(--gold-400); }
.sci-mfg__content > p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 32px;
}
.sci-mfg__list {
    display: flex;
    flex-direction: column;
}
.sci-mfg__list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--cream-100);
}
.sci-mfg__list svg { color: var(--gold-500); flex-shrink: 0; }

.sci-mfg__media {
    position: relative;
    aspect-ratio: 5 / 6;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}
.sci-mfg__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.02); }
.sci-mfg__badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    padding: 20px 28px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 24px 50px -28px rgba(22, 17, 10, 0.3);
}
.sci-mfg__badge strong {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
}
.sci-mfg__badge span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    max-width: 200px;
}

/* ---------- Process ---------- */
.sci-process {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.sci-process::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-400) 10%, var(--gold-400) 90%, transparent);
    opacity: 0.4;
}
.sci-process__step { position: relative; }
.sci-process__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy-700);
    border: 1px solid var(--gold-400);
    color: var(--gold-500);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.sci-process__step h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--cream-100);
}
.sci-process__step p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Sample COA card ---------- */
.sci-coa {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 30px 60px -30px rgba(22, 17, 10, 0.18);
}
.sci-coa__head {
    padding: 28px 36px;
    background: var(--navy-800);
    color: var(--cream-100);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}
.sci-coa__brand {
    display: block;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--gold-400);
    font-weight: 600;
    margin-bottom: 6px;
}
.sci-coa__head strong {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    color: var(--cream-100);
}
.sci-coa__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.sci-coa__meta > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sci-coa__meta span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.sci-coa__meta strong {
    font-size: 13px;
    color: var(--cream-100);
    font-weight: 500;
    font-family: var(--font-sans);
}

.sci-coa__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}
.sci-coa__panel {
    padding: 28px 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.sci-coa__panel:nth-child(2n) { border-right: 0; }
.sci-coa__panel:nth-last-child(-n+2) { border-bottom: 0; }
.sci-coa__panel h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    margin: 0 0 18px;
}
.sci-coa__row {
    display: grid;
    grid-template-columns: 1fr auto 56px;
    gap: 18px;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}
.sci-coa__row:last-child { border-bottom: 0; }
.sci-coa__row span { font-size: 13px; color: var(--text-soft); }
.sci-coa__row strong {
    font-size: 13px;
    font-family: 'SF Mono', Menlo, monospace;
    color: var(--cream-100);
    font-weight: 500;
}
.sci-coa__row em {
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-500);
    text-align: right;
    font-weight: 600;
    border: 1px solid var(--gold-400);
    padding: 3px 8px;
    border-radius: 2px;
}
.sci-coa__foot {
    padding: 22px 36px;
    background: var(--navy-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid var(--line);
}
.sci-coa__foot span {
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
}

/* ---------- Certifications strip ---------- */
.sci-certs {
    padding: 60px 0;
    background: var(--navy-800);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.sci-certs__caption {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin: 0 0 32px;
}
.sci-certs__row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.sci-cert {
    text-align: center;
    padding: 22px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--navy-700);
    transition: all 0.3s var(--ease);
}
.sci-cert:hover { border-color: rgba(176, 136, 51, 0.45); transform: translateY(-3px); }
.sci-cert strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}
.sci-cert span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mute);
}

/* ---------- Research papers ---------- */
.sci-research {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.sci-paper {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.35s var(--ease);
}
.sci-paper:hover {
    transform: translateY(-4px);
    border-color: rgba(176, 136, 51, 0.35);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.16);
}
.sci-paper__tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 2px;
    margin-bottom: 18px;
}
.sci-paper h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 12px;
    color: var(--cream-100);
    line-height: 1.3;
}
.sci-paper__cite {
    font-size: 12px;
    color: var(--text-mute);
    margin: 0 0 18px;
    letter-spacing: 0.02em;
    font-style: italic;
}
.sci-paper p:not(.sci-paper__cite) {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

/* ---------- Science responsive ---------- */
@media (max-width: 1024px) {
    .sci-problem { grid-template-columns: 1fr; gap: 48px; }
    .sci-pillars { grid-template-columns: 1fr; }
    .sci-chart__row { grid-template-columns: 160px 1fr 50px; gap: 16px; }
    .sci-mfg { grid-template-columns: 1fr; gap: 48px; }
    .sci-process { grid-template-columns: 1fr 1fr; }
    .sci-process::before { display: none; }
    .sci-coa__grid { grid-template-columns: 1fr; }
    .sci-coa__panel { border-right: 0; }
    .sci-coa__panel:nth-last-child(2) { border-bottom: 1px solid var(--line); }
    .sci-certs__row { grid-template-columns: repeat(3, 1fr); }
    .sci-research { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .sci-hero__metric > div { flex-direction: column; gap: 12px; padding: 24px; text-align: center; }
    .sci-hero__metric span { max-width: none; }
    .sci-stat { padding: 22px 22px; gap: 18px; }
    .sci-stat strong { min-width: 100px; font-size: 36px; }
    .sci-process { grid-template-columns: 1fr; }
    .sci-chart__row { grid-template-columns: 1fr; gap: 8px; }
    .sci-chart__val { text-align: left; font-size: 18px; }
    .sci-certs__row { grid-template-columns: 1fr 1fr; }
    .sci-coa__head { padding: 22px 22px; }
    .sci-coa__panel { padding: 22px 22px; }
    .sci-coa__foot { padding: 18px 22px; }
}

/* =========================================================
   About Page
   ========================================================= */

/* ---------- Hero ---------- */
.ab-hero {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 0 100px;
    overflow: hidden;
}
.ab-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 20%, rgba(201, 169, 97, 0.16) 0%, transparent 60%),
        linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
    z-index: 0;
}
.ab-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}
.ab-hero__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 400;
    line-height: 1.06;
    margin: 0 0 28px;
    letter-spacing: -0.015em;
}
.ab-hero__title em { font-style: italic; color: var(--gold-400); font-weight: 300; }
.ab-hero__lede {
    font-size: 18px;
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Founder split ---------- */
.ab-story {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.ab-story__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}
.ab-story__media img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.97) contrast(1.05);
}
.ab-story__caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line);
    padding: 16px 22px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ab-story__caption strong {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--cream-100);
    font-weight: 500;
}
.ab-story__caption span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-500);
}

.ab-story__content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
    font-style: italic;
}
.ab-story__content p {
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 18px;
}
.ab-story__sig {
    display: block;
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold-500);
    font-style: italic;
}

/* ---------- Mission pillars ---------- */
.ab-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ab-pillar {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.35s var(--ease);
}
.ab-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.4);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.18);
}
.ab-pillar__num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold-400);
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1;
    font-style: italic;
}
.ab-pillar h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 14px;
}
.ab-pillar p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Timeline ---------- */
.ab-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}
.ab-timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold-400), transparent);
    opacity: 0.5;
}
.ab-tl-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    padding: 24px 0;
    align-items: start;
    position: relative;
}
.ab-tl-item::before {
    content: '';
    position: absolute;
    left: 134px;
    top: 32px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold-500);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px var(--gold-400);
    z-index: 1;
}
.ab-tl-year {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
    padding-top: 18px;
    text-align: right;
}
.ab-tl-body { padding-left: 24px; }
.ab-tl-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--cream-100);
}
.ab-tl-body p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.ab-tl-item--current .ab-tl-year { color: var(--cream-100); }
.ab-tl-item--current::before {
    background: var(--cream-100);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.3), 0 0 0 1px var(--gold-400);
}

/* ---------- Team ---------- */
.ab-team {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.ab-member { text-align: left; }
.ab-member__photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    background: var(--navy-700);
    border: 1px solid var(--line);
}
.ab-member__photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s var(--ease);
    filter: contrast(1.02);
}
.ab-member:hover .ab-member__photo img { transform: scale(1.05); }
.ab-member h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 4px;
}
.ab-member__role {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 500;
    margin-bottom: 14px;
}
.ab-member p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
    margin: 0;
}

/* ---------- Big quote ---------- */
.ab-quote {
    padding: clamp(80px, 12vw, 140px) 0;
    background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 169, 97, 0.14) 0%, transparent 60%),
        #ffffff;
    text-align: center;
}
.ab-quote__inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}
.ab-quote__mark {
    color: var(--gold-400);
    margin-bottom: 28px;
}
.ab-quote p {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 400;
    line-height: 1.35;
    color: var(--cream-100);
    margin: 0 0 32px;
    font-style: italic;
}
.ab-quote footer {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.ab-quote footer strong {
    color: var(--gold-500);
    font-weight: 600;
}

/* ---------- About responsive ---------- */
@media (max-width: 1024px) {
    .ab-story { grid-template-columns: 1fr; gap: 48px; }
    .ab-pillars { grid-template-columns: 1fr; }
    .ab-team { grid-template-columns: repeat(2, 1fr); }
    .ab-timeline::before { left: 18px; }
    .ab-tl-item { grid-template-columns: 60px 1fr; gap: 16px; }
    .ab-tl-item::before { left: 12px; top: 18px; }
    .ab-tl-year { font-size: 18px; padding-top: 4px; text-align: left; letter-spacing: 0.04em; }
    .ab-tl-body { padding-left: 12px; }
}
@media (max-width: 640px) {
    .ab-team { grid-template-columns: 1fr; }
}

/* =========================================================
   Contact Page
   ========================================================= */

/* ---------- Contact channels ---------- */
.ct-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ct-channel {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s var(--ease);
}
.ct-channel:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.4);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.18);
}
.ct-channel--featured {
    background: linear-gradient(160deg, var(--navy-900) 0%, rgba(201, 169, 97, 0.1) 100%);
    border-color: var(--gold-400);
}
.ct-channel__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.ct-channel h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 12px;
}
.ct-channel > p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 24px;
    flex: 1;
}
.ct-channel__link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold-500);
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--gold-400);
    padding-bottom: 4px;
    width: fit-content;
    transition: color 0.25s var(--ease);
}
.ct-channel__link:hover { color: var(--gold-300); }
.ct-channel__sla {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 500;
}

/* ---------- Form + Location ---------- */
.ct-form-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.ct-form-section__copy h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.ct-form-section__copy h2 em { font-style: italic; color: var(--gold-400); }
.ct-form-section__copy > p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 40px;
}

.ct-location {
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.ct-location h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    margin: 0 0 14px;
}
.ct-location address {
    font-style: normal;
    color: var(--cream-100);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px;
}
.ct-location__hours h4 { margin-top: 0; }
.ct-location__hours ul { display: flex; flex-direction: column; }
.ct-location__hours li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.ct-location__hours li:last-child { border-bottom: 0; }
.ct-location__hours li span { color: var(--text-soft); }
.ct-location__hours li strong { color: var(--cream-100); font-weight: 500; }

/* ---------- Form (reuses .wl-apply__form styles) ---------- */
.ct-form {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 30px 60px -30px rgba(22, 17, 10, 0.2);
}
.ct-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ct-form label { display: flex; flex-direction: column; gap: 8px; }
.ct-form label > span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 500;
}
.ct-form input,
.ct-form select,
.ct-form textarea {
    padding: 13px 16px;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--cream-100);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.25s var(--ease);
}
.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
    outline: none;
    border-color: var(--gold-400);
}
.ct-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b08833' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.ct-form textarea { resize: vertical; }
.ct-form__success {
    margin: 0;
    padding: 14px 16px;
    background: rgba(176, 136, 51, 0.12);
    border: 1px solid var(--gold-400);
    border-radius: var(--radius);
    color: var(--gold-300);
    font-size: 14px;
    text-align: center;
}

/* ---------- Quick help FAQ ---------- */
.ct-faq {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.ct-faq .wl-faq__item summary a {
    color: var(--gold-500);
    border-bottom: 1px solid var(--gold-400);
}

/* ---------- Contact responsive ---------- */
@media (max-width: 1024px) {
    .ct-channels { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .ct-form-section { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .ct-form { padding: 24px; }
    .ct-form__row { grid-template-columns: 1fr; }
}

/* =========================================================
   Support / Doc-style pages
   (Shipping, FAQ, Subscriptions, Wholesale)
   ========================================================= */

.doc-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    align-items: start;
}

/* ---------- Sidebar nav ---------- */
.doc-nav {
    position: sticky;
    top: 110px;
}
.doc-nav h4 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    margin: 0 0 16px;
}
.doc-nav ul { margin-bottom: 32px; }
.doc-nav li { margin-bottom: 2px; }
.doc-nav a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-soft);
    border-left: 2px solid transparent;
    margin-left: -14px;
    transition: all 0.25s var(--ease);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.doc-nav a:hover {
    color: var(--gold-500);
    background: rgba(176, 136, 51, 0.06);
}
.doc-nav a.is-active {
    color: var(--gold-500);
    border-left-color: var(--gold-500);
    font-weight: 500;
    background: rgba(176, 136, 51, 0.08);
}
.doc-nav__cta {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.doc-nav__cta p {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin: 0 0 12px;
}

/* ---------- Doc main content ---------- */
.doc-main { max-width: 760px; }
.doc-block {
    padding: 0 0 60px;
    scroll-margin-top: 110px;
}
.doc-block:last-child { padding-bottom: 0; }
.doc-block h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.doc-block h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 28px 0 12px;
}
.doc-block p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 16px;
}
.doc-block p a {
    color: var(--gold-500);
    border-bottom: 1px solid var(--gold-400);
}
.doc-block p a:hover { color: var(--gold-300); }
.doc-note {
    font-size: 13px !important;
    color: var(--text-mute) !important;
    font-style: italic;
}

/* ---------- Legal-page header meta ---------- */
.legal-meta {
    margin-top: 18px !important;
    font-size: 12px !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-mute) !important;
    font-weight: 500;
}

/* ---------- Doc bullet list (legal-prose style) ---------- */
.doc-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.doc-bullets li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.7;
}
.doc-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 18px;
    width: 12px; height: 1px;
    background: var(--gold-500);
}
.doc-bullets li strong { color: var(--cream-100); font-weight: 500; }
.doc-bullets li a {
    color: var(--gold-500);
    border-bottom: 1px solid var(--gold-400);
}
.doc-bullets li a:hover { color: var(--gold-300); }

/* =========================================================
   Search overlay
   ========================================================= */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 250;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }

.search-overlay__bg {
    position: absolute;
    inset: 0;
    background: rgba(22, 17, 10, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.search-overlay__panel {
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--navy-700);
    border-bottom: 1px solid var(--line);
    padding: 36px 0 44px;
    box-shadow: 0 30px 60px -30px rgba(22, 17, 10, 0.25);
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.search-overlay.is-open .search-overlay__panel {
    transform: translateY(0);
    opacity: 1;
}

.search-overlay__form {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--navy-800);
    transition: border-color 0.25s var(--ease);
}
.search-overlay__form:focus-within { border-color: var(--gold-400); }
.search-overlay__form svg { color: var(--gold-500); flex-shrink: 0; }
.search-overlay__form input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 17px;
    color: var(--cream-100);
    padding: 6px 0;
}
.search-overlay__form input::placeholder { color: var(--text-mute); }
.search-overlay__close {
    width: 32px; height: 32px;
    border-radius: 50%;
    color: var(--text-soft);
    transition: all 0.25s var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.search-overlay__close:hover { background: rgba(176, 136, 51, 0.1); color: var(--gold-500); }

.search-overlay__hint {
    margin-top: 22px;
    font-size: 14px;
    color: var(--text-mute);
    letter-spacing: 0.02em;
}
.search-overlay__suggest {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.search-overlay__suggest > span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-right: 4px;
}
.search-overlay__suggest button {
    padding: 7px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--cream-50);
    background: var(--navy-700);
    transition: all 0.2s var(--ease);
    cursor: pointer;
}
.search-overlay__suggest button:hover {
    border-color: var(--gold-400);
    color: var(--gold-500);
}

.search-overlay__results { margin-top: 22px; }
.search-results__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 8px;
}
.search-results__head span {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mute);
}
.search-results__head a {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--gold-500);
    border-bottom: 1px solid var(--gold-400);
    padding-bottom: 2px;
}
.search-results__head a:hover { color: var(--gold-300); }

.search-results__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}
.search-hit {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s var(--ease);
    border-radius: var(--radius);
}
.search-hit:hover { background: var(--navy-800); }
.search-hit__img {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-800);
}
.search-hit__img img { width: 100%; height: 100%; object-fit: cover; }
.search-hit__body { min-width: 0; }
.search-hit__body h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 2px;
    color: var(--cream-100);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-hit__body p {
    font-size: 12px;
    color: var(--text-mute);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-hit__body mark,
.search-hit h4 mark {
    background: rgba(176, 136, 51, 0.22);
    color: var(--gold-500);
    padding: 0 2px;
    border-radius: 2px;
}
.search-hit__price {
    font-family: var(--font-display);
    color: var(--gold-500);
    font-size: 17px;
    font-weight: 500;
}

.search-empty {
    padding: 40px 16px;
    text-align: center;
    color: var(--text-soft);
}
.search-empty p { margin: 0 0 16px; font-size: 15px; }
.search-empty strong { color: var(--cream-100); font-weight: 500; }

@media (max-width: 768px) {
    .search-overlay__panel { padding: 24px 0 32px; }
    .search-results__list { grid-template-columns: 1fr; gap: 0; }
    .search-overlay__form input { font-size: 15px; }
}

/* =========================================================
   Account dropdown
   ========================================================= */
.account-wrap {
    position: relative;
    display: inline-flex;
}
.account-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    width: 280px;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 50px -24px rgba(22, 17, 10, 0.25);
    padding: 12px;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    z-index: 110;
}
.account-wrap.is-open .account-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.account-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 10px; height: 10px;
    background: var(--navy-700);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
}
.account-menu__head {
    padding: 14px 14px 14px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 8px;
}
.account-menu__head strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 2px;
}
.account-menu__head span {
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.5;
}
.account-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--cream-50);
    transition: all 0.2s var(--ease);
}
.account-menu a:hover {
    background: rgba(176, 136, 51, 0.08);
    color: var(--gold-500);
}
.account-menu a svg {
    color: var(--gold-500);
    flex-shrink: 0;
}
.account-menu__divider {
    height: 1px;
    background: var(--line);
    margin: 8px 14px;
}

@media (max-width: 768px) {
    .account-menu {
        position: fixed;
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
    }
    .account-menu::before { display: none; }
}

/* ---------- Doc list (definition-style) ---------- */
.doc-list {
    display: flex;
    flex-direction: column;
    margin: 0 0 20px;
    border-top: 1px solid var(--line);
}
.doc-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    color: var(--cream-50);
    line-height: 1.6;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: baseline;
}
.doc-list li strong {
    font-weight: 500;
    color: var(--cream-100);
    font-size: 14px;
}

/* ---------- Doc table ---------- */
.doc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}
.doc-table th,
.doc-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.doc-table th {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    background: var(--navy-800);
}
.doc-table td { color: var(--cream-100); }
.doc-table tbody tr:hover td { background: rgba(176, 136, 51, 0.04); }

/* =========================================================
   Subscriptions page specifics
   ========================================================= */

.sub-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.sub-benefit {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: left;
    transition: all 0.35s var(--ease);
}
.sub-benefit:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.4);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.16);
}
.sub-benefit__num {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold-500);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 20px;
}
.sub-benefit h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--cream-100);
}
.sub-benefit p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.sub-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.sub-step {
    text-align: left;
    padding: 0 8px;
}
.sub-step__num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--gold-400);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
    font-style: italic;
}
.sub-step h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--cream-100);
}
.sub-step p {
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================
   Wholesale page specifics
   ========================================================= */

.wh-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.wh-type {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.35s var(--ease);
}
.wh-type:hover {
    transform: translateY(-6px);
    border-color: rgba(176, 136, 51, 0.4);
    box-shadow: 0 22px 48px -22px rgba(22, 17, 10, 0.16);
}
.wh-type__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.wh-type h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--cream-100);
}
.wh-type p {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

/* ---------- Support pages responsive ---------- */
@media (max-width: 1024px) {
    .doc-layout { grid-template-columns: 1fr; gap: 40px; }
    .doc-nav {
        position: static;
        background: var(--navy-800);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        padding: 24px;
    }
    .doc-nav a { margin-left: 0; }
    .sub-benefits { grid-template-columns: repeat(2, 1fr); }
    .sub-steps { grid-template-columns: 1fr; }
    .wh-types { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .sub-benefits { grid-template-columns: 1fr; }
    .wh-types { grid-template-columns: 1fr; }
    .doc-list li { grid-template-columns: 1fr; gap: 4px; }
    .doc-table th, .doc-table td { padding: 12px 10px; font-size: 13px; }
}

/* =========================================================
   Checkout
   ========================================================= */

.checkout-body { background: var(--navy-800); }

/* ---------- Slim header / footer ---------- */
.checkout-header {
    background: var(--navy-700);
    border-bottom: 1px solid var(--line);
}
.checkout-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.checkout-header__inner .logo img { height: 36px; }
.checkout-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 500;
}
.checkout-header__back {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--gold-500);
    border-bottom: 1px solid var(--gold-400);
    padding-bottom: 2px;
}
.checkout-header__back:hover { color: var(--gold-300); }

.checkout-footer {
    background: var(--navy-700);
    border-top: 1px solid var(--line);
    padding: 24px 0;
    margin-top: auto;
}
.checkout-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.04em;
    flex-wrap: wrap;
    gap: 12px;
}
.checkout-footer__legal { display: flex; gap: 22px; }
.checkout-footer__legal a:hover { color: var(--gold-300); }

.checkout { padding: 48px 0 80px; }

/* ---------- Stepper ---------- */
.co-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0 0 56px;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}
.co-step {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 500;
    transition: color 0.3s var(--ease);
}
.co-step span {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--navy-700);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-mute);
    transition: all 0.3s var(--ease);
}
.co-step.is-active { color: var(--gold-500); }
.co-step.is-active span {
    background: var(--gold-500);
    color: var(--ink-on-accent);
    border-color: var(--gold-500);
}
.co-step.is-done span {
    background: var(--gold-300);
    color: var(--ink-on-accent);
    border-color: var(--gold-300);
}

/* ---------- Layout ---------- */
.co-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: start;
}
.co-main {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 24px 50px -28px rgba(22, 17, 10, 0.12);
}
.co-empty {
    text-align: center;
    padding: 40px 0;
}
.co-empty h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin: 0 0 12px;
}
.co-empty p { color: var(--text-soft); margin: 0 0 24px; }

/* ---------- Panel ---------- */
.co-panel { display: none; }
.co-panel.is-active { display: block; animation: coIn 0.3s var(--ease); }
@keyframes coIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.co-panel__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin: 0 0 20px;
    color: var(--cream-100);
}

/* ---------- Fields ---------- */
.co-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
}
.co-field > span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-mute);
    font-weight: 500;
}
.co-field > span em {
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-mute);
    font-style: normal;
    font-weight: 400;
    margin-left: 4px;
}
.co-field input,
.co-field select,
.co-field textarea {
    padding: 13px 16px;
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--cream-100);
    font: inherit;
    font-size: 15px;
    transition: border-color 0.2s var(--ease);
}
.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus {
    outline: none;
    border-color: var(--gold-400);
}
.co-field input.is-invalid,
.co-field select.is-invalid {
    border-color: #c44d2e;
    background: rgba(196, 77, 46, 0.03);
}
.co-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23b08833' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.co-row--3 { grid-template-columns: 1.4fr 0.8fr 1fr; }

/* Card field with brand badge */
.co-field--card input { padding-right: 60px; font-variant-numeric: tabular-nums; }
.co-card-brand {
    position: absolute;
    right: 14px;
    bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--gold-500);
    padding: 3px 8px;
    border: 1px solid var(--gold-400);
    border-radius: 3px;
    line-height: 1;
}
.co-card-brand:empty { display: none; }

/* ---------- Checkbox ---------- */
.co-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
    cursor: pointer;
}
.co-check input { margin-top: 3px; accent-color: var(--gold-500); }
.co-check a { color: var(--gold-500); border-bottom: 1px solid var(--gold-400); }

/* ---------- Shipping options ---------- */
.co-shipping { border: 0; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.co-ship-option {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s var(--ease);
}
.co-ship-option:hover { border-color: var(--gold-400); }
.co-ship-option:has(input:checked) {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 1px var(--gold-500) inset;
    background: rgba(176, 136, 51, 0.04);
}
.co-ship-option input { accent-color: var(--gold-500); }
.co-ship-option__body { display: flex; flex-direction: column; gap: 2px; }
.co-ship-option__body strong {
    font-size: 14px;
    color: var(--cream-100);
    font-weight: 500;
}
.co-ship-option__body em {
    font-style: normal;
    font-size: 12px;
    color: var(--text-mute);
}
.co-ship-option__price {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--gold-500);
    font-weight: 500;
}

/* ---------- Secure badge in payment ---------- */
.co-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-mute);
    margin: 0 0 18px;
}
.co-secure svg { color: var(--gold-500); }

/* ---------- Review grid ---------- */
.co-review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}
.co-review-block {
    padding: 18px 20px;
    background: var(--navy-800);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    position: relative;
}
.co-review-block h3 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    margin: 0 0 10px;
}
.co-review-block p {
    margin: 0;
    font-size: 14px;
    color: var(--cream-100);
    line-height: 1.55;
}
.co-edit {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    background: none;
    border: 0;
    cursor: pointer;
    font-weight: 500;
}
.co-edit:hover { color: var(--gold-300); }

/* ---------- Step actions ---------- */
.co-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}
.co-actions .btn { min-width: 220px; }
.co-back {
    background: none;
    border: 0;
    color: var(--text-soft);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    transition: color 0.2s var(--ease);
    padding: 6px 0;
}
.co-back:hover { color: var(--gold-500); }

/* =========================================================
   Order summary sidebar
   ========================================================= */
.co-summary {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 32px;
    box-shadow: 0 24px 50px -28px rgba(22, 17, 10, 0.12);
}
.co-summary__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.co-summary__items { margin-bottom: 18px; max-height: 360px; overflow-y: auto; }

/* Line item (shared by confirmation page) */
.co-line {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}
.co-line:last-child { border-bottom: 0; }
.co-line__img {
    position: relative;
    width: 56px; height: 56px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--navy-800);
    border: 1px solid var(--line);
}
.co-line__img img { width: 100%; height: 100%; object-fit: cover; }
.co-line__qty {
    position: absolute;
    top: -7px; right: -7px;
    background: var(--cream-100);
    color: var(--ink-on-accent);
    font-size: 10px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}
.co-line__body { min-width: 0; }
.co-line__body h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 2px;
    color: var(--cream-100);
    line-height: 1.25;
}
.co-line__sub {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 500;
}
.co-line__price {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--cream-100);
    font-weight: 500;
}

/* Promo */
.co-promo {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    margin-bottom: 18px;
}
.co-promo summary {
    cursor: pointer;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-soft);
    list-style: none;
    position: relative;
    padding-right: 24px;
}
.co-promo summary::-webkit-details-marker { display: none; }
.co-promo summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--gold-500);
    transition: transform 0.25s var(--ease);
}
.co-promo[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.co-promo__row { display: flex; gap: 8px; padding: 6px 0 12px; }
.co-promo__row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    background: var(--navy-700);
    color: var(--cream-100);
}
.co-promo__row input:focus { outline: none; border-color: var(--gold-400); }
.co-promo__row button {
    padding: 10px 18px;
    border: 1px solid var(--gold-400);
    border-radius: var(--radius);
    background: var(--navy-700);
    color: var(--gold-500);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    font-weight: 500;
}
.co-promo__row button:hover:not(:disabled) {
    background: var(--gold-500);
    color: var(--ink-on-accent);
}
.co-promo__row button:disabled { opacity: 0.6; cursor: not-allowed; }

/* Totals */
.co-totals { margin: 0; padding: 0; }
.co-totals > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-soft);
}
.co-totals dt { margin: 0; font-weight: 400; }
.co-totals dd { margin: 0; color: var(--cream-100); }
.co-totals__grand {
    padding-top: 18px !important;
    margin-top: 6px;
    border-top: 1px solid var(--line);
}
.co-totals__grand dt {
    font-size: 13px !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream-100);
    font-weight: 500;
}
.co-totals__grand dd {
    font-family: var(--font-display);
    font-size: 28px !important;
    color: var(--gold-500) !important;
    font-weight: 500;
}

.co-summary__assurance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    font-size: 12px;
    color: var(--text-mute);
    letter-spacing: 0.02em;
}
.co-summary__assurance svg { color: var(--gold-500); }

/* =========================================================
   Order confirmation
   ========================================================= */
.confirmation { padding: 60px 0 100px; }

.cf-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.cf-hero__check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gold-500);
    color: var(--ink-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 14px 30px -10px rgba(176, 136, 51, 0.5);
}
.cf-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.cf-hero__lede {
    color: var(--text-soft);
    font-size: 17px;
    margin: 0;
    line-height: 1.65;
}
.cf-hero__lede strong { color: var(--cream-100); }

.cf-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.cf-block {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 18px;
}
.cf-block h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.cf-block h4 {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-300);
    font-weight: 600;
    margin: 0 0 8px;
}
.cf-block p {
    color: var(--cream-100);
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

.cf-steps { list-style: none; padding: 0; margin: 0; }
.cf-steps li {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.cf-steps li:last-child { border-bottom: 0; }
.cf-steps li span {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold-400);
    font-weight: 400;
    line-height: 1.3;
}
.cf-steps li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: 4px;
}
.cf-steps li p { color: var(--text-soft); font-size: 14px; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.cf-pay {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.cf-pay__brand {
    font-size: 11px;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--gold-500);
    padding: 4px 10px;
    border: 1px solid var(--gold-400);
    border-radius: 3px;
}

.cf-summary {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 32px;
}
.cf-summary h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.cf-items { margin-bottom: 18px; max-height: 380px; overflow-y: auto; }

.cf-cta {
    margin-top: 60px;
    padding: 48px;
    background:
        radial-gradient(ellipse 50% 60% at 90% 50%, rgba(201, 169, 97, 0.2) 0%, transparent 60%),
        #ffffff;
    border: 1px solid var(--gold-400);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1.3fr auto;
    gap: 32px;
    align-items: center;
}
.cf-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    line-height: 1.1;
    margin: 12px 0 8px;
    letter-spacing: -0.01em;
}
.cf-cta h2 em { font-style: italic; color: var(--gold-400); }
.cf-cta p { color: var(--text-soft); margin: 0; }

/* ---------- Checkout responsive ---------- */
@media (max-width: 1024px) {
    .co-layout { grid-template-columns: 1fr; gap: 32px; }
    .co-summary { position: static; }
    .cf-layout { grid-template-columns: 1fr; }
    .cf-summary { position: static; }
    .co-review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .co-main { padding: 28px 22px; }
    .co-summary { padding: 24px; }
    .co-row, .co-row--3 { grid-template-columns: 1fr; }
    .co-steps { gap: 12px; margin-bottom: 36px; }
    .co-step { font-size: 10px; gap: 6px; }
    .co-step span { width: 26px; height: 26px; font-size: 12px; }
    .co-actions { flex-direction: column-reverse; align-items: stretch; }
    .co-actions .btn { width: 100%; min-width: 0; }
    .co-back { text-align: center; }
    .cf-grid { grid-template-columns: 1fr; }
    .cf-cta { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
}

/* =========================================================
   Auth + account pages
   ========================================================= */

.auth-section {
    padding: clamp(60px, 10vw, 120px) 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}
.auth-container { max-width: 480px; margin: 0 auto; }
.auth-card {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(32px, 5vw, 56px);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.4);
}
.auth-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 4vw, 40px);
    line-height: 1.15;
    margin: 12px 0 28px;
    letter-spacing: -0.01em;
}
.auth-title em { font-style: italic; color: var(--gold-400); }

.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field > span {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 500;
}
.auth-field input,
.auth-field select {
    padding: 14px 16px;
    background: var(--navy-800);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--cream-100);
    font: inherit;
    transition: border-color 0.2s var(--ease);
}
.auth-field input:focus,
.auth-field select:focus {
    outline: none;
    border-color: var(--gold-400);
}
.auth-field input::placeholder { color: var(--text-mute); }
.auth-field input:disabled { opacity: 0.6; }
.auth-hint {
    font-style: normal;
    font-size: 12px;
    color: var(--text-mute);
    margin-top: 2px;
}

.auth-error {
    padding: 12px 16px;
    background: rgba(255, 140, 140, 0.1);
    border: 1px solid rgba(255, 140, 140, 0.3);
    border-radius: var(--radius);
    color: #ffb3b3;
    font-size: 14px;
    margin: 0;
}

.btn--block { display: flex; width: 100%; }

.auth-foot {
    text-align: center;
    color: var(--text-soft);
    font-size: 14px;
    margin: 4px 0 0;
}
.auth-foot a {
    color: var(--gold-400);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
}
.auth-foot a:hover { color: var(--cream-100); }

/* ---------- Account layout ---------- */

.account-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 800px) {
    .account-grid { grid-template-columns: 1fr; gap: 28px; }
}

.account-side { position: sticky; top: 100px; }
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav li { list-style: none; }
.account-nav a,
.account-nav__signout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-soft);
    border-radius: var(--radius);
    transition: all 0.2s var(--ease);
    width: 100%;
    text-align: left;
    font: inherit;
}
.account-nav a:hover,
.account-nav__signout:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--cream-100);
}
.account-nav a.is-active {
    background: var(--navy-700);
    color: var(--cream-100);
}
.account-nav em {
    font-style: normal;
    font-size: 12px;
    padding: 1px 8px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-mute);
}
.account-nav__signout { color: var(--text-mute); cursor: pointer; }

.account-card {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 40px);
    margin-bottom: 24px;
}
.account-card__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 24px;
    color: var(--cream-100);
}
.account-form { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.account-form .auth-field { width: 100%; }
.account-form .auth-row { width: 100%; }

/* ---------- Order cards ---------- */

.orders-list { display: flex; flex-direction: column; gap: 18px; }
.order-card {
    background: var(--navy-700);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(20px, 3vw, 28px);
}
.order-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 16px;
}
.order-card__id {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 13px;
    color: var(--gold-400);
    display: block;
    margin-bottom: 4px;
}
.order-card__date { font-size: 13px; color: var(--text-mute); }
.order-card__status {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cream-100);
    font-weight: 500;
    white-space: nowrap;
}
.order-card__status--paid       { background: rgba(212, 190, 141, 0.18); color: var(--gold-400); }
.order-card__status--fulfilled  { background: rgba(141, 212, 168, 0.18); color: #a6e3b8; }
.order-card__status--cancelled,
.order-card__status--refunded   { background: rgba(255, 140, 140, 0.15); color: #ffb3b3; }
.order-card__status--pending    { background: rgba(255, 200, 100, 0.15); color: #ffd28a; }

.order-card__items { display: flex; flex-direction: column; gap: 10px; padding: 0; }
.order-card__items li {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    list-style: none;
}
.order-card__items img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius); }
.order-card__items strong { font-weight: 500; color: var(--gold-400); }

.order-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 14px;
}
.order-card__foot strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--gold-400);
}

/* =========================================================
   Theme overrides — re-flip toward Cymbiotika-style white base
   with strategic dark-green surfaces (footer, hero accents).
   ========================================================= */

/* ---------- Header: white glass on white body ---------- */
.header {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--line);
}
.header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 20px -10px rgba(21, 62, 53, 0.08);
}
.nav a { color: var(--cream-100); }
.nav a:hover { color: var(--gold-300); }
.icon-btn { color: var(--cream-100); }
.icon-btn:hover { background: rgba(21, 62, 53, 0.05); color: var(--gold-300); }
.cart-count { background: var(--brand-green); color: #fff; }

/* ---------- Announcement bar ---------- */
.announcement {
    background: var(--brand-green);
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 0;
}
.announcement,
.announcement * { color: rgba(255, 255, 255, 0.92); }

/* ---------- Buttons (dark green pill is now primary) ---------- */
.btn--gold {
    background: var(--brand-green);
    color: #ffffff;
    border: 1px solid var(--brand-green);
}
.btn--gold:hover {
    background: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    color: #ffffff;
    box-shadow: 0 14px 30px -10px rgba(21, 62, 53, 0.35);
}
.btn--ghost {
    border-color: rgba(21, 62, 53, 0.22);
    color: var(--cream-100);
    background: transparent;
}
.btn--ghost:hover {
    background: rgba(21, 62, 53, 0.04);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

/* ---------- Surface-dark utility ----------
   Apply to any section / panel that should be a dark-green takeover.
   Auto-inverts child ink tokens. */
.surface-dark {
    background: var(--brand-green);
    color: var(--ink-dark);
    --cream-100: var(--ink-dark);
    --text-soft: var(--text-soft-dark);
    --text-mute: var(--text-mute-dark);
    --line:      var(--line-dark);
}
.surface-dark .eyebrow,
.surface-dark .section__sub,
.surface-dark p { color: var(--text-soft-dark); }
.surface-dark .section__title em,
.surface-dark h1 em,
.surface-dark h2 em { color: var(--gold-400); }
.surface-dark .btn--gold {
    background: #ffffff;
    color: var(--brand-green);
    border-color: #ffffff;
}
.surface-dark .btn--gold:hover {
    background: var(--gold-400);
    color: var(--brand-green);
    border-color: var(--gold-400);
}
.surface-dark .btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}
.surface-dark .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
}

/* ---------- Footer: dark green takeover ---------- */
.footer {
    background: var(--brand-green);
    color: var(--ink-dark);
    border-top: 0;
    --line: var(--line-dark);
    --text-soft: var(--text-soft-dark);
    --text-mute: var(--text-mute-dark);
}
.footer__brand p { color: rgba(255, 255, 255, 0.65); }
.footer h4 { color: var(--gold-400); }
.footer ul a { color: rgba(255, 255, 255, 0.70); }
.footer ul a:hover { color: #ffffff; }
.footer__bottom { color: rgba(255, 255, 255, 0.55); }

/* ---------- Newsletter band: subtle cream pre-footer ---------- */
.newsletter {
    background: var(--navy-800);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.newsletter__form input {
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--cream-100);
}
.newsletter__form input::placeholder { color: var(--text-mute); }

/* ---------- Cart drawer: clean white panel ---------- */
.cart-drawer {
    background: #ffffff;
    color: var(--cream-100);
    box-shadow: -20px 0 60px -20px rgba(21, 62, 53, 0.18);
}
.cart-drawer__head { border-bottom: 1px solid var(--line); }
.cart-drawer__foot { border-top: 1px solid var(--line); background: var(--navy-800); }
.cart-line { border-bottom: 1px solid var(--line); }
.cart-line__qty button {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--cream-100);
}
.cart-line__qty button:hover { border-color: var(--brand-green); color: var(--brand-green); }
.cart-line__price { color: var(--gold-300); }

/* ---------- Product cards: white with subtle border + lift ---------- */
.product {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 1px 3px rgba(21, 62, 53, 0.04);
    transition: all 0.4s var(--ease);
}
.product:hover {
    border-color: rgba(21, 62, 53, 0.18);
    box-shadow: 0 24px 50px -22px rgba(21, 62, 53, 0.14);
    transform: translateY(-3px);
}
.product__add {
    background: var(--brand-green);
    color: #ffffff;
}
.product__add:hover {
    background: var(--brand-green-hover);
}
.product__tag {
    background: var(--brand-green);
    color: #ffffff;
}
.price { color: var(--gold-300); font-weight: 500; }
.rating { color: var(--text-soft); }

/* ---------- Eyebrows: warm gold, not green ---------- */
.eyebrow,
.eyebrow--gold {
    color: var(--gold-300);
}

/* ---------- Auth/account pages: white cards with subtle elevation ---------- */
.auth-section {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.auth-card {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px -30px rgba(21, 62, 53, 0.18);
    color: var(--cream-100);
}
.auth-title em { color: var(--brand-green); font-style: italic; }
.auth-field > span { color: var(--text-soft); }
.auth-field input,
.auth-field select {
    background: var(--navy-800);
    border: 1px solid var(--line);
    color: var(--cream-100);
}
.auth-field input:focus,
.auth-field select:focus { border-color: var(--brand-green); }
.auth-field input::placeholder { color: var(--text-mute); }
.auth-hint { color: var(--text-mute); }
.auth-error {
    background: rgba(196, 77, 46, 0.06);
    border: 1px solid rgba(196, 77, 46, 0.25);
    color: #a83a1f;
}
.auth-foot { color: var(--text-soft); }
.auth-foot a { color: var(--brand-green); border-bottom-color: rgba(21,62,53,0.3); }
.auth-foot a:hover { color: var(--brand-green-hover); border-bottom-color: currentColor; }

/* ---------- Account dashboard ---------- */
.account-side { background: transparent; }
.account-nav a,
.account-nav__signout {
    color: var(--text-soft);
}
.account-nav a:hover,
.account-nav__signout:hover {
    background: rgba(21, 62, 53, 0.04);
    color: var(--cream-100);
}
.account-nav a.is-active {
    background: var(--brand-green);
    color: #ffffff;
}
.account-nav a.is-active em {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}
.account-nav em {
    background: rgba(21, 62, 53, 0.08);
    color: var(--text-soft);
}
.account-card {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 1px 3px rgba(21, 62, 53, 0.04);
}

/* ---------- Order cards ---------- */
.order-card {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 1px 3px rgba(21, 62, 53, 0.04);
    transition: box-shadow 0.3s var(--ease);
}
.order-card:hover {
    box-shadow: 0 14px 36px -20px rgba(21, 62, 53, 0.14);
}
.order-card__id { color: var(--brand-green); }
.order-card__status {
    background: rgba(21, 62, 53, 0.06);
    color: var(--cream-100);
}
.order-card__status--paid       { background: rgba(21, 62, 53, 0.10); color: var(--brand-green); }
.order-card__status--fulfilled  { background: rgba(45, 120, 80, 0.12); color: #2d7850; }
.order-card__status--cancelled,
.order-card__status--refunded   { background: rgba(196, 77, 46, 0.10); color: #a83a1f; }
.order-card__status--pending    { background: rgba(176, 136, 51, 0.12); color: var(--gold-300); }
.order-card__items strong       { color: var(--brand-green); }
.order-card__foot strong        { color: var(--brand-green); }
