:root {
  --cream: #f3eee5;
  --cream-deep: #e9e1d5;
  --paper: #fbf9f4;
  --white: #ffffff;
  --navy: #10283f;
  --navy-soft: #183a57;
  --ink: #202b34;
  --muted: #666b6d;
  --warm: #827a70;
  --line: #dcd4c8;
  --line-dark: rgba(16, 40, 63, .16);
  --bronze: #a98049;
  --shadow-sm: 0 10px 28px rgba(16, 40, 63, .06);
  --shadow-lg: 0 26px 70px rgba(16, 40, 63, .11);
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --container: 1200px;
  --reading: 760px;
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3, h4, ul, ol { margin-top: 0; }
p { margin-bottom: 1em; color: var(--muted); }
ul, ol { padding-left: 1.25em; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  padding: 10px 16px; transform: translateY(-160%);
  border-radius: 8px; background: var(--navy); color: #fff; font-weight: 700;
}
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.reading { width: min(100%, var(--reading)); }
.section { position: relative; padding: 112px 0; }
.section-compact { position: relative; padding: 72px 0; }
.section-paper { background: var(--paper); border-block: 1px solid var(--line); }
.section-navy { overflow: hidden; background: var(--navy); color: #fff; }
.section-navy::before {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px; content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.section-navy p { color: rgba(255,255,255,.72); }
.section-head {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,480px);
  gap: 52px; align-items: end; margin-bottom: 48px;
}
.section-head > p { margin-bottom: 3px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: var(--bronze); font-size: 11px; font-weight: 800;
  letter-spacing: .18em; line-height: 1.3; text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 1px; background: currentColor; content: ""; }
.section-navy .eyebrow { color: #d6bd95; }
h1, h2, .serif { font-family: var(--serif); font-weight: 500; letter-spacing: .035em; }
h1 { margin-bottom: 24px; font-size: clamp(42px,6vw,76px); line-height: 1.18; }
h2 { margin-bottom: 18px; font-size: clamp(32px,4vw,52px); line-height: 1.3; }
h3 { margin-bottom: 10px; font-size: clamp(19px,2vw,24px); line-height: 1.55; }
.lead { max-width: 62ch; color: #4f575d; font-size: clamp(16px,1.8vw,19px); line-height: 2; }
.direct-answer {
  margin-bottom: 28px; padding-left: 18px; border-left: 2px solid var(--bronze);
  color: var(--ink); font-size: 17px; line-height: 1.95;
}
.section-navy .direct-answer { border-color: #d6bd95; color: rgba(255,255,255,.9); }
.micro { color: var(--warm); font-size: 12px; line-height: 1.75; }
.tag-row, .button-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.tag {
  display: inline-flex; align-items: center; min-height: 32px; padding: 5px 11px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.55);
  color: var(--warm); font-size: 11px; font-weight: 700; line-height: 1.4;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 52px; padding: 12px 22px; border: 1px solid transparent;
  border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 800;
  letter-spacing: .035em; line-height: 1.35;
  transition: background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease;
}
.button::after { font-size: 16px; content: "→"; }
.button-primary { background: var(--navy); color: #fff; }
.button-primary:hover { background: var(--navy-soft); transform: translateY(-2px); }
.button-secondary { border-color: var(--line-dark); background: rgba(255,255,255,.72); color: var(--navy); }
.button-secondary:hover { border-color: var(--navy); background: #fff; transform: translateY(-2px); }
.button-light { border-color: rgba(255,255,255,.22); background: #fff; color: var(--navy); }
.button-quiet { min-height: 44px; padding-inline: 0; color: var(--navy); }
.button-quiet::after { transition: transform .2s ease; }
.button-quiet:hover::after { transform: translateX(4px); }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid #cf9f54; outline-offset: 4px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(16,40,63,.1);
  background: rgba(243,238,229,.92); backdrop-filter: blur(18px);
}
.header-inner {
  display: grid; grid-template-columns: auto 1fr auto; gap: 34px;
  align-items: center; min-height: 78px;
}
.brand { display: inline-flex; gap: 12px; align-items: center; line-height: 1.2; }
.brand-mark {
  display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%;
  background: var(--navy); color: #d8c09b; font-family: var(--serif);
  font-size: 13px; letter-spacing: .04em;
}
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { font-size: 14px; letter-spacing: .035em; }
.brand-copy small { color: var(--warm); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.header-nav { display: flex; gap: 28px; align-items: center; justify-content: center; }
.header-nav a {
  position: relative; padding: 8px 0; color: #515b62;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.header-nav a::after {
  position: absolute; right: 0; bottom: 2px; left: 0; height: 1px;
  transform: scaleX(0); background: var(--bronze); content: ""; transition: transform .2s ease;
}
.header-nav a:hover, .header-nav a.active { color: var(--navy); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-cta { min-height: 44px; padding: 9px 18px; font-size: 12px; }
.menu-toggle {
  position: relative; display: none; width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--line-dark); border-radius: 50%;
  background: rgba(255,255,255,.7); cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  position: absolute; left: 13px; width: 18px; height: 1px;
  background: var(--navy); content: "";
  transition: transform .2s ease,top .2s ease,opacity .2s ease;
}
.menu-toggle::before { top: 16px; }
.menu-toggle span { top: 22px; }
.menu-toggle::after { top: 28px; }
.menu-toggle[aria-expanded="true"]::before { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::after { top: 22px; transform: rotate(-45deg); }
.mobile-menu { display: none; }
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner { display: grid; gap: 2px; padding: 10px 0 20px; }
.mobile-menu a {
  padding: 12px 4px; border-bottom: 1px solid var(--line);
  color: var(--navy); font-size: 14px; font-weight: 700;
}

/* Home hero */
.hero {
  position: relative; overflow: hidden; padding: 64px 0 76px;
  background:
    radial-gradient(circle at 82% 20%,rgba(169,128,73,.12),transparent 25%),
    linear-gradient(180deg,#f6f2eb 0%,var(--cream) 100%);
}
.hero::after {
  position: absolute; right: -1vw; bottom: -66px; color: rgba(16,40,63,.035);
  font-family: var(--serif); font-size: clamp(80px,15vw,230px);
  letter-spacing: .04em; line-height: 1; white-space: nowrap;
  content: "選ぶ"; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(480px,1.08fr);
  gap: 70px; align-items: center;
}
.hero-copy { padding: 24px 0; }
.hero-copy h1 { max-width: 10em; }
.hero-copy .lead { margin-bottom: 28px; }
.hero-proof {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  margin: 34px 0 28px; overflow: hidden; border: 1px solid var(--line);
  border-radius: var(--radius-md); background: var(--line);
}
.hero-proof div { padding: 13px 12px; background: rgba(255,255,255,.58); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--navy); font-family: var(--serif); font-size: 19px; font-weight: 500; }
.hero-proof span { color: var(--warm); font-size: 10px; line-height: 1.5; }
.hero-journal { position: relative; min-height: 590px; }
.journal-main {
  position: absolute; top: 0; right: 0; width: 74%; height: 100%;
  overflow: hidden; border-radius: var(--radius-xl); background: var(--navy);
  box-shadow: var(--shadow-lg);
}
.journal-main::before {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,transparent 30%,rgba(4,18,31,.72) 100%); content: "";
}
.journal-main img { width: 100%; height: 100%; object-fit: cover; }
.journal-caption { position: absolute; right: 30px; bottom: 30px; left: 30px; z-index: 2; color: #fff; }
.journal-caption span { color: #d8c09b; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.journal-caption strong {
  display: block; margin: 7px 0 13px; font-family: var(--serif);
  font-size: 30px; font-weight: 500; line-height: 1.4;
}
.journal-caption a { font-size: 12px; font-weight: 800; }
.journal-note {
  position: absolute; z-index: 3; width: 42%; padding: 18px;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: rgba(251,249,244,.96); box-shadow: var(--shadow-sm);
}
.journal-note img { width: 100%; height: 135px; margin-bottom: 12px; object-fit: contain; }
.journal-note span { color: var(--bronze); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.journal-note strong {
  display: block; margin-top: 3px; color: var(--navy);
  font-family: var(--serif); font-size: 19px; font-weight: 500;
}
.journal-note-jokari { top: 42px; left: 0; }
.journal-note-bhado { bottom: 42px; left: 20px; }
.topic-bar { border-block: 1px solid var(--line); background: rgba(251,249,244,.7); }
.topic-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.topic-link {
  display: grid; grid-template-columns: auto 1fr auto; gap: 15px; align-items: center;
  min-height: 100px; padding: 20px 30px; border-right: 1px solid var(--line);
}
.topic-link:last-child { border-right: 0; }
.topic-num { color: var(--bronze); font-family: var(--serif); font-size: 18px; }
.topic-link strong, .topic-link span { display: block; }
.topic-link strong { color: var(--navy); font-family: var(--serif); font-size: 19px; font-weight: 500; }
.topic-link span { color: var(--warm); font-size: 11px; }
.topic-arrow { color: var(--navy); font-size: 18px; transition: transform .2s ease; }
.topic-link:hover .topic-arrow { transform: translateX(5px); }

/* Purpose and cards */
.purpose-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 76px; align-items: start;
}
.purpose-intro { position: sticky; top: 120px; }
.purpose-list { display: grid; gap: 14px; counter-reset: purpose; }
.purpose-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 24px;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: rgba(251,249,244,.76); box-shadow: var(--shadow-sm);
}
.purpose-item::before {
  display: grid; width: 52px; height: 52px; place-items: center;
  border-radius: 50%; background: var(--navy); color: #d8c09b;
  content: counter(purpose,decimal-leading-zero); counter-increment: purpose;
  font-family: var(--serif); font-size: 14px;
}
.purpose-item h3 {
  margin-bottom: 5px; color: var(--navy);
  font-family: var(--serif); font-weight: 500;
}
.purpose-item p { margin: 0; font-size: 14px; }
.product-index { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.product-index-card {
  position: relative; overflow: hidden; min-height: 420px; padding: 26px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.product-index-card::after {
  position: absolute; right: -28px; bottom: -52px;
  color: rgba(16,40,63,.055); font-family: var(--serif);
  font-size: 120px; line-height: 1; content: attr(data-number);
}
.product-index-card img { width: 100%; height: 180px; margin-bottom: 18px; object-fit: contain; }
.product-index-card h3 { color: var(--navy); font-family: var(--serif); font-size: 26px; font-weight: 500; }
.product-index-card p { font-size: 14px; }
.product-index-card .button-quiet { position: relative; z-index: 1; margin-top: 4px; }

/* Product stories */
.product-story {
  display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: 78px; align-items: center;
}
.product-story.reverse { grid-template-columns: minmax(0,1.08fr) minmax(0,.92fr); }
.product-story.reverse .product-visual { order: 2; }
.product-visual {
  position: relative; min-height: 560px; overflow: hidden;
  border-radius: var(--radius-xl); background: var(--paper); box-shadow: var(--shadow-lg);
}
.product-visual > img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.product-cutout {
  position: absolute; right: 24px; bottom: 24px; width: 42%; padding: 16px;
  border: 1px solid rgba(255,255,255,.65); border-radius: var(--radius-md);
  background: rgba(251,249,244,.92); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px);
}
.product-cutout img { width: 100%; height: 150px; object-fit: contain; }
.product-copy h2 { color: var(--navy); }
.feature-points {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 12px; margin: 28px 0 30px;
}
.feature-point {
  min-height: 116px; padding: 18px; border: 1px solid var(--line);
  border-radius: var(--radius-md); background: rgba(251,249,244,.7);
}
.feature-point strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 14px; }
.feature-point span { display: block; color: var(--muted); font-size: 12px; line-height: 1.7; }
.section-navy .product-copy h2 { color: #fff; }
.section-navy .feature-point { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.055); }
.section-navy .feature-point strong { color: #fff; }
.section-navy .feature-point span { color: rgba(255,255,255,.66); }
.section-navy .tag { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: rgba(255,255,255,.74); }
.jokari-frame {
  display: grid; min-height: 560px; place-items: center; padding: 54px;
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-xl);
  background: radial-gradient(circle at 50% 42%,rgba(255,255,255,.16),transparent 38%),rgba(255,255,255,.05);
  box-shadow: 0 34px 90px rgba(0,0,0,.2);
}
.jokari-frame img { max-height: 410px; object-fit: contain; filter: drop-shadow(0 30px 35px rgba(0,0,0,.22)); }
.bhado-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; min-height: 560px; }
.bhado-layout > div {
  overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.bhado-scene { min-height: 560px; }
.bhado-scene img { width: 100%; height: 100%; object-fit: cover; }
.bhado-stack { display: grid; gap: 16px; grid-template-rows: 1fr auto; }
.bhado-product { display: grid; place-items: center; padding: 24px; }
.bhado-product img { width: 100%; height: 260px; object-fit: contain; }
.bhado-note { padding: 22px; background: var(--navy) !important; color: #fff; }
.bhado-note strong { display: block; margin-bottom: 6px; font-family: var(--serif); font-size: 18px; font-weight: 500; }
.bhado-note p { margin: 0; color: rgba(255,255,255,.66); font-size: 11px; }

/* Comparison and informational cards */
.comparison-wrap {
  overflow-x: auto; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm);
}
.comparison { width: 100%; min-width: 760px; border-collapse: collapse; }
.comparison th, .comparison td {
  padding: 22px 24px; border-bottom: 1px solid var(--line);
  text-align: left; vertical-align: top;
}
.comparison tr:last-child th, .comparison tr:last-child td { border-bottom: 0; }
.comparison thead th { background: var(--navy); color: #fff; font-size: 11px; letter-spacing: .1em; }
.comparison tbody th { width: 24%; color: var(--navy); font-family: var(--serif); font-size: 20px; font-weight: 500; }
.comparison td { color: var(--muted); font-size: 13px; }
.guide-grid, .policy-grid, .contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.guide-card, .policy-card, .contact-card {
  display: flex; min-height: 300px; flex-direction: column; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.guide-card .label, .policy-card .label, .contact-card .label {
  margin-bottom: 20px; color: var(--bronze); font-size: 10px;
  font-weight: 800; letter-spacing: .15em;
}
.guide-card h3, .policy-card h3, .contact-card h3 {
  color: var(--navy); font-family: var(--serif); font-size: 24px; font-weight: 500;
}
.guide-card p, .policy-card p, .contact-card p { font-size: 14px; }
.guide-card .button-quiet, .contact-card .button-quiet { margin-top: auto; }
.guide-card.featured { background: var(--navy); }
.guide-card.featured .label { color: #d6bd95; }
.guide-card.featured h3, .guide-card.featured .button-quiet { color: #fff; }
.guide-card.featured p { color: rgba(255,255,255,.68); }
.entity-map { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: stretch; }
.entity-hub {
  display: grid; min-height: 360px; place-items: center; padding: 34px;
  border-radius: var(--radius-lg); background: var(--navy); color: #fff; text-align: center;
}
.entity-hub strong { display: block; margin-bottom: 12px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.entity-hub p { max-width: 30ch; margin: 0 auto; color: rgba(255,255,255,.68); }
.entity-sites { display: grid; gap: 12px; }
.entity-site {
  display: grid; grid-template-columns: 50px 1fr auto; gap: 18px;
  align-items: center; padding: 20px; border: 1px solid var(--line);
  border-radius: var(--radius-md); background: var(--paper);
}
.entity-site > span:first-child {
  display: grid; width: 48px; height: 48px; place-items: center;
  border-radius: 50%; background: #ede8e1; color: var(--navy);
  font-family: var(--serif); font-size: 13px;
}
.entity-site strong, .entity-site small { display: block; }
.entity-site strong { color: var(--navy); }
.entity-site small { color: var(--warm); font-size: 11px; }

/* FAQ */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.faq-item summary {
  position: relative; padding: 23px 62px 23px 24px; cursor: pointer;
  color: var(--navy); font-family: var(--serif); font-size: 19px;
  font-weight: 500; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after {
  position: absolute; top: 50%; right: 25px; width: 16px; height: 1px;
  background: var(--navy); content: ""; transition: transform .2s ease;
}
.faq-item summary::after { transform: rotate(90deg); }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-answer { padding: 0 62px 24px 24px; }
.faq-answer p { margin: 0; font-size: 14px; }

/* CTA */
.cta-panel {
  position: relative; overflow: hidden; padding: 56px;
  border-radius: var(--radius-xl); background: var(--navy); color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-panel::after {
  position: absolute; right: -48px; bottom: -90px; width: 290px; height: 290px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: "";
}
.cta-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 54px; align-items: center;
}
.cta-panel h2 { color: #fff; }
.cta-panel p { color: rgba(255,255,255,.68); }
.cta-links { display: grid; gap: 10px; }
.cta-link {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  min-height: 60px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px; background: rgba(255,255,255,.055); font-size: 13px; font-weight: 700;
}
.cta-link span:last-child { transition: transform .2s ease; }
.cta-link:hover span:last-child { transform: translateX(5px); }

/* Interior pages */
.page-hero { padding: 64px 0 46px; }
.page-hero-box {
  position: relative; overflow: hidden; padding: 58px;
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  background: radial-gradient(circle at 92% 20%,rgba(169,128,73,.12),transparent 24%),var(--paper);
  box-shadow: var(--shadow-sm);
}
.page-hero-box::after {
  position: absolute; right: 34px; bottom: -22px; color: rgba(16,40,63,.04);
  font-family: var(--serif); font-size: clamp(74px,12vw,150px);
  line-height: 1; content: attr(data-word);
}
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 23px; color: var(--warm); font-size: 11px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 4px; }
.page-hero h1 { max-width: 14em; font-size: clamp(39px,5.4vw,66px); }
.feature-list { display: grid; gap: 28px; }
.feature-row {
  display: grid; grid-template-columns: minmax(300px,.82fr) minmax(0,1.18fr);
  overflow: hidden; border: 1px solid var(--line);
  border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm);
}
.feature-row:nth-child(even) { grid-template-columns: minmax(0,1.18fr) minmax(300px,.82fr); }
.feature-row:nth-child(even) .feature-image { order: 2; }
.feature-image { min-height: 440px; overflow: hidden; background: #ede8e1; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-content { padding: 42px; }
.feature-content h2 { color: var(--navy); font-size: clamp(30px,3.3vw,44px); }
.point-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px 16px; margin: 22px 0 26px; padding: 0; }
.point-list li {
  position: relative; padding-left: 17px; color: #565f64; font-size: 13px; list-style: none;
}
.point-list li::before {
  position: absolute; top: .8em; left: 0; width: 6px; height: 6px;
  border-radius: 50%; background: var(--bronze); content: "";
}
.content-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.content-card {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--paper); box-shadow: var(--shadow-sm);
}
.content-card h2, .content-card h3 { color: var(--navy); font-family: var(--serif); font-weight: 500; }
.content-card h2 { font-size: 30px; }
.content-card p, .content-card li { font-size: 14px; }
.content-card li + li { margin-top: 8px; }
.site-list { display: grid; gap: 10px; margin: 0; padding: 0; }
.site-list li { list-style: none; }
.site-list a {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  color: var(--navy); font-weight: 700;
}
.site-list a::after { content: "→"; }
.not-found { min-height: 62vh; display: grid; place-items: center; }
.not-found .page-hero-box { text-align: center; }
.not-found .lead { margin-inline: auto; }
.not-found .button-row { justify-content: center; }

/* Footer */
.site-footer { padding: 72px 0 30px; border-top: 1px solid var(--line); background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .95fr; gap: 60px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 39ch; font-size: 13px; }
.footer-heading { margin-bottom: 15px; color: var(--bronze); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { width: fit-content; color: #586167; font-size: 12px; }
.footer-links a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line);
  color: var(--warm); font-size: 10px;
}

@media (max-width: 1080px) {
  .header-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .mobile-menu:not([hidden]) { display: block; border-top: 1px solid var(--line); background: rgba(243,238,229,.98); }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 760px; }
  .hero-journal { max-width: 760px; min-height: 520px; }
  .purpose-grid { grid-template-columns: 1fr; gap: 38px; }
  .purpose-intro { position: static; }
  .product-story, .product-story.reverse { grid-template-columns: 1fr; gap: 46px; }
  .product-story.reverse .product-visual { order: 0; }
  .guide-grid, .policy-grid, .contact-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { gap: 34px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .section-compact { padding: 56px 0; }
  .section-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 34px; }
  .product-index { grid-template-columns: 1fr; }
  .product-index-card {
    display: grid; grid-template-columns: 180px 1fr;
    column-gap: 24px; min-height: auto;
  }
  .product-index-card img { grid-row: span 4; height: 180px; margin: 0; }
  .topic-link { padding: 18px; }
  .feature-row, .feature-row:nth-child(even) { grid-template-columns: 1fr; }
  .feature-row:nth-child(even) .feature-image { order: 0; }
  .feature-image { min-height: 360px; }
  .entity-map, .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  html { scroll-padding-top: 74px; }
  body { font-size: 15px; line-height: 1.78; }
  .section { padding: 66px 0; }
  .section-compact { padding: 44px 0; }
  h1 { font-size: clamp(36px,11vw,50px); }
  h2 { font-size: clamp(29px,8.7vw,39px); }
  .lead { font-size: 16px; line-height: 1.9; }
  .header-inner { min-height: 66px; gap: 10px; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .hero { padding: 38px 0 50px; }
  .hero-copy { padding: 0; }
  .hero-copy h1 { max-width: 9.5em; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { display: grid; grid-template-columns: 70px 1fr; gap: 10px; align-items: center; }
  .hero-journal { min-height: 480px; }
  .journal-main { width: 86%; border-radius: 30px; }
  .journal-caption { right: 20px; bottom: 22px; left: 20px; }
  .journal-caption strong { font-size: 24px; }
  .journal-note { width: 42%; padding: 12px; }
  .journal-note img { height: 92px; }
  .journal-note strong { font-size: 14px; }
  .journal-note-jokari { top: 24px; }
  .journal-note-bhado { bottom: 24px; left: 10px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-link { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .topic-link:last-child { border-bottom: 0; }
  .purpose-item { grid-template-columns: 42px 1fr; gap: 14px; padding: 19px; }
  .purpose-item::before { width: 42px; height: 42px; }
  .product-index-card { display: block; padding: 22px; }
  .product-index-card img { height: 170px; margin-bottom: 16px; }
  .product-visual, .product-visual > img, .jokari-frame, .bhado-layout { min-height: 390px; }
  .product-cutout { right: 14px; bottom: 14px; width: 46%; padding: 10px; }
  .product-cutout img { height: 100px; }
  .feature-points { grid-template-columns: 1fr; }
  .feature-point { min-height: auto; }
  .jokari-frame { padding: 28px; }
  .jokari-frame img { max-height: 310px; }
  .bhado-layout { grid-template-columns: 1fr; }
  .bhado-scene { min-height: 330px; }
  .bhado-stack { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bhado-product img { height: 150px; }
  .guide-grid, .policy-grid, .contact-grid, .content-grid { grid-template-columns: 1fr; }
  .guide-card, .policy-card, .contact-card { min-height: auto; }
  .entity-site { grid-template-columns: 42px 1fr auto; gap: 12px; padding: 16px; }
  .entity-site > span:first-child { width: 42px; height: 42px; }
  .cta-panel { padding: 30px 22px; border-radius: 28px; }
  .page-hero { padding: 30px 0 18px; }
  .page-hero-box { padding: 28px 22px; border-radius: 26px; }
  .feature-image { min-height: 290px; }
  .feature-content { padding: 26px 22px; }
  .point-list { grid-template-columns: 1fr; }
  .faq-item summary { padding: 20px 54px 20px 18px; font-size: 17px; }
  .faq-item summary::before, .faq-item summary::after { right: 20px; }
  .faq-answer { padding: 0 18px 21px; }
  .site-footer { padding-top: 54px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: grid; }
}

@media (max-width: 360px) {
  .container { width: min(calc(100% - 22px),var(--container)); }
  .brand-copy strong { font-size: 12px; }
  .button { width: 100%; }
  .button-row { align-items: stretch; }
  .journal-note strong { font-size: 12px; }
  .bhado-stack { grid-template-columns: 1fr; }
}

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