/* egen the mountain — site styles
   Tone: 生成り (off-white) ground, warm near-black ink, thin tracked uppercase sans.
--------------------------------------------------------------------------- */
:root {
  --bg: #faf9f5;
  --bg-2: #f3f1ea;
  --ink: #2a2825;
  --ink-2: #5d5a54;
  --ink-3: #8d8a82;
  --line: #e6e2d9;
  --tint-blue: #dfe4ea;
  --tint-sand: #e9e4dc;
  --tint-sage: #e3e8e0;
  --tint-rose: #f0e3df;
  --font-en: "Jost", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --track: 0.18em;
  --max: 1440px;
  --pad: clamp(20px, 3vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 300;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { color: var(--ink-2); }
h1, h2, h3, h4 { margin: 0; font-weight: 300; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.en { font-family: var(--font-en); }
.caps { font-family: var(--font-en); text-transform: uppercase; letter-spacing: var(--track); }
.eyebrow { font-family: var(--font-en); text-transform: uppercase; letter-spacing: var(--track); font-size: 11px; color: var(--ink-3); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 84px;
}
.nav { display: flex; gap: 32px; font-size: 12px; }
.nav--right { justify-content: flex-end; }
.nav a { padding: 6px 0; border-bottom: 1px solid transparent; }
.nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--ink); color: var(--ink); }
.brand { display: block; }
.brand img { height: 34px; width: auto; }

.menu-toggle { display: none; }
.menu-btn { display: none; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: 0 32px;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  cursor: pointer; transition: background .2s ease, color .2s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--ink-2); color: var(--bg); }
.btn--block { width: 100%; }
.link-u { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.link-u:hover { border-bottom-color: var(--ink); }

/* Sections --------------------------------------------------------------- */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section-title { font-family: var(--font-en); text-transform: uppercase; letter-spacing: 0.24em; font-size: clamp(20px, 2vw, 26px); font-weight: 300; margin-bottom: 40px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head .section-title { margin-bottom: 0; }

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; height: clamp(420px, 60vw, 820px); overflow: hidden; background: var(--tint-blue); }
.hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero__caption { position: absolute; left: var(--pad); bottom: 28px; color: #fff; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--font-en); opacity: .9; text-shadow: 0 1px 8px rgba(0,0,0,.3); }

.statement { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.statement h1 { font-family: var(--font-en); text-transform: uppercase; letter-spacing: 0.1em; font-size: clamp(32px, 4.6vw, 64px); line-height: 1.25; margin-bottom: 24px; font-weight: 300; }
.statement p { color: var(--ink-2); font-size: 14px; line-height: 2.1; letter-spacing: 0.06em; margin-bottom: 32px; }
.statement .btn { width: min(320px, 100%); }

/* Feature (recommend) ---------------------------------------------------- */
.feature { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.feature__media { background: var(--tint-sand); aspect-ratio: 4 / 3; overflow: hidden; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__body { display: flex; flex-direction: column; gap: 20px; }
.feature__body h3 { font-family: var(--font-en); font-size: clamp(22px, 2.2vw, 28px); letter-spacing: 0.08em; line-height: 1.4; }
.feature__body .price { font-family: var(--font-en); font-size: 15px; letter-spacing: 0.08em; }
.feature__body p { color: var(--ink-2); font-size: 13px; }
.feature--flip .feature__media { order: 2; }

/* Product grid ----------------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { display: flex; flex-direction: column; gap: 14px; }
.card__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--tint-sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card__media img { transform: scale(1.03); }
.card__name { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.1em; }
.card__name small { display: block; font-family: var(--font-jp); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; margin-top: 2px; }
.card__price { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.08em; color: var(--ink-2); }
.card--tint-blue .card__media { background: var(--tint-blue); }
.card--tint-sage .card__media { background: var(--tint-sage); }
.card--tint-rose .card__media { background: var(--tint-rose); }

/* Product page ----------------------------------------------------------- */
.crumbs { display: flex; gap: 12px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding-top: 24px; }
.crumbs a { color: var(--ink-3); } .crumbs a:hover { color: var(--ink); }
.crumbs span:last-child { color: var(--ink); }

.product { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 5vw, 72px); padding: 32px 0 clamp(64px, 8vw, 112px); }
.gallery { display: flex; flex-direction: column; gap: 16px; }
.gallery__main { aspect-ratio: 1 / 1; background: var(--tint-sand); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery__thumbs a { aspect-ratio: 1 / 1; background: var(--tint-sand); overflow: hidden; display: block; }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pinfo { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; position: sticky; top: 108px; align-self: start; }
.pinfo h1 { font-family: var(--font-en); font-size: clamp(26px, 2.6vw, 34px); letter-spacing: 0.08em; line-height: 1.3; }
.pinfo .sub { font-size: 12px; color: var(--ink-3); letter-spacing: 0.06em; margin-top: 6px; }
.pinfo .price { font-family: var(--font-en); font-size: 18px; letter-spacing: 0.08em; }
.pinfo .price small { font-family: var(--font-jp); font-size: 11px; color: var(--ink-3); margin-left: 6px; }
.pinfo .lead { color: var(--ink-2); font-size: 13px; }
.variants { display: flex; flex-direction: column; gap: 10px; }
.swatches { display: flex; gap: 10px; }
.swatch { width: 32px; height: 32px; border-radius: 999px; border: 1px solid rgba(0,0,0,.08); }
.swatch--on { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3px var(--ink); }

.buy { display: flex; flex-direction: column; gap: 10px; }
.buy__note { font-size: 11px; color: var(--ink-3); line-height: 1.7; }
.stores-button { min-height: 56px; }
.pay { display: flex; flex-wrap: wrap; gap: 12px 16px; font-size: 11px; color: var(--ink-3); }

.specs { border-top: 1px solid var(--line); }
.specs div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; letter-spacing: 0.04em; }
.specs dt { color: var(--ink-3); flex: 0 0 auto; }
.specs dd { margin: 0; text-align: right; }
.plinks { display: flex; gap: 24px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

.details { display: flex; flex-direction: column; gap: clamp(64px, 8vw, 96px); padding-bottom: clamp(64px, 8vw, 112px); }
.detail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 64px); align-items: center; }
.detail__media { aspect-ratio: 4 / 3; background: var(--tint-sand); overflow: hidden; }
.detail__media img { width: 100%; height: 100%; object-fit: cover; }
.detail__body { display: flex; flex-direction: column; gap: 16px; }
.detail__body h3 { font-size: clamp(20px, 2vw, 24px); line-height: 1.6; letter-spacing: 0.06em; }
.detail__body p { color: var(--ink-2); font-size: 13px; }
.detail--flip .detail__media { order: 2; }

.notes { background: var(--bg-2); padding: clamp(40px, 5vw, 64px); display: grid; grid-template-columns: 1fr 2fr; gap: 40px; }
.notes h3 { font-size: 16px; letter-spacing: 0.08em; }
.notes p { font-size: 12px; color: var(--ink-2); line-height: 1.9; }

/* Story / text pages ----------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 4vw, 64px); align-items: center; }
.split__media { aspect-ratio: 4 / 3; background: var(--tint-sage); overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { display: flex; flex-direction: column; gap: 20px; }
.split__body h2 { font-size: clamp(22px, 2.4vw, 26px); line-height: 1.6; letter-spacing: 0.06em; }
.split__body p { color: var(--ink-2); font-size: 13px; }

.page-head { padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line); margin-bottom: clamp(40px, 5vw, 64px); }
.page-head h1 { font-family: var(--font-en); text-transform: uppercase; letter-spacing: 0.24em; font-size: clamp(22px, 2.4vw, 30px); }
.page-head .jp { font-size: 12px; color: var(--ink-3); margin-top: 8px; letter-spacing: 0.08em; }
.prose { max-width: 760px; }
.prose h2 { font-size: 18px; letter-spacing: 0.08em; line-height: 1.7; margin: clamp(40px, 5vw, 56px) 0 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.prose h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 { font-size: 14px; font-weight: 400; letter-spacing: 0.06em; margin: 28px 0 8px; }
.prose p { color: var(--ink-2); font-size: 13px; margin-bottom: 14px; }
.prose ul { padding-left: 1.2em; list-style: disc; color: var(--ink-2); font-size: 13px; margin-bottom: 14px; }
.prose li { margin-bottom: 4px; }
.prose .sig { font-family: var(--font-en); letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: var(--ink-3); margin-top: 32px; }
.prose dl { display: grid; grid-template-columns: 160px 1fr; gap: 0; border-top: 1px solid var(--line); font-size: 13px; }
.prose dt, .prose dd { padding: 12px 0; border-bottom: 1px solid var(--line); margin: 0; }
.prose dt { color: var(--ink-3); }
.prose dd { color: var(--ink-2); }
.story-lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.9; letter-spacing: 0.06em; color: var(--ink); margin-bottom: 40px; }

/* FAQ -------------------------------------------------------------------- */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 18px 0; font-size: 14px; letter-spacing: 0.06em; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-en); color: var(--ink-3); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 20px; color: var(--ink-2); font-size: 13px; }

/* Forms ------------------------------------------------------------------ */
.form { display: grid; gap: 20px; max-width: 640px; }
.form label { display: grid; gap: 8px; font-size: 12px; letter-spacing: 0.06em; }
.form input, .form textarea {
  font: inherit; font-size: 14px; padding: 14px 16px; border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 0; outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--ink); }
.form textarea { min-height: 160px; resize: vertical; }

/* Footer ----------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(48px, 5vw, 56px) 0 32px; margin-top: auto; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; font-size: 12px; }
.site-footer .col { display: flex; flex-direction: column; gap: 10px; }
.site-footer .col h4 { font-family: var(--font-en); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px; color: var(--ink-3); margin-bottom: 4px; }
.site-footer .col a { width: fit-content; }
.site-footer .brand img { height: 30px; }
.site-footer .tagline { font-family: var(--font-en); letter-spacing: 0.18em; text-transform: uppercase; font-size: 10px; color: var(--ink-3); margin-top: 10px; }
.site-footer .legal { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); border-top: 1px solid var(--line); margin-top: 48px; padding-top: 24px; }

/* Layout helpers --------------------------------------------------------- */
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }
.dots { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.dots span { width: 6px; height: 6px; border-radius: 999px; background: var(--line); }
.dots span.on { background: var(--ink); }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product { grid-template-columns: 1fr; }
  .pinfo { position: static; }
  .notes { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  body { font-size: 13px; }
  .site-header .wrap { grid-template-columns: auto 1fr auto; height: 68px; }
  .brand { justify-self: center; }
  .brand img { height: 28px; }
  .nav { display: none; }
  .menu-btn {
    display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-left: -8px;
    cursor: pointer;
  }
  .menu-btn svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 1.2; fill: none; }
  .nav--right { display: flex; justify-content: flex-end; gap: 16px; font-size: 11px; }
  .nav--right a:not(.cart) { display: none; }
  .menu-toggle:checked ~ .mobile-nav { display: flex; }
  .mobile-nav {
    display: none; flex-direction: column; gap: 0;
    position: absolute; left: 0; right: 0; top: 68px; background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 16px;
  }
  .mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; letter-spacing: 0.12em; }
  .mobile-nav a:last-child { border-bottom: 0; }
  .grid, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .feature, .detail, .split { grid-template-columns: 1fr; }
  .feature--flip .feature__media, .detail--flip .detail__media { order: 0; }
  .gallery__thumbs { gap: 8px; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .site-footer .cols .col:first-child { grid-column: 1 / -1; }
  .prose dl { grid-template-columns: 1fr; }
  .prose dt { padding-bottom: 0; border-bottom: 0; }
  .hero { height: 62vw; min-height: 300px; }
}
@media (min-width: 769px) { .mobile-nav { display: none !important; } }

/* STORES BUTTON --------------------------------------------------------- */
.stores-slot { display: flex; flex-direction: column; gap: 6px; }
.stores-slot + .stores-slot { margin-top: 14px; }
.stores-slot__label { display: flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.06em; color: var(--ink-2); }
.swatch--sm { width: 16px; height: 16px; }
.stores-slot .storesjp-button { min-height: 56px; }
.stores-slot iframe { max-width: 100% !important; }

/* New badge ---------------------------------------------------------------- */
.card__media { position: relative; }
.badge-new {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  width: 48px; height: 48px; border-radius: 999px; background: #f2d94b; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}

/* Statement sub ---------------------------------------------------------- */
.statement__sub { font-size: 15px; letter-spacing: 0.12em; color: var(--ink); margin-top: -12px; margin-bottom: 20px !important; }
.tagline--jp { font-family: var(--font-jp) !important; text-transform: none !important; letter-spacing: 0.12em !important; font-size: 12px !important; color: var(--ink-2) !important; }

/* News ------------------------------------------------------------------- */
.news-list { border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a { display: flex; gap: 28px; align-items: baseline; padding: 16px 0; font-size: 13px; letter-spacing: 0.04em; }
.news-list time { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.12em; color: var(--ink-3); flex: 0 0 auto; }
.news-list a:hover span { color: var(--ink-2); }
.news-entry { padding: 28px 0; border-bottom: 1px solid var(--line); }
.news-entry h2 { border-top: 0; padding-top: 0; margin: 8px 0 10px; font-size: 16px; }
.news-entry p { margin-bottom: 0; }
@media (max-width: 768px) { .news-list a { flex-direction: column; gap: 4px; } }

.statement__jp { font-family: var(--font-jp) !important; text-transform: none !important; letter-spacing: 0.08em !important; font-weight: 300; font-size: clamp(28px, 3.2vw, 44px) !important; line-height: 1.6 !important; }
.statement__sub { font-family: var(--font-en); text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px !important; color: var(--ink-3) !important; }

/* Product lines (Camp / Hike) ------------------------------------------- */
.card__line { font-family: var(--font-en); text-transform: uppercase; letter-spacing: 0.2em; font-size: 10px; color: var(--ink-3); }
.line-block + .line-block { margin-top: clamp(80px, 9vw, 128px); }
.line-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.line-title { display: flex; align-items: baseline; gap: 16px; font-weight: 300; }
.line-title .caps { font-size: 16px; letter-spacing: 0.24em; }
.line-title small { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; }
.line-section { padding-bottom: clamp(48px, 6vw, 80px); scroll-margin-top: 100px; }
.line-section + .line-section { border-top: 1px solid var(--line); padding-top: clamp(80px, 9vw, 128px); }
.line-intro { display: flex; flex-direction: column; gap: 12px; max-width: 640px; margin-bottom: 32px; }
.line-intro p { font-size: 13px; color: var(--ink-2); }
.line-nav { display: flex; gap: 24px; margin-top: 20px; font-size: 11px; }
.line-nav a { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.line-nav a:hover { border-bottom-color: var(--ink); }
.line-tag { display: inline-block; padding: 2px 8px; border: 1px solid var(--line); border-radius: 999px; margin-right: 8px; font-size: 10px; }
.mobile-nav a.sub { padding-left: 20px; font-size: 12px; color: var(--ink-2); }
.statement__sub--jp { font-family: var(--font-jp) !important; text-transform: none !important; letter-spacing: 0.16em !important; font-size: 15px !important; color: var(--ink) !important; }

/* Hero with copy + dot screen ------------------------------------------- */
.hero--copy { display: flex; align-items: flex-end; }
.hero--copy img { position: absolute; inset: 0; }
.hero__screen {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(20,18,16,.55) 1.1px, transparent 1.3px);
  background-size: 5px 5px;
  opacity: .9;
}
.hero__screen::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%); }
.hero__copy { position: relative; z-index: 1; padding: 0 var(--pad) clamp(40px, 6vw, 88px); color: #fff; max-width: var(--max); margin: 0 auto; width: 100%; }
.hero__copy h1 { font-family: var(--font-en); text-transform: uppercase; font-weight: 300; letter-spacing: 0.08em; font-size: clamp(34px, 6.2vw, 92px); line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,.25); }
.hero__sub { font-family: var(--font-jp); font-size: clamp(14px, 1.3vw, 18px); letter-spacing: 0.2em; color: #fff; opacity: .95; }
.statement p:first-child { margin-top: 0; }

/* News with thumbnails --------------------------------------------------- */
.news-list a { align-items: center; gap: 24px; padding: 14px 0; }
.news-thumb { flex: 0 0 auto; width: 120px; aspect-ratio: 4 / 3; overflow: hidden; background: var(--tint-sand); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.news-title { font-size: 14px; }
.news-entry { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.news-entry__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--tint-sand); }
.news-entry__media img { width: 100%; height: 100%; object-fit: cover; }
.news-entry__body h2 { margin-top: 6px; }
@media (max-width: 768px) {
  .news-list a { flex-direction: row; }
  .news-thumb { width: 88px; }
  .news-entry { grid-template-columns: 1fr; gap: 16px; }
  .hero--copy { height: 78vw; min-height: 420px; }
}

/* Hero rotation ------------------------------------------------------------ */
.hero--copy .hero__img { opacity: 0; transition: opacity 1.4s ease; }
.hero--copy .hero__img.is-on { opacity: 1; }

/* Statement centered (2026-09) */
.statement p { text-align: center; }
.statement .btn { width: 280px; }

/* Story page (editorial, centered column) --------------------------------- */
.story-hero { padding: clamp(56px, 8vw, 112px) 0 0; }
.story-hero__inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; padding-bottom: clamp(48px, 6vw, 80px); }
.story-hero__title { font-family: var(--font-jp); font-weight: 300; font-size: clamp(26px, 3.4vw, 44px); line-height: 1.6; letter-spacing: 0.08em; }
.story-hero__lead { max-width: 640px; color: var(--ink-2); font-size: 14px; line-height: 2.1; letter-spacing: 0.06em; }
.story-hero__media { max-width: 1120px; margin: 0 auto; padding: 0 var(--pad); }
.story-hero__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--tint-sage); }
.story { max-width: 640px; margin: 0 auto; padding: clamp(64px, 8vw, 112px) var(--pad); display: flex; flex-direction: column; gap: clamp(64px, 8vw, 104px); }
.story__chapter { display: flex; flex-direction: column; gap: 22px; }
.story__num { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.3em; color: var(--ink-3); text-align: center; }
.story__num::after { content: ""; display: block; width: 1px; height: 32px; background: var(--line); margin: 14px auto 0; }
.story__chapter h2 { text-align: center; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.7; letter-spacing: 0.08em; font-weight: 300; margin-bottom: 8px; }
.story__chapter p { color: var(--ink-2); font-size: 14px; line-height: 2.2; letter-spacing: 0.05em; text-align: left; }
.story__sig { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 24px; font-family: var(--font-en); font-size: 12px; letter-spacing: 0.24em; color: var(--ink-3); }
.story__sig .caps { font-size: 11px; }
.company { max-width: 640px; }
.company__dl { display: grid; grid-template-columns: 120px 1fr; border-top: 1px solid var(--line); font-size: 13px; }
.company__dl dt, .company__dl dd { padding: 14px 0; border-bottom: 1px solid var(--line); margin: 0; }
.company__dl dt { color: var(--ink-3); }
.company__dl dd { color: var(--ink-2); }
@media (max-width: 768px) { .company__dl { grid-template-columns: 1fr; } .company__dl dt { padding-bottom: 0; border-bottom: 0; } }

/* Refine: page heads & text pages aligned with Story ---------------------- */
.page-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; border-bottom: 0; padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 5vw, 64px); margin-bottom: 0; }
.page-head__title { font-family: var(--font-jp); font-weight: 300; font-size: clamp(24px, 3vw, 40px); line-height: 1.6; letter-spacing: 0.08em; }
.page-head::after { content: ""; display: block; width: 1px; height: 32px; background: var(--line); margin-top: 8px; }
.line-nav { justify-content: center; margin-top: 4px; }
.prose { max-width: 640px; margin: 0 auto; }
.prose h2 { text-align: center; border-top: 0; padding-top: 0; font-size: clamp(18px, 2vw, 22px); margin: clamp(48px, 6vw, 72px) 0 20px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { text-align: center; font-weight: 400; margin: 28px 0 8px; }
.prose p, .prose ul { line-height: 2.2; letter-spacing: 0.05em; }
.prose dl { grid-template-columns: 140px 1fr; }
.prose .sig { text-align: center; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { padding: 20px 0; }
.form { max-width: 560px; margin: 0 auto; }
.form .btn { align-self: center; width: 240px; }
.news { max-width: 760px; }
.news-entry { display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: start; padding: 32px 0; }
.news-entry__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--tint-sand); }
.news-entry__media img { width: 100%; height: 100%; object-fit: cover; }
.news-entry h2 { text-align: left; margin: 6px 0 10px; font-size: 16px; }
.news-entry p { margin: 0; }
@media (max-width: 768px) { .news-entry { grid-template-columns: 1fr; gap: 14px; } }
.notes { max-width: 760px; margin: 0 auto; grid-template-columns: 1fr; gap: 12px; text-align: left; }
.notes h3 { text-align: center; }
.line-section .line-title { justify-content: center; }
.line-intro { margin-left: auto; margin-right: auto; text-align: center; align-items: center; }
