:root {
    --ivory: #eee4d3;
    --paper: #fbf6ec;
    --sand: #d6c4aa;
    --sand-deep: #b59d7e;
    --forest: #142b23;
    --forest-soft: #29453a;
    --ink: #17241e;
    --muted: #606b64;
    --oxblood: #711b21;
    --coral: #a8482f;
    --terracotta: #bd6543;
    --teal: #173f42;
    --cream: #ead9bd;
    --line: rgba(23, 36, 30, .18);
    --line-light: rgba(255, 250, 241, .22);
    --shadow: 0 30px 90px rgba(43, 30, 20, .18);
    --shell: min(1280px, calc(100vw - 64px));
    --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
    --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    --serif-zh: "Songti SC", "STSong", "Noto Serif CJK SC", "Source Han Serif SC", serif;
    --sans-zh: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --shop-qr-size: clamp(320px, 31vw, 440px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body::before {
    content: "";
    position: fixed;
    z-index: 500;
    inset: 0;
    pointer-events: none;
    opacity: .032;
    background-image: repeating-radial-gradient(circle at 0 0, #17120e 0 .7px, transparent .8px 4px);
    background-size: 5px 5px;
    mix-blend-mode: multiply;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
main { overflow: clip; }
.page { min-width: 0; overflow-x: clip; }
.page-zh { font-family: var(--sans-zh); }
section[id] { scroll-margin-top: 84px; }
.section-shell { width: var(--shell); margin-inline: auto; }
.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;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--paper);
    background: var(--forest);
    transform: translateY(-160%);
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 4px; }

.scroll-progress { position: fixed; z-index: 120; inset: 0 0 auto; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--coral); }

.eyebrow {
    margin: 0 0 18px;
    color: var(--coral);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}
.display {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(58px, 6.3vw, 105px);
    font-weight: 400;
    line-height: .93;
    letter-spacing: -.045em;
}
.display em { color: var(--coral); font-weight: 400; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 50px;
    padding: 0 19px;
    border: 1px solid currentColor;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    transition: color .25s ease, background .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-coral { color: #fff; border-color: var(--coral); background: var(--coral); }
.button-coral:hover { color: var(--coral); background: var(--paper); }
.button-cream { color: var(--forest); border-color: var(--cream); background: var(--cream); }
.button-cream:hover { color: var(--cream); background: transparent; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    padding: 17px 0;
    color: var(--paper);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, rgba(20, 4, 7, .64), rgba(20, 4, 7, .13) 72%, transparent);
    backdrop-filter: none;
    transition: padding .3s ease, color .3s ease, border-color .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled { padding: 10px 0; color: var(--ink); border-color: var(--line); background: rgba(238, 228, 211, .97); backdrop-filter: blur(16px); }
.header-inner { width: var(--shell); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: grid; justify-items: center; gap: 5px; min-width: 190px; }
.brand img { width: 188px; height: auto; filter: brightness(0) invert(1); transition: filter .3s ease; }
.brand span { width: 100%; color: rgba(255, 250, 241, .66); font-size: 9px; line-height: 1.15; letter-spacing: .16em; text-align: center; text-transform: uppercase; transition: color .3s ease; }
.site-header.is-scrolled .brand img { filter: none; }
.site-header.is-scrolled .brand span { color: var(--forest-soft); }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.3vw, 38px); font-size: 12px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 100%; bottom: -7px; left: 0; height: 1px; background: var(--coral); transition: right .25s ease; }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.language-switch { display: inline-flex; align-items: center; gap: 6px; padding: 5px 0; color: rgba(255, 250, 241, .66); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.language-switch a { position: relative; transition: color .2s ease; }
.language-switch a:hover,
.language-switch a[aria-current="page"] { color: var(--paper); }
.language-switch a[aria-current="page"]::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: #d69a74; }
.site-header.is-scrolled .language-switch { color: rgba(23, 36, 30, .52); }
.site-header.is-scrolled .language-switch a:hover,
.site-header.is-scrolled .language-switch a[aria-current="page"] { color: var(--ink); }
.nav-cta { display: inline-flex; align-items: center; gap: 18px; padding: 11px 14px; border: 1px solid rgba(255, 255, 255, .58); transition: border-color .3s ease; }
.site-header.is-scrolled .nav-cta { border-color: var(--forest); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 12px 7px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span { display: block; width: 27px; height: 1px; margin: 7px 0; background: var(--paper); transition: transform .25s ease, background .25s ease; }
.site-header.is-scrolled .menu-toggle > span { background: var(--ink); }

.hero { position: relative; padding: 0; overflow: hidden; color: var(--paper); background: #23090d; }
.hero-visual {
    position: relative;
    width: 100%;
    max-width: none;
    height: 100svh;
    min-height: 690px;
    max-height: none;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    animation: hero-reveal 1.15s cubic-bezier(.16, 1, .3, 1) both;
}
.hero-picture { position: absolute; inset: 0; display: block; }
.hero-picture img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 51%; transform: none; animation: none; }
.hero-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(24, 4, 8, .62) 0%, rgba(24, 4, 8, .28) 24%, rgba(24, 4, 8, .06) 39%, transparent 51%), linear-gradient(0deg, rgba(17, 3, 6, .14), transparent 28%);
}
.hero-caption { position: absolute; z-index: 2; bottom: clamp(48px, 7vh, 76px); left: max(34px, calc((100vw - 1280px) / 2)); width: min(620px, 45vw); margin: 0; animation: hero-caption-in 1s cubic-bezier(.16, 1, .3, 1) .18s both; }
.hero-caption .eyebrow { margin-bottom: 18px; color: #f0bf9c; }
.hero-caption h1 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(58px, 5.2vw, 88px); font-weight: 400; line-height: .94; letter-spacing: .018em; word-spacing: .08em; text-wrap: balance; }
.hero-link { margin-top: 28px; color: var(--paper); }

.story { position: relative; padding: 155px 0 170px; background: radial-gradient(circle at 86% 10%, rgba(189, 101, 67, .12), transparent 26%), linear-gradient(145deg, #f8f2e7, #e7d9c5); }
.story-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(55px, 7vw, 110px); align-items: center; }
.story-atmosphere { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border: 7px solid rgba(251, 246, 236, .92); box-shadow: var(--shadow); }
.story-atmosphere::before { content: ""; position: absolute; z-index: 1; inset: 48% 0 0; background: linear-gradient(transparent, rgba(18, 20, 16, .72)); pointer-events: none; }
.story-atmosphere img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; transform: scale(1.08); }
.story-atmosphere.is-visible img { animation: story-drift 14s ease-in-out .7s infinite alternate; }
.story-atmosphere figcaption { position: absolute; z-index: 2; right: 24px; bottom: 20px; left: 24px; color: #fff; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.story-copy { padding-right: 2vw; }
.story-intro { max-width: 520px; margin: 40px 0 48px; color: var(--muted); font-size: 18px; }
.story-principles { margin: 0; border-top: 1px solid var(--line); }
.story-principles > div { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.story-principles dt { color: var(--coral); font-size: 10px; letter-spacing: .12em; }
.story-principles dd { margin: 0; font-family: var(--serif); font-size: 20px; }

.collection { position: relative; padding: 155px 0 135px; overflow: hidden; background: radial-gradient(circle at 12% 18%, rgba(23, 63, 66, .11), transparent 26%), linear-gradient(180deg, #eee4d3, #d8c5aa); }
.collection-head { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr); gap: clamp(52px, 6vw, 96px); align-items: end; }
.collection-head > * { min-width: 0; }
.collection-display > span,
.collection-display > em { display: block; }
.collection-head > p { max-width: 460px; margin: 0 0 6px; color: var(--muted); font-size: 17px; }
.collection-toolbar { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 65px; margin-bottom: 24px; }
.collection-toolbar > p { margin: 0; color: var(--muted); font-size: 12px; letter-spacing: .04em; }
.collection-controls { display: flex; align-items: center; gap: 10px; }
.collection-arrows { display: flex; gap: 9px; }
.collection-arrows button { width: 46px; height: 46px; border: 1px solid var(--ink); background: transparent; cursor: pointer; transition: color .2s ease, background .2s ease, transform .25s ease; }
.collection-arrows button:hover { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.collection-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-padding-inline: max(32px, calc((100vw - 1280px) / 2));
    padding: 0 max(32px, calc((100vw - 1280px) / 2)) 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--coral) rgba(23, 36, 30, .11);
    overscroll-behavior-inline: contain;
}
.collection-group { display: flex; flex: 0 0 auto; gap: 24px; }
.collection-track::-webkit-scrollbar { height: 7px; }
.collection-track::-webkit-scrollbar-track { background: rgba(23, 36, 30, .11); }
.collection-track::-webkit-scrollbar-thumb { background: var(--coral); }
.product-card { flex: 0 0 clamp(320px, 34vw, 470px); scroll-snap-align: start; overflow: hidden; border: 1px solid var(--line); background: rgba(251, 246, 236, .92); box-shadow: 0 20px 60px rgba(54, 39, 26, .1); transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s cubic-bezier(.16, 1, .3, 1); }
.product-image { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; background: var(--sand); }
.product-image::after { content: ""; position: absolute; inset: 58% 0 0; background: linear-gradient(transparent, rgba(15, 22, 18, .5)); pointer-events: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16, 1, .3, 1); }
.product-card:hover, .product-card:focus-within { transform: translateY(-9px); box-shadow: 0 30px 80px rgba(54, 39, 26, .18); }
.js .product-card.reveal.is-visible:hover, .js .product-card.reveal.is-visible:focus-within { transform: translateY(-9px); }
.product-card:hover .product-image img, .product-card:focus-within .product-image img { transform: scale(1.035); }
.product-image > span { position: absolute; z-index: 2; right: 18px; bottom: 15px; color: #fff; font-size: 10px; letter-spacing: .14em; }
.product-copy { padding: 30px 29px 34px; }
.product-copy .eyebrow { margin-bottom: 12px; }
.product-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(31px, 3vw, 45px); font-weight: 400; line-height: .98; letter-spacing: -.03em; }
.product-copy > p:not(.eyebrow) { min-height: 78px; margin: 20px 0 26px; color: var(--muted); font-size: 14px; }

.sample-section { position: relative; padding: 165px 0 180px; overflow: hidden; color: var(--paper); background: radial-gradient(circle at 75% 18%, rgba(198, 133, 86, .2), transparent 27%), linear-gradient(150deg, #214238, #0d211a 68%); }
.sample-section::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 104px 104px; }
.sample-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .86fr .76fr .58fr; gap: 28px; align-items: end; }
.sample-copy { align-self: center; padding-right: 2vw; }
.sample-copy .eyebrow { color: #d69a74; }
.sample-copy .display em { color: #d69a74; }
.sample-copy > p:not(.eyebrow) { max-width: 480px; margin: 35px 0; color: rgba(255, 250, 241, .68); }
.sample-stamp { display: inline-block; padding: 8px 0; border-block: 1px solid rgba(255, 255, 255, .24); color: #d69a74; font-size: 9px; letter-spacing: .14em; }
.sample-photo { position: relative; margin: 0; overflow: hidden; border: 7px solid rgba(251, 246, 236, .9); box-shadow: 0 30px 75px rgba(0, 0, 0, .25); }
.sample-photo::after { content: ""; position: absolute; inset: 62% 0 0; background: linear-gradient(transparent, rgba(10, 20, 16, .72)); }
.sample-photo img { width: 100%; height: 100%; object-fit: cover; }
.sample-photo figcaption { position: absolute; z-index: 1; right: 18px; bottom: 15px; left: 18px; font-size: 8px; letter-spacing: .12em; text-transform: uppercase; }
.sample-photo-main { height: 700px; }
.sample-photo-detail { height: 510px; }
.sample-photo-main.is-visible { animation: sample-main-in 1s cubic-bezier(.16, 1, .3, 1) both; }
.sample-photo-detail.is-visible { animation: sample-detail-in 1s cubic-bezier(.16, 1, .3, 1) .12s both; }

.place-section { position: relative; overflow: hidden; color: var(--ink); background: #eee2d1; }
.place-visual { width: 100%; max-width: none; margin: 0; overflow: hidden; }
.place-picture { display: block; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; }
.place-picture img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1); transform-origin: 64% 52%; }
.place-visual.is-visible .place-picture img { animation: place-cinema 20s ease-in-out .8s infinite alternate; }
.place-meta { position: static; color: var(--ink); border-top: 1px solid var(--line); background: rgba(248, 241, 228, .98); }
.place-meta-inner { min-height: 86px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(28px, 4vw, 70px); }
.place-meta-inner > span { color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.place-meta-inner strong { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 34px); font-weight: 400; line-height: 1.05; text-align: center; }

.roastery-section {
    position: relative;
    padding: 165px 0 175px;
    overflow: hidden;
    color: var(--paper);
    background:
        radial-gradient(circle at 78% 12%, rgba(170, 81, 55, .2), transparent 29%),
        radial-gradient(circle at 9% 82%, rgba(193, 139, 91, .12), transparent 28%),
        linear-gradient(142deg, #17382e 0%, #0a2119 56%, #071710 100%);
}
.roastery-section::before {
    content: "ROASTERY";
    position: absolute;
    top: 42px;
    left: 50%;
    color: rgba(255, 250, 241, .027);
    font-family: var(--serif);
    font-size: clamp(92px, 15vw, 260px);
    line-height: .8;
    letter-spacing: -.045em;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
}
.roastery-section::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 110px 110px;
    pointer-events: none;
}
.roastery-inner { position: relative; z-index: 1; }
.roastery-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .62fr); gap: clamp(56px, 8vw, 140px); align-items: end; }
.roastery-heading .eyebrow { color: #d89b74; }
.roastery-heading .display { max-width: 940px; margin-bottom: 0; }
.roastery-heading .display em { color: #d89b74; }
.roastery-intro { padding-bottom: 9px; }
.roastery-intro > p { max-width: 530px; margin: 0 0 32px; color: rgba(255, 250, 241, .72); font-size: 17px; line-height: 1.8; }
.roastery-intro > span { display: block; padding-top: 18px; color: #e4aa82; border-top: 1px solid rgba(255, 255, 255, .24); font-size: clamp(14px, .95vw, 16px); font-weight: 700; letter-spacing: .08em; line-height: 1.7; }
.roastery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(290px, .58fr);
    grid-template-areas:
        "cooling process"
        "room process";
    gap: 24px;
    margin-top: 76px;
    align-items: stretch;
}
.factory-card {
    min-width: 0;
    margin: 0;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    color: var(--ink);
    border: 1px solid rgba(255, 244, 225, .5);
    background: linear-gradient(145deg, rgba(251, 246, 236, .985), rgba(232, 216, 192, .96));
    box-shadow: 0 32px 90px rgba(0, 0, 0, .3);
}
.factory-card-cooling { grid-area: cooling; }
.factory-card-room { grid-area: room; }
.factory-card-process { grid-area: process; height: 100%; }
.factory-media { position: relative; overflow: hidden; background: #07140f; }
.factory-card-cooling .factory-media { aspect-ratio: 16 / 9; }
.factory-card-room .factory-media { aspect-ratio: 21 / 9; }
.factory-card-process .factory-media { min-height: 720px; flex: 1; }
.factory-media video { display: block; width: 100%; height: 100%; object-fit: cover; background: #07140f; cursor: pointer; filter: saturate(.87) contrast(1.035) brightness(.94) sepia(.025); }
.factory-card-room .factory-media video { object-position: center 45%; filter: saturate(.72) contrast(1.04) brightness(.9) sepia(.035); }
.factory-card-process .factory-media video { object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.03) brightness(.92) sepia(.025); }
.factory-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 16, 12, .2), transparent 25%, transparent 72%, rgba(5, 16, 12, .2));
    pointer-events: none;
}
.factory-mark {
    position: absolute;
    z-index: 3;
    top: 21px;
    left: 21px;
    width: clamp(118px, 10vw, 154px);
    opacity: .88;
    pointer-events: none;
}
.factory-mark-right { right: 21px; left: auto; }
.factory-mark img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .34)) drop-shadow(0 7px 16px rgba(0, 0, 0, .2));
}
.factory-index { position: absolute; z-index: 3; top: 20px; right: 19px; color: rgba(255, 255, 255, .86); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-shadow: 0 2px 12px rgba(0, 0, 0, .45); pointer-events: none; }
.factory-card-cooling .factory-index { right: auto; left: 19px; }
.factory-video-controls {
    position: absolute;
    z-index: 5;
    right: 14px;
    bottom: 12px;
    left: 14px;
    min-height: 48px;
    display: grid;
    grid-template-columns: 38px auto minmax(70px, 1fr) auto 38px 38px;
    align-items: center;
    gap: 10px;
    padding: 6px 9px;
    color: #fffaf1;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(6, 18, 13, .8), rgba(6, 18, 13, .54));
    box-shadow: 0 10px 30px rgba(0, 0, 0, .24);
    backdrop-filter: blur(8px);
}
.factory-video-controls button {
    width: 38px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: 700 12px/1 var(--sans);
}
.factory-video-controls button:hover,
.factory-video-controls button:focus-visible { color: #f0ad82; background: rgba(255, 255, 255, .1); outline: 1px solid rgba(255, 255, 255, .5); }
.factory-video-controls time { color: rgba(255, 250, 241, .85); font-size: 10px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.factory-seek { position: relative; height: 24px; display: flex; align-items: center; }
.factory-seek::before,
.factory-seek > span { content: ""; position: absolute; right: 0; left: 0; height: 3px; border-radius: 999px; pointer-events: none; }
.factory-seek::before { background: rgba(255, 255, 255, .28); }
.factory-seek > span { right: auto; z-index: 1; background: #e7a57b; }
.factory-seek input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 24px;
    margin: 0;
    appearance: none;
    cursor: pointer;
    background: transparent;
}
.factory-seek input:disabled { cursor: wait; }
.factory-seek input::-webkit-slider-runnable-track { height: 3px; background: transparent; }
.factory-seek input::-webkit-slider-thumb { width: 14px; height: 14px; margin-top: -5.5px; appearance: none; border: 2px solid #fffaf1; border-radius: 50%; background: #c45f40; box-shadow: 0 2px 8px rgba(0, 0, 0, .4); }
.factory-seek input::-moz-range-track { height: 3px; background: transparent; }
.factory-seek input::-moz-range-thumb { width: 11px; height: 11px; border: 2px solid #fffaf1; border-radius: 50%; background: #c45f40; box-shadow: 0 2px 8px rgba(0, 0, 0, .4); }
.factory-media:fullscreen { width: 100vw; height: 100vh; background: #05110c; }
.factory-media:fullscreen video { width: 100%; height: 100%; object-fit: contain; }
.factory-card figcaption { padding: clamp(25px, 2.6vw, 38px); border-top: 1px solid rgba(23, 36, 30, .12); }
.factory-card figcaption > span { color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.factory-card figcaption h3 { margin: 13px 0 12px; font-family: var(--serif); font-size: clamp(29px, 2.75vw, 43px); font-weight: 400; line-height: 1.03; letter-spacing: -.025em; }
.factory-card figcaption p { max-width: 660px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.factory-card-process figcaption h3 { font-size: clamp(30px, 2.25vw, 38px); }
.factory-steps { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(23, 36, 30, .16); }
.factory-steps li { display: grid; grid-template-columns: 37px 1fr; gap: 12px; align-items: center; min-height: 38px; color: var(--muted); border-bottom: 1px solid rgba(23, 36, 30, .12); font-size: 11px; letter-spacing: .04em; }
.factory-steps b { color: var(--coral); font-size: 8px; letter-spacing: .1em; }

.shop-section { position: relative; padding: 165px 0; overflow: hidden; color: var(--paper); background: radial-gradient(circle at 72% 22%, rgba(201, 136, 91, .22), transparent 26%), radial-gradient(circle at 100% 100%, rgba(79, 123, 93, .18), transparent 38%), linear-gradient(145deg, #1c3b31, #0b2119); }
.shop-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(470px, .8fr) minmax(0, 1.2fr); gap: clamp(48px, 4vw, 64px); align-items: center; }
.shop-grid > * { min-width: 0; }
.shop-copy .eyebrow { color: #d69a74; }
.shop-copy .display em { color: #d69a74; }
.shop-display > span,
.shop-display > em { display: block; }
.shop-copy > p:not(.eyebrow) { max-width: 520px; margin: 35px 0; color: rgba(255, 250, 241, .7); font-size: 17px; }
.shop-instruction { max-width: 520px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .2); }
.shop-instruction strong { display: block; margin-bottom: 5px; color: #fff; font-size: 14px; }
.shop-instruction span { display: block; color: rgba(255, 250, 241, .58); font-size: 12px; }
.shop-channels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); align-items: stretch; }
.shop-code {
    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0;
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: clamp(18px, 2vw, 25px);
    color: var(--ink);
    border: 1px solid rgba(255, 244, 225, .55);
    background: linear-gradient(135deg, #f8f1e4 0 63%, #ead8bc 100%);
    box-shadow: 0 42px 110px rgba(0, 0, 0, .35);
}
.shop-code::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: -14px;
    left: -15px;
    width: 58%;
    height: 58%;
    border: 1px solid rgba(233, 183, 144, .5);
    background: linear-gradient(145deg, rgba(151, 53, 42, .82), rgba(84, 19, 25, .72));
    box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
    transform: rotate(-1.15deg);
}
.shop-code::after {
    content: "";
    position: absolute;
    z-index: 3;
    inset: 10px;
    border: 1px solid rgba(113, 27, 33, .2);
    pointer-events: none;
}
.shop-code-frame {
    position: relative;
    padding: 11px;
    border: 1px solid rgba(113, 27, 33, .38);
    background: #fffaf0;
    box-shadow: 0 20px 48px rgba(70, 34, 18, .18), inset 0 0 0 4px rgba(199, 165, 119, .11);
}
.shop-code-frame::before,
.shop-code-frame::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 34px;
    height: 34px;
    pointer-events: none;
}
.shop-code-frame::before { top: 5px; left: 5px; border-top: 1px solid var(--oxblood); border-left: 1px solid var(--oxblood); }
.shop-code-frame::after { right: 5px; bottom: 5px; border-right: 1px solid var(--oxblood); border-bottom: 1px solid var(--oxblood); }
.shop-code-mat { aspect-ratio: 4 / 5; display: grid; place-items: center; overflow: hidden; padding: 7px; border: 1px solid rgba(23, 36, 30, .13); background: #efe3d1; }
.shop-code img { width: 100%; max-width: 100%; height: 100%; object-fit: contain; background: #fff; }
.shop-code figcaption { position: relative; display: flex; min-height: 156px; flex: 1; flex-direction: column; justify-content: center; margin-top: 22px; padding: 20px 34px 14px 0; border-block: 1px solid rgba(23, 36, 30, .2); }
.shop-code figcaption span { color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.shop-code figcaption strong { margin-top: 10px; font-family: var(--serif); font-size: clamp(25px, 2vw, 34px); font-weight: 400; line-height: 1.05; }
.shop-code figcaption p { margin: 17px 0 0; color: var(--muted); font-size: 9px; line-height: 1.7; letter-spacing: .07em; text-transform: uppercase; }
.shop-code figcaption b { position: absolute; right: 3px; bottom: 13px; color: var(--coral); font-family: var(--serif); font-size: 26px; font-weight: 400; }
.shop-code-taobao figcaption { padding-bottom: 20px; }
.shop-code-taobao figcaption > b { display: none; }
.shop-channel-action { display: inline-flex; width: fit-content; min-height: 44px; align-items: center; gap: 9px; margin-top: 12px; color: var(--coral); border-bottom: 1px solid currentColor; font-size: 10px; font-weight: 700; letter-spacing: .05em; }
.shop-channel-action span { color: inherit !important; font-size: 14px !important; letter-spacing: 0 !important; }
.shop-code.is-visible::before { animation: qr-backplate-breathe 4.8s ease-in-out 1.1s infinite alternate; }
.shop-code.is-visible .shop-code-frame { animation: qr-frame-in 1s cubic-bezier(.16, 1, .3, 1) .12s both; }

.closing { position: relative; padding: 170px 0 110px; overflow: hidden; color: var(--paper); background: radial-gradient(circle at 82% 20%, rgba(189, 101, 67, .16), transparent 28%), linear-gradient(145deg, #173027, #091c15); }
.closing::after { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px); background-size: 92px 92px; }
.closing-word { position: absolute; top: clamp(18px, 1.8vw, 34px); right: 0; left: 0; width: 100%; aspect-ratio: 1000 / 270; overflow: visible; pointer-events: none; }
.closing-word-mark { display: block; width: 100%; height: 100%; overflow: visible; }
.closing-word-mark text { fill: rgba(255, 255, 255, .04); font-family: var(--serif); font-size: 180px; font-weight: 400; letter-spacing: 0; }
.closing-inner { position: relative; z-index: 1; }
.closing .eyebrow { color: #d69a74; }
.closing .display { max-width: 940px; }
.closing .display em { color: #d69a74; }
.closing-contact { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 70px; color: rgba(255, 255, 255, .7); font-size: 14px; }
.closing-contact a { border-bottom: 1px solid rgba(255, 255, 255, .25); }
.round-link { position: absolute; right: 0; bottom: 0; width: 142px; height: 142px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; transition: color .2s ease, background .2s ease; }
.round-link:hover { color: var(--forest); background: var(--paper); }
.round-link span { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.round-link b { position: absolute; top: 25px; right: 27px; font-size: 20px; }

.site-footer { padding: 65px 0 25px; color: rgba(255, 250, 243, .68); border-top: 1px solid rgba(255, 255, 255, .1); background: #071710; }
.footer-inner { width: var(--shell); margin: auto; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr); gap: clamp(56px, 7vw, 120px); }
.footer-brand { max-width: 440px; }
.footer-logo { width: 195px; height: auto; }
.footer-affiliation { width: 195px; margin: 8px 0 25px !important; color: #d69a74 !important; font-size: 9px !important; letter-spacing: .13em; text-align: center; text-transform: uppercase; white-space: nowrap; }
.footer-brand > p:not(.footer-affiliation) { font-family: var(--serif); font-size: 21px; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 25px; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.5; font-style: normal; }
.footer-aside { min-width: 0; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); align-content: start; gap: 13px 35px; font-size: 13px; }
.footer-links a:hover { color: var(--paper); }
.footer-qr-panel { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); }
.footer-qr-panel > p { margin: 0 0 16px; color: #d69a74; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.footer-qr-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.footer-qr-card { min-width: 0; margin: 0; padding: 10px; border: 1px solid rgba(230, 185, 146, .24); background: rgba(255, 250, 241, .035); }
.footer-qr-card > div { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; padding: 6px; background: #fff; }
.footer-qr-card img { display: block; width: 100%; height: 100%; object-fit: contain; image-rendering: -webkit-optimize-contrast; }
.footer-qr-card figcaption { display: flex; min-height: 49px; flex-direction: column; justify-content: center; gap: 3px; padding-top: 9px; }
.footer-qr-card strong { color: rgba(255, 250, 243, .9); font-size: 11px; font-weight: 650; }
.footer-qr-card span { color: rgba(255, 250, 243, .48); font-size: 8px; line-height: 1.4; }
.footer-note { grid-column: 1 / -1; margin: 25px 0 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 10px; }

.page-zh .display,
.page-zh .hero-caption h1,
.page-zh .product-copy h3,
.page-zh .story-principles dd,
.page-zh .place-meta-inner strong,
.page-zh .shop-code figcaption strong,
.page-zh .footer-brand > p:not(.footer-affiliation) {
    font-family: var(--serif-zh);
}
.page-zh .footer-brand > p:not(.footer-affiliation) { font-size: clamp(17px, 1.45vw, 21px); white-space: nowrap; }
.page-zh .display { font-size: clamp(50px, 5.2vw, 86px); line-height: 1.09; letter-spacing: -.05em; }
.page-zh .display em { font-style: normal; }
.page-zh .eyebrow { letter-spacing: .13em; }
.page-zh .hero-caption { width: min(700px, 51vw); }
.page-zh .hero-caption h1 { max-width: 660px; font-size: clamp(50px, 4.5vw, 72px); line-height: 1.18; letter-spacing: -.025em; word-spacing: 0; }
.page-zh .story-intro,
.page-zh .collection-head > p,
.page-zh .roastery-intro > p,
.page-zh .shop-copy > p:not(.eyebrow) { line-height: 1.9; }
.page-zh .story-principles dd { font-size: 19px; letter-spacing: .015em; }
.page-zh .product-copy h3 { font-size: clamp(30px, 2.65vw, 41px); line-height: 1.22; letter-spacing: -.035em; }
.page-zh .product-copy > p:not(.eyebrow) { min-height: 94px; line-height: 1.85; }
.page-zh .sample-stamp,
.page-zh .sample-photo figcaption { letter-spacing: .08em; }
.page-zh .place-meta-inner strong { line-height: 1.3; }
.page-zh .roastery-heading .display { max-width: 920px; font-size: clamp(50px, 5vw, 82px); line-height: 1.13; }
.page-zh .factory-card figcaption h3 { font-family: var(--serif-zh); font-size: clamp(28px, 2.35vw, 38px); line-height: 1.25; letter-spacing: -.035em; }
.page-zh .factory-card figcaption p { line-height: 1.85; }
.page-zh .factory-steps li { font-family: var(--sans-zh); letter-spacing: .02em; }
.page-zh .collection-display { text-wrap: balance; }
.page-zh .shop-copy .display { font-size: clamp(50px, 3.2vw, 56px); line-height: 1.14; letter-spacing: -.04em; }
.page-zh .shop-display > span,
.page-zh .shop-display > em { white-space: nowrap; }
.page-zh .shop-code figcaption strong { line-height: 1.25; }
.page-zh .closing .display { max-width: 920px; font-size: clamp(48px, 4.7vw, 76px); line-height: 1.15; letter-spacing: -.035em; }
.page-zh .round-link span { letter-spacing: .04em; }

.js .reveal { opacity: 0; transform: translateY(32px); clip-path: inset(0 0 10% 0); transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1), clip-path .95s cubic-bezier(.16, 1, .3, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; clip-path: inset(0); }
.js .display.reveal,
.js .display.reveal.is-visible { clip-path: none; }

@keyframes hero-reveal {
    from { opacity: .2; clip-path: inset(0 14% 0 14%); }
    to { opacity: 1; clip-path: inset(0); }
}
@keyframes hero-caption-in {
    from { opacity: 0; transform: translate3d(-28px, 24px, 0); }
    to { opacity: 1; transform: none; }
}
@keyframes story-drift {
    from { transform: scale(1.08) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-1.1%, -.7%, 0); }
}
@keyframes sample-main-in {
    from { opacity: 0; transform: translate3d(-32px, 48px, 0) rotate(-2deg); }
    to { opacity: 1; transform: rotate(-.45deg); }
}
@keyframes sample-detail-in {
    from { opacity: 0; transform: translate3d(34px, 54px, 0) rotate(2.4deg); }
    to { opacity: 1; transform: rotate(.7deg); }
}
@keyframes place-cinema {
    from { transform: scale(1) translate3d(0, 0, 0); }
    to { transform: scale(1.012) translate3d(-.18%, -.1%, 0); }
}
@keyframes qr-frame-in {
    from { opacity: 0; transform: translate3d(30px, 18px, 0) rotate(1.8deg); }
    to { opacity: 1; transform: none; }
}
@keyframes qr-backplate-breathe {
    from { transform: rotate(-1.15deg) translate3d(-3px, 2px, 0); box-shadow: 0 24px 70px rgba(0, 0, 0, .24); }
    to { transform: rotate(-.45deg) translate3d(2px, -2px, 0); box-shadow: 0 32px 90px rgba(0, 0, 0, .34); }
}

@media (max-width: 1120px) {
    :root { --shell: min(100% - 40px, 920px); --shop-qr-size: clamp(300px, 42vw, 380px); }
    .site-nav { gap: 17px; }
    .hero-caption { left: 42px; width: min(560px, 45vw); }
    .story-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    .story-atmosphere { aspect-ratio: 3 / 4; }
    .collection-head { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 50px; }
    .collection-track { scroll-padding-inline: 20px; padding-inline: 20px; }
    .sample-grid { grid-template-columns: 1fr .82fr; }
    .sample-copy { grid-row: 1 / 3; }
    .sample-photo-detail { display: none; }
    .place-meta-inner { grid-template-columns: auto 1fr; }
    .place-meta-inner .text-link { grid-column: 2; justify-self: end; }
    .roastery-head { grid-template-columns: 1.05fr .75fr; gap: 54px; }
    .roastery-grid { grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); }
    .factory-card-process .factory-media { min-height: 650px; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-copy { max-width: 720px; }
    .shop-channels { width: min(100%, 880px); margin-inline: auto; }
}

@media (max-width: 860px) {
    :root { --shell: calc(100vw - 34px); --shop-qr-size: min(360px, calc(100vw - 84px)); }
    .site-header { padding: 13px 0; }
    .brand img { width: 155px; }
    .brand span { font-size: 7px; }
    .menu-toggle { position: relative; z-index: 102; display: block; }
    .site-nav { position: fixed; z-index: 101; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 25px; color: var(--paper); background: rgba(15, 36, 27, .985); font-family: var(--serif); font-size: 31px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-18px); transition: opacity .3s ease, visibility .3s ease, transform .4s cubic-bezier(.16, 1, .3, 1); }
    .site-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
    .site-nav .nav-cta { font-family: var(--sans); font-size: 12px; border-color: rgba(255, 255, 255, .5); }
    .page-zh .site-nav { font-family: var(--serif-zh); font-size: 29px; }
    .page-zh .site-nav .nav-cta { font-family: var(--sans-zh); }
    .language-switch { margin: 4px 0 1px; color: rgba(255, 250, 241, .58); font-family: var(--sans); font-size: 11px; }
    .site-header.is-scrolled .site-nav.is-open .nav-cta { border-color: rgba(255, 255, 255, .5); }
    .site-nav > a:not(.nav-cta)::after { display: none; }
    .menu-toggle[aria-expanded="true"] > span { background: var(--paper); }
    .site-header.is-scrolled .menu-toggle[aria-expanded="true"] > span { background: var(--paper); }
    .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

    .hero { padding: 0; }
    .hero-visual { width: 100%; height: auto; min-height: 0; max-height: none; border-inline: 0; border-radius: 0; }
    .hero-picture { position: relative; inset: auto; aspect-ratio: 1 / 1; }
    .hero-picture img { object-position: center 52%; animation: none; transform: none; }
    .hero-visual::after { display: none; }
    .hero-caption { position: static; width: 100%; padding: 30px 17px 42px; background: linear-gradient(135deg, #651821, #310d12); animation: none; }
    .hero-caption .eyebrow { margin-bottom: 14px; }
    .hero-caption h1 { max-width: 620px; font-size: clamp(48px, 11.5vw, 68px); }
    .page-zh .hero-caption { width: 100%; }
    .page-zh .hero-caption h1 { max-width: 680px; font-size: clamp(44px, 9vw, 64px); line-height: 1.16; }
    .hero-link { margin-top: 23px; }

    .story, .collection, .sample-section, .roastery-section, .shop-section { padding-block: 110px; }
    .story-grid, .collection-head { grid-template-columns: 1fr; }
    .story-copy { padding: 0; }
    .story-atmosphere { aspect-ratio: 4 / 3; order: 2; }
    .story-atmosphere img { object-position: 70% center; }
    .collection-head > p { margin-top: 30px; }
    .collection-toolbar { margin-top: 45px; }
    .product-card { flex-basis: min(74vw, 440px); }
    .sample-grid { grid-template-columns: 1fr 1fr; }
    .sample-copy { grid-row: auto; grid-column: 1 / -1; margin-bottom: 25px; }
    .sample-photo-main { height: 550px; }
    .place-meta-inner { min-height: 0; grid-template-columns: 1fr; align-items: start; gap: 8px; padding-block: 20px; }
    .place-meta-inner strong { text-align: left; }
    .place-meta-inner .text-link { grid-column: auto; justify-self: start; margin-top: 5px; }
    .roastery-head { grid-template-columns: 1fr; gap: 32px; }
    .roastery-intro { max-width: 650px; padding-bottom: 0; }
    .roastery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "cooling cooling"
            "room process";
        gap: 18px;
        margin-top: 54px;
    }
    .factory-card-process { height: auto; }
    .factory-card-room .factory-media { aspect-ratio: 4 / 3; }
    .factory-card-process .factory-media { min-height: 0; flex: none; aspect-ratio: 9 / 16; }
    .factory-card figcaption { padding: 25px; }
    .factory-card figcaption h3 { font-size: clamp(27px, 4vw, 36px); }
    .factory-card-process figcaption h3 { font-size: clamp(25px, 3.6vw, 33px); }
    .factory-steps { margin-top: 22px; }
    .shop-grid { gap: 55px; }
    .shop-code figcaption { min-height: 150px; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-aside { max-width: 760px; }
    .page-zh .display { font-size: clamp(46px, 8.4vw, 70px); }
    .page-zh .roastery-heading .display { font-size: clamp(46px, 8vw, 68px); }
    .page-zh .shop-copy .display { font-size: clamp(44px, 6.4vw, 56px); }
}

@media (max-width: 560px) {
    :root { --shell: calc(100vw - 28px); --shop-qr-size: min(100%, 350px); }
    body { font-size: 15px; }
    .display { font-size: clamp(44px, 13.2vw, 66px); line-height: .97; }
    .hero { padding-top: 0; }
    .hero-caption { padding: 27px 14px 36px; }
    .hero-caption h1 { max-width: 350px; font-size: clamp(46px, 13vw, 58px); }
    .page-zh .display { font-size: clamp(42px, 11.5vw, 58px); line-height: 1.12; }
    .page-zh .hero-caption h1 { max-width: 360px; font-size: clamp(39px, 10.7vw, 52px); line-height: 1.18; }
    .page-zh .shop-copy .display { font-size: clamp(34px, 9.8vw, 48px); }
    .page-zh .footer-brand > p:not(.footer-affiliation) { font-size: clamp(14px, 4vw, 17px); }
    .hero-link { width: auto; }
    .button { width: 100%; }
    .story-atmosphere { aspect-ratio: 4 / 5; border-width: 5px; }
    .story-principles dd { font-size: 18px; }
    .collection-toolbar { align-items: flex-end; }
    .collection-toolbar > p { max-width: 210px; }
    .collection-controls { align-items: flex-end; }
    .collection-arrows button { width: 42px; height: 42px; }
    .collection-track { gap: 14px; scroll-padding-inline: 14px; padding-inline: 14px; }
    .collection-group { gap: 14px; }
    .product-card { flex-basis: 86vw; }
    .product-copy { padding: 27px 23px 31px; }
    .product-copy > p:not(.eyebrow) { min-height: 0; }
    .page-zh .product-copy > p:not(.eyebrow) { min-height: 0; }
    .sample-grid { grid-template-columns: 1fr; }
    .sample-photo-main { height: auto; aspect-ratio: 4 / 5; border-width: 5px; }
    .roastery-section::before { top: 25px; font-size: 24vw; }
    .roastery-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "cooling"
            "room"
            "process";
        gap: 24px;
    }
    .factory-card-room .factory-media { aspect-ratio: 16 / 10; }
    .factory-card-process .factory-media { width: 100%; aspect-ratio: 9 / 16; }
    .factory-mark { top: 14px; left: 14px; width: 112px; }
    .factory-mark-right { right: 14px; left: auto; }
    .factory-index { top: 15px; right: 13px; }
    .factory-card-cooling .factory-index { right: auto; left: 13px; }
    .factory-video-controls { right: 9px; bottom: 9px; left: 9px; grid-template-columns: 36px minmax(0, 1fr) 36px 36px; gap: 6px; padding: 5px 7px; }
    .factory-video-controls time { display: none; }
    .factory-video-controls button { width: 36px; height: 36px; }
    .factory-card figcaption { padding: 24px 22px 27px; }
    .factory-card figcaption h3,
    .factory-card-process figcaption h3 { font-size: 29px; }
    .page-zh .roastery-heading .display { font-size: clamp(41px, 11vw, 56px); line-height: 1.18; }
    .page-zh .factory-card figcaption h3 { font-size: 27px; }
    .shop-channels { width: calc(100% - 8px); grid-template-columns: 1fr; gap: 34px; }
    .shop-code { padding: 21px; }
    .shop-code::before { top: -9px; left: -9px; width: 72%; height: 58%; }
    .shop-code-frame { width: min(100%, var(--shop-qr-size)); margin-inline: auto; padding: 8px; }
    .shop-code-mat { padding: 5px; }
    .shop-code img { width: 100%; margin-inline: auto; }
    .shop-code figcaption { min-width: 0; min-height: 0; padding: 20px 36px 17px 6px; }
    .shop-code figcaption strong { font-size: 30px; }
    .shop-code figcaption p { margin-top: 15px; }
    .shop-channel-action { margin-top: 10px; }
    .closing { padding: 125px 0 215px; }
    .closing-contact { flex-direction: column; gap: 12px; }
    .round-link { right: auto; bottom: -148px; left: 0; }
    .footer-qr-grid { gap: 8px; }
    .footer-qr-card { padding: 7px; }
    .footer-qr-card > div { padding: 4px; }
    .footer-qr-card strong { font-size: 10px; }
    .footer-qr-card span { font-size: 7px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .hero-visual,
    .hero-visual::after,
    .hero-caption,
    .hero-picture img,
    .story-atmosphere img,
    .sample-photo-main,
    .sample-photo-detail,
    .place-picture img,
    .shop-code::before,
    .shop-code-frame { animation: none !important; transform: none !important; }
    .js .reveal { opacity: 1; transform: none; clip-path: none; }
}
