:root {
  --ink: #17231f;
  --ink-soft: #4d5b55;
  --forest: #17382e;
  --forest-deep: #0f251e;
  --paper: #f3f0e8;
  --paper-soft: #e8e3d8;
  --white: #fffdf8;
  --gold: #a58b5e;
  --line: rgba(23, 35, 31, .14);
  --shadow: 0 24px 60px rgba(21, 31, 27, .10);
  --max: 1240px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: #bdc9bb; color: #102019; }

.skip-link { position: fixed; left: 16px; top: -70px; z-index: 9999; background: #fff; padding: 10px 16px; }
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 72px), var(--max)); margin-inline: auto; }
.shell-wide { width: min(calc(100% - 48px), 1460px); margin-inline: auto; }
.compact-section { padding-block: clamp(72px, 8vw, 112px); }
.mobile-only { display: none; }


/* Better Japanese line breaks */
.hero h1,
.about-made-copy h2,
.story-copy h2,
.reiko-copy h2,
.guide-card h3,
.card-body h3,
.reiko-sub {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: balance;
  max-width: 100%;
}

.hero-lead,
.about-made-copy > p:not(.eyebrow),
.story-copy > p:not(.eyebrow),
.reiko-copy > div > p:last-child,
.card-body p,
.guide-card p {
  overflow-wrap: anywhere;
  line-break: strict;
  text-wrap: pretty;
}

.eyebrow, .section-kicker {
  margin: 0 0 15px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .24em;
  font-weight: 700;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.32;
  letter-spacing: .045em;
  font-weight: 500;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 11px 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: rgba(255,255,255,.96); color: var(--ink); }
.text-link { display: inline-flex; gap: 11px; align-items: center; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }
.text-link.light { color: #fff; }
.arrow-link { display: inline-flex; gap: 16px; align-items: center; font-size: 13px; font-weight: 700; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(243,240,232,.91);
  border-color: var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header-inner { height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark {
  width: 35px; height: 35px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px; line-height: 1;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 18px; letter-spacing: .11em; font-weight: 600; }
.brand-copy small { margin-top: 5px; font-size: 8px; letter-spacing: .15em; opacity: .66; }
.global-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.global-nav a { position: relative; font-size: 11px; font-weight: 700; white-space: nowrap; }
.global-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .2s ease; }
.global-nav a:hover::after { right: 0; }
.shop-button { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; border: 1px solid currentColor; padding: 9px 13px; font-size: 10px; font-weight: 700; letter-spacing: .12em; white-space: nowrap; }
.menu-button { display: none; position: relative; width: 42px; height: 42px; border: 0; background: transparent; color: currentColor; }
.menu-button span { position: absolute; left: 8px; right: 8px; height: 1px; background: currentColor; transition: top .2s, transform .2s; }
.menu-button span:first-child { top: 17px; }
.menu-button span:last-child { top: 25px; }
.menu-button[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(820px, 88svh);
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #243a33;
}
.hero-media { position: absolute; inset: 0; background: url("assets/images/optimized/hero-koyasan.webp") center 45% / cover no-repeat; transform: scale(1.015); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,21,16,.68) 0%, rgba(7,21,16,.28) 51%, rgba(7,21,16,.08) 100%), linear-gradient(0deg, rgba(7,18,14,.45), transparent 48%); }
.hero-content { position: relative; z-index: 2; padding-bottom: clamp(68px, 8vh, 92px); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(58px, 8.2vw, 116px); line-height: 1.07; letter-spacing: .06em; font-weight: 500; }
.hero h1 span { display: block; white-space: nowrap; }
.hero-lead { margin: 23px 0 0; font-family: var(--serif); font-size: clamp(17px, 1.7vw, 22px); letter-spacing: .06em; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }
.hero-badge {
  position: absolute; z-index: 2; right: 34px; bottom: 34px; width: 132px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.58); border-radius: 50%;
  display: grid; place-content: center; text-align: center; background: rgba(9,29,22,.16); backdrop-filter: blur(5px);
}
.hero-badge strong { font-family: var(--serif); font-size: 17px; letter-spacing: .11em; font-weight: 500; }
.hero-badge span { margin-top: 7px; font-size: 7px; letter-spacing: .19em; opacity: .72; }


/* About + Made in Koyasan */
.about-made { padding-top: clamp(82px, 8vw, 112px); padding-bottom: clamp(72px, 8vw, 110px); }
.about-made-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 460px; overflow: hidden; background: var(--forest-deep); color: #fff; box-shadow: var(--shadow); }
.about-made-photo { min-height: 460px; background: #d5d9d8 url("assets/images/optimized/craft-07.webp") center / cover no-repeat; }
.about-made-copy { padding: clamp(42px, 5vw, 68px); display: flex; flex-direction: column; justify-content: center; }
.about-made-copy h2 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(38px, 4vw, 58px); line-height: 1.34; letter-spacing: .05em; font-weight: 500; }
.about-made-copy > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.72); }
.about-made-copy > p:not(.eyebrow) + p { margin-top: 12px; }
.about-made-links { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 24px; }
.about-made-links .text-link { margin: 0; }

/* Story */
.story { padding-bottom: clamp(72px, 8vw, 110px); }
.story-card { min-height: 560px; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: #18231f; color: #fff; box-shadow: var(--shadow); }
.story-photo { min-height: 560px; background: url("assets/images/optimized/koyasan-kukai.webp") center / cover no-repeat; }
.story-copy { padding: clamp(52px, 6vw, 84px); display: flex; flex-direction: column; justify-content: center; }
.story-copy h2 { margin: 0 0 23px; font-family: var(--serif); font-size: clamp(40px, 4.4vw, 66px); line-height: 1.3; letter-spacing: .05em; font-weight: 500; }
.story-copy > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.73); max-width: 580px; }
.story-facts { margin-top: 32px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.story-facts div { padding: 16px 10px 14px 0; }
.story-facts div + div { padding-left: 16px; border-left: 1px solid rgba(255,255,255,.16); }
.story-facts strong { display: block; font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: .05em; }
.story-facts span { display: block; margin-top: 4px; font-size: 9px; color: rgba(255,255,255,.54); }

/* Reiko */
.reiko { padding-bottom: clamp(72px, 8vw, 112px); }
.reiko-card { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 510px; background: var(--paper-soft); overflow: hidden; box-shadow: var(--shadow); }
.reiko-media { background: #303334 url("assets/images/optimized/koya-reiko-lineup-upscaled.webp") center / contain no-repeat; }
.reiko-copy { padding: clamp(48px, 5vw, 74px); display: flex; flex-direction: column; justify-content: space-between; }
.reiko-copy h2 { margin: 0 0 13px; font-family: var(--serif); font-size: clamp(48px, 5.3vw, 76px); line-height: 1; font-weight: 500; letter-spacing: .07em; }
.reiko-sub { margin: 0 0 18px; font-family: var(--serif); font-size: 20px; }
.reiko-copy > div > p:last-child { color: var(--ink-soft); }
.reiko-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-top: 26px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-row span { padding: 5px 9px; border: 1px solid var(--line); font-size: 10px; }
.circle-link { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; font-size: 18px; transition: background .2s, color .2s; }
.circle-link:hover { background: var(--ink); color: #fff; }

/* Fragrance */
.fragrance { background: #ece8df; border-block: 1px solid var(--line); padding-top: 34px; }
.section-heading-row { display: grid; grid-template-columns: 1fr .72fr; gap: 70px; align-items: end; margin-bottom: 45px; }
.section-heading-row > p { margin: 0 0 7px; color: var(--ink-soft); max-width: 540px; }
.category-rail { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.category-card { min-width: 0; display: block; color: inherit; text-decoration: none; background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(21, 33, 29, .08); }
.card-image { aspect-ratio: 1.16 / 1; background-position: center; background-size: cover; transition: transform .35s ease; }
.category-card:hover .card-image { transform: scale(1.018); }
.incense-image { background-image: url("assets/images/optimized/incense-04.webp"); }
.wood-image { background-image: url("assets/images/optimized/aromatic-wood-05.webp"); }
.zuko-image { background-image: url("assets/images/optimized/zuko-06.webp"); }
.hourai-image { background-image: url("assets/images/optimized/hourai-kirie.webp"); background-position: center; }
.tososan-image { background-image: url("assets/images/optimized/tososan.webp"); background-position: center; }
.card-body { position: relative; padding: 20px 58px 22px 22px; }
.card-body > span { font-size: 8px; letter-spacing: .17em; color: #727b77; }
.card-body h3 { margin: 6px 0 4px; font-family: var(--serif); font-size: clamp(22px, 2vw, 27px); line-height: 1.4; font-weight: 500; }
.card-body h3 small { font-size: .52em; font-weight: 500; }
.card-body p { margin: 0; min-height: 45px; font-size: 12px; line-height: 1.7; color: var(--ink-soft); }
.card-arrow { position: absolute; right: 20px; bottom: 20px; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 13px; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.category-card:hover .card-arrow { background: var(--ink); border-color: var(--ink); color: #fff; }
.swipe-hint { display: none; }

/* Store guide */
.guide { padding-top: 20px; }
.guide-label { margin: 0 0 18px; }
.guide-grid { display: block; }
.guide-card { position: relative; overflow: hidden; border: 1px solid var(--line); }
.guide-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: clamp(30px, 3vw, 42px); font-weight: 500; line-height: 1.4; }
.guide-card p { margin: 0; max-width: 640px; font-size: 13px; color: var(--ink-soft); }
.store-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .94fr);
  grid-template-areas:
    "copy copy"
    "photo map";
  background: var(--white);
}
.store-card-copy {
  grid-area: copy;
  padding: clamp(26px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.45fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.store-card-heading { min-width: 0; }
.store-card-copy h3 { font-size: clamp(34px, 3.4vw, 46px); }
.store-card-copy .eyebrow { margin-bottom: 12px; }
.store-address { font-size: 12px !important; }

.store-details {
  margin: 0;
  display: grid;
  grid-template-columns: 1.08fr .72fr 1.2fr;
  gap: clamp(18px, 2.6vw, 34px);
}
.store-details > div { min-width: 0; }
.store-details dt {
  margin: 0 0 5px;
  font-size: 9px;
  line-height: 1.4;
  letter-spacing: .09em;
  color: #7a847f;
}
.store-details dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.store-details dd span { color: #7a847f; }
.store-details a { color: inherit; }
.store-details a:hover { text-decoration: underline; }

.store-card-photo {
  grid-area: photo;
  min-height: 420px;
  background: url("assets/images/optimized/store-guide-hero.webp") center center / cover no-repeat;
}
.store-card-map { grid-area: map; min-height: 420px; background: #e8e7e1; }
.store-card-map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; }

/* Shop CTA */
.shop-cta { position: relative; min-height: 470px; color: #fff; display: grid; place-items: center; overflow: hidden; }
.shop-cta-bg { position: absolute; inset: 0; background: #777 url("assets/images/optimized/shop-cta-09.webp") center 22% / cover no-repeat; transform: scale(1.02); }
.shop-cta-overlay { position: absolute; inset: 0; background: rgba(7,24,18,.68); }
.shop-cta-inner { position: relative; z-index: 2; text-align: center; }
.shop-cta h2 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(48px, 6.5vw, 82px); line-height: 1.2; font-weight: 500; letter-spacing: .07em; }
.shop-cta p { max-width: 620px; margin: 0 auto 25px; color: rgba(255,255,255,.78); font-size: 14px; }

/* Footer */
.site-footer {
  background: #0d1713;
  color: #fff;
  padding: 48px 0 20px;
}

.footer-main {
  display: block;
}

.footer-logo { margin-bottom: 16px; }

.footer-company {
  margin: 0;
  max-width: 430px;
  color: rgba(255,255,255,.50);
  font-size: 10px;
  line-height: 1.8;
}

.footer-tax {
  margin: 10px 0 0;
  color: rgba(255,255,255,.35);
  font-size: 8px;
  line-height: 1.6;
}
.footer-tax strong {
  margin-left: 7px;
  color: rgba(255,255,255,.66);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.footer-info-label {
  margin: 2px 0 7px;
  font-size: 9px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .18em;
  color: rgba(255,255,255,.78);
}

.footer-store-address {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 10px;
  line-height: 1.75;
}

.footer-contact {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1.1fr .72fr 1.25fr;
  gap: clamp(20px, 3vw, 38px);
}
.footer-contact > div { min-width: 0; }
.footer-contact dt {
  margin: 0 0 5px;
  font-size: 8px;
  line-height: 1.4;
  letter-spacing: .08em;
  color: rgba(255,255,255,.34);
}
.footer-contact dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.7;
  color: rgba(255,255,255,.68);
  overflow-wrap: anywhere;
}
.footer-contact dd span { color: rgba(255,255,255,.42); }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: #fff; }

.footer-connect {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-social {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: rgba(255,255,255,.72);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-social .icon-fill { fill: currentColor; stroke: none; }

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  font-size: 10px;
  white-space: nowrap;
  color: rgba(255,255,255,.66);
  transition: color .2s ease;
}
.footer-links a span {
  opacity: .48;
  font-size: 9px;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.footer-bottom small {
  font-size: 8px;
  letter-spacing: .1em;
  color: rgba(255,255,255,.30);
}
.footer-bottom a {
  font-size: 9px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.56);
}

.mobile-actionbar { display: none; }

/* Gentle reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .global-nav { display: none; }
  .menu-button { display: block; margin-left: 0; }
  .shop-button { margin-left: auto; }
  .mobile-menu {
    display: block; position: fixed; inset: 76px 0 auto; max-height: 0; overflow: hidden; color: var(--ink); background: rgba(243,240,232,.98); transition: max-height .3s ease;
    border-bottom: 1px solid transparent;
  }
  .mobile-menu.open { max-height: calc(100svh - 76px); border-color: var(--line); }
  .mobile-menu nav { padding: 24px max(24px, calc((100vw - var(--max)) / 2)); display: grid; }
  .mobile-menu a { padding: 12px 2px; display: flex; gap: 18px; align-items: center; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 20px; }
  .mobile-menu a span { font-family: var(--sans); font-size: 9px; color: #818984; }
  .mobile-menu .mobile-shop { margin-top: 12px; padding: 13px 16px; justify-content: space-between; background: var(--ink); color: #fff; border-bottom: 0; }
  .mobile-menu .mobile-shop span { color: #fff; }

  .story-card { grid-template-columns: 1fr 1fr; }
  .reiko-card { grid-template-columns: 1fr 1fr; }
}




@media (max-width: 1040px) and (min-width: 761px) {
  .footer-main {
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
  }
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .footer-contact dt { margin-bottom: 2px; }
  .footer-connect {
    align-items: flex-start;
    gap: 24px;
  }
  .footer-links { gap: 9px 18px; }
}


@media (max-width: 1100px) and (min-width: 761px) {
  .category-rail { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 66px; }
  body { font-size: 14px; line-height: 1.72; padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .shell-wide { width: calc(100% - 24px); }
  .compact-section { padding-block: 58px; }
  .mobile-only { display: initial; }
  .eyebrow, .section-kicker { margin-bottom: 10px; font-size: 8px; }
  .display-title { font-size: clamp(31px, 9vw, 39px); line-height: 1.36; }

  .header-inner { height: 62px; }
  .brand-mark { width: 31px; height: 31px; font-size: 14px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { display: none; }
  .shop-button { display: inline-flex; padding: 8px 10px; font-size: 8px; letter-spacing: .1em; }
  .menu-button { margin-left: auto; }
  .mobile-menu { inset: 62px 0 auto; }
  .mobile-menu.open { max-height: calc(100svh - 62px); }
  .mobile-menu nav { padding: 18px 18px 26px; }
  .mobile-menu a { padding: 11px 3px; font-size: 18px; }

  .hero { min-height: min(720px, 84svh); }
  .hero-media { background-position: 60% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(7,21,16,.66), rgba(7,21,16,.08)), linear-gradient(0deg, rgba(7,18,14,.64), transparent 62%); }
  .hero-content { padding-bottom: 64px; }
  .hero h1 { font-size: clamp(36px, 10.8vw, 52px); line-height: 1.18; letter-spacing: .03em; max-width: 100%; }
  .hero-lead { margin-top: 16px; max-width: 19em; font-size: 14px; line-height: 1.82; }
  .hero-actions { margin-top: 22px; gap: 20px; }
  .button { min-height: 44px; padding: 9px 16px; font-size: 11px; }
  .hero-badge { width: 92px; right: 14px; bottom: 18px; }
  .hero-badge strong { font-size: 13px; }
  .hero-badge span { font-size: 6px; }

  .about-made { padding-top: 58px; padding-bottom: 54px; }
  .about-made-card { min-height: 0; grid-template-columns: 1fr; }
  .about-made-photo { min-height: 210px; background-position: center; }
  .about-made-copy { min-width: 0; padding: 25px 21px 26px; }
  .about-made-copy h2 { margin-bottom: 13px; font-size: clamp(26px, 7.8vw, 34px); line-height: 1.46; letter-spacing: .025em; max-width: 100%; }
  .about-made-copy > p:not(.eyebrow) { font-size: 12px; }
  .about-made-copy > p:not(.eyebrow) + p { margin-top: 9px; }
  .about-made-links { gap: 9px 20px; margin-top: 17px; }

  .story { padding-bottom: 54px; }
  .story-card { min-height: 0; grid-template-columns: 1fr; }
  .story-photo { min-height: 250px; background-position: center 38%; }
  .story-copy { min-width: 0; padding: 27px 22px 24px; }
  .story-copy h2 { margin-bottom: 13px; font-size: clamp(28px, 8vw, 35px); line-height: 1.42; letter-spacing: .03em; max-width: 100%; }
  .story-copy > p:not(.eyebrow) { font-size: 13px; }
  .story-facts { margin-top: 21px; }
  .story-facts div { padding: 11px 7px 9px 0; }
  .story-facts div + div { padding-left: 10px; }
  .story-facts strong { font-size: 19px; }
  .story-facts span { font-size: 7px; line-height: 1.5; }

  .reiko { padding-bottom: 54px; }
  .reiko-card { min-height: 0; grid-template-columns: 1fr; }
  .reiko-media { min-height: 235px; }
  .reiko-copy { min-width: 0; padding: 25px 21px 22px; }
  .reiko-copy h2 { font-size: clamp(36px, 9.6vw, 44px); line-height: 1.16; }
  .reiko-sub { margin-bottom: 11px; font-size: 15px; line-height: 1.65; }
  .reiko-copy > div > p:last-child { margin-bottom: 0; }
  .reiko-footer { margin-top: 18px; }
  .tag-row { gap: 5px; }
  .tag-row span { font-size: 9px; }
  .circle-link { width: 42px; height: 42px; }

  .fragrance { padding-block: 28px 50px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 14px; margin-bottom: 25px; }
  .section-heading-row > p { font-size: 12px; }
  .category-rail { width: auto; margin-left: 14px; margin-right: 0; padding-right: 14px; display: flex; gap: 11px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .category-rail::-webkit-scrollbar { display: none; }
  .category-card { flex: 0 0 min(76vw, 330px); scroll-snap-align: start; }
  .card-image { aspect-ratio: 1.38 / 1; }
  .card-body { padding: 16px 50px 17px 17px; }
  .card-body h3 { margin-top: 4px; font-size: 24px; line-height: 1.35; }
  .card-body p { min-height: auto; font-size: 11px; }
  .card-arrow { right: 15px; bottom: 15px; width: 30px; height: 30px; }
  .swipe-hint { display: block; margin-top: 11px; font-size: 8px; color: #7c8580; letter-spacing: .06em; }
  .swipe-hint span { letter-spacing: .16em; font-weight: 700; }

  .guide { padding-top: 5px; padding-bottom: 54px; }
  .guide-label { margin-bottom: 12px; }
  .guide-card h3 { font-size: 26px; line-height: 1.42; }
  .guide-card p { font-size: 11px; }
  .store-card { grid-template-columns: 1fr; grid-template-areas: "copy" "photo" "map"; min-height: 0; }
  .store-card-copy {
    min-width: 0;
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }
  .store-card-copy h3 { font-size: 26px; line-height: 1.42; }
  .store-address { font-size: 10px !important; }
  .store-details {
    padding-top: 15px;
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr 1fr;
    gap: 13px 18px;
  }
  .store-details > div:last-child { grid-column: 1 / -1; }
  .store-details dt { font-size: 8px; }
  .store-details dd { font-size: 10px; line-height: 1.7; }
  .store-card-photo { min-height: 210px; }
  .store-card-map, .store-card-map iframe { min-height: 220px; height: 220px; }

  .site-footer { padding: 36px 0 18px; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-logo { margin-bottom: 14px; }
  .footer-company { font-size: 9px; }
  .footer-tax { margin-top: 8px; font-size: 7px; }
  .footer-tax strong { display: block; margin: 2px 0 0; font-size: 8px; }

  .footer-store {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.10);
  }
  .footer-store-address { font-size: 9px; }
  .footer-contact {
    margin-top: 15px;
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .footer-contact dt { margin-bottom: 2px; font-size: 7px; }
  .footer-contact dd { font-size: 9px; }

  .footer-connect {
    margin-top: 24px;
    padding-top: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .footer-social { gap: 8px; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 18px;
  }
  .footer-links a { font-size: 9px; }

  .footer-bottom {
    margin-top: 22px;
    align-items: flex-start;
  }
  .footer-bottom small {
    max-width: 250px;
    line-height: 1.6;
  }

  .mobile-actionbar {
    position: fixed; z-index: 120; left: 0; right: 0; bottom: 0; height: calc(62px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom);
    display: grid; grid-template-columns: .84fr 1.16fr; background: rgba(255,253,248,.96); border-top: 1px solid var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  }
  .mobile-actionbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1.2; }
  .mobile-actionbar a + a { border-left: 1px solid var(--line); }
  .mobile-actionbar span { font-family: var(--serif); font-size: 13px; font-weight: 600; }
  .mobile-actionbar small { margin-top: 4px; font-size: 7px; letter-spacing: .12em; opacity: .63; }
  .mobile-actionbar .primary { background: var(--forest-deep); color: #fff; }
}

@media (max-width: 360px) {
  .store-details { grid-template-columns: 1fr; }
  .store-details > div:last-child { grid-column: auto; }
}

@media (max-width: 340px) {
  .hero h1 { font-size: 32px; line-height: 1.2; }
  .about-made-copy h2,
  .story-copy h2 { font-size: 24px; line-height: 1.5; }
  .reiko-copy h2 { font-size: 33px; }
  .reiko-sub { font-size: 14px; }
  .guide-card h3,
  .store-card-copy h3,
  .card-body h3 { font-size: 22px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 34px; max-width: 100%; }
  .hero-badge { display: none; }
  .hero-content { padding-bottom: 48px; }
  .guide-card h3 { font-size: 27px; }
  .store-card-copy h3 { font-size: 24px; }
}

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