/* ============================================================
   L'ATELIER T — Main Stylesheet
   ============================================================ */

/* 1. Self-hosted brand font — Adobe Caslon Pro
   ----------------------------------------------------------------------- */
@font-face {
    font-family: 'Adobe Caslon Pro';
    src: url('../fonts/ACaslonPro-Semibold.woff2') format('woff2');
    font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Adobe Caslon Pro';
    src: url('../fonts/ACaslonPro-SemiboldItalic.woff2') format('woff2');
    font-weight: 300 700; font-style: italic; font-display: swap;
}

/* 2. Design tokens
   --------------------------------------------------------------- */
:root {
    /* Core palette */
    --bg:          #FFFFFF;   /* warm off-white — all page backgrounds    */
    --bg-subtle:   #F5F5F5;   /* marginally warmer — alternate panels      */
    --text:        #2C2520;   /* dark charcoal brown — all primary text    */
    --text-sec:    #7A7370;   /* warm grey — labels, secondary, captions   */
    --border:      rgba(196, 185, 168, 0.1);   /* near-invisible dividers */
    --accent:      #2C4A3E;   /* deep forest green — sparingly             */

    /* Derived */
    --text-15:      rgba(44, 37, 32, 0.15);
    --text-30:      rgba(44, 37, 32, 0.3);
    --text-50:      rgba(44, 37, 32, 0.5);
    --border-40:    rgba(196, 185, 168, 0.1);
    --accent-08:    rgba(44, 74, 62, 0.08);
    --accent-15:    rgba(44, 74, 62, 0.15);
    --accent-30:    rgba(44, 74, 62, 0.3);

    --font-display: 'Adobe Caslon Pro', "Palatino Linotype", Palatino, Georgia,
                    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", serif;
    --font-body:    'Adobe Caslon Pro', Palatino, Georgia,
                    "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", serif;
    --font-zh:      "PingFang SC", "STSong", "Hiragino Sans GB",
                    "Microsoft YaHei", serif;

    --nav-h:    104px;
    --max-w:    1440px;
    --content-w: 1200px;

    --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --t:        0.4s;
    --t-slow:   0.9s;
}

/* 3. Reset
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* 4. Typography utilities
   --------------------------------------------------------------- */
.label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.1;
}

/* 5. Navigation
   --------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--t) var(--ease);
}

/* Default nav text */
.nav__logo,
.nav__link {
    color: var(--text);
    transition: color var(--t) var(--ease);
}

.nav.scrolled {
    background: #ffffff;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    border-bottom-color: var(--border);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px clamp(1.5rem, 5vw, 4rem) 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
}

.nav__logo img { height: 18px; display: block; }

.nav__slogan {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.08em;
    color: var(--text-sec);
    margin-left: 1.1rem;
    padding-left: 1.1rem;
    border-left: 1px solid var(--border);
    white-space: nowrap;
}

.nav__links {
    display: flex;
    gap: 2.75rem;
    align-items: center;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    position: relative;
    padding-bottom: 2px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width var(--t) var(--ease-out);
}

.nav__link:hover { color: var(--text); }
.nav__link.active { color: var(--text); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

/* Hamburger */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
    z-index: 210;
}
.nav__toggle span {
    display: block;
    width: 22px; height: 1px;
    background: var(--text);
    transition: all var(--t) var(--ease);
}

.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* 6. Hero — photo background with gradient overlay
   --------------------------------------------------------------- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

/* Background image layer */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    transform-origin: right center;
    animation: hero-zoom 16s ease-out forwards;
    z-index: 0;
}

@keyframes hero-zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.07); }
}

/* Video background */
.hero__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
}

/* Semi-transparent overlay over video */
.hero__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(248, 246, 242, 0.3);
    z-index: 2;
}

/* Barely-there overlay — photo is already light */
.hero__gradient {
    position: absolute;
    inset: 0;
    background: rgba(245,242,237,0.2);
    z-index: 3;
}

/* Content sits above the bg layers */
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 clamp(1.5rem, 6vw, 5rem);
    max-width: 900px;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 2.5rem;
    animation: fade-up var(--t-slow) var(--ease-out) 0.15s both;
}

/* Two thin rules bracket the title like a colophon */
.hero__rule {
    width: 48px; height: 1px;
    background: var(--border);
    margin: 0 auto 2.75rem;
    animation: fade-in 1s var(--ease-out) 0.5s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 200;
    letter-spacing: 0.07em;
    color: var(--text);
    line-height: 0.92;
    margin-bottom: 2.75rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    animation: fade-up 1.1s var(--ease-out) 0.3s both;
}

.hero__rule--lower {
    animation-delay: 0.65s;
}

.hero__tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 3.5rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    animation: fade-up var(--t-slow) var(--ease-out) 0.85s both;
}

.hero__tagline-zh {
    font-family: var(--font-display), var(--font-zh);
    font-size: clamp(0.9375rem, 2vw, 1.25rem);
    font-style: italic;
    letter-spacing: 0.18em;
    color: var(--text-sec);
}

.hero__tagline-sep {
    color: var(--border);
    font-size: 0.75rem;
}

.hero__tagline-en {
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 1.3vw, 0.875rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    color: var(--text-sec);
}

/* Default CTA (used on inner pages / dark-on-light contexts) */
.hero__cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 1.05rem 2.75rem;
    transition: border-color var(--t) var(--ease),
                color var(--t) var(--ease),
                background var(--t) var(--ease);
    animation: fade-up var(--t-slow) var(--ease-out) 1.05s both;
}
.hero__cta:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Light CTA — white border/text on photo background */
.hero__cta--light {
    color: #ffffff;
    border-color: rgba(255,255,255,0.75);
    background: transparent;
    letter-spacing: 0.2em;
    padding: 14px 40px;
}
.hero__cta--light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--text);
}

.hero__scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    z-index: 1;
    animation: fade-in 1s var(--ease-out) 1.5s both;
}

.hero__scroll-line {
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--border), transparent);
    animation: scroll-pulse 2.6s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%,100% { transform: scaleY(1);   opacity: 0.6; }
    50%      { transform: scaleY(0.6); opacity: 1;   }
}

/* 7. Story split — two-column home section
   --------------------------------------------------------------- */
.story-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    border-top: 1px solid var(--border);
}

/* First section under the fixed nav — clear the nav height plus a gap.
   Use margin (not padding) so the 90vh image panel keeps its full height,
   matching the founders panel on the home page exactly. */
.story-split--offset {
    margin-top: calc(var(--nav-h) + clamp(1.5rem, 3vw, 3rem));
    border-top: none;
}

.story-split__image {
    position: relative;
    overflow: hidden;
}

.story-split__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.story-split__content {
    background: var(--bg);
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border);
}

.story-split__inner {
    padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
    max-width: 520px;
}

.story-split__heading {
    font-family: var(--font-display);
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.story-split__body {
    font-size: 0.9375rem;
    line-height: 1.95;
    color: var(--text-sec);
    margin-bottom: 2.75rem;
}

@media (max-width: 768px) {
    .story-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .story-split__image {
        position: relative;
        aspect-ratio: 4 / 3;
    }
    .story-split__img {
        position: absolute;
    }
    .story-split__content {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .story-split__inner {
        max-width: 100%;
    }
}

/* 7b. Craftsmanship slideshow
   --------------------------------------------------------------- */
.craft-slideshow {
    position: absolute;
    inset: 0;
}

.craft-slideshow__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity 1s ease;
}

.craft-slideshow__slide.active {
    opacity: 1;
}

/* 8. Link — underline wipe
   --------------------------------------------------------------- */
.link-wipe {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    position: relative;
    padding-bottom: 3px;
}

.link-wipe::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--accent);
    transform-origin: left;
    transition: transform var(--t) var(--ease-out);
}

.link-wipe:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* 9. Collection (home products grid)
   --------------------------------------------------------------- */
.collection {
    background: var(--bg);
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    border-top: 1px solid var(--border);
}

.collection__header {
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    margin: 0 0 clamp(3rem, 5vw, 4.5rem);
    text-align: center;
}

.collection__heading {
    font-size: clamp(1.625rem, 3vw, 2.5rem);
    color: var(--text);
}

.collection__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    padding: 0 clamp(1.5rem, 3vw, 3rem);
}

.product-card__link {
    display: block;
    color: inherit;
    outline-offset: 4px;
}

.product-card__visual {
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    background-color: var(--card-bg, var(--bg-subtle));
    transition: transform var(--t-slow) var(--ease);
}

.product-card__link:hover .product-card__visual {
    transform: scale(0.975);
}

/* Real image inside card visual */
.product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Darkening overlay — revealed on hover */
.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 37, 32, 0);
    transition: background var(--t-slow) var(--ease);
    pointer-events: none;
}
.product-card__link:hover .product-card__overlay {
    background: rgba(44, 37, 32, 0.07);
}

/* Decorative circle motif — dark on light */
.product-card__motif {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 72px; height: 72px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: width var(--t-slow) var(--ease),
                height var(--t-slow) var(--ease),
                border-color var(--t-slow) var(--ease);
}

.product-card__motif::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 36px; height: 36px;
    border: 1px solid var(--text-15);
    border-radius: 50%;
}

.product-card__motif::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; height: 5px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 50%;
}

.product-card__link:hover .product-card__motif {
    width: 96px; height: 96px;
    border-color: var(--accent-30);
}

.product-card__info {
    padding: 1.75rem 0 0.5rem;
}

.product-card__num {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    color: var(--text-sec);
    margin-bottom: 0.6rem;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.product-card__sub {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    color: var(--text-sec);
    margin-bottom: 0.85rem;
}

.product-card__desc {
    font-size: 0.8125rem;
    line-height: 1.75;
    color: var(--text-50);
    margin-bottom: 1.1rem;
}

.product-card__arrow {
    display: inline-block;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--t) var(--ease),
                transform var(--t) var(--ease),
                letter-spacing var(--t) var(--ease);
}

.product-card__link:hover .product-card__arrow {
    opacity: 1;
    transform: none;
    letter-spacing: 0.26em;
}

.collection__footer {
    padding: 0 clamp(1.5rem, 3vw, 3rem);
    margin: 3.5rem 0 0;
    text-align: center;
}

/* 9b. Brewing guide — Easy Brew 333
   --------------------------------------------------------------- */
.brew {
    background: #F5F1EB;
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    text-align: center;
}
.brew__header {
    max-width: 600px;
    margin: 0 auto clamp(3.5rem, 6vw, 6rem);
}
.brew__eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 1.25rem;
    display: block;
}
.brew__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 0.625rem;
}
.brew__tagline {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-sec);
}
.brew__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: var(--content-w);
    margin: 0 auto;
    text-align: left;
}
.brew__card {
    display: flex;
    flex-direction: column;
}
.brew__card-top {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}
.brew__card-num {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: var(--text-50);
    flex-shrink: 0;
}
.brew__card-rule {
    flex: 1;
    display: block;
    height: 1px;
    background: var(--border-mid, rgba(196,185,168,0.55));
}
.brew__card-img {
    width: 100%;
    height: clamp(220px, 26vw, 340px);
    object-fit: contain;
    object-position: center;
    display: block;
    background: #EDE8E0;
    margin-bottom: 1.75rem;
}
.brew__card-body { padding: 0 0.125rem; }
.brew__card-value {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.brew__card-label {
    font-size: 0.875rem;
    color: var(--text-sec);
    letter-spacing: 0.02em;
    line-height: 1.6;
}
.brew__card-detail {
    font-size: 0.75rem;
    color: var(--text-50);
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}
.brew__note {
    margin-top: clamp(3rem, 5vw, 5rem);
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-50);
    text-align: center;
}
@media (max-width: 640px) {
    .brew__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .brew__card-img { height: clamp(180px, 60vw, 260px); }
}

/* 10. Buttons
   --------------------------------------------------------------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.95rem 2.5rem;
    transition: all var(--t) var(--ease);
    cursor: pointer;
    border: none;
}

.btn--outline {
    color: var(--text);
    border: 1px solid var(--border);
    background: transparent;
}
.btn--outline:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

/* Used in story teaser and dark-context areas */
.btn--outline-accent {
    color: var(--accent);
    border: 1px solid var(--accent-30);
    background: transparent;
    align-self: flex-start;
}
.btn--outline-accent:hover {
    background: var(--accent-08);
    border-color: var(--accent);
}

.btn--solid {
    background: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
}
.btn--solid:hover {
    background: #213d33;
    border-color: #213d33;
}

/* 11. Story teaser (home) — both panels light
   --------------------------------------------------------------- */
.story-teaser {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    border-top: 1px solid var(--border);
}

.story-teaser__visual {
    position: relative;
    background: var(--bg-subtle);
    overflow: hidden;
}

/* CSS "leaf" motif in accent green on warm off-white */
.story-teaser__leaf {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.story-teaser__leaf span {
    display: block;
    border-radius: 100% 0 100% 0;
    position: absolute;
    top: 50%; left: 50%;
}

.story-teaser__leaf span:nth-child(1) {
    width: 120px; height: 196px;
    border: 1px solid var(--accent-30);
    transform: translate(-50%, -50%) rotate(-18deg);
}
.story-teaser__leaf span:nth-child(2) {
    width: 78px; height: 128px;
    border: 1px solid var(--accent-15);
    transform: translate(-50%, -50%) rotate(18deg);
}
.story-teaser__leaf span:nth-child(3) {
    width: 44px; height: 72px;
    border: 1px solid var(--border);
    transform: translate(-50%, -50%) rotate(-18deg);
}

/* Small accent dot at centre */
.story-teaser__leaf::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.6;
}

.story-teaser__content {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
}

.story-teaser__heading {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.story-teaser__body {
    font-size: 0.9375rem;
    line-height: 1.95;
    color: var(--text-sec);
    margin-bottom: 2.75rem;
}

/* 12. Newsletter
   --------------------------------------------------------------- */
.newsletter {
    background: var(--bg-subtle);
    padding: clamp(5.5rem, 11vw, 9.5rem) clamp(1.5rem, 5vw, 4rem);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.newsletter__inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 2.75rem;
    line-height: 1.35;
}

.newsletter__form { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.newsletter__follow {
    display: flex; justify-content: center; gap: 1rem;
    flex-wrap: wrap; margin-bottom: 1.25rem;
}

.newsletter__row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid var(--border);
    transition: border-color var(--t) var(--ease);
}
.newsletter__row:focus-within { border-bottom-color: var(--accent); }

.newsletter__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: var(--text);
    padding: 0.85rem 0;
    letter-spacing: 0.03em;
}
.newsletter__input::placeholder {
    color: var(--text-30);
    letter-spacing: 0.06em;
}

.newsletter__submit {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 0.85rem 0 0.85rem 1.5rem;
    flex-shrink: 0;
    transition: color var(--t) var(--ease);
}
.newsletter__submit:hover { color: var(--text); }

.newsletter__note {
    font-size: 0.6875rem;
    color: var(--text-30);
    letter-spacing: 0.08em;
    font-style: italic;
}

/* 13. Footer — dark, centered (VCA-style)
   --------------------------------------------------------------- */
.footer {
    background: #000000;
    padding: clamp(4rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4rem) 2.5rem;
}

.footer__inner {
    max-width: var(--content-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.footer__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer__logo {
    display: block;
}
.footer__logo img {
    height: 52px;
    display: block;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.72;
}

.footer__links,
.footer__social {
    display: contents;
}

.footer__links a,
.footer__social a {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9A9990;
    transition: color var(--t) var(--ease);
}
.footer__links a:hover,
.footer__social a:hover { color: #F0EDE6; }

.footer__divider {
    width: 100%;
    height: 1px;
    background: #2C2C2A;
    margin: 0;
}

.footer__base {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem 1.5rem;
    font-size: 0.5625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5C5C58;
}
.footer__base a { color: inherit; transition: color var(--t) var(--ease); }
.footer__base a:hover { color: #9A9990; }

.footer__mark {
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    filter: invert(1);
    mix-blend-mode: screen;
    opacity: 0.6;
}

/* 14. Inner-page hero — light and typographic
   --------------------------------------------------------------- */
.page-hero {
    background: var(--bg);
    padding-top: var(--nav-h);
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid var(--border);
}

.page-hero__content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem) 0;
}

.page-hero__label {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 1.25rem;
    display: block;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 7vw, 6rem);
    font-weight: 200;
    letter-spacing: 0.04em;
    color: var(--text);
    line-height: 1;
}

/* 15. Products page
   --------------------------------------------------------------- */
.products-section {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.products-filter {
    max-width: var(--content-w);
    margin: 0 auto 3.5rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0.25rem 0;
    cursor: pointer;
    transition: color var(--t) var(--ease),
                border-color var(--t) var(--ease);
}
.filter-btn.active,
.filter-btn:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.products-grid {
    max-width: var(--content-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    outline: 1px solid var(--border);
}

/* 16. Founders section (Our Story)
   --------------------------------------------------------------- */
.founders-section {
    background: var(--bg);
    padding: calc(var(--nav-h) + clamp(1rem, 2vw, 2rem)) clamp(1.5rem, 5vw, 4rem) clamp(3.5rem, 6vw, 6rem);
    border-top: 1px solid var(--border);
}

.founders-section__inner {
    max-width: var(--content-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

.founders-section__photo {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.founders-section__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.founders-section__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.75rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.founders-section__heading em {
    font-style: italic;
    color: var(--accent);
    display: block;
    font-size: 0.78em;
    margin-top: 0.35rem;
}

@media (max-width: 960px) {
    .founders-section__inner {
        grid-template-columns: 1fr;
    }
    .founders-section__photo {
        position: static;
    }
    .founders-section__img {
        aspect-ratio: 4 / 3;
        object-position: center 20%;
    }
}

/* 16b. Story page content
   --------------------------------------------------------------- */
.story-content {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
}

.story-content__inner {
    max-width: 700px;
    margin: 0 auto;
}

.story-content__intro {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 300;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 3rem;
}

.story-content__body p {
    font-size: 0.9375rem;
    line-height: 1.95;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
}
.story-content__body p:last-child { margin-bottom: 0; }

.story-rule {
    width: 36px; height: 1px;
    background: var(--border);
    margin: 3.5rem 0;
}

/* Value cards — warm light tones, bordered */
.values-section {
    background: var(--bg);
    padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem);
}

.values-grid {
    max-width: var(--content-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    outline: 1px solid var(--border);
}

.value-card {
    background: var(--bg-subtle);
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
    border-top: 2px solid var(--accent);
}

.value-card:nth-child(2) {
    background: var(--bg);
    border-top-color: var(--border);
}
.value-card:nth-child(3) {
    background: var(--bg-subtle);
    border-top-color: var(--border);
}

.value-card__num {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    color: var(--text-sec);
    margin-bottom: 1.5rem;
}

.value-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1rem;
}

.value-card__body {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-sec);
}

/* Closing quote block (Our Story) */
.story-closing {
    background:
        linear-gradient(rgba(248, 247, 243, 0.55), rgba(248, 247, 243, 0.55)),
        url('../images/latelier-cup.jpg') center / cover no-repeat;
    border-top: 1px solid var(--border);
    padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
}

.story-closing--latelier {
    margin-top: clamp(2.5rem, 5vw, 5rem);
    border-top: none;
    background:
        linear-gradient(rgba(248, 247, 243, 0.45), rgba(248, 247, 243, 0.45)),
        url("../images/latelier-t-story.jpg") center / cover no-repeat;
}

.story-closing__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.story-closing__quote {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3.25vw, 2.375rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 2.5rem;
}
.story-closing__quote--upright { font-style: normal; }
.story-closing__quote-zh {
    font-family: var(--font-display);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    letter-spacing: 0.3em;
    color: var(--text-sec);
    margin-bottom: 2.5rem;
}

/* 17. Contact page
   --------------------------------------------------------------- */
.contact-banner {
    margin-top: var(--nav-h);
    width: 100%;
    height: min(78vh, calc(100vw / 1.63));
    overflow: hidden;
}
.contact-banner img,
.contact-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-section {
    background: var(--bg);
    padding: clamp(3.5rem, 6vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 8vw, 8rem);
    max-width: var(--content-w);
    margin: 0 auto;
}

.contact-info { padding-top: 0.5rem; }

.contact-info__heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.contact-info__body {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: var(--text-sec);
    margin-bottom: 2.5rem;
}

.contact-address { margin-bottom: 2rem; }

.contact-address__city {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.contact-address__detail {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--text-sec);
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-group {
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
    transition: border-color var(--t) var(--ease);
}
.form-group:focus-within { border-bottom-color: var(--accent); }

.form-label {
    display: block;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: var(--text);
    padding: 0 0 0.75rem;
    letter-spacing: 0.02em;
}

.form-textarea {
    resize: none;
    min-height: 120px;
    line-height: 1.7;
}

.form-submit { align-self: flex-start; margin-top: 0.5rem; }

/* 18. Scroll reveal
   --------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--t-slow) var(--ease-out),
                transform var(--t-slow) var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* 19. Products page — collection sections
   --------------------------------------------------------------- */
.products-collections {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.product-collection {
    max-width: var(--content-w);
    margin: 0 auto clamp(5rem, 10vw, 8rem);
}
.product-collection:last-child { margin-bottom: 0; }

.collection-intro {
    padding-bottom: 2.5rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.collection-intro__num {
    display: block;
    font-size: 0.5625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 1rem;
}

.collection-intro__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4.5rem);
    font-weight: 200;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.collection-intro__title-zh {
    font-family: var(--font-display), var(--font-zh);
    font-size: clamp(0.9375rem, 1.6vw, 1.25rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-sec);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.collection-intro__subtitle {
    font-size: 0.8125rem;
    color: var(--text-50);
    font-style: italic;
    letter-spacing: 0.03em;
}

/* Product items grid */
.product-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    outline: 1px solid var(--border);
}

/* Individual product item card */
.product-item {
    --item-pad: clamp(1.5rem, 2.5vw, 2.25rem);
    background: var(--bg);
    padding: var(--item-pad);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: background var(--t) var(--ease), transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
    background: var(--bg-subtle);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product-item--star { border-top: 2px solid var(--accent); }

.product-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.product-item__num {
    font-size: 0.5625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-sec);
}

.product-item__type {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-30);
    padding: 0.2rem 0.55rem;
    white-space: nowrap;
}

.product-item__type--neutral {
    color: var(--text-sec);
    border-color: var(--border);
}

.product-item__star-label {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.25rem;
    align-self: flex-start;
}

.product-item__name {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.625rem);
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
}

.product-item__zh {
    font-family: var(--font-display), var(--font-zh);
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--text-sec);
    letter-spacing: 0.1em;
    margin-top: 0.15rem;
}

.product-item__name-en {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--text-sec);
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

.product-item__desc {
    font-size: 0.8125rem;
    line-height: 1.78;
    color: var(--text-50);
    flex: 1;
}

.product-item__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-40);
    margin-top: auto;
}

.product-item__size {
    font-size: 0.5rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-sec);
    border: 1px solid var(--border);
    padding: 0.22rem 0.55rem;
    background: var(--bg-subtle);
}

/* 20. Product detail page
   --------------------------------------------------------------- */

/* Back breadcrumb */
.product-breadcrumb {
    padding: calc(var(--nav-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 0;
    max-width: var(--content-w);
    margin: 0 auto;
}

.product-breadcrumb__link {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-sec);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--t) var(--ease);
}
.product-breadcrumb__link::before {
    content: '←';
    font-size: 0.875rem;
    transition: transform var(--t) var(--ease);
}
.product-breadcrumb__link:hover { color: var(--text); }
.product-breadcrumb__link:hover::before { transform: translateX(-3px); }

/* Product hero */
.product-hero {
    background: var(--bg);
    padding: 3rem clamp(1.5rem, 5vw, 4rem) 0;
    border-bottom: 1px solid var(--border);
}

.product-hero__inner {
    max-width: var(--content-w);
    margin: 0 auto;
    padding-bottom: 3rem;
}

.product-hero__num {
    font-size: 0.625rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-sec);
    display: block;
    margin-bottom: 1.25rem;
}

.product-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 200;
    letter-spacing: 0.05em;
    color: var(--text);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.product-hero__sub {
    font-family: var(--font-display), var(--font-zh);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text-sec);
    letter-spacing: 0.1em;
}

/* Product detail body */
.product-detail {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.product-detail__inner {
    max-width: var(--content-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 7rem);
    align-items: start;
}

/* Visual panel */
.product-detail__visual {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
    aspect-ratio: 3 / 4;
    background-color: var(--card-bg, var(--bg-subtle));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail__motif {
    width: 120px; height: 120px;
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
    transition: all var(--t-slow) var(--ease);
}
.product-detail__motif::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border: 1px solid var(--text-15);
    border-radius: 50%;
}
.product-detail__motif::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: 50%;
}

/* Info panel */
.product-detail__info { padding-top: 0.5rem; }

.product-detail__category {
    display: inline-block;
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent-30);
    padding: 0.3rem 0.75rem;
    margin-bottom: 2rem;
}

.product-detail__desc {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-sec);
    margin-bottom: 3rem;
}

.product-detail__rule {
    width: 36px; height: 1px;
    background: var(--border);
    margin-bottom: 2.5rem;
}

/* Sensory notes */
.sensory-notes {
    background: var(--bg-subtle);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    border-top: 1px solid var(--border);
}

.sensory-notes__inner {
    max-width: var(--content-w);
    margin: 0 auto;
}

.sensory-notes__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    outline: 1px solid var(--border);
    margin-top: 2.5rem;
}

.sensory-note {
    background: var(--bg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.sensory-note:nth-child(2) { background: var(--bg-subtle); }

.sensory-note__stage {
    font-size: 0.5625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 0.5rem;
    display: block;
}

.sensory-note__label {
    font-family: var(--font-display);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1rem;
    display: block;
}

.sensory-note__zh {
    font-family: var(--font-zh);
    font-size: 0.75rem;
    color: var(--text-sec);
    letter-spacing: 0.12em;
    display: block;
    margin-bottom: 1rem;
}

.sensory-note__desc {
    font-size: 0.8125rem;
    line-height: 1.8;
    color: var(--text-50);
}

/* Provenance strip */
.product-provenance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.provenance-item__label {
    font-size: 0.5625rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-sec);
    display: block;
    margin-bottom: 0.4rem;
}

.provenance-item__value {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text);
}

/* Brewing section */
.brewing-section {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    border-top: 1px solid var(--border);
}

.brewing-section__inner {
    max-width: var(--content-w);
    margin: 0 auto;
}

.brewing-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    outline: 1px solid var(--border);
    margin-top: 2.5rem;
}

.brewing-step {
    background: var(--bg-subtle);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.brewing-step:nth-child(2) { background: var(--bg); }

.brewing-step__num {
    font-size: 0.5625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-sec);
    display: block;
    margin-bottom: 0.75rem;
}

.brewing-step__value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 200;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.brewing-step__unit {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    color: var(--text-sec);
    text-transform: uppercase;
}

.brewing-note {
    margin-top: 2rem;
    font-size: 0.8125rem;
    line-height: 1.8;
    color: var(--text-50);
    font-style: italic;
    max-width: 560px;
}

/* Related teas */
.related-teas {
    background: var(--bg);
    padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem);
    border-top: 1px solid var(--border);
}

.related-teas__inner {
    max-width: var(--content-w);
    margin: 0 auto;
}

.related-teas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
    outline: 1px solid var(--border);
    margin-top: 2.5rem;
}

/* Responsive — product detail */
@media (max-width: 960px) {
    .product-detail__inner { grid-template-columns: 1fr; }
    .product-detail__visual { position: static; aspect-ratio: 4 / 3; }
    .sensory-notes__grid { grid-template-columns: 1fr; }
    .brewing-steps { grid-template-columns: 1fr; }
    .product-provenance { grid-template-columns: 1fr 1fr; }
    .related-teas__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .product-provenance { grid-template-columns: 1fr; }
}

/* 20. Keyframes
   --------------------------------------------------------------- */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* 20. Responsive
   --------------------------------------------------------------- */
@media (max-width: 960px) {
    .collection__grid,
    .products-grid,
    .product-items-grid { grid-template-columns: 1fr 1fr; }

    .story-teaser { grid-template-columns: 1fr; }
    .story-teaser__visual { min-height: 55vw; }
    .story-teaser__content { border-left: none; border-top: 1px solid var(--border); }

    .values-grid { grid-template-columns: 1fr; }

    .contact-section { grid-template-columns: 1fr; }

    .footer__nav { gap: 2.5rem; }
}

/* ── Product image gallery ──────────────────────── */
.product-gallery {
    margin-top: calc(-1 * var(--item-pad, 1.5rem));
    margin-left: calc(-1 * var(--item-pad, 1.5rem));
    margin-right: calc(-1 * var(--item-pad, 1.5rem));
    margin-bottom: 0;
    height: 380px;
    position: relative;
    overflow: hidden;
    background: var(--gallery-bg, #E8E2D9);
    flex-shrink: 0;
}

/* Collection-specific gallery backgrounds */
[data-collection="pure"]     .product-gallery { background: #DCE4E4; }
[data-collection="crafted"]  .product-gallery { background: #F0EBE0; }
[data-collection="wellness"] .product-gallery { background: #E4EAEC; }

.gallery-track {
    position: absolute;
    inset: 0;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.1s ease;
}
.gallery-slide.active { opacity: 1; }

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.product-item:hover .gallery-slide.active img {
    transform: scale(1.05);
}


.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.82);
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text);
    z-index: 2;
    transition: background 0.2s ease;
    padding: 0;
    border-radius: 0;
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow--prev { left: 0.5rem; }
.gallery-arrow--next { right: 0.5rem; }

.gallery-dots {
    position: absolute;
    bottom: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.3rem;
    z-index: 2;
}

.gallery-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
}
.gallery-dot.active { background: rgba(255, 255, 255, 0.95); }

@media (max-width: 640px) {
    /* Mobile nav overlay */
    .nav__links {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(245, 242, 237, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.25rem;
        z-index: 205;
    }
    .nav__links.open { display: flex; }
    .nav__link { font-size: 1rem; color: var(--text-sec); }
    .nav__slogan { display: none; }
    .nav__link:hover,
    .nav__link.active { color: var(--text); }
    .nav__toggle { display: flex; }

    .collection__grid,
    .products-grid,
    .product-items-grid { grid-template-columns: 1fr; }

    .hero__tagline { flex-direction: column; gap: 0.4rem; }

    .footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        row-gap: 1.75rem;
    }
    .footer__logo,
    .footer__links,
    .footer__social {
        grid-column: 1;
        grid-row: auto;
        justify-self: center;
        justify-content: center;
    }
    .footer__divider { grid-row: auto; }
    .footer__base    { grid-row: auto; }
}

/* ----- Social QR modal (footer Follow links) ----- */
.qr-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(44, 37, 32, 0.55); z-index: 300;
    align-items: center; justify-content: center;
}
.qr-modal-overlay.open { display: flex; }
.qr-modal {
    background: var(--bg); padding: 40px 36px; text-align: center;
    max-width: 260px; width: 90%; position: relative;
}
.qr-modal__close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; font-size: 18px;
    cursor: pointer; color: var(--text-sec);
}
.qr-modal__qr {
    width: 120px; height: 120px; background: var(--bg-subtle);
    border: 1px solid var(--border-40);
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
}
.qr-modal__qr img { width: 100%; height: 100%; object-fit: contain; }
.qr-modal__hint {
    font-size: 10px; color: var(--text-sec);
    letter-spacing: 0.06em; line-height: 1.6;
}
.qr-modal__title {
    font-family: var(--font-display); font-size: 15px;
    letter-spacing: 0.1em; color: var(--text); margin-bottom: 6px;
}
.qr-modal__sub { font-size: 10px; color: var(--text-sec); letter-spacing: 0.1em; }
