:root {
    --ink: #281a31;
    --ink-soft: #594d62;
    --cream: #f7f1e6;
    --cream-deep: #eadcc5;
    --paper: #fffcf5;
    --purple: #4b1e78;
    --purple-deep: #28103f;
    --purple-soft: #6d3f91;
    --gold: #c8a257;
    --gold-bright: #e2c274;
    --jade: #1e8a5a;
    --jade-deep: #176746;
    --maple-red: #d22020;
    --daily-orange: #e97825;
    --red: var(--purple);
    --red-dark: var(--purple-deep);
    --green: var(--jade-deep);
    --line: rgba(75, 30, 120, 0.16);
    --shadow-sm: 0 10px 30px rgba(55, 25, 78, 0.1);
    --shadow-lg: 0 30px 85px rgba(45, 19, 67, 0.2);
    --radius-sm: 0.65rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --container: 76rem;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, Aptos, 'Segoe UI', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 7rem; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em; }
h1 { font-size: clamp(3.1rem, 7vw, 6.9rem); }
h2 { font-size: clamp(2.3rem, 4.8vw, 4.6rem); }
h3 { font-size: 1.3rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 9vw, 9rem); }
.section--cream { background: linear-gradient(180deg, var(--cream) 0%, #fbf6ec 100%); }

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

.skip-link {
    position: fixed;
    left: 1rem;
    top: -5rem;
    z-index: 9999;
    padding: 0.8rem 1.1rem;
    color: #fff;
    background: var(--purple-deep);
    border-radius: 0.4rem;
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.eyebrow {
    margin-bottom: 1rem;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}
.eyebrow--light { color: var(--gold-bright); }

.button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.87rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--large { min-height: 3.6rem; padding-inline: 1.65rem; }
.button--small { min-height: 2.75rem; padding: 0.65rem 1.05rem; }
.button--primary { color: #fff; background: var(--purple); box-shadow: 0 8px 22px rgba(75, 30, 120, 0.2); }
.button--primary:hover { background: var(--purple-deep); }
.button--secondary { color: var(--ink); background: transparent; border-color: var(--ink); }
.button--light { color: var(--purple-deep); background: var(--cream); }
.button--light:hover { background: #fff; }
.button--outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.05); }
.button--outline-light:hover { background: rgba(255, 255, 255, 0.13); }
.button-group { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.button-group--center { justify-content: center; }

.text-link, .text-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0;
    border: 0;
    color: var(--red);
    background: none;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.25rem;
    cursor: pointer;
}

.trust-bar { color: #f7e6b8; background: var(--purple-deep); font-size: 0.72rem; letter-spacing: 0.075em; text-transform: uppercase; }
.trust-bar__inner { display: flex; min-height: 2.3rem; align-items: center; justify-content: space-between; gap: 1rem; }
.trust-bar__inner span + span::before { content: '•'; margin-right: clamp(1rem, 4vw, 3rem); color: var(--gold); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(200, 162, 87, 0.42);
    color: var(--purple-deep);
    background: rgba(255, 252, 245, 0.96);
    backdrop-filter: blur(16px);
}
.site-header__inner { display: flex; min-height: 5.5rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; min-height: 52px; align-items: center; gap: 0.75rem; color: inherit; line-height: 1; text-decoration: none; }
.brand__seal { display: grid; width: 3.2rem; height: 3.2rem; flex: 0 0 auto; place-items: center; border: 1px solid rgba(200, 162, 87, 0.55); border-radius: 50%; background: #fff; box-shadow: 0 6px 18px rgba(75, 30, 120, 0.12); overflow: hidden; }
.brand__seal img { width: 100%; height: 100%; object-fit: cover; }
.brand__lockup { display: grid; gap: 0.18rem; }
.brand__word { color: var(--purple); font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: -0.045em; }
.brand small { color: #8a6a27; font-size: 0.55rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); }
.site-nav > a:not(.button) { position: relative; color: var(--purple-deep); font-size: 0.83rem; font-weight: 800; text-decoration: none; }
.site-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -0.4rem; left: 0; height: 1px; background: var(--gold); content: ''; transform: scaleX(0); transition: transform 180ms ease; }
.site-nav > a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 3rem; height: 3rem; padding: 0.7rem; border: 1px solid rgba(75, 30, 120, 0.35); border-radius: 50%; background: rgba(75, 30, 120, 0.03); }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--purple); }

.hero { position: relative; isolation: isolate; color: #fff; background: var(--purple-deep); overflow: hidden; }
.hero--home { min-height: clamp(43rem, 78vh, 52rem); background-image: linear-gradient(90deg, rgba(39, 15, 62, 0.97) 0%, rgba(61, 23, 91, 0.83) 45%, rgba(39, 15, 62, 0.22) 78%), url('../images/gobao-hero.jpg'); background-position: center; background-size: cover; }
.hero--home::after { position: absolute; inset: 0; z-index: 0; background-image: repeating-linear-gradient(135deg, transparent 0 28px, rgba(226, 194, 116, 0.055) 28px 29px); content: ''; pointer-events: none; }
.hero__inner { position: relative; z-index: 1; display: grid; min-height: inherit; align-items: center; grid-template-columns: minmax(0, 1fr) 17rem; gap: 3rem; padding-block: 5rem; }
.hero__copy { max-width: 52rem; }
.hero h1 { max-width: 14ch; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--gold-bright); }
.hero__lead { max-width: 44rem; margin-bottom: 2rem; color: #f8f0e3; font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero__note { max-width: 38rem; margin: 1.25rem 0 0; color: #ddcfdf; font-size: 0.8rem; }
.hero-proof { align-self: end; padding: 1rem 1.2rem; border: 1px solid rgba(226,194,116,.42); border-radius: var(--radius-md); background: rgba(38, 15, 61, 0.72); backdrop-filter: blur(12px); }
.hero-proof div { display: grid; grid-template-columns: 4.5rem 1fr; align-items: center; gap: 0.75rem; padding: 1rem 0; }
.hero-proof div + div { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.hero-proof strong { color: var(--gold-bright); font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.hero-proof span { color: #f5ebf7; font-size: 0.78rem; line-height: 1.35; }

.credibility-strip { border-bottom: 1px solid var(--line); background: #fffaf0; }
.credibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.credibility-grid article { display: flex; gap: 1rem; padding: 2rem clamp(1rem, 3vw, 2.5rem); }
.credibility-grid article + article { border-left: 1px solid var(--line); }
.credibility-grid article > span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.credibility-grid h2 { margin-bottom: 0.35rem; font-family: var(--sans); font-size: 0.95rem; font-weight: 800; letter-spacing: 0; }
.credibility-grid p { margin: 0; color: var(--ink-soft); font-size: 0.84rem; line-height: 1.5; }

.section-heading { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading--split { display: grid; align-items: end; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
.section-heading--split h2 { margin-bottom: 0; }
.section-heading--split > div:last-child, .section-heading--split > p { max-width: 35rem; color: var(--ink-soft); }
.section-heading--center { max-width: 50rem; margin-inline: auto; text-align: center; }
.section-heading--center > p:last-child { color: var(--ink-soft); font-size: 1.08rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.product-card { min-width: 0; border: 1px solid rgba(75, 30, 120, 0.17); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); overflow: hidden; }
.product-card__visual { position: relative; display: flex; min-height: 16rem; align-items: center; justify-content: center; background: radial-gradient(circle at 70% 20%, #7250a0 0%, var(--purple) 44%, var(--purple-deep) 100%); overflow: hidden; }
.product-card--classic .product-card__visual { background: radial-gradient(circle at 70% 20%, #42a879 0%, var(--jade) 42%, var(--jade-deep) 100%); }
.product-card--daily .product-card__visual { background: radial-gradient(circle at 70% 20%, #f29b54 0%, var(--daily-orange) 45%, #a74419 100%); }
.product-card__visual::before, .product-card__visual::after { position: absolute; width: 18rem; height: 18rem; border: 1px solid rgba(226,194,116,.42); border-radius: 50%; content: ''; }
.product-card__visual::before { transform: translate(-45%, -45%); }
.product-card__visual::after { transform: translate(48%, 42%); }
.product-card__visual > p { position: absolute; right: 1.2rem; bottom: 0.8rem; margin: 0; color: #fff5da; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.24em; }
.bao-mark { position: relative; z-index: 1; width: 8.5rem; height: 7.3rem; border-radius: 52% 52% 46% 46%; background: radial-gradient(circle at 50% 25%, #fffef7 0%, #f5ead8 65%, #d7c3a4 100%); box-shadow: 0 22px 35px rgba(55,33,18,.22); }
.bao-mark::before { position: absolute; top: -0.8rem; left: 50%; width: 1.5rem; height: 1.5rem; border-radius: 50% 50% 40% 40%; background: #fffef7; content: ''; transform: translateX(-50%); }
.bao-mark span { position: absolute; top: 0.25rem; left: 50%; width: 1px; height: 5.8rem; background: rgba(122, 91, 58, 0.18); transform-origin: top; }
.bao-mark span:first-child { transform: rotate(-26deg); }
.bao-mark span:nth-child(2) { transform: rotate(0); }
.bao-mark span:last-child { transform: rotate(26deg); }
.product-card__content { padding: 1.7rem; }
.product-card__content h3 { margin-bottom: 0.55rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; letter-spacing: -0.025em; }
.product-card__names { display: grid; min-height: 5.4rem; margin: 0 0 1rem; gap: 0.2rem; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.35; }
.product-card__names span:first-child { color: var(--ink); font-size: 0.9rem; font-weight: 800; }
.product-card__role { margin: 0 0 .8rem; color: var(--ink); font-size: .76rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.product-card__summary { min-height: 5.2rem; color: var(--ink-soft); }
.product-card__actions { display: grid; gap: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.product-card__actions a { display: flex; min-height: 44px; align-items: center; font-size: 0.82rem; font-weight: 800; text-decoration: none; }
.product-card__actions a:hover { color: var(--purple); }

.product-dialog { width: min(44rem, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; border: 0; border-radius: var(--radius-lg); color: var(--ink); background: var(--paper); box-shadow: var(--shadow-lg); overflow: auto; }
.product-dialog::backdrop { background: rgba(35, 14, 55, 0.82); backdrop-filter: blur(5px); }
.product-dialog__header { display: flex; align-items: start; justify-content: space-between; gap: 1rem; padding: 2rem 2rem 1.2rem; }
.product-dialog__header h2 { margin-bottom: 0; font-size: clamp(2rem, 6vw, 3.4rem); }
.product-dialog__identity { margin: 0.35rem 0 0; color: var(--ink-soft); font-size: 0.85rem; }
.dialog-close { flex: 0 0 auto; width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.6rem; cursor: pointer; }
.language-tabs { display: flex; padding: 0 2rem; border-bottom: 1px solid var(--line); }
.language-tabs button { padding: 0.8rem 1.2rem; border: 0; border-bottom: 3px solid transparent; background: none; font-weight: 800; cursor: pointer; }
.language-tabs button[aria-selected='true'] { border-bottom-color: var(--purple); color: var(--purple); }
.product-dialog [role='tabpanel'] { padding: 1.8rem 2rem 0; }
.product-dialog [role='tabpanel'] h3 { margin: 1.4rem 0 0.35rem; font-size: 1rem; }
.product-dialog [role='tabpanel'] h3:first-child { margin-top: 0; }
.product-dialog [role='tabpanel'] p { color: var(--ink-soft); }
.dialog-note { margin: 1.5rem 2rem; padding: 1rem; border-left: 3px solid var(--gold); color: var(--ink-soft); background: var(--cream); font-size: 0.82rem; }
.product-dialog > .button { margin: 0 2rem 2rem; }

.process-grid { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(3, 1fr); list-style: none; counter-reset: process; }
.process-grid li { padding: 2rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.process-grid li + li { border-left: 1px solid var(--ink); }
.process-grid span { display: inline-grid; width: 2.5rem; height: 2.5rem; margin-bottom: 3rem; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); }
.process-grid h3 { font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.process-grid p { margin: 0; color: var(--ink-soft); }
.centered-actions { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2.5rem; }

.distribution-feature { color: #fff; background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%); }
.distribution-feature__grid { display: grid; align-items: center; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 7vw, 7rem); }
.distribution-feature h2 { max-width: 15ch; }
.distribution-feature p:not(.eyebrow) { max-width: 43rem; color: #eee3f1; }
.channel-visual { position: relative; display: grid; min-height: 32rem; align-content: center; padding: clamp(2rem, 5vw, 4rem); gap: 1rem; border: 1px solid rgba(226,194,116,.34); border-radius: var(--radius-lg); background: radial-gradient(circle at 25% 15%, #76519d 0%, #4b1e78 48%, #220d38 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); overflow: hidden; }
.channel-pill { display: flex; align-items: center; min-height: 4.5rem; padding: 1rem 1.4rem; border: 1px solid rgba(226,194,116,.42); border-radius: 999px; color: #fff9ec; background: rgba(31,11,49,.32); font-family: var(--serif); font-size: clamp(1.6rem, 4vw, 2.4rem); }
.channel-pill:nth-child(2) { margin-left: clamp(1rem, 8vw, 5rem); color: var(--gold-bright); }
.channel-pill:nth-child(3) { margin-right: clamp(1rem, 6vw, 4rem); }
.channel-card { margin-top: 1rem; padding: 1rem 1.2rem; border: 1px solid rgba(226,194,116,.34); border-radius: .8rem; background: rgba(35,13,55,.78); backdrop-filter: blur(8px); }
.channel-card span, .channel-card strong { display: block; }
.channel-card span { color: var(--gold-bright); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.channel-card strong { margin-top: .25rem; font-size: .9rem; }
.feature-list { display: grid; margin: 1.8rem 0 2rem; padding: 0; gap: 0.7rem; list-style: none; }
.feature-list li { position: relative; padding-left: 1.6rem; }
.feature-list li::before { position: absolute; top: .65rem; left: 0; width: .55rem; height: .55rem; border-radius: 50%; background: var(--gold); content: ''; }
.feature-list--light li { color: #f7eef9; }

.safety-grid { display: grid; align-items: start; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); }
.compliance-note { padding: 1.2rem; border-left: 3px solid var(--gold); background: var(--paper); font-size: .86rem; }
.safety-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.safety-card-grid article { min-height: 14rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.safety-card-grid span { color: var(--red); font-size: .68rem; font-weight: 900; letter-spacing: .14em; }
.safety-card-grid h3 { margin-top: 2.8rem; }
.safety-card-grid p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.faq-grid { display: grid; grid-template-columns: .6fr 1.4fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-list details, .qualification-grid details { border-top: 1px solid var(--line); }
.faq-list details:last-child, .qualification-grid details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary, .qualification-grid summary { padding: 1.4rem 2.5rem 1.4rem 0; font-weight: 800; cursor: pointer; }
.faq-list p, .qualification-grid details p { padding: 0 2rem 1.4rem 0; color: var(--ink-soft); }

.final-cta { padding-block: clamp(4rem, 8vw, 7rem); color: #fff; background: linear-gradient(120deg, var(--purple-deep) 0%, var(--purple) 70%, #694091 100%); }
.final-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.final-cta h2 { max-width: 16ch; margin-bottom: 0; font-size: clamp(2.4rem, 4.5vw, 4.2rem); }
.band-cta { padding-block: 4rem; border-top: 1px solid var(--line); background: var(--paper); }
.band-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.band-cta h2 { margin: 0; font-size: clamp(2rem, 3.5vw, 3.2rem); }

.site-footer { padding-top: 5rem; color: #e5dcec; background: var(--purple-deep); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); }
.brand--footer { color: #fff; }
.brand--footer .brand__seal { border-color: rgba(226,194,116,.7); box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.brand--footer .brand__word { color: var(--gold-bright); }
.brand--footer small { color: #dfca96; }
.footer-brand p { max-width: 23rem; margin-top: 1.3rem; }
.footer-location { color: #d7bd7d; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer h2 { margin-bottom: 1.2rem; color: #fff; font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.site-footer div > a:not(.button):not(.brand) { display: flex; align-items: center; min-width: 44px; min-height: 44px; color: #e5dcec; font-size: .88rem; text-decoration: none; }
.site-footer div > a:hover { color: #fff; }
.footer-cta { padding: 1.4rem; border: 1px solid rgba(226,194,116,.32); border-radius: var(--radius-md); background: rgba(255,255,255,.035); }
.footer-cta .eyebrow { color: var(--gold-bright); }
.footer-cta h2 { font-family: var(--serif); font-size: 1.6rem; letter-spacing: -.02em; text-transform: none; }
.app-install { margin-top: .65rem; cursor: pointer; }
.app-install:disabled { cursor: wait; opacity: .6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.2rem; }
.footer-bottom a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }

.page-hero { display: grid; min-height: 32rem; align-items: end; padding-block: 5rem; color: #fff; background: var(--purple-deep); }
.page-hero__inner { padding-top: 4rem; }
.page-hero__inner--narrow { max-width: 64rem; margin-left: max(1rem, calc((100vw - var(--container)) / 2)); }
.page-hero h1 { max-width: 15ch; margin-bottom: 1.4rem; font-size: clamp(3.3rem, 7vw, 6.4rem); }
.page-hero p:not(.eyebrow) { max-width: 48rem; color: #eee4f1; font-size: 1.1rem; }
.page-hero--products { background: radial-gradient(circle at 85% 20%, #c8a257 0%, #5a2a84 36%, #28103f 100%); }
.page-hero--wholesale { background: radial-gradient(circle at 85% 20%, #3e9b70 0%, #275e48 38%, #28103f 100%); }
.page-hero--distribution { background: radial-gradient(circle at 80% 20%, #c8a257 0%, #60358a 42%, #28103f 100%); }
.page-hero--safety { background: radial-gradient(circle at 80% 20%, #55a37d 0%, #236444 46%, #28103f 100%); }
.page-hero--about { background: radial-gradient(circle at 80% 20%, #d4b66f 0%, #62358b 46%, #28103f 100%); }
.page-hero--inquiry { background: radial-gradient(circle at 80% 20%, #e58b45 0%, #6a358b 42%, #28103f 100%); }

.product-grid--large .product-card__visual { min-height: 20rem; }
.product-grid--large > div { min-width: 0; }
.range-guide { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 2rem; border-block: 1px solid var(--line); }
.range-guide a { display: grid; min-width: 0; min-height: 44px; gap: .25rem; padding: 1.25rem; text-decoration: none; }
.range-guide a + a { border-left: 1px solid var(--line); }
.range-guide span { color: var(--ink); font-family: var(--serif); font-size: 1.35rem; }
.range-guide strong { color: var(--purple); font-size: 1rem; }
.range-guide small { color: var(--ink-soft); }
.catalog-growth { max-width: 48rem; margin: clamp(3rem, 7vw, 6rem) auto 0; padding-top: 2rem; border-top: 1px solid var(--line); text-align: center; }
.catalog-growth h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.catalog-growth > p:last-child { color: var(--ink-soft); }
.spec-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.spec-list article { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.spec-list article:last-child { border-bottom: 1px solid var(--line); }
.spec-list span { color: var(--red); font-family: var(--serif); }
.spec-list h3 { margin-bottom: .35rem; }
.spec-list p { margin: 0; color: var(--ink-soft); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.audience-grid article { min-height: 20rem; padding: 2rem; border-radius: var(--radius-lg); color: #fff; background: var(--purple); }
.audience-grid article:nth-child(2) { background: var(--jade-deep); }
.audience-grid article:nth-child(3) { background: #7c5e21; }
.audience-grid span { font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.audience-grid h3 { margin-top: 7rem; font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.audience-grid p { color: #f1e9df; }
.two-column { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.two-column--wide { grid-template-columns: 1fr 1fr; }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; padding: 1.4rem 0; border-top: 1px solid var(--line); }
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline span { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); }
.timeline h3 { margin-bottom: .35rem; }
.timeline p { margin: 0; color: var(--ink-soft); }
.proof-panel { color: #fff; background: var(--purple-deep); }
.proof-panel__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-panel__inner div { padding: 2.5rem 1.5rem; text-align: center; }
.proof-panel__inner div + div { border-left: 1px solid rgba(255,255,255,.2); }
.proof-panel strong, .proof-panel span { display: block; }
.proof-panel strong { color: var(--gold-bright); font-family: var(--serif); font-size: 2.4rem; font-weight: 500; }
.proof-panel span { margin-top: .35rem; font-size: .78rem; }

.partner-readiness-card { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-lg); }
.partner-readiness-card h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.partner-readiness-list { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.partner-readiness-list li { display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.partner-readiness-list span { color: var(--red); font-family: var(--serif); }
.partner-readiness-list strong, .partner-readiness-list p { display: block; }
.partner-readiness-list p { margin: .2rem 0 0; color: var(--ink-soft); font-size: .86rem; }
.partner-note { margin: 1.2rem 0 0; padding: 1rem; border-left: 3px solid var(--gold); color: var(--ink-soft); background: var(--cream); font-size: .78rem; }
.distribution-section { color: #fff; background: var(--purple-deep); }
.distribution-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); }
.distribution-copy { position: sticky; top: 9rem; align-self: start; }
.distribution-copy p:not(.eyebrow) { color: #d6cdc1; }
.distribution-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.distribution-features article { min-height: 17rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); }
.distribution-features span { color: var(--gold); font-family: var(--serif); }
.distribution-features h3 { margin-top: 4.5rem; }
.distribution-features p { color: #cfc5b8; }
.qualification-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); }

.transparency-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.document-stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.document-stack article { min-height: 16rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.document-stack span { color: var(--red); font-size: .66rem; font-weight: 900; letter-spacing: .12em; }
.document-stack h3 { margin-top: 4rem; }
.document-stack p { color: var(--ink-soft); }
.compliance-section { color: #fff; background: var(--jade-deep); }
.compliance-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.compliance-grid p { color: #e5eee8; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.story-grid > div:last-child { font-size: 1.12rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.values-grid article { min-height: 17rem; padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius-md); }
.values-grid span { color: var(--red); font-family: var(--serif); }
.values-grid h3 { margin-top: 5rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.values-grid p { color: var(--ink-soft); }

.inquiry-layout { display: grid; align-items: start; grid-template-columns: .55fr 1.45fr; gap: clamp(2rem, 5vw, 5rem); }
.inquiry-aside { position: sticky; top: 8rem; }
.inquiry-aside ol { margin: 2rem 0; padding: 0; list-style: none; }
.inquiry-aside li { display: grid; grid-template-columns: 2.5rem 1fr; gap: .8rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.inquiry-aside li:last-child { border-bottom: 1px solid var(--line); }
.inquiry-aside li > span { display: grid; width: 2rem; height: 2rem; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-family: var(--serif); }
.inquiry-aside li p { margin: .2rem 0 0; color: var(--ink-soft); font-size: .84rem; }
.aside-note { padding: 1rem; border-left: 3px solid var(--gold); background: var(--paper); font-size: .78rem; }
.form-card { padding: clamp(1.25rem, 4vw, 3rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.inquiry-form fieldset { min-width: 0; margin: 0 0 2.2rem; padding: 0; border: 0; }
.inquiry-form legend { margin-bottom: 1rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; }
.inquiry-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.inquiry-types legend { grid-column: 1 / -1; }
.inquiry-type { position: relative; display: block; cursor: pointer; }
.inquiry-type input { position: absolute; opacity: 0; }
.inquiry-type span { display: block; height: 100%; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; transition: border-color 150ms ease, background 150ms ease; }
.inquiry-type input:checked + span { border-color: var(--purple); background: #f7f0fb; box-shadow: inset 0 0 0 1px var(--purple); }
.inquiry-type input:focus-visible + span { outline: 3px solid var(--gold); outline-offset: 3px; }
.inquiry-type strong, .inquiry-type small { display: block; }
.inquiry-type small { margin-top: .35rem; color: var(--ink-soft); line-height: 1.35; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label, .status-form label { display: block; margin-bottom: .35rem; font-weight: 800; }
.form-field input, .form-field select, .form-field textarea, .inquiry-form textarea {
    width: 100%;
    padding: .82rem .9rem;
    border: 1px solid #a99f92;
    border-radius: .45rem;
    color: var(--ink);
    background: #fff;
}
.form-field textarea, .inquiry-form textarea { resize: vertical; }
.form-field [aria-invalid='true'] { border-color: #a31313; box-shadow: 0 0 0 1px #a31313; }
.field-error { margin: .35rem 0 0; color: #8f1515; font-size: .78rem; font-weight: 700; }
.error-summary { margin-bottom: 2rem; padding: 1.2rem; border: 1px solid #b62424; border-radius: var(--radius-sm); background: #fff1ef; }
.error-summary h2 { font-family: var(--sans); font-size: 1rem; font-weight: 800; letter-spacing: 0; }
.error-summary ul { margin-bottom: 0; }
.consent-field { margin: 1.5rem 0; }
.consent-field label { display: grid; grid-template-columns: 1.2rem 1fr; align-items: start; gap: .65rem; }
.consent-field input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; accent-color: var(--purple); }
.consent-field span { font-size: .85rem; }
.form-submit { display: flex; align-items: center; gap: 1rem; }
.form-submit p { max-width: 23rem; margin: 0; color: var(--ink-soft); font-size: .74rem; line-height: 1.4; }
.success-page { min-height: 70vh; display: grid; place-items: center; }
.success-card { max-width: 48rem; padding: clamp(2rem, 6vw, 5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); text-align: center; box-shadow: var(--shadow-lg); }
.success-mark { display: grid; width: 4rem; height: 4rem; margin: 0 auto 1.5rem; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 1.7rem; }
.success-card h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }

.legal-page { min-height: 70vh; }
.legal-content { max-width: 50rem; }
.legal-content h1 { margin-bottom: 1rem; font-size: clamp(3rem, 7vw, 5.2rem); }
.legal-content h2 { margin: 3rem 0 .8rem; font-family: var(--sans); font-size: 1.25rem; font-weight: 800; letter-spacing: 0; }
.legal-content p { color: var(--ink-soft); }
.legal-updated { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
.legal-note { margin-top: 3rem; padding: 1.2rem; border-left: 3px solid var(--gold); background: var(--paper); font-size: .82rem; }

.error-page { display: grid; min-height: 100vh; padding: 1rem; place-items: center; background: var(--cream); }
.error-page__card { width: min(40rem, 100%); padding: clamp(2rem, 7vw, 5rem); border-radius: var(--radius-lg); background: var(--paper); text-align: center; box-shadow: var(--shadow-lg); }
.error-page__card .brand { margin-bottom: 2rem; }
.error-code { margin-bottom: .5rem; color: var(--red); font-size: .8rem; font-weight: 900; letter-spacing: .18em; }
.error-page h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); }

@media (max-width: 1000px) {
    .trust-bar__inner span:nth-child(2) { display: none; }
    .site-nav { position: fixed; top: 7.5rem; right: 1rem; left: 1rem; display: none; padding: 1.2rem; border: 1px solid rgba(200,162,87,.5); border-radius: var(--radius-md); background: rgba(255,252,245,.985); box-shadow: var(--shadow-lg); }
    .site-nav.is-open { display: grid; }
    .site-nav > a:not(.button) { min-height: 44px; padding: .7rem; }
    .menu-toggle { display: block; }
    .hero__inner { grid-template-columns: 1fr; }
    .hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); }
    .hero-proof div { grid-template-columns: 1fr; }
    .hero-proof div + div { border-top: 0; border-left: 1px solid rgba(255,255,255,.14); padding-left: 1rem; }
    .distribution-feature__grid, .two-column--wide { grid-template-columns: 1fr; }
    .channel-visual { max-width: 38rem; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-cta { grid-column: 1 / -1; }
    .inquiry-layout { grid-template-columns: 1fr; }
    .inquiry-aside { position: static; }
}

@media (max-width: 760px) {
    html { scroll-padding-top: 5.5rem; }
    .trust-bar__inner { justify-content: center; }
    .trust-bar__inner span:not(:first-child) { display: none; }
    .site-header__inner { min-height: 4.7rem; }
    .brand { gap: .6rem; }
    .brand__seal { width: 2.75rem; height: 2.75rem; }
    .brand__word { font-size: 1.7rem; }
    .brand small { display: none; }
    .site-nav { top: 5.5rem; }
    .hero--home { min-height: 45rem; background-image: linear-gradient(180deg, rgba(40,16,63,.97) 0%, rgba(75,30,120,.86) 60%, rgba(40,16,63,.38) 100%), url('../images/gobao-hero.jpg'); background-position: 63% center; }
    .hero__inner { align-content: center; padding-block: 4rem 2rem; }
    .hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
    .hero-proof { grid-template-columns: 1fr; }
    .hero-proof div { grid-template-columns: 4.5rem 1fr; }
    .hero-proof div + div { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; padding-left: 0; }
    .credibility-grid, .product-grid, .process-grid, .audience-grid, .values-grid { grid-template-columns: 1fr; }
    .credibility-grid article + article { border-top: 1px solid var(--line); border-left: 0; }
    .section-heading--split, .safety-grid, .faq-grid, .spec-grid, .two-column, .distribution-grid, .qualification-grid, .transparency-grid, .compliance-grid, .story-grid { grid-template-columns: 1fr; }
    .process-grid li + li { border-top: 0; border-left: 0; }
    .process-grid span { margin-bottom: 1.5rem; }
    .centered-actions, .final-cta__inner, .band-cta__inner, .form-submit { align-items: stretch; flex-direction: column; }
    .safety-card-grid, .distribution-features, .document-stack { grid-template-columns: 1fr; }
    .distribution-copy { position: static; }
    .proof-panel__inner { grid-template-columns: repeat(2, 1fr); }
    .proof-panel__inner div:nth-child(3) { border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
    .proof-panel__inner div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.2); }
    .page-hero { min-height: 30rem; }
    .page-hero__inner--narrow { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand, .footer-cta { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .inquiry-types, .form-grid { grid-template-columns: 1fr; }
    .product-dialog__header, .language-tabs, .product-dialog [role='tabpanel'] { padding-right: 1.2rem; padding-left: 1.2rem; }
    .dialog-note { margin-right: 1.2rem; margin-left: 1.2rem; }
    .product-dialog > .button { margin-left: 1.2rem; }
}

@media (max-width: 460px) {
    .button-group { align-items: stretch; flex-direction: column; }
    .button-group .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-cta { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* GoBao 2026 flagship */
:root {
    --flagship-ink: #14100f;
    --flagship-plum: #241236;
    --flagship-purple: #3f2069;
    --flagship-cream: #f5f1e8;
    --flagship-sand: #efe9dc;
    --flagship-gold: #c3a15a;
    --flagship-green: #1f5545;
    --flagship-orange: #c0562a;
}

body {
    color: var(--flagship-ink);
    background: var(--flagship-cream);
}

.container { width: min(1400px, calc(100% - 44px)); }

.site-header {
    color: var(--flagship-ink);
    background: rgba(245, 241, 232, .94);
    border-bottom: 1px solid rgba(20, 16, 15, .11);
    backdrop-filter: blur(14px);
}

.site-header__inner {
    min-height: 74px;
    gap: 2rem;
}

.site-header .brand {
    min-width: max-content;
    flex-direction: column;
    align-items: flex-start;
    gap: .24rem;
    white-space: nowrap;
}

.site-header .brand__word {
    color: var(--flagship-purple);
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: .01em;
}

.site-header .brand small {
    display: block;
    color: rgba(20, 16, 15, .54);
    font-size: .5rem;
    letter-spacing: .3em;
}

.site-nav {
    margin-left: auto;
    gap: clamp(.9rem, 1.65vw, 1.85rem);
    white-space: nowrap;
}

.site-nav > a:not(.button) {
    color: var(--flagship-ink);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-nav > a:not(.button)::after { background: var(--flagship-gold); }

.header-cta {
    border-radius: 0;
    background: var(--flagship-purple);
    box-shadow: none;
    letter-spacing: .11em;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu-toggle {
    border-radius: 0;
    border-color: var(--flagship-purple);
    background: var(--flagship-purple);
}

.menu-toggle > span:not(.sr-only) { background: var(--flagship-cream); }

.button {
    border-radius: 0;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.button--primary { background: var(--flagship-purple); box-shadow: none; }
.button--primary:hover { background: var(--flagship-plum); }
.button--light { color: var(--flagship-plum); background: var(--flagship-cream); }
.button--outline-light { border-color: rgba(245, 241, 232, .45); }

.eyebrow {
    color: rgba(20, 16, 15, .48);
    font-size: .69rem;
    letter-spacing: .3em;
}

.eyebrow--light { color: var(--flagship-gold); }
.text-link { color: var(--flagship-purple); }
.text-link--light { color: var(--flagship-gold); }

.flagship-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: min(88vh, 820px);
    align-items: center;
    color: var(--flagship-ink);
    background: var(--flagship-cream);
    overflow: hidden;
}

.flagship-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 100%;
}

.flagship-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: flagship-drift 14s ease-out both;
}

.flagship-hero__labels {
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    gap: clamp(1rem, 2vw, 1.75rem);
    padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 3vw, 3rem);
    background: linear-gradient(145deg, #2b123f, #4b1e78 64%, #241032);
}

.flagship-hero__labels span {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3.65 / 1;
    border: 1px solid rgba(226, 194, 116, .32);
    background: #fff;
    box-shadow: 0 1.25rem 1.5rem rgba(0, 0, 0, .18);
    overflow: hidden;
}

.flagship-hero__labels img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    animation: none;
    transform: translateY(-34.5%);
}

.flagship-hero__veil {
    display: none;
}

.flagship-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: center;
    padding-block: 7rem 6.5rem;
}

.flagship-hero__copy {
    display: grid;
    max-width: min(43%, 620px);
    gap: 1.55rem;
}

.flagship-hero h1 {
    margin: 0;
    color: var(--flagship-ink);
    font-size: clamp(3.2rem, 5.2vw, 5.6rem);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: .9;
}

.flagship-hero__rule {
    width: 92px;
    height: 1px;
    background: var(--flagship-gold);
    transform-origin: left;
}

.flagship-hero__statement {
    margin: 0;
    color: var(--flagship-plum);
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    line-height: 1.42;
}

.flagship-hero__lead {
    max-width: 33rem;
    margin: 0;
    color: rgba(20, 16, 15, .72);
}

.flagship-hero .eyebrow { color: var(--flagship-purple); }
.flagship-hero .button-group { flex-wrap: wrap; }

.flagship-hero__foot {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: baseline;
    gap: 1.1rem;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(20, 16, 15, .16);
}

.flagship-hero__foot span {
    color: var(--flagship-gold);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.flagship-hero__foot p {
    max-width: 36rem;
    margin: 0;
    color: rgba(20, 16, 15, .68);
    font-size: .88rem;
}

@keyframes flagship-drift {
    from { transform: scale(1.04) translateY(1%); }
    to { transform: scale(1.01) translateY(-1%); }
}

.products-stage { background: var(--flagship-cream); }

.product-grid--editorial { gap: 4px; }

.product-grid--editorial .product-card {
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.product-card__visual {
    display: block;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    background: var(--flagship-sand);
    overflow: hidden;
}

.product-card__visual::before,
.product-card__visual::after { content: none; }

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(.2, .8, .2, 1);
}

.product-card:hover .product-card__visual img { transform: scale(1.025); }
.product-card--daily .product-card__visual img { object-position: 50% 58%; }

.product-card__content { padding: 2rem 1.9rem 2.4rem; }
.product-card__identity { display: grid; gap: .8rem; }
.product-card__identity p { margin: 0; color: rgba(20, 16, 15, .5); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.product-card__accent { display: block; width: 34px; height: 3px; background: var(--flagship-purple); }
.product-card--classique .product-card__accent { background: var(--flagship-green); }
.product-card--daily .product-card__accent { background: var(--flagship-orange); }

.product-card__content h3 {
    margin: 1rem 0 .8rem;
    color: var(--flagship-purple);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .14em;
}

.product-card--classique .product-card__content h3 { color: var(--flagship-green); }
.product-card--daily .product-card__content h3 { color: var(--flagship-orange); }
.product-card__names { min-height: 5rem; }
.product-card__summary { min-height: 0; }

.origin-section,
.process-section,
.final-brand {
    color: var(--flagship-cream);
    background: #14100f;
}

.origin-section { padding-block: clamp(6rem, 12vw, 11rem); }
.origin-section__grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(3rem, 8vw, 9rem); }
.origin-section__mark { display: grid; min-height: 32rem; align-content: center; border: 1px solid rgba(195, 161, 90, .35); text-align: center; }
.origin-section__mark span { color: #fff; font-family: var(--serif); font-size: clamp(6rem, 13vw, 11rem); line-height: .8; }
.origin-section__mark small { margin-top: 2.2rem; color: var(--flagship-gold); font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; }
.origin-section__copy h2,
.process-section h2,
.final-brand h2 { color: #fff; }
.origin-section__copy > p:not(.eyebrow) { color: rgba(245, 241, 232, .76); font-size: 1.08rem; }

.proof-section {
    padding-block: clamp(6rem, 11vw, 10rem);
    color: var(--flagship-cream);
    background: var(--flagship-purple);
}

.proof-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 2rem; border-top: 1px solid rgba(245, 241, 232, .28); }
.proof-section__grid article { padding: clamp(2rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4.5rem) 0 0; }
.proof-section__grid article + article { padding-right: 0; padding-left: clamp(2rem, 5vw, 4.5rem); border-left: 1px solid rgba(245, 241, 232, .28); }
.proof-section__number { margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(4.7rem, 9vw, 8.25rem); line-height: .84; }
.proof-section__number sup { color: var(--flagship-gold); font-size: .4em; }
.proof-section h3 { margin: 1.8rem 0 .6rem; color: var(--flagship-gold); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; }
.proof-section article > p:last-of-type { max-width: 24rem; color: rgba(245, 241, 232, .8); }
.proof-section a { color: var(--flagship-gold); text-underline-offset: .25em; }

.evolution-section {
    padding-block: clamp(7rem, 13vw, 12rem);
    color: var(--flagship-cream);
    background: var(--flagship-plum);
}

.evolution-section h2 { max-width: 16ch; margin-bottom: 4rem; color: #fff; }
.evolution-line { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; border-top: 1px solid rgba(245, 241, 232, .24); list-style: none; }
.evolution-line li { min-height: 8rem; padding: 1.5rem 1rem; border-right: 1px solid rgba(245, 241, 232, .16); color: rgba(245, 241, 232, .82); font-family: var(--serif); font-size: 1.05rem; }
.evolution-line span { display: block; margin-bottom: 2.5rem; color: var(--flagship-gold); font-family: var(--sans); font-size: .65rem; letter-spacing: .2em; }

.packaging-section { background: var(--flagship-cream); }
.packaging-section__grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.packaging-section figure { margin: 0; }
.packaging-section figure picture { display: block; }
.packaging-section figure img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: contain; }
.packaging-section figcaption { margin-top: .8rem; color: rgba(20, 16, 15, .5); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; }
.packaging-facts { margin: 2rem 0 0; }
.packaging-facts div { padding: 1.2rem 0; border-bottom: 1px solid rgba(20, 16, 15, .12); }
.packaging-facts dt { color: rgba(20, 16, 15, .45); font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.packaging-facts dd { margin: .35rem 0 0; font-family: var(--serif); font-size: 1.3rem; }

.process-section { padding-block: clamp(6rem, 11vw, 10rem); }
.process-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.process-section__grid > div > p:last-child { color: rgba(245, 241, 232, .72); }
.process-section ol { margin: 0; padding: 0; border-top: 1px solid rgba(245, 241, 232, .25); list-style: none; }
.process-section li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.6rem 0; border-bottom: 1px solid rgba(245, 241, 232, .18); }
.process-section li > span { color: var(--flagship-gold); font-size: .68rem; letter-spacing: .18em; }
.process-section h3 { margin: 0 0 .4rem; color: #fff; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.process-section li p { margin: 0; color: rgba(245, 241, 232, .62); }

.heritage-section { background: var(--flagship-cream); }
.heritage-section__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.heritage-section figure { margin: 0; }
.heritage-section figure img { width: 100%; max-height: 48rem; object-fit: cover; }
.heritage-section__note { color: rgba(20, 16, 15, .55); font-size: .92rem; }

.toronto-section {
    position: relative;
    isolation: isolate;
    padding-block: clamp(7rem, 14vw, 13rem);
    color: var(--flagship-cream);
    background: var(--flagship-plum);
    text-align: center;
    overflow: hidden;
}

.toronto-section > picture,
.toronto-section > picture img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.toronto-section::after { position: absolute; inset: 0; z-index: -1; background: rgba(36, 18, 54, .72); content: ''; }
.toronto-section h2 { margin-inline: auto; color: #fff; }
.toronto-section p:last-child { max-width: 40rem; margin-inline: auto; color: rgba(245, 241, 232, .78); }

.know-section { background: var(--flagship-sand); }
.know-section__facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(20, 16, 15, .16); }
.know-section__facts > div { min-width: 0; padding: 1.6rem; border-left: 1px solid rgba(20, 16, 15, .16); }
.know-section__facts > div:first-child { padding-left: 0; border-left: 0; }
.know-section__facts span { display: block; margin-bottom: .55rem; color: rgba(20, 16, 15, .5); font-size: .65rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.know-section__facts strong,
.know-section__facts a { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; overflow-wrap: anywhere; }

.wholesale-section { background: var(--flagship-cream); }
.wholesale-section__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); }
.wholesale-section__grid > div > p:not(.eyebrow) { color: rgba(20, 16, 15, .68); font-size: 1.06rem; }
.wholesale-section ol { margin: 0; padding: 0; border-top: 1px solid rgba(20, 16, 15, .16); list-style: none; }
.wholesale-section li { display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(20, 16, 15, .12); }
.wholesale-section li span { color: rgba(20, 16, 15, .42); font-size: .68rem; letter-spacing: .18em; }

.buy-section {
    padding-block: clamp(5rem, 10vw, 8rem);
    background: var(--flagship-sand);
}

.buy-section h2 { margin-bottom: 3rem; }
.buy-section__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.buy-section__grid > a { display: flex; min-width: 0; padding: clamp(2rem, 5vw, 3rem); flex-direction: column; gap: .8rem; color: var(--flagship-ink); background: #fff; text-decoration: none; transition: color 280ms ease, background 280ms ease; }
.buy-section__grid > a:hover { color: var(--flagship-cream); background: var(--flagship-purple); }
.buy-section__grid span { font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; opacity: .55; }
.buy-section__grid strong { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; overflow-wrap: anywhere; }
.buy-section__grid small { font-size: .9rem; opacity: .7; }
.buy-section > .container > p:last-child { color: rgba(20, 16, 15, .56); }

.final-brand {
    padding-block: clamp(7rem, 14vw, 13rem);
    text-align: center;
}

.final-brand h2 { max-width: 20ch; margin-inline: auto; }
.final-brand > .container > span { display: block; width: 92px; height: 1px; margin: 2.5rem auto 2rem; background: var(--flagship-gold); }
.final-brand > .container > p:last-of-type { max-width: 42rem; margin: 0 auto 2rem; color: rgba(245, 241, 232, .72); }

.site-footer {
    padding-top: clamp(5rem, 9vw, 8rem);
    color: var(--flagship-cream);
    background: #14100f;
}

.site-footer .brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: .35rem; }
.site-footer .brand__word { color: #fff; font-size: 2.2rem; font-weight: 400; }
.site-footer .brand small { color: var(--flagship-gold); font-size: .55rem; letter-spacing: .28em; }
.footer-grid { grid-template-columns: 1.2fr .7fr .8fr 1.3fr; }
.footer-grid h2 { color: var(--flagship-cream); font-family: var(--sans); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.footer-grid a:not(.button) { color: rgba(245, 241, 232, .7); }
.footer-brand p { color: rgba(245, 241, 232, .65); }
.footer-cta { padding-left: clamp(1rem, 3vw, 3rem); border-left: 1px solid rgba(245, 241, 232, .16); }
.footer-cta h2 { color: #fff; font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
.footer-bottom { color: rgba(245, 241, 232, .5); border-top-color: rgba(245, 241, 232, .14); }

@media (max-width: 1180px) {
    html { scroll-padding-top: 5rem; }
    .site-header__inner { min-height: 72px; }
    .menu-toggle { display: block; margin-left: auto; }
    .site-nav {
        position: fixed;
        top: 72px;
        right: 0;
        left: 0;
        display: none;
        margin: 0;
        padding: 1rem 22px 1.4rem;
        gap: 0;
        border: 0;
        border-top: 1px solid rgba(20, 16, 15, .1);
        border-radius: 0;
        background: var(--flagship-cream);
        box-shadow: 0 22px 45px rgba(20, 16, 15, .18);
    }
    .site-nav.is-open { display: grid; }
    .site-nav > a:not(.button) {
        min-height: 50px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(20, 16, 15, .1);
        font-family: var(--serif);
        font-size: 1.25rem;
        font-weight: 400;
        letter-spacing: 0;
        text-transform: none;
    }
    .site-nav > a:not(.button)::after { display: none; }
    .header-cta { margin-top: 1rem; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-cta { grid-column: 1 / -1; padding: 2rem 0 0; border-top: 1px solid rgba(245, 241, 232, .16); border-left: 0; }
}

@media (max-width: 820px) {
    .section { padding-block: 5.5rem; }
    .flagship-hero { display: block; min-height: 0; }
    .flagship-hero__media { position: relative; width: 100%; height: clamp(17rem, 62vw, 28rem); }
    .flagship-hero__media img { object-position: center; }
    .flagship-hero__labels { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .55rem; padding: 1.1rem 1rem; }
    .flagship-hero__labels span { aspect-ratio: 1 / 1.2; }
    .flagship-hero__labels img { width: 260%; max-width: none; transform: translate(-31%, -34.5%); }
    .flagship-hero__inner { min-height: 0; justify-content: flex-start; padding-block: 3.5rem 0; }
    .flagship-hero__copy { max-width: none; }
    .flagship-hero__lead { max-width: 30rem; }
    .flagship-hero__foot { position: relative; align-items: flex-start; flex-direction: column; gap: .35rem; margin-top: 3rem; }
    .origin-section__grid,
    .packaging-section__grid,
    .process-section__grid,
    .heritage-section__grid,
    .wholesale-section__grid { grid-template-columns: 1fr; }
    .origin-section__mark { min-height: 22rem; }
    .proof-section__grid { grid-template-columns: 1fr; }
    .proof-section__grid article + article { padding-left: 0; border-top: 1px solid rgba(245, 241, 232, .28); border-left: 0; }
    .evolution-line { grid-template-columns: 1fr; }
    .evolution-line li { display: grid; min-height: 0; grid-template-columns: 3rem 1fr; padding: 1.2rem 0; border-right: 0; border-bottom: 1px solid rgba(245, 241, 232, .16); }
    .evolution-line span { margin: 0; }
    .heritage-section figure { order: 2; }
    .know-section__facts { grid-template-columns: repeat(2, 1fr); }
    .know-section__facts > div:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(20, 16, 15, .16); border-left: 0; }
    .know-section__facts > div:nth-child(4) { border-top: 1px solid rgba(20, 16, 15, .16); }
    .buy-section__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .container { width: min(100% - 32px, 1400px); }
    .site-header .brand__word { font-size: 1.7rem; }
    .site-header .brand small { display: block; }
    .product-grid--editorial { grid-template-columns: 1fr; gap: 1px; }
    .product-card__visual,
    .product-grid--large .product-card__visual { min-height: 0; aspect-ratio: 16 / 10; }
    .product-card__content { padding: 1.5rem 1.35rem 1.75rem; }
    .product-card__content h3 { font-size: 1.55rem; }
    .product-card__names { min-height: 0; }
    .product-card__summary { margin-bottom: 1.25rem; }
    .range-guide { display: flex; margin-right: -16px; overflow-x: auto; scroll-snap-type: x proximity; }
    .range-guide a { flex: 0 0 min(72vw, 16rem); scroll-snap-align: start; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand, .footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .flagship-hero__media { height: 12rem; }
    .flagship-hero__inner { padding-top: 1.5rem; }
    .flagship-hero__copy { gap: .7rem; }
    .flagship-hero h1 { font-size: clamp(2.2rem, 10.5vw, 2.85rem); line-height: .94; }
    .flagship-hero__statement { font-size: 1.25rem; }
    .flagship-hero__statement,
    .flagship-hero__lead,
    .flagship-hero__foot { display: none; }
    .flagship-hero .button-group { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: .65rem; }
    .flagship-hero .button-group .button:last-child { grid-column: 1 / -1; }
    .flagship-hero .button { width: 100%; }
    .know-section__facts { grid-template-columns: 1fr; }
    .know-section__facts > div,
    .know-section__facts > div:first-child,
    .know-section__facts > div:nth-child(3) { padding: 1.25rem 0; border-top: 1px solid rgba(20, 16, 15, .16); border-left: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand, .footer-cta { grid-column: auto; }
}

/* Georgia has no precomposed Vietnamese vowels (ố ề ầ ồ ế ệ ữ ị ...), so every
   serif heading breaks apart on Vietnamese copy. Redefining the token for
   Vietnamese pages only swaps the whole family at once; English and French
   pages keep Georgia and render exactly as before. Blog articles stay
   Vietnamese in every locale, so they carry the override too. */
html[lang="vi"], .blog-post, .blog-index { --serif: 'Noto Serif GoBao', Constantia, 'Palatino Linotype', Georgia, serif; }

/* ---- Language switcher -------------------------------------------------- */
.lang-switch { display: inline-flex; align-items: center; gap: .1rem; margin-left: .9rem; padding: .2rem; border: 1px solid rgba(75, 30, 120, .22); border-radius: 999px; }
.lang-switch__item { padding: .3rem .62rem; border-radius: 999px; color: var(--purple-deep); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-decoration: none; }
.lang-switch__item:hover { background: rgba(75, 30, 120, .09); }
.lang-switch__item.is-current { color: #fff; background: var(--purple); }

/* ---- SKU badge over the card image -------------------------------------- */
.product-card__media { position: relative; }
.product-badge {
    position: absolute;
    right: .9rem;
    bottom: .9rem;
    left: .9rem;
    margin: 0;
    padding: .55rem .8rem;
    border-radius: 4px;
    color: #fff;
    background: var(--flagship-purple);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}
.product-card--classique .product-badge { background: var(--flagship-green); }
.product-card--daily .product-badge { background: var(--flagship-orange); }

/* ---- Three-column SKU comparison ---------------------------------------- */
.product-compare { margin-top: clamp(3rem, 6vw, 4.5rem); }
.product-compare__heading { margin-bottom: 1.6rem; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.product-compare__scroll { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compare-table th, .compare-table td { padding: .95rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--sans); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.compare-table__sku--royal { color: var(--flagship-purple); }
.compare-table__sku--classique { color: var(--flagship-green); }
.compare-table__sku--daily { color: var(--flagship-orange); }
.compare-table tbody th { width: 22%; color: rgba(20, 16, 15, .55); font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.compare-table tbody td { color: var(--ink-soft); }
.product-compare__note { margin-top: 1.2rem; padding: 1rem 1.2rem; border-left: 3px solid var(--gold); background: var(--paper); color: var(--ink-soft); font-size: .8rem; }

@media (max-width: 760px) {
    .lang-switch { margin: .8rem 0 0; }
    .compare-table { min-width: 34rem; }
}

/* Allergen statement: high-contrast so it reads as a safety notice, not body copy. */
.allergen-statement {
    margin: 1.2rem 0 0;
    padding: .95rem 1.2rem;
    border-left: 3px solid var(--flagship-orange);
    background: var(--paper);
    color: var(--ink);
    font-size: .84rem;
    line-height: 1.5;
}
.allergen-statement strong { font-weight: 800; }

/* ---- Self-hosted Vietnamese serif --------------------------------------- */
/* Noto Serif (SIL Open Font License 1.1), variable weight 400-700, subset to
   latin + vietnamese only. Georgia has no precomposed Vietnamese vowels, and
   the Windows-only fallbacks (Constantia, Palatino Linotype) leave macOS and
   iOS readers with broken diacritics — the self-hosted file fixes every
   platform. unicode-range keeps the 14 KB Vietnamese file separate, so the
   browser fetches it only for pages that actually contain those characters.
   font-display: swap renders Georgia immediately and swaps in without blocking. */
@font-face {
    font-family: 'Noto Serif GoBao';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/noto-serif-vietnamese.woff2') format('woff2');
    unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
    font-family: 'Noto Serif GoBao';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('../fonts/noto-serif-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Footer social ------------------------------------------------------ */
/* Sits in the footer CTA column, which is on the dark purple ground, so the
   colours here are the light-on-dark pair already used by .footer-cta links. */
.footer-social { margin-top: 1.6rem; }
.footer-social__label {
    margin: 0 0 .6rem;
    color: rgba(255, 255, 255, .62);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.footer-social ul { display: flex; gap: .6rem; margin: 0; padding: 0; list-style: none; }
.footer-social li { margin: 0; }
.footer-grid .footer-social a {
    display: inline-grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid rgba(226, 194, 116, .42);
    border-radius: 50%;
    color: var(--gold-bright);
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.footer-grid .footer-social a:hover,
.footer-grid .footer-social a:focus-visible {
    border-color: var(--gold-bright);
    background: rgba(226, 194, 116, .14);
    color: #fff;
}
.footer-social svg { display: block; }

/* Approved commercial data (app/Config/commerce.php). The price sits directly under the
   product name so it is read with the product, and the tax disclosure is tied to the
   grid so it cannot be separated from the prices it qualifies. */
.product-card__price { margin: 0 0 .5rem; color: var(--purple); font-size: 1.25rem; font-weight: 850; letter-spacing: .01em; }
.product-grid__price-note { margin: 1rem 0 0; color: rgba(20, 16, 15, .62); font-size: .78rem; }
.buy-section__status { margin: 0 0 1.4rem; padding: .85rem 1.1rem; border-left: 3px solid var(--gold); background: rgba(255, 255, 255, .06); font-size: .92rem; font-weight: 700; }
.buy-section__facts { display: grid; gap: 1.2rem; margin: 1.8rem 0 0; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.buy-section__facts dt { margin: 0 0 .3rem; font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; opacity: .68; }
.buy-section__facts dd { margin: 0; font-size: 1rem; font-weight: 700; }
