:root {
  --ink: #11110f;
  --paper: #f8f7f3;
  --warm: #e9e4dc;
  --line: rgba(17, 17, 15, .18);
  --serif: Didot, "Bodoni 72", "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --jp: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--jp); font-size: 14px; line-height: 1.9; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 8px 14px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { height: 84px; padding: 0 clamp(24px, 4vw, 68px); background: rgba(248,247,243,.94); display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 30; border-bottom: 1px solid rgba(0,0,0,.05); }
.site-header.is-sticky { position: fixed; top: 0; left: 0; right: 0; height: 68px; box-shadow: 0 6px 30px rgba(0,0,0,.06); backdrop-filter: blur(12px); animation: headerIn .35s ease; }
@keyframes headerIn { from { transform: translateY(-100%); } }
.brand { display: inline-flex; flex-direction: column; align-items: center; width: max-content; line-height: 1; }
.brand > span { font: 30px/1 var(--serif); letter-spacing: -.04em; }
.brand small { font: 7px/1.4 var(--serif); letter-spacing: .24em; margin-top: 5px; }
.desktop-nav { display: flex; gap: clamp(24px, 3vw, 48px); font: 10px/1 var(--serif); letter-spacing: .04em; }
.desktop-nav a { position: relative; padding-block: 14px; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 1px; background: currentColor; transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.menu-button { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .3s, opacity .3s; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero { min-height: calc(100svh - 84px); height: 780px; max-height: 920px; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,15,.18), transparent 58%); }
.hero-copy { position: relative; z-index: 2; width: min(620px, 47vw); margin-left: clamp(44px, 7vw, 128px); color: #0d0d0c; }
.eyebrow { margin: 0 0 10px; font: 9px/1.2 var(--serif); letter-spacing: .22em; }
.hero h1 { margin: 0; font: clamp(72px, 8.5vw, 142px)/.75 var(--serif); letter-spacing: -.07em; font-weight: 400; }
.hero-jp { margin: 32px 0 30px; font-size: 15px; letter-spacing: .1em; }
.hero-jp::before { content: ""; display: block; width: 56px; height: 1px; margin-bottom: 22px; background: currentColor; }
.hero-actions { display: flex; gap: 12px; }
.button { min-height: 48px; padding: 0 28px; border: 1px solid var(--ink); display: inline-flex; align-items: center; justify-content: center; font: 11px/1 var(--jp); letter-spacing: .08em; cursor: pointer; transition: background .25s, color .25s, transform .25s; }
.button:hover { transform: translateY(-2px); }
.button-light { background: rgba(255,255,255,.9); color: var(--ink); border-color: rgba(255,255,255,.9); }
.button-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #fff; color: var(--ink); }
.scroll-cue { position: absolute; z-index: 2; right: 28px; bottom: 40px; writing-mode: vertical-rl; font: 8px/1 var(--sans); letter-spacing: .25em; }
.scroll-cue::after { content: ""; display: inline-block; width: 1px; height: 46px; margin-top: 12px; background: currentColor; animation: scrollLine 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }

.feature { height: 470px; position: relative; display: flex; align-items: center; overflow: hidden; }
.feature > img { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: center; }
.feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,247,243,.98) 0%, rgba(248,247,243,.85) 25%, transparent 58%); }
.feature-copy { position: relative; z-index: 2; margin-left: clamp(44px, 7vw, 128px); width: 360px; }
.feature h2, .section-heading h2, .story h2, .contact-panel h2 { margin: 0; font: 45px/.88 var(--serif); font-weight: 400; letter-spacing: -.04em; }
.feature .lead { font-size: 15px; letter-spacing: .08em; }
.feature-copy > p:not(.eyebrow):not(.lead) { font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; padding-bottom: 3px; border-bottom: 1px solid; font-size: 11px; letter-spacing: .08em; }
.text-link::after { content: "\2192"; transition: transform .25s; }
.text-link:hover::after { transform: translateX(5px); }

.section { padding: 100px clamp(24px, 7vw, 128px); }
.section-heading { text-align: center; margin-bottom: 46px; }
.section-heading p:last-child { margin-top: 20px; font-size: 12px; letter-spacing: .06em; }
.filter-list { display: flex; justify-content: center; gap: 0; margin-bottom: 26px; border-bottom: 1px solid var(--line); }
.filter-button { padding: 12px clamp(12px, 2.5vw, 36px); border: 0; border-bottom: 1px solid transparent; background: none; font: 10px/1 var(--serif); letter-spacing: .1em; cursor: pointer; margin-bottom: -1px; }
.filter-button.is-active { border-color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-card { min-width: 0; transition: opacity .25s, transform .25s; }
.product-card.is-hidden { display: none; }
.product-image { aspect-ratio: 1 / 1.07; overflow: hidden; background: #ded9d0; }
.product-image img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.product-card:hover img { transform: scale(1.04); }
.product-image-a img { object-position: 60% center; }
.product-image-b img { object-position: 78% center; transform: scale(1.12); }
.product-image-c img { object-position: 80% 78%; }
.product-image-d img { object-position: 68% 65%; transform: scale(1.35); }
.product-card h3 { display: inline-block; margin: 14px 0 0; font: 24px/1 var(--serif); font-weight: 400; }
.product-card > p:last-child { margin: 4px 0 0; font-size: 9px; letter-spacing: .1em; }
.product-no { float: right; margin: 18px 0 0; font: 9px/1 var(--serif); }

.story { padding-top: 10px; display: grid; grid-template-columns: 1fr 1fr; }
.story-card { min-height: 560px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.story-card > img { height: 100%; object-fit: cover; }
.story-card > div { padding: clamp(32px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.story-card h2 { font-size: clamp(44px, 5vw, 77px); }
.story-card p:not(.eyebrow) { font-size: 12px; }
.story-dark { color: #fff; background: #121210; }
.story-dark img { filter: grayscale(1); object-position: 68% center; }
.story-light { background: #e9e5de; }
.story-light img { object-position: 65% center; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding-top: 0; padding-bottom: 0; }
.service-card { min-height: 310px; padding: clamp(28px, 3vw, 48px); border: 1px solid var(--line); }
.service-card + .service-card { border-left: 0; }
.service-card h2 { margin: 0 0 20px; font-size: 19px; font-weight: 400; letter-spacing: .06em; }
.service-card p:not(.eyebrow) { font-size: 12px; }
.service-image { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; align-items: center; }
.pouch { aspect-ratio: .8; background: linear-gradient(140deg, #d2c2a9, #eee2cf); border-radius: 44% 44% 48% 48% / 20% 20% 12% 12%; display: grid; place-items: center; box-shadow: inset 12px 0 24px rgba(255,255,255,.3), 0 18px 30px rgba(85,66,43,.12); transform: rotate(-3deg); }
.pouch::before { content: ""; position: absolute; }
.pouch span { font: italic 15px/1 var(--serif); color: #7b674c; }

.journal { background: #f0ede7; }
.journal-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 10px; }
.journal-item { margin: 0; overflow: hidden; }
.journal-item img { height: 340px; object-fit: cover; filter: saturate(.75); transition: filter .3s, transform .6s; }
.journal-item:nth-child(1) img { object-position: 76% center; }
.journal-item:nth-child(2) img { object-position: 68% center; }
.journal-item:nth-child(3) img { object-position: 63% center; }
.journal-item:nth-child(4) img { object-position: 82% center; }
.journal-item:hover img { filter: saturate(1); transform: scale(1.03); }
.journal-item figcaption { padding: 12px 0; display: flex; justify-content: space-between; font: 10px/1 var(--serif); letter-spacing: .1em; border-bottom: 1px solid var(--line); }

.faq-contact { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(320px, .7fr); gap: clamp(50px, 7vw, 100px); }
.align-left { text-align: left; margin-bottom: 26px; }
.align-left h2 { font-size: 30px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 20px 4px; border: 0; background: none; display: flex; justify-content: space-between; gap: 20px; text-align: left; cursor: pointer; font-size: 12px; }
.faq-item i { flex: 0 0 16px; width: 16px; height: 16px; position: relative; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; top: 7px; left: 1px; width: 14px; height: 1px; background: currentColor; transition: transform .25s; }
.faq-item i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-answer > p { overflow: hidden; margin: 0; padding: 0 32px 0 4px; font-size: 12px; color: #5d5a55; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 22px; }
.contact-panel { padding: 52px; background: #131311; color: #fff; align-self: start; }
.contact-panel h2 { font-size: 55px; }
.contact-panel > p:not(.eyebrow) { margin: 24px 0 30px; font-size: 12px; }
.contact-panel .button { width: 100%; }
.contact-panel small { display: block; margin-top: 20px; font-size: 9px; line-height: 1.7; opacity: .65; }

.site-footer { padding: 64px clamp(24px, 7vw, 128px) 28px; color: #fff; background: #0d0d0c; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; }
.brand-footer { align-items: flex-start; }
.brand-footer > span { font-size: 32px; }
.site-footer nav { display: flex; gap: 32px; font: 9px/1 var(--serif); }
.site-footer > p { grid-column: 1 / -1; margin: 12px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); display: flex; justify-content: space-between; font: 8px/1 var(--sans); letter-spacing: .1em; opacity: .65; }

.contact-dialog { width: min(560px, calc(100% - 32px)); border: 0; padding: 0; background: var(--paper); box-shadow: 0 24px 80px rgba(0,0,0,.25); }
.contact-dialog::backdrop { background: rgba(18,17,15,.68); backdrop-filter: blur(3px); }
.dialog-shell { position: relative; padding: clamp(30px, 7vw, 58px); }
.dialog-shell h2 { margin: 0 0 26px; font-size: 28px; font-weight: 400; }
.dialog-shell label { display: block; margin-top: 16px; font-size: 11px; letter-spacing: .05em; }
.dialog-shell input, .dialog-shell textarea { width: 100%; margin-top: 5px; border: 0; border-bottom: 1px solid var(--line); padding: 10px; background: #fff; border-radius: 0; }
.dialog-shell textarea { border: 1px solid var(--line); resize: vertical; }
.dialog-close { position: absolute; right: 18px; top: 14px; border: 0; background: none; font: 30px/1 var(--serif); cursor: pointer; }
.form-note { font-size: 10px; color: #6a6761; }
.form-submit { width: 100%; }
.toast { position: fixed; z-index: 80; left: 50%; bottom: 30px; padding: 13px 20px; color: #fff; background: #151513; font-size: 11px; transform: translate(-50%, 30px); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 22px; }
  .hero h1 { font-size: 9vw; }
  .story { grid-template-columns: 1fr; }
  .story-card { min-height: 480px; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 13px; }
  .site-header { height: 64px; padding-inline: 20px; }
  .site-header.is-sticky { height: 58px; }
  .brand > span { font-size: 24px; }
  .brand small { font-size: 5.5px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-menu { display: block; position: fixed; z-index: 20; inset: 64px 0 auto; padding: 20px 24px 32px; background: rgba(248,247,243,.98); transform: translateY(-130%); transition: transform .45s cubic-bezier(.2,.7,.2,1); box-shadow: 0 18px 30px rgba(0,0,0,.08); }
  .site-header.is-sticky + .mobile-menu { inset-block-start: 58px; }
  .mobile-menu.is-open { transform: none; }
  .mobile-menu a { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line); font: 20px/1 var(--serif); }
  .mobile-menu a span { font: 9px/1 var(--jp); letter-spacing: .1em; }

  .hero { min-height: 780px; height: calc(100svh - 64px); max-height: 900px; align-items: end; }
  .hero > img { object-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(18,16,13,.72), transparent 58%); }
  .hero-copy { width: auto; margin: 0 24px 58px; color: #fff; }
  .hero h1 { font-size: clamp(60px, 19vw, 84px); }
  .hero-jp { margin: 26px 0 24px; font-size: 13px; }
  .hero-jp::before { margin-bottom: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .button { width: 100%; }
  .scroll-cue { display: none; }

  .feature { height: 650px; align-items: end; }
  .feature > img { object-position: 68% center; }
  .feature::after { background: linear-gradient(0deg, rgba(248,247,243,.98) 0%, rgba(248,247,243,.93) 32%, transparent 70%); }
  .feature-copy { margin: 0 24px 34px; width: auto; }
  .feature h2 { font-size: 38px; }
  .feature .lead { font-size: 13px; }
  .feature-copy > p:not(.eyebrow):not(.lead) { display: none; }

  .section { padding: 76px 20px; }
  .section-heading { margin-bottom: 32px; }
  .section-heading h2 { font-size: 38px; }
  .filter-list { overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .filter-button { flex: 0 0 auto; padding-inline: 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 10px; }
  .product-image { aspect-ratio: .85; }
  .product-card h3 { font-size: 19px; }

  .story { padding-top: 0; }
  .story-card { min-height: 560px; grid-template-columns: 1fr; grid-template-rows: 1.15fr .85fr; }
  .story-card > div { padding: 32px 26px; }
  .story-card h2 { font-size: 48px; }
  .story-light > div { order: 2; }
  .story-light > img { order: 1; }

  .services { grid-template-columns: 1fr; padding-inline: 20px; }
  .service-card { min-height: 0; padding: 36px 28px; }
  .service-card + .service-card { border-left: 1px solid var(--line); border-top: 0; }
  .journal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .journal-item img { height: 220px; }

  .faq-contact { grid-template-columns: 1fr; gap: 60px; }
  .contact-panel { padding: 38px 28px; }
  .contact-panel h2 { font-size: 48px; }

  .site-footer { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }
  .site-footer nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 390px) {
  .hero { min-height: 700px; }
  .hero-copy { margin-inline: 18px; }
  .hero h1 { font-size: 58px; }
  .button { padding-inline: 18px; }
  .story-card { min-height: 520px; }
  .service-image { grid-template-columns: 1fr 100px; }
  .site-footer > p { flex-direction: column; gap: 16px; }
}

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