@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Shippori+Mincho:wght@400;500;600&display=swap");

:root {
  --ink: #172226;
  --ink-deep: #101a1e;
  --ink-soft: #26363b;
  --paper: #f3f0e9;
  --paper-light: #faf9f6;
  --white: #fff;
  --sand: #d6c7ad;
  --copper: #a88452;
  --copper-dark: #826437;
  --muted: #6f7777;
  --line: rgba(23, 34, 38, .15);
  --max: 1320px;
  --serif: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "DM Sans", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper-light); font: 400 15px/1.9 var(--sans); letter-spacing: .025em; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
body.menu-open .site-header { color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--ink); transition: top .2s; }
.skip-link:focus { top: 14px; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 100px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.2); transition: height .4s var(--ease), color .4s, background .4s, box-shadow .4s; }
.site-header.is-scrolled,
.subpage .site-header,
.login-body .site-header { height: 78px; color: var(--ink); background: rgba(250,249,246,.94); border-color: var(--line); box-shadow: 0 10px 40px rgba(16,26,30,.06); backdrop-filter: blur(18px); }
.header-inner { width: min(calc(100% - 72px), 1480px); height: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.wordmark { font: 600 28px/1 Georgia, "Times New Roman", serif; letter-spacing: .28em; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font: italic 28px/1 Georgia, serif; }
.brand-copy { display: grid; gap: 6px; line-height: 1; }
.brand-copy strong { font: 600 15px/1 var(--sans); letter-spacing: .24em; }
.brand-copy small { font-size: 9px; letter-spacing: .15em; opacity: .7; }
.global-nav { display: flex; align-items: center; gap: clamp(20px,2.2vw,38px); font-size: 11px; font-weight: 600; letter-spacing: .09em; }
.global-nav > a { position: relative; padding: 12px 0; white-space: nowrap; }
.global-nav > a:not(.nav-login)::after { content: ""; position: absolute; right: 100%; bottom: 6px; left: 0; height: 1px; background: currentColor; transition: right .35s var(--ease); }
.global-nav > a:hover::after,
.global-nav > a.is-current::after { right: 0; }
.global-nav .nav-login { min-width: 154px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 14px 19px; border: 1px solid rgba(255,255,255,.55); transition: color .25s, background .25s, border-color .25s; }
.global-nav .nav-login b { font-size: 14px; font-weight: 400; }
.site-header.is-scrolled .nav-login,
.subpage .nav-login,
.login-body .nav-login { color: #fff; background: var(--ink); border-color: var(--ink); }
.global-nav .nav-login:hover { color: #fff; background: var(--copper); border-color: var(--copper); }
.menu-button { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-button > span:not(.sr-only) { display: block; height: 1px; margin: 7px 0; background: currentColor; transition: transform .3s, opacity .3s; }

/* Hero */
.hero { position: relative; height: max(760px, 100svh); min-height: 760px; overflow: hidden; color: #fff; background: var(--ink-deep); }
.hero-art,
.hero-panel-main,
.hero-shade { position: absolute; inset: 0; }
.hero-panel-main { background: url("../images/hero-store.jpg") center 42%/cover no-repeat; transform: scale(1.025); animation: hero-settle 2.2s var(--ease) both; }
.hero-shade { background: linear-gradient(90deg, rgba(9,16,19,.94) 0%, rgba(9,16,19,.83) 33%, rgba(9,16,19,.28) 70%, rgba(9,16,19,.38) 100%), linear-gradient(0deg, rgba(5,10,12,.62), transparent 48%); }
.hero-shade::after { content: ""; position: absolute; inset: 0; opacity: .14; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
@keyframes hero-settle { from { transform: scale(1.08); opacity: .7; } to { transform: scale(1.025); opacity: 1; } }
.hero-inner { position: relative; z-index: 2; width: min(calc(100% - 120px), var(--max)); height: 100%; margin: auto; display: grid; grid-template-columns: minmax(0,1fr); align-items: center; padding: 130px 0 92px; }
.hero-copy { max-width: 850px; }
.eyebrow { margin-bottom: 22px; color: var(--copper); font: 600 10px/1.6 var(--sans); letter-spacing: .25em; text-transform: uppercase; }
.hero .eyebrow { color: #d9c8aa; }
.hero h1 { margin-bottom: 34px; font: 400 clamp(54px,6.3vw,94px)/1.22 var(--serif); letter-spacing: .035em; }
.hero h1 span,
.hero h1 em { display: block; }
.hero h1 em { color: #e3d4bc; font-style: normal; }
.hero-lead { margin-bottom: 42px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,.45); color: rgba(255,255,255,.82); font-size: 14px; line-height: 2.15; letter-spacing: .065em; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button { min-width: 196px; min-height: 58px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; padding: 16px 21px; border: 0; cursor: pointer; font-size: 12px; font-weight: 600; letter-spacing: .08em; transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s; }
.button b { font-size: 16px; font-weight: 400; }
.button:hover { transform: translateY(-3px); box-shadow: 0 15px 32px rgba(0,0,0,.14); }
.button-gold { color: #fff; background: var(--copper); }
.button-gold:hover { background: #bd9762; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: var(--copper-dark); }
.text-link { display: inline-flex; align-items: center; gap: 17px; padding: 6px 0; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 600; letter-spacing: .07em; transition: color .25s, gap .35s var(--ease); }
.text-link:hover { gap: 24px; color: var(--copper); }
.light-link { color: #fff; }
.hero-product { align-self: end; margin-bottom: 70px; background: rgba(255,255,255,.95); box-shadow: 0 30px 70px rgba(0,0,0,.3); }
.hero-product-image { aspect-ratio: .86; background: #ece9e2 url("../images/suijoh-1.jpg") center/cover; }
.hero-product-caption { display: grid; padding: 20px 22px 22px; color: var(--ink); }
.hero-product-caption span { margin-bottom: 9px; color: var(--copper); font-size: 8px; font-weight: 600; letter-spacing: .2em; }
.hero-product-caption strong { font: 500 21px/1.3 var(--serif); }
.hero-product-caption small { margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.hero-bottom { position: absolute; right: 4vw; bottom: 34px; left: 4vw; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .16em; }
.hero-bottom p { margin: 0; }
.hero-bottom span { margin-right: 18px; color: #fff; font: italic 17px Georgia, serif; }
.scroll-sign::after { content: ""; width: 78px; height: 1px; display: inline-block; margin-left: 14px; vertical-align: middle; background: rgba(255,255,255,.35); }

/* Brand rail */
.brand-rail { overflow: hidden; color: var(--ink); background: #ddcdb3; border-bottom: 1px solid rgba(23,34,38,.12); }
.brand-rail > div { min-width: max-content; display: flex; align-items: center; gap: 40px; padding: 17px 0; animation: rail 30s linear infinite; }
.brand-rail span { font-size: 9px; font-weight: 600; letter-spacing: .18em; }
.brand-rail i { font-size: 7px; font-style: normal; opacity: .45; }
@keyframes rail { to { transform: translateX(-38%); } }

/* Shared sections */
.section { padding: 150px 0; }
.section-inner { width: min(calc(100% - 80px), var(--max)); margin: auto; }
.section-no { margin: 0 0 5px; color: var(--copper); font: italic 20px/1 Georgia, serif; }
.section-label { padding-top: 9px; }
.section-heading { display: grid; grid-template-columns: 225px 1fr; align-items: end; margin-bottom: 76px; }
.section-heading h2,
.intro-copy h2,
.statement h2,
.category-copy h2,
.contact-aside h2 { margin: 0; font: 400 clamp(39px,4.5vw,64px)/1.45 var(--serif); letter-spacing: .035em; }
.heading-kicker,
.intro-kicker { margin-bottom: 12px; color: #9a8a71; font-size: 8px; font-weight: 600; letter-spacing: .23em; }

/* Philosophy */
.intro { position: relative; overflow: hidden; background: var(--paper-light); }
.intro::before { content: "EIGHT ARC"; position: absolute; top: 40px; right: -20px; color: rgba(23,34,38,.025); font: 500 clamp(100px,18vw,280px)/1 var(--sans); letter-spacing: -.07em; white-space: nowrap; }
.intro-layout { position: relative; display: grid; grid-template-columns: 175px minmax(400px,1fr) 370px; gap: clamp(40px,6vw,95px); align-items: start; }
.intro-copy { max-width: 680px; }
.intro-copy > p:not(.intro-kicker) { max-width: 600px; margin: 38px 0; color: var(--muted); font-size: 15px; line-height: 2.2; }
.intro-media { position: relative; padding-bottom: 95px; }
.intro-photo { aspect-ratio: .82; background: url("../images/suijoh-5.jpg") center/cover; filter: saturate(.72) contrast(.95); }
.intro-media > p { position: absolute; right: -30px; bottom: 20px; width: 185px; height: 185px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0; color: #fff; background: var(--ink); border-radius: 50%; }
.intro-media > p span { font-size: 8px; letter-spacing: .2em; }
.intro-media > p strong { margin: 5px 0; font: 400 38px/1 var(--serif); }
.intro-media > p small { color: rgba(255,255,255,.6); font-size: 7px; letter-spacing: .14em; }

/* Reasons */
.values { position: relative; overflow: hidden; color: #fff; background: var(--ink); }
.values::before { content: "WHY"; position: absolute; right: -2vw; bottom: -9vw; color: rgba(255,255,255,.025); font: 600 26vw/1 var(--sans); letter-spacing: -.08em; }
.values .section-heading { position: relative; }
.values .section-heading h2 { color: #f0e9dc; }
.values .heading-kicker { color: #9aa5a4; }
.values .eyebrow { color: #cab28c; }
.value-cards { position: relative; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.value-card { position: relative; min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; padding: 35px 42px 38px; border-right: 1px solid rgba(255,255,255,.2); transition: color .35s, background .35s; }
.value-card:last-child { border-right: 0; }
.value-card::before { content: ""; position: absolute; inset: 100% 0 0; background: #e2d2b7; transition: inset .5s var(--ease); }
.value-card:hover { color: var(--ink); }
.value-card:hover::before { inset: 0; }
.value-card > * { position: relative; z-index: 1; }
.card-index { color: #cab28c; font: italic 24px/1 Georgia, serif; transition: color .35s; }
.value-card:hover .card-index { color: var(--copper-dark); }
.value-card-copy .en-label { margin-bottom: 14px; color: #aab3b3; font-size: 8px; font-weight: 600; letter-spacing: .22em; transition: color .35s; }
.value-card:hover .en-label { color: var(--copper-dark); }
.value-card h3 { margin: 0 0 25px; font: 400 27px/1.45 var(--serif); letter-spacing: .05em; }
.value-card-copy > p:last-child { max-width: 330px; margin: 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 2.1; transition: color .35s; }
.value-card:hover .value-card-copy > p:last-child { color: rgba(23,34,38,.67); }
.card-arrow { position: absolute; right: 36px; top: 33px; font-size: 17px; }

@media (min-width: 841px) {
  .value-card { min-height: 340px; justify-content: flex-start; }
  .value-card-copy { margin-top: 82px; }
}

/* Products */
.products-preview { overflow: hidden; background: var(--paper); }
.product-heading { grid-template-columns: 225px minmax(400px,710px) auto; gap: 30px; }
.product-heading > div:nth-child(2) > p:last-child { max-width: 520px; margin: 25px 0 0; color: var(--muted); font-size: 13px; }
.slider-controls { align-self: end; display: flex; gap: 9px; padding-bottom: 4px; }
.slider-controls button { width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: color .25s, background .25s, transform .25s; }
.slider-controls button:hover { color: #fff; background: var(--ink); transform: translateY(-2px); }
.product-slider { width: calc(100% - max(40px, calc((100vw - var(--max))/2))); margin-left: max(40px, calc((100vw - var(--max))/2)); display: flex; gap: 22px; overflow-x: auto; padding: 0 40px 38px 0; scrollbar-width: none; scroll-snap-type: x mandatory; }
.product-slider::-webkit-scrollbar { display: none; }
.product-card { flex: 0 0 clamp(275px,27vw,390px); scroll-snap-align: start; }
.product-card-large { flex-basis: clamp(330px,34vw,490px); }
.product-card a { display: block; }
.product-image,
.gallery-main,
.gallery-sub { position: relative; overflow: hidden; display: grid; place-items: center; color: rgba(23,34,38,.38); background-color: #e7e1d7; background-position: center; background-repeat: no-repeat; background-size: cover; }
.product-image { aspect-ratio: .77; transition: transform .55s var(--ease), filter .55s; }
.product-card:not(.product-card-large) .product-image { margin-top: 70px; }
.product-card:hover .product-image { transform: translateY(-5px); filter: saturate(1.06); }
.product-image::after,
.gallery-main::after,
.gallery-sub::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(23,34,38,.08); pointer-events: none; }
.product-image i { position: absolute; right: 16px; top: 14px; z-index: 1; color: rgba(255,255,255,.88); font: italic 16px Georgia,serif; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.product-image-1 { background-image: url("../images/suijoh-1.jpg"); }
.product-image-2 { background-image: url("../images/suijoh-2.jpg"); }
.product-image-3 { background-image: url("../images/collection-1.png"), linear-gradient(145deg,#efece5,#dcd4c7); background-size: auto 76%, cover; }
.product-image-4 { background-image: url("../images/collection-4.png"), linear-gradient(145deg,#e4ded4,#f5f2ec); background-size: auto 76%, cover; }
.product-image-5 { background-image: radial-gradient(circle at 76% 20%,#f5f1e8,transparent 30%),linear-gradient(140deg,#bfb4a2,#e5ddd0); }
.product-image-6 { background-image: radial-gradient(circle at 20% 80%,#f5f3ed,transparent 32%),linear-gradient(140deg,#adbab5,#dce4df); }
.product-meta { display: flex; align-items: center; justify-content: space-between; padding: 22px 2px 17px; border-bottom: 1px solid var(--line); }
.product-meta p { margin: 0 0 5px; color: var(--copper-dark); font-size: 8px; font-weight: 600; letter-spacing: .18em; }
.product-meta h3 { margin: 0; font: 400 18px/1.5 var(--serif); letter-spacing: .035em; }
.product-meta > span { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; transition: color .25s, background .25s; }
.product-card:hover .product-meta > span { color: #fff; background: var(--ink); }
.slider-footer { display: flex; align-items: center; gap: 42px; margin-top: 14px; }
.slider-progress { height: 1px; flex: 1; overflow: hidden; background: rgba(23,34,38,.15); }
.slider-progress span { display: block; width: 100%; height: 100%; background: var(--ink); transform: scaleX(.18); transform-origin: left; transition: transform .25s; }

/* Sample-inspired continuous collection slides */
.collection-showcase { padding: 130px 0 145px; overflow: hidden; background: #fff; scroll-margin-top: 76px; }
.collection-heading { width: min(calc(100% - 80px),var(--max)); margin: 0 auto 56px; text-align: center; }
.collection-heading h2 { margin: 0; font: 400 clamp(34px,4vw,54px)/1.5 var(--serif); letter-spacing: .04em; }
.marquee { width: 100%; overflow: hidden; }
.marquee-track { --marquee-gap: 20px; width: max-content; display: flex; align-items: stretch; gap: var(--marquee-gap); padding: 0 calc(var(--marquee-gap)/2); animation: collection-scroll 55s linear infinite; will-change: transform; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-photo img { width: 270px; height: 267px; flex: 0 0 auto; object-fit: cover; border-radius: 11px; box-shadow: 0 9px 30px rgba(23,34,38,.08); }
.collection-title { padding: 125px 24px 52px; text-align: center; }
.collection-title p { margin-bottom: 10px; color: var(--copper-dark); font-size: 8px; font-weight: 600; letter-spacing: .23em; }
.collection-title h2 { margin: 0 0 9px; font: 600 clamp(30px,3.4vw,46px)/1.3 var(--sans); letter-spacing: -.035em; }
.collection-title span { color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.marquee-product .marquee-track { --marquee-gap: 28px; animation-duration: 65s; }
.marquee-product img { width: 150px; height: 285px; flex: 0 0 auto; object-fit: contain; border-radius: 10px; background: #f5f3ef; box-shadow: 0 8px 25px rgba(23,34,38,.07); }
.collection-note { width: min(calc(100% - 44px),var(--max)); margin: 46px auto 0; color: var(--muted); font-size: 10px; letter-spacing: .07em; text-align: center; }
@keyframes collection-scroll { to { transform: translateX(calc(-50% - (var(--marquee-gap)/2))); } }

/* Contact banner + footer */
.contact-banner { position: relative; overflow: hidden; padding: 140px 0; color: #fff; background: #1f3035; }
.contact-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%,rgba(181,146,93,.15),transparent 34%); }
.contact-banner-glow { position: absolute; right: 7vw; top: 50%; color: rgba(255,255,255,.025); font: italic 430px/1 Georgia,serif; transform: translateY(-50%); }
.contact-banner-inner { position: relative; width: min(calc(100% - 80px),var(--max)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.contact-overline { margin-bottom: 16px; color: rgba(255,255,255,.38); font-size: 8px; font-weight: 600; letter-spacing: .24em; }
.contact-banner h2 { margin: 0 0 22px; color: #f2ebdf; font: 400 clamp(38px,4.4vw,62px)/1.45 var(--serif); letter-spacing: .04em; }
.contact-banner-inner > div > p:last-child { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; }
.circle-link { width: 190px; height: 190px; flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; transition: color .35s, background .35s, border-color .35s, transform .5s var(--ease); }
.circle-link span { font-size: 12px; letter-spacing: .08em; }
.circle-link b { font-size: 19px; font-weight: 400; }
.circle-link:hover { color: #fff; background: var(--copper); border-color: var(--copper); transform: rotate(-5deg) scale(1.03); }
.site-footer { padding: 82px max(40px,calc((100vw - var(--max))/2)) 28px; color: #fff; background: #0d1518; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 90px; padding-bottom: 65px; }
.brand-light { color: #fff; }
.footer-brand p { margin: 32px 0 0; color: rgba(255,255,255,.45); font-size: 11px; line-height: 2; }
.footer-nav { display: grid; grid-template-columns: repeat(2,minmax(160px,1fr)); align-content: start; gap: 17px 48px; font-size: 11px; }
.footer-nav a { transition: color .2s, transform .2s; }
.footer-nav a:hover { color: #d7bd96; transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.32); font-size: 8px; letter-spacing: .16em; }
.footer-bottom p { margin: 0; }

/* Subpage heroes */
.page-hero { position: relative; min-height: 570px; overflow: hidden; display: flex; align-items: end; padding: 190px 0 90px; color: var(--ink); background: var(--paper); }
.page-hero::before { content: ""; position: absolute; top: 0; right: 0; width: 38%; height: 100%; background: linear-gradient(135deg,rgba(214,199,173,.55),rgba(243,240,233,.1)); clip-path: polygon(22% 0,100% 0,100% 100%,0 100%); }
.page-hero.compact { min-height: 500px; }
.page-hero-inner { position: relative; z-index: 1; width: min(calc(100% - 80px),var(--max)); margin: auto; }
.page-hero h1 { max-width: 900px; margin: 0 0 20px; font: 400 clamp(48px,6vw,82px)/1.35 var(--serif); letter-spacing: .04em; }
.page-hero-inner > p:last-child { color: var(--muted); font-size: 13px; }
.page-hero-shape { position: absolute; right: max(25px,calc((100vw - var(--max))/2)); bottom: -75px; color: rgba(168,132,82,.1); font: italic 390px/1 Georgia,serif; }
.subpage .section-tint { background: var(--paper); }
.statement-grid { display: grid; grid-template-columns: 225px 1fr; }
.statement-grid > div:last-child { max-width: 780px; }
.statement-grid h2 { margin-bottom: 42px; }
.statement-grid > div:last-child > p { color: var(--muted); font-size: 15px; line-height: 2.25; }
.signature { margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--ink) !important; }
.signature strong { font: 500 18px/1.5 var(--serif); letter-spacing: .08em; }
.company-table { margin: 0; border-top: 1px solid var(--ink); }
.company-table > div { display: grid; grid-template-columns: 245px 1fr; padding: 29px 15px; border-bottom: 1px solid var(--line); }
.company-table dt { font-size: 12px; font-weight: 600; letter-spacing: .06em; }
.company-table dd { margin: 0; color: #475155; font-size: 13px; }
.data-note { margin: 24px 0 0; color: #929897; font-size: 10px; }
.narrow { max-width: 950px; }
.lead-copy { margin: 0; font: 400 clamp(27px,3.4vw,45px)/1.9 var(--serif); letter-spacing: .045em; text-align: center; }
.category-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,7vw,105px); align-items: center; }
.category-reverse .category-copy { order: 2; }
.category-reverse .category-gallery { order: 1; }
.category-number { margin-bottom: 7px; color: #9b8b71; font: italic 14px Georgia,serif; }
.category-copy > p:not(.eyebrow,.category-number,.category-note) { margin: 30px 0; color: var(--muted); font-size: 14px; line-height: 2.15; }
.category-note { padding: 16px 18px; border-left: 2px solid var(--copper); color: #7d817f; background: rgba(255,255,255,.55); font-size: 10px; }
.category-gallery { position: relative; min-height: 630px; }
.gallery-main { width: 78%; height: 570px; }
.gallery-sub { position: absolute; right: 0; bottom: 0; width: 44%; height: 330px; border: 12px solid var(--paper-light); box-shadow: 0 24px 55px rgba(16,26,30,.15); }
.section-tint .gallery-sub { border-color: var(--paper); }

/* Forms + legal */
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(55px,8vw,120px); align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-aside h2 { margin-bottom: 26px; font-size: 42px; }
.contact-aside > p:not(.eyebrow,.section-no) { color: var(--muted); }
.contact-notes { margin-top: 46px; padding-top: 27px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.contact-notes p { margin-bottom: 19px; }
.contact-notes strong { color: var(--ink); }
.contact-form { padding: clamp(28px,5vw,58px); background: var(--paper); box-shadow: 0 25px 70px rgba(23,34,38,.06); }
.form-row { margin-bottom: 28px; }
.form-row > label { display: block; margin-bottom: 10px; font-size: 12px; font-weight: 600; }
.form-row label span { margin-left: 9px; padding: 3px 7px; color: #fff; background: var(--copper); font-size: 7px; }
.form-row label small { margin-left: 8px; color: #929897; font-weight: 400; }
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],select,textarea { width: 100%; border: 0; border-bottom: 1px solid #b9b7af; border-radius: 0; outline: 0; color: var(--ink); background: rgba(255,255,255,.68); transition: border-color .25s,background .25s,box-shadow .25s; }
input[type="text"],input[type="email"],input[type="tel"],input[type="password"],select { height: 58px; padding: 0 16px; }
textarea { min-height: 190px; padding: 15px 16px; resize: vertical; }
input:focus,select:focus,textarea:focus { border-color: var(--copper); background: #fff; box-shadow: 0 8px 26px rgba(23,34,38,.06); }
.select-wrap { position: relative; }
.select-wrap::after { content: "⌄"; position: absolute; right: 18px; top: 14px; pointer-events: none; }
select { appearance: none; }
.privacy-check,.remember-check { display: flex; align-items: flex-start; gap: 10px; margin: 9px 0 26px; font-size: 11px; cursor: pointer; }
.privacy-check input,.remember-check input { margin-top: 5px; accent-color: var(--copper); }
.privacy-check a { border-bottom: 1px solid currentColor; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { min-height: 26px; margin: 0 0 12px; font-size: 11px; }
.form-status.is-error { color: #a7473c; }
.form-status.is-success { color: #2a7350; }
.submit-button { width: 100%; }
.submit-button:disabled { cursor: wait; opacity: .6; }
.recaptcha-note { margin: 15px 0 0; color: #929897; font-size: 8px; line-height: 1.65; }
.pending-alert { margin-bottom: 55px; padding: 25px 28px; border: 1px solid #d6c29d; background: #fffaf0; }
.pending-alert strong { display: block; margin-bottom: 7px; color: #7a6038; }
.pending-alert p { margin: 0; color: #746f64; font-size: 11px; }
.pending-text { color: #9b713b; font-size: 11px; }
.privacy-section { margin-top: 95px; padding-top: 55px; border-top: 1px solid var(--ink); scroll-margin-top: 100px; }
.privacy-section h2 { font: 500 31px/1.5 var(--serif); }
.privacy-section p { color: var(--muted); font-size: 13px; }

/* Login */
.login-body { min-height: 100vh; background: var(--paper); }
.login-main { min-height: calc(100vh - 58px); display: grid; grid-template-columns: 1.08fr .92fr; padding-top: 78px; }
.login-visual { position: relative; min-height: 760px; display: flex; align-items: flex-end; padding: 80px max(45px,7vw); color: #fff; background: linear-gradient(0deg,rgba(5,12,15,.82),rgba(5,12,15,.04) 70%),url("../images/hero-store.jpg") center/cover; }
.login-visual::before { content: "08"; position: absolute; top: 35px; right: 45px; color: rgba(255,255,255,.18); font: italic 150px/1 Georgia,serif; }
.login-visual-content { position: relative; z-index: 1; }
.login-visual h1 { margin-bottom: 25px; font: 400 clamp(39px,4.2vw,62px)/1.48 var(--serif); }
.login-visual-content > p:last-child { margin: 0; color: rgba(255,255,255,.7); }
.login-panel { display: grid; place-items: center; padding: 75px max(35px,6vw); background: var(--paper-light); }
.login-box { width: min(100%,470px); }
.login-box h2 { margin-bottom: 15px; font: 400 44px/1.45 var(--serif); }
.login-intro { margin-bottom: 39px; color: var(--muted); font-size: 12px; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 70px; }
.password-wrap button { position: absolute; top: 9px; right: 8px; height: 38px; padding: 0 11px; border: 0; color: var(--muted); background: transparent; cursor: pointer; font-size: 10px; }
.remember-check { color: var(--muted); }
.forgot-link { display: block; margin-top: 19px; color: var(--muted); font-size: 11px; text-align: center; text-decoration: underline; text-underline-offset: 4px; }
.new-member { margin-top: 55px; padding-top: 35px; border-top: 1px solid var(--line); }
.new-member h3 { margin-bottom: 9px; font: 500 22px/1.5 var(--serif); }
.new-member > p:not(.eyebrow) { color: var(--muted); font-size: 11px; }
.new-member .text-link { margin-top: 8px; font-size: 11px; }
.login-footer { min-height: 58px; display: flex; align-items: center; justify-content: space-between; padding: 0 35px; color: rgba(255,255,255,.38); background: #0d1518; font-size: 8px; letter-spacing: .14em; }
.login-footer p { margin: 0; }

/* Reveal motion */
.has-js .reveal-target { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.has-js .reveal-target.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .global-nav { gap: 16px; }
  .global-nav .nav-login { min-width: 132px; padding: 12px 14px; }
  .hero-inner { width: calc(100% - 80px); grid-template-columns: 1fr; }
  .intro-layout { grid-template-columns: 130px 1fr 310px; gap: 45px; }
  .section-heading { grid-template-columns: 175px 1fr; }
  .product-heading { grid-template-columns: 170px 1fr auto; }
  .category-grid { gap: 55px; }
}

@media (max-width: 840px) {
  .site-header,.site-header.is-scrolled,.subpage .site-header,.login-body .site-header { height: 70px; }
  .header-inner { width: calc(100% - 36px); }
  .brand-mark { width: 38px; height: 38px; font-size: 22px; }
  .wordmark { font-size: 23px; }
  .brand-copy strong { font-size: 13px; }
  .menu-button { position: relative; z-index: 2; display: block; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .global-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 18px; color: var(--ink); background: rgba(243,240,233,.985); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .3s,visibility .3s; }
  .global-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
  .global-nav > a { font: 400 21px/1.4 var(--serif); }
  .global-nav .nav-login { min-width: 220px; margin-top: 12px; padding: 17px 22px; color: #fff; background: var(--ink); font: 600 12px/1 var(--sans); }
  .hero { height: auto; min-height: 780px; }
  .hero-panel-main { background-position: 57% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(9,16,19,.9),rgba(9,16,19,.43)),linear-gradient(0deg,rgba(5,10,12,.65),transparent); }
  .hero-inner { width: calc(100% - 44px); grid-template-columns: 1fr; padding: 165px 0 110px; }
  .hero-copy { max-width: 680px; }
  .hero-product { display: none; }
  .hero h1 { font-size: clamp(45px,10vw,70px); }
  .hero-bottom { right: 22px; left: 22px; }
  .section { padding: 105px 0; }
  .section-inner { width: calc(100% - 44px); }
  .section-heading,.intro-layout,.statement-grid,.product-heading { grid-template-columns: 1fr; gap: 25px; }
  .intro-media { width: min(72%,430px); margin: 35px 0 0 auto; }
  .value-cards { grid-template-columns: 1fr; }
  .value-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .value-card:last-child { border-bottom: 0; }
  .slider-controls { justify-self: end; }
  .contact-banner-inner { width: calc(100% - 44px); }
  .contact-banner h2 { font-size: 38px; }
  .circle-link { width: 150px; height: 150px; }
  .footer-inner { grid-template-columns: 1fr; gap: 50px; }
  .page-hero { min-height: 450px; padding: 150px 0 70px; }
  .page-hero-inner { width: calc(100% - 44px); }
  .page-hero-shape { right: -20px; font-size: 290px; }
  .category-grid,.contact-layout { grid-template-columns: 1fr; }
  .category-copy { order: 1 !important; }
  .category-gallery { order: 2 !important; min-height: 540px; }
  .contact-aside { position: static; }
  .login-main { grid-template-columns: 1fr; }
  .login-visual { min-height: 520px; padding-top: 140px; }
  .login-panel { padding-top: 90px; padding-bottom: 90px; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .brand-copy small { display: none; }
  .wordmark { font-size: 20px; letter-spacing: .24em; }
  .hero { min-height: 720px; }
  .hero-inner { padding-top: 135px; }
  .hero h1 { font-size: 41px; line-height: 1.35; }
  .hero-lead { font-size: 12px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-bottom p:first-child { display: none; }
  .hero-bottom { justify-content: flex-end; }
  .brand-rail > div { gap: 26px; }
  .section { padding: 82px 0; }
  .section-heading h2,.intro-copy h2,.statement h2,.category-copy h2 { font-size: 32px; }
  .intro-media { width: 86%; }
  .intro-media > p { right: -12px; width: 150px; height: 150px; }
  .value-card { min-height: 275px; padding: 28px 25px; }
  .card-arrow { top: 26px; right: 24px; }
  .product-slider { width: calc(100% - 22px); margin-left: 22px; gap: 16px; padding-right: 22px; }
  .product-card,.product-card-large { flex-basis: 78vw; }
  .product-card:not(.product-card-large) .product-image { margin-top: 0; }
  .collection-showcase { padding: 90px 0 105px; }
  .collection-heading { width: calc(100% - 44px); margin-bottom: 38px; text-align: left; }
  .collection-heading h2 { font-size: 31px; }
  .marquee-track { --marquee-gap: 12px; animation-duration: 42s; }
  .marquee-photo img { width: 205px; height: 203px; border-radius: 8px; }
  .collection-title { padding: 88px 20px 38px; }
  .collection-title h2 { font-size: 28px; }
  .marquee-product .marquee-track { --marquee-gap: 16px; animation-duration: 52s; }
  .marquee-product img { width: 130px; height: 247px; }
  .slider-footer { align-items: stretch; flex-direction: column; }
  .slider-footer .button { align-self: flex-end; }
  .contact-banner { padding: 95px 0; }
  .contact-banner-inner { align-items: flex-start; flex-direction: column; }
  .contact-banner h2 { font-size: 31px; }
  .circle-link { align-self: flex-end; width: 135px; height: 135px; }
  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .company-table > div { grid-template-columns: 1fr; gap: 8px; padding: 23px 5px; }
  .category-gallery { min-height: 450px; }
  .gallery-main { width: 88%; height: 410px; }
  .gallery-sub { width: 49%; height: 245px; border-width: 8px; }
  .contact-form { padding: 30px 20px; }
  .login-visual { min-height: 430px; padding: 120px 22px 48px; }
  .login-visual h1 { font-size: 34px; }
  .login-panel { padding: 70px 22px; }
  .login-box h2 { font-size: 36px; }
  .login-footer { align-items: flex-start; flex-direction: column; gap: 5px; padding-top: 12px; padding-bottom: 12px; }
}

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