:root {
  --color-bg: #faf8f4;
  --color-bg-alt: #f3efe7;
  --color-ink: #2b2723;
  --color-ink-soft: #3a342c;
  --color-text-muted: #7d776c;
  --color-text-mute2: #9a948a;
  --color-accent: #b25b43;
  --color-cta: #4a5d43;
  --color-card-bg: #e8e2d6;
  --color-line: rgba(43, 39, 35, 0.14);
  --color-white: #fffdf9;
  --font-heading: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --shadow-card: none;
  --shadow-soft: none;
  --radius-sm: 2px;
  --radius-md: 0;
  --content-gutter: clamp(32px, 5vw, 96px);
  --content-max: 1200px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  line-break: strict;
}

body.is-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(178, 91, 67, 0.55);
  outline-offset: 3px;
}

.reveal-target {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-target.is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-target {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(43, 39, 35, 0.08);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(16px);
}

.site-header:not(.is-scrolled) .brand {
  color: var(--color-white);
}

.site-header:not(.is-scrolled) .brand img {
  filter: brightness(0) invert(1);
}

.site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 253, 249, 0.7);
  color: var(--color-white);
}

.site-header:not(.is-scrolled) .menu-toggle img {
  filter: brightness(0) invert(1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  min-height: var(--header-height);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--color-ink);
}

.brand .brand-mark {
  width: 42px;
  height: auto;
}

.brand-name,
.footer-brand-lockup span {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-name {
  font-size: clamp(16px, 2.2vw, 19px);
}

.site-nav {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  z-index: 55;
  display: none;
  max-height: calc(100dvh - var(--header-height));
  overflow: auto;
  border-bottom: 1px solid rgba(43, 39, 35, 0.1);
  background: var(--color-bg);
  box-shadow: var(--shadow-soft);
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  display: grid;
  gap: 0;
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
  padding: 16px 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(43, 39, 35, 0.08);
  color: var(--color-ink-soft);
  font-size: 15px;
  font-weight: 700;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(43, 39, 35, 0.15);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink);
}

.menu-toggle img {
  width: 24px;
  height: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
  transform: none;
  box-shadow: none;
  filter: brightness(0.94);
}

.button-primary {
  background: var(--color-cta);
  color: var(--color-white);
}

.button-secondary {
  border-color: rgba(250, 248, 244, 0.75);
  background: rgba(250, 248, 244, 0.08);
  color: var(--color-white);
}

.button-outline {
  border-color: rgba(43, 39, 35, 0.24);
  background: transparent;
  color: var(--color-ink);
}

.button-light {
  background: var(--color-white);
  color: var(--color-cta);
}

.header-cta {
  display: none;
}

.section {
  padding: clamp(56px, 9vw, 104px) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.section-narrow {
  padding: clamp(42px, 7vw, 72px) 0;
}

.container {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - var(--content-gutter)), 920px);
  margin: 0 auto;
}

.section-heading {
  max-width: 840px;
  margin: 0 0 32px;
}

#business .section-heading {
  max-width: 980px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2,
.page-heading h1,
.hero-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.35;
  line-break: strict;
  text-wrap: balance;
}

.section-heading h2 {
  font-size: clamp(28px, 4.5vw, 42px);
}

.section-heading p,
.lead {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: clamp(16px, 2vw, 18px);
  text-wrap: pretty;
}

.section-dark .section-kicker,
.section-dark .section-heading p,
.section-dark .lead {
  color: rgba(255, 253, 249, 0.76);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background: #2f2a25;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 20, 17, 0.78) 0%, rgba(23, 20, 17, 0.52) 42%, rgba(23, 20, 17, 0.16) 100%),
    linear-gradient(0deg, rgba(23, 20, 17, 0.44), rgba(23, 20, 17, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(clamp(44px, 8vw, 96px) + var(--header-height)) 0 clamp(44px, 8vw, 96px);
  color: var(--color-white);
}

.hero-copy {
  max-width: 640px;
}

.hero-kicker {
  margin: 0 0 16px;
  color: rgba(255, 253, 249, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(38px, 8vw, 76px);
}

.hero-lead {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.9;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.business-grid {
  display: grid;
  gap: 0;
}

.business-card,
.work-card,
.reform-card,
.sub-card,
.reason-card,
.wood-option {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.work-card {
  border-top: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-line);
  background: transparent;
}

.reform-card {
  border-top: 0;
  border-bottom: 1px solid var(--color-line);
}

.business-card {
  position: relative;
  display: grid;
  min-height: clamp(300px, 34vw, 420px);
  align-content: end;
  color: var(--color-white);
}

.business-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.business-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(21, 18, 15, 0.78), rgba(21, 18, 15, 0.12));
}

.business-card:hover img {
  transform: scale(1.04);
}

.business-card-content {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.business-card h3,
.card-title,
.reason-card h3,
.flow-step h3,
.wood-option h3,
.faq-question {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.45;
}

.business-card h3 {
  font-size: 24px;
}

.business-card p {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.82);
  text-wrap: pretty;
}

.reform-grid {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: none;
  scrollbar-width: none;
}

.reform-grid::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-hint {
  margin: -14px 0 16px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

.reform-card {
  flex: 0 0 clamp(320px, 27vw, 400px);
  scroll-snap-align: none;
}

.reform-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.reform-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(43, 39, 35, 0.24);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.reform-dots button.is-active {
  transform: scale(1.35);
  background: var(--color-accent);
}

.reform-card img,
.work-card img,
.sub-card img,
.wood-visual img,
.kirari-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reform-card-image,
.work-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-card-bg);
}

.card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.card-title {
  font-size: 21px;
}

.card-text,
.voice,
.price,
.work-meta,
.small-text {
  margin: 0;
}

.card-text,
.voice,
.work-meta,
.small-text {
  color: var(--color-text-muted);
}

.price {
  width: fit-content;
  padding: 2px 0 2px 10px;
  border-left: 3px solid var(--color-accent);
  border-radius: 0;
  background: transparent;
  color: var(--color-accent);
  font-weight: 700;
}

.voice {
  padding-top: 10px;
  border-top: 1px solid rgba(43, 39, 35, 0.1);
  font-size: 14px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.one-room-block {
  margin-top: 56px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-md);
  background: var(--color-ink);
  color: var(--color-white);
}

.one-room-block .section-heading {
  margin-bottom: 24px;
}

.one-room-block .section-heading > p:not(.section-kicker) {
  color: rgba(255, 253, 249, 0.72);
}

.soundproof-grid,
.sub-room-grid,
.reason-grid,
.wood-options,
.works-grid {
  display: grid;
  gap: 18px;
}

.soundproof-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.soundproof-card {
  display: grid;
  overflow: hidden;
  border-top: 1px solid rgba(255, 253, 249, 0.28);
  border-bottom: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 0;
  background: transparent;
}

.soundproof-card img {
  width: 100%;
  height: clamp(220px, 54vw, 340px);
  aspect-ratio: auto;
  object-fit: cover;
}

.soundproof-card div {
  display: grid;
  align-content: center;
  padding: clamp(22px, 5vw, 42px);
}

.soundproof-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
}

.soundproof-card p {
  margin: 6px 0 0;
  color: rgba(255, 253, 249, 0.78);
}

.soundproof-card .room-label {
  order: -1;
  margin: 0 0 8px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.soundproof-card .room-description {
  max-width: 42em;
  margin-top: 14px;
  font-weight: 400;
}

.soundproof-card .room-case-label {
  margin-top: 18px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.soundproof-card .room-intro {
  max-width: 42em;
  margin-top: 8px;
  color: rgba(255, 253, 249, 0.9);
  font-weight: 600;
}

.soundproof-card .room-price {
  width: fit-content;
  margin-top: 20px;
  padding-left: 12px;
  border-left: 3px solid var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
}

.soundproof-card .room-price span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 253, 249, 0.72);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.work-card .price span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sub-room-grid {
  margin-top: 22px;
}

.sub-card {
  background: rgba(250, 248, 244, 0.96);
  color: var(--color-ink);
}

.sub-card img {
  width: 100%;
  height: clamp(210px, 42vw, 300px);
  object-fit: cover;
}

.reasons {
  background: var(--color-bg);
}

.reasons .section-heading {
  margin-bottom: clamp(52px, 7vw, 84px);
}

.reason-grid {
  gap: 0;
}

.reason-card {
  position: relative;
  overflow: visible;
  padding: 30px 0 34px;
  border-top: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reason-number {
  display: block;
  width: fit-content;
  margin-bottom: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.reason-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  object-fit: contain;
}

.masked-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background-color: var(--color-accent);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.masked-icon-proposal {
  -webkit-mask-image: url("../assets/icons/icon-proposal.svg");
  mask-image: url("../assets/icons/icon-proposal.svg");
}

.masked-icon-onestop {
  -webkit-mask-image: url("../assets/icons/icon-onestop.svg");
  mask-image: url("../assets/icons/icon-onestop.svg");
}

.masked-icon-local {
  -webkit-mask-image: url("../assets/icons/icon-local.svg");
  mask-image: url("../assets/icons/icon-local.svg");
}

.masked-icon-mail {
  -webkit-mask-image: url("../assets/icons/icon-mail.svg");
  mask-image: url("../assets/icons/icon-mail.svg");
}

.masked-icon-phone {
  -webkit-mask-image: url("../assets/icons/icon-phone.svg");
  mask-image: url("../assets/icons/icon-phone.svg");
}

.masked-icon-instagram {
  -webkit-mask-image: url("../assets/icons/icon-instagram.svg");
  mask-image: url("../assets/icons/icon-instagram.svg");
}

.reason-card h3 {
  font-size: clamp(21px, 2vw, 25px);
}

.reason-card p {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  line-height: 1.95;
}

.flow {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  box-shadow: var(--shadow-soft);
}

.flow-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-card-bg);
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-weight: 700;
}

.flow-step.is-free .flow-number,
.flow-step.is-after .flow-number {
  background: var(--color-accent);
  color: var(--color-white);
}

.flow-step h3 {
  font-size: 18px;
}

.flow-step p {
  margin: 4px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.story-layout,
.wood-layout,
.kirari-layout,
.contact-layout,
.faq-layout {
  display: grid;
  gap: 28px;
}

.story-copy p {
  color: rgba(255, 253, 249, 0.82);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.stat {
  padding: 14px 10px;
  border: 1px solid rgba(255, 253, 249, 0.16);
  border-radius: 0;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.1;
}

.stat span {
  color: rgba(255, 253, 249, 0.72);
  font-size: 13px;
}

.story-visual,
.wood-visual,
.kirari-visual {
  overflow: hidden;
  border-radius: 0;
  background: var(--color-card-bg);
}

.story-visual img {
  width: 100%;
  height: clamp(240px, 52vw, 360px);
  object-fit: cover;
}

.wood-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wood-options {
  margin-top: 20px;
}

.wood-option {
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
  background: transparent;
}

.wood-option h3 {
  font-size: 20px;
}

.wood-option p {
  margin: 8px 0 0;
  color: var(--color-text-muted);
}

.kirari-panel {
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(43, 39, 35, 0.1);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.kirari-section {
  padding: 20px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg-alt);
}

.kirari-band {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.kirari-visual {
  width: 96px;
  height: 70px;
}

.kirari-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kirari-copy .section-kicker {
  margin-bottom: 2px;
  font-size: 11px;
}

.kirari-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 600;
  line-height: 1.45;
}

.kirari-copy p:last-child {
  margin: 3px 0 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.kirari-link {
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-ink);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(43, 39, 35, 0.12);
  border-radius: 0;
  background: var(--color-white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font-size: 17px;
  text-align: left;
  transition: background-color 0.25s ease;
}

.faq-question::after {
  flex: 0 0 auto;
  margin-left: 18px;
  color: var(--color-accent);
  content: "+";
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 18px;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition:
    grid-template-rows 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.34s;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding-bottom: 0;
  transition: padding-bottom 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer.is-open p {
  padding-bottom: 18px;
}

@media (hover: hover) {
  .faq-question:hover {
    background: rgba(178, 91, 67, 0.05);
  }
}

.cta-pair {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(43, 39, 35, 0.14);
}

.company-table th,
.company-table td {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(43, 39, 35, 0.14);
  text-align: left;
  vertical-align: top;
}

.company-table th {
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.company-credential-block p {
  margin: 0;
}

.company-credential-block p + p {
  margin-top: 14px;
}

.company-credential-label {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.company-credential-list {
  display: grid;
  gap: 4px 20px;
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.company-history-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 14px;
  padding-bottom: 16px;
}

.company-history-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1.5;
}

.company-history-link a:hover {
  color: var(--color-ink);
}

.company-history-link-fill {
  border-bottom: 0 !important;
  min-height: 38px;
  padding: 9px 18px;
  background: var(--color-accent);
  color: var(--color-white) !important;
  font-weight: 700;
  line-height: 1.35;
}

.company-history-link-fill:hover {
  background: var(--color-ink);
}

.history-section {
  background: var(--color-bg);
}

.history-section > .container {
  width: min(calc(100% - var(--content-gutter)), 1200px);
}

.history-intro {
  max-width: 720px;
  padding-bottom: 10px;
}

.history-intro p:last-child {
  margin: 12px 0 0;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.history-group {
  margin-top: clamp(48px, 7vw, 84px);
}

.history-group-heading {
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.history-group-heading .section-kicker {
  margin-bottom: 6px;
}

.history-group-heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.35;
  text-wrap: balance;
}

.history-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--color-ink);
}

.history-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.history-table th,
.history-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

.history-table th {
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.history-table td:nth-child(2),
.history-table td:nth-child(3) {
  white-space: nowrap;
}

.history-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.history-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  line-height: 1.7;
}

.history-list li::before {
  display: inline-block;
  width: 1.2em;
  color: var(--color-accent);
  content: "—";
}

.history-actions {
  margin-top: clamp(48px, 7vw, 84px);
}

@media (min-width: 640px) {
  .company-credential-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .history-table {
    min-width: 0;
  }

  .history-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .history-table,
  .history-table tbody,
  .history-table tr,
  .history-table td {
    display: block;
  }

  .history-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-line);
  }

  .history-table td {
    display: grid;
    grid-template-columns: 5.5em minmax(0, 1fr);
    gap: 10px;
    padding: 3px 0;
    border: 0;
  }

  .history-table td::before {
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
  }

  .history-table td:nth-child(1)::before {
    content: "工事名";
  }

  .history-table td:nth-child(2)::before {
    content: "構造";
  }

  .history-table td:nth-child(3)::before {
    content: "延べ面積";
  }

  .history-table td:nth-child(2),
  .history-table td:nth-child(3) {
    white-space: normal;
  }

  .history-list {
    grid-template-columns: 1fr;
  }
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-card-bg);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-card {
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label,
.checkbox-field {
  font-weight: 700;
}

.required {
  color: var(--color-accent);
  font-size: 13px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(43, 39, 35, 0.18);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-ink);
}

.form-field input {
  min-height: 48px;
  padding: 10px 12px;
}

.form-field textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.form-help {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 13px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.7;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(74, 93, 67, 0.12);
  color: var(--color-cta);
  font-weight: 700;
}

.form-message.is-visible {
  display: block;
}

.form-message-error {
  background: rgba(178, 91, 67, 0.12);
  color: var(--color-accent);
}

.form-message-error a {
  color: var(--color-accent);
  text-decoration: underline;
}

.site-footer {
  padding: 40px 0 84px;
  background: var(--color-ink);
  color: var(--color-white);
}

.footer-layout {
  display: grid;
  gap: 28px;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-lockup img {
  width: 48px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-lockup span {
  color: var(--color-white);
  font-size: 20px;
}

.footer-brand p,
.footer-copy {
  color: rgba(255, 253, 249, 0.72);
}

.footer-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 14px;
  margin: 0;
  font-size: 14px;
}

.footer-contact-line a {
  color: var(--color-white);
  font-weight: 700;
}

.footer-main {
  display: flex;
  flex-direction: column;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a,
.footer-contact-line a {
  color: var(--color-white);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 22px;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  align-items: baseline;
  margin: 0;
}

.footer-privacy {
  width: fit-content;
  color: rgba(255, 253, 249, 0.48);
  font-size: 11px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-privacy:hover,
.footer-privacy:focus-visible {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.footer-social-icon {
  display: grid;
  width: 32px;
  height: 32px;
  color: rgba(255, 253, 249, 0.9);
  place-items: center;
}

.footer-social-icon--instagram img {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  filter: brightness(0) invert(1);
}

.line-chat-icon {
  position: relative;
  width: 26px;
  height: 21px;
  border: 1.25px solid currentColor;
  border-radius: 50%;
}

.line-chat-icon::before {
  position: absolute;
  top: 9px;
  left: 7px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 5px 0 0 currentColor, 10px 0 0 currentColor;
  content: "";
}

.line-chat-icon::after {
  position: absolute;
  right: 2px;
  bottom: -3px;
  width: 6px;
  height: 6px;
  border-right: 1.25px solid currentColor;
  border-bottom: 1.25px solid currentColor;
  background: var(--color-ink);
  content: "";
  transform: rotate(18deg);
}

@media (prefers-reduced-motion: reduce) {
  .faq-question,
  .faq-question::after,
  .faq-answer,
  .faq-answer p {
    transition: none;
  }
}

.mobile-cta-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(43, 39, 35, 0.12);
  background: var(--color-white);
  box-shadow: 0 -10px 30px rgba(43, 39, 35, 0.12);
}

.mobile-cta-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  color: var(--color-white);
  font-weight: 700;
}

.mobile-cta-bar a:first-child {
  background: var(--color-cta);
}

.mobile-cta-bar a:last-child {
  background: var(--color-accent);
}

.mobile-cta-bar .masked-icon {
  width: 20px;
  height: 20px;
  margin: 0;
  background: currentColor;
}

.page-hero {
  padding: clamp(48px, 8vw, 88px) 0;
  background: var(--color-bg-alt);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.page-heading h1 {
  font-size: clamp(34px, 7vw, 58px);
}

.page-heading p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 18px;
}

.work-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.work-tab {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(43, 39, 35, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--color-ink-soft);
  font-weight: 700;
}

.work-tab.is-active {
  border-color: var(--color-cta);
  background: var(--color-cta);
  color: var(--color-white);
}

.work-card.is-hidden {
  display: none;
}

.work-card h2,
.work-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.45;
}

.work-category {
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 700;
}

.privacy-content {
  display: grid;
  gap: 28px;
}

.privacy-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(43, 39, 35, 0.12);
}

.privacy-content h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.privacy-content p,
.privacy-content li {
  color: var(--color-text-muted);
}

.notice-box {
  padding: 16px;
  border-left: 4px solid var(--color-accent);
  border-radius: 0;
  background: rgba(178, 91, 67, 0.08);
}

@media (min-width: 640px) {
  .business-grid,
  .sub-room-grid,
  .wood-options,
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-table th,
  .company-table td {
    display: table-cell;
    padding: 15px 0;
  }

  .company-table th {
    width: 180px;
    padding-right: 24px;
  }

  .cta-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    min-height: 100svh;
  }

  .soundproof-feature {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  }

  .soundproof-feature img {
    height: 100%;
    min-height: 300px;
    max-height: 360px;
  }

  .story-layout,
  .wood-layout,
  .kirari-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    align-items: center;
  }

  .contact-layout {
    align-items: start;
  }

  .footer-layout {
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    display: block;
    max-height: none;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-list {
    display: flex;
    gap: 18px;
    width: auto;
    padding: 0;
  }

  .nav-list a {
    padding: 8px 0;
    border: 0;
    font-size: 14px;
    white-space: nowrap;
  }

  .site-header:not(.is-scrolled) .nav-list a {
    color: var(--color-white);
  }

  .site-header.is-scrolled .nav-list a {
    color: var(--color-ink-soft);
  }

  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-grid,
  .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reason-card {
    min-width: 0;
    padding: 24px 38px 30px;
    border-top: 0;
    border-left: 1px solid var(--color-line);
  }

  .reason-card:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .reason-card:last-child {
    padding-right: 0;
  }

  .flow {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
  }

  .flow::before {
    position: absolute;
    top: 40px;
    right: 7%;
    left: 7%;
    height: 2px;
    background: rgba(43, 39, 35, 0.16);
    content: "";
  }

  .flow-step {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 10px;
    background: transparent;
    box-shadow: none;
    text-align: center;
  }

  .flow-number {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    box-shadow: 0 0 0 8px var(--color-bg-alt);
  }
}

@media (min-width: 1100px) {
  .brand .brand-mark {
    width: 46px;
  }

  .brand-name {
    font-size: 20px;
  }

  .nav-list {
    gap: 24px;
  }

  .sub-room-grid,
  .wood-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .reform-card {
    flex-basis: 84vw;
  }

  .kirari-band {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }

  .kirari-visual {
    width: 84px;
    height: 64px;
  }

  .kirari-link {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .hero-actions .button,
  .section-actions .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 960px) {
  .mobile-cta-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 40px;
  }
}

@media (min-width: 1100px) {
  .footer-contact-line,
  .footer-copy {
    flex-wrap: nowrap;
  }
}

/* Wood Story: make the material itself the main visual. */
#wood-story {
  position: relative;
  overflow: hidden;
  padding: 0;
}

#wood-story .story-layout {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: clamp(600px, 62vw, 760px);
  margin: 0;
}

#wood-story .story-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#wood-story .story-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 39, 35, 0.95) 0%, rgba(43, 39, 35, 0.82) 34%, rgba(43, 39, 35, 0.34) 68%, rgba(43, 39, 35, 0.08) 100%), linear-gradient(0deg, rgba(43, 39, 35, 0.3), transparent 42%);
  content: "";
}

#wood-story .story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#wood-story .story-copy {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
  padding: clamp(88px, 11vw, 142px) 0 clamp(64px, 8vw, 100px);
}

#wood-story .section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

#wood-story .section-heading h2 {
  max-width: 17em;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.3;
}

#wood-story .story-copy > p {
  max-width: 640px;
  margin-top: 0;
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 2;
}

#wood-story .stats {
  max-width: 720px;
  gap: 0;
  margin-top: clamp(32px, 4vw, 48px);
}

#wood-story .stat {
  min-height: 128px;
  padding: 20px 16px;
  border-color: rgba(255, 253, 249, 0.28);
  background: rgba(43, 39, 35, 0.28);
}

#wood-story .stat strong {
  font-size: clamp(30px, 4vw, 48px);
}

@media (max-width: 700px) {
  #wood-story .story-layout {
    min-height: 700px;
  }

  #wood-story .story-copy {
    padding-top: 78px;
    padding-bottom: 56px;
  }

  #wood-story .story-visual img {
    object-position: 62% center;
  }

  #wood-story .story-visual::after {
    background: linear-gradient(180deg, rgba(43, 39, 35, 0.9) 0%, rgba(43, 39, 35, 0.72) 50%, rgba(43, 39, 35, 0.42) 100%);
  }

  #wood-story .stats {
    gap: 6px;
  }

  #wood-story .stat {
    min-height: 110px;
    padding: 14px 6px;
  }

  #wood-story .stat strong {
    font-size: clamp(24px, 8vw, 34px);
  }

  #wood-story .stat span {
    font-size: 11px;
  }
}

/* Wood Sales: let the stock image carry the section. */
#wood-sales {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--color-ink);
  color: var(--color-white);
}

#wood-sales .wood-layout {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  min-height: clamp(580px, 60vw, 720px);
  margin: 0;
}

#wood-sales .wood-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#wood-sales .wood-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 39, 35, 0.94) 0%, rgba(43, 39, 35, 0.8) 34%, rgba(43, 39, 35, 0.3) 70%, rgba(43, 39, 35, 0.08) 100%), linear-gradient(0deg, rgba(43, 39, 35, 0.28), transparent 46%);
  content: "";
}

#wood-sales .wood-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#wood-sales .wood-layout > div:first-child {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
  padding: clamp(82px, 10vw, 132px) 0 clamp(64px, 8vw, 96px);
}

#wood-sales .section-heading {
  max-width: 660px;
  margin-bottom: 0;
}

#wood-sales .section-heading h2 {
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.3;
}

#wood-sales .section-heading > p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 18px;
  color: rgba(255, 253, 249, 0.82);
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 2;
}

#wood-sales .wood-options {
  max-width: 720px;
  gap: 0;
  margin-top: clamp(32px, 4vw, 48px);
}

#wood-sales .wood-option {
  min-height: 132px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  background: rgba(43, 39, 35, 0.28);
}

#wood-sales .wood-option + .wood-option {
  border-left: 0;
}

#wood-sales .wood-option h3 {
  font-size: clamp(18px, 2vw, 24px);
}

#wood-sales .wood-option p {
  color: rgba(255, 253, 249, 0.72);
}

@media (max-width: 700px) {
  #wood-sales .wood-layout {
    min-height: 680px;
  }

  #wood-sales .wood-layout > div:first-child {
    padding-top: 72px;
    padding-bottom: 52px;
  }

  #wood-sales .wood-visual img {
    object-position: 58% center;
  }

  #wood-sales .wood-visual::after {
    background: linear-gradient(180deg, rgba(43, 39, 35, 0.9) 0%, rgba(43, 39, 35, 0.7) 52%, rgba(43, 39, 35, 0.42) 100%);
  }

  #wood-sales .wood-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  #wood-sales .wood-option + .wood-option {
    border-left: 1px solid rgba(255, 253, 249, 0.28);
  }
}

/* Kirari: give the new-house announcement enough visual weight. */
#kirari {
  padding: 0;
}

#kirari .kirari-band {
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.2fr) auto;
  gap: clamp(24px, 3vw, 40px);
  min-height: 260px;
}

#kirari .kirari-visual {
  width: 100%;
  height: 260px;
}

#kirari .kirari-copy .section-kicker {
  margin-bottom: 8px;
  font-size: 13px;
}

#kirari .kirari-copy h2 {
  max-width: 18em;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.35;
}

#kirari .kirari-copy p:last-child {
  margin-top: 12px;
  font-size: 16px;
}

#kirari .kirari-link {
  font-size: 15px;
}

@media (max-width: 700px) {
  #kirari .kirari-band {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 32px;
    padding-bottom: 36px;
  }

  #kirari .kirari-visual {
    height: clamp(180px, 52vw, 260px);
  }

  #kirari .kirari-link {
    grid-column: auto;
    justify-self: start;
  }
}

/* FAQ: replace the side CTA card with a full-width Niigata landscape. */
#faq {
  position: relative;
  overflow: hidden;
  background: var(--color-ink) url("../images/P10_niigata_landscape.png") center / cover no-repeat;
  color: var(--color-white);
}

#faq::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 39, 35, 0.82) 0%, rgba(43, 39, 35, 0.64) 54%, rgba(43, 39, 35, 0.42) 100%), linear-gradient(0deg, rgba(43, 39, 35, 0.42), rgba(43, 39, 35, 0.12));
  content: "";
}

#faq .faq-layout {
  position: relative;
  z-index: 1;
  display: block;
}

#faq .section-heading {
  max-width: 900px;
}

#faq .section-heading h2 {
  color: var(--color-white);
  font-size: clamp(34px, 4.5vw, 52px);
}

#faq .faq-list {
  width: 100%;
  max-width: none;
}

#faq .faq-item {
  background: rgba(255, 253, 249, 0.94);
}

#reform > .container > .section-actions {
  justify-content: center;
}

@media (max-width: 700px) {
  #faq {
    background-position: 58% center;
  }

  #faq::before {
    background: linear-gradient(180deg, rgba(43, 39, 35, 0.82) 0%, rgba(43, 39, 35, 0.62) 54%, rgba(43, 39, 35, 0.48) 100%);
  }
}

/* Flow: keep the connector behind the step markers on desktop. */
@media (min-width: 960px) {
  #flow .flow::before {
    top: 28px;
    z-index: 0;
  }

  #flow .flow-step {
    z-index: 1;
    border-top: 0;
  }

  #flow .flow-number {
    z-index: 2;
  }
}

/* Wood Journey: one clear sequence instead of three unrelated section rhythms. */
.wood-journey {
  background: var(--color-bg-alt);
}

.wood-journey > .container {
  width: min(100% - 32px, 1400px);
}

.wood-journey-heading {
  max-width: none;
  margin-bottom: 32px;
  text-align: center;
}

.wood-journey-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.wood-journey-grid {
  display: grid;
  grid-template-columns: 1fr;
}

#wood-story.wood-journey-card,
#wood-sales.wood-journey-card,
#kirari.wood-journey-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.wood-journey-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-card-bg);
}

.wood-journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wood-journey-card:hover .wood-journey-image img {
  transform: scale(1.03);
}

.wood-journey-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 30px);
}

.wood-journey-body .section-kicker {
  margin-bottom: 8px;
  font-size: 12px;
}

.wood-journey-body h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 600;
  line-height: 1.3;
}

.wood-journey-body > p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.9;
}

.wood-journey-facts {
  display: flex;
  gap: 0;
  margin-top: auto;
  padding-top: 20px;
}

.wood-journey-facts span {
  flex: 1;
  padding: 10px 6px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.wood-journey-link {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-ink);
  font-size: 14px;
  font-weight: 700;
}

@media (min-width: 900px) {
  .wood-journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #wood-story.wood-journey-card + #wood-sales.wood-journey-card,
  #wood-sales.wood-journey-card + #kirari.wood-journey-card {
    border-left: 0;
  }

  .wood-journey-body {
    min-height: 238px;
  }
}

@media (max-width: 899px) {
  .wood-journey-grid {
    gap: 12px;
  }
}

/* Wood Journey v2: the story is an introduction; the next two are menus. */
#wood-story.wood-journey-story-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 340px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.wood-journey-story-image {
  min-height: 340px;
  overflow: hidden;
  background: var(--color-card-bg);
}

.wood-journey-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wood-journey-story-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 64px);
}

.wood-journey-step {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.wood-journey-step > span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}

.wood-journey-step .section-kicker {
  margin: 0;
}

.wood-journey-story-body h3 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.25;
}

.wood-journey-story-body > p:not(.section-kicker) {
  max-width: 34em;
  margin: 18px 0 0;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 2;
}

.wood-journey-story-body .wood-journey-facts {
  margin-top: 28px;
}

.wood-journey-menus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

#wood-sales.wood-journey-menu-card,
#kirari.wood-journey-menu-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: none;
}

.wood-journey-menu-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-card-bg);
}

.wood-journey-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wood-journey-menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.wood-journey-menu-body h3 {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  line-height: 1.35;
}

.wood-journey-menu-lead {
  margin: 10px 0 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.wood-journey-menu-body > p:last-of-type {
  margin: 8px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.9;
}

.wood-journey-menu-body .wood-journey-link {
  margin-top: 26px;
}

@media (max-width: 899px) {
  #wood-story.wood-journey-story-card {
    grid-template-columns: 1fr;
  }

  .wood-journey-story-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .wood-journey-menus {
    grid-template-columns: 1fr;
  }
}

/* Shape variation: each section gets a different milled-material silhouette. */
#business::before,
#reform::before,
#reasons::before,
#flow::before,
#wood-journey::before,
#company::before {
  position: absolute;
  top: 72px;
  left: auto;
  right: auto;
  z-index: 0;
  width: 520px;
  height: 180px;
  border-radius: 4px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  filter: saturate(0.8) contrast(0.96);
  opacity: 0.24;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: none;
}

#business::before {
  top: 82px;
  left: clamp(24px, 4vw, 56px);
  background-image: url("../images/wood-grain/wood-grain-01-burl.jpg");
}

#reform::before {
  top: 112px;
  right: clamp(24px, 4vw, 56px);
  width: 172px;
  height: 380px;
  background-image: url("../images/wood-grain/wood-grain-02-light-wave.jpg");
}

#reasons::before {
  top: clamp(-245px, -14vw, -150px);
  left: clamp(-145px, -7vw, -80px);
  width: clamp(390px, 34vw, 540px);
  height: clamp(390px, 34vw, 540px);
  border-radius: 50%;
  background-image: url("../images/wood-grain/wood-grain-04-deep-figure.jpg");
  opacity: 0.18;
}

#flow::before {
  top: 92px;
  left: 50%;
  width: 520px;
  height: 78px;
  border-radius: 3px;
  background-image: url("../images/wood-grain/wood-grain-03-straight.jpg");
  transform: translateX(-50%);
}

#wood-journey::before {
  top: 104px;
  right: clamp(24px, 4vw, 56px);
  width: 300px;
  height: 300px;
  border-radius: 14px;
  background-image: url("../images/woodgrain-ellipse-reason.png");
}

#company::before {
  top: 108px;
  right: clamp(24px, 4vw, 56px);
  width: 142px;
  height: 264px;
  border-radius: 3px;
  background-image: url("../images/wood-grain-05-smoky-ash.png");
}

@media (max-width: 640px) {
  #business::before,
  #reform::before,
  #reasons::before,
  #flow::before,
  #wood-journey::before,
  #company::before {
    opacity: 0.19;
  }

  #business::before {
    top: 62px;
    left: 16px;
    width: 300px;
    height: 100px;
  }

  #reform::before {
    top: 92px;
    right: 18px;
    width: 92px;
    height: 220px;
  }

  #reasons::before {
    top: -92px;
    left: -112px;
    width: 280px;
    height: 280px;
    opacity: 0.15;
  }

  #flow::before {
    top: 86px;
    left: 50%;
    width: 300px;
    height: 54px;
  }

  #wood-journey::before {
    top: 86px;
    right: 18px;
    width: 200px;
    height: 200px;
  }

  #company::before {
    top: 88px;
    right: 18px;
    width: 94px;
    height: 174px;
  }
}

/* Wood Journey v3: image-overlay treatment for all three steps. */
#wood-story.wood-journey-story-card {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  background: var(--color-ink);
  color: var(--color-white);
}

#wood-story .wood-journey-story-image,
#wood-sales .wood-journey-menu-image,
#kirari .wood-journey-menu-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 0;
  aspect-ratio: auto;
}

#wood-story .wood-journey-story-image::after,
#wood-sales .wood-journey-menu-image::after,
#kirari .wood-journey-menu-image::after {
  position: absolute;
  inset: 0;
  content: "";
}

#wood-story .wood-journey-story-image::after {
  background: linear-gradient(90deg, rgba(43, 39, 35, 0.94) 0%, rgba(43, 39, 35, 0.72) 42%, rgba(43, 39, 35, 0.18) 100%), linear-gradient(0deg, rgba(43, 39, 35, 0.36), transparent 52%);
}

#wood-story .wood-journey-story-image img,
#wood-sales .wood-journey-menu-image img,
#kirari .wood-journey-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#wood-story .wood-journey-story-body {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: min(100%, 720px);
  min-height: 430px;
  padding: clamp(32px, 6vw, 72px);
  color: var(--color-white);
}

#wood-story .wood-journey-step .section-kicker,
#wood-story .wood-journey-story-body > p:not(.section-kicker),
#wood-sales .wood-journey-step .section-kicker,
#kirari .wood-journey-step .section-kicker {
  color: rgba(255, 253, 249, 0.82);
}

#wood-story .wood-journey-story-body h3,
#wood-sales .wood-journey-menu-body h3,
#kirari .wood-journey-menu-body h3 {
  color: var(--color-white);
}

#wood-story .wood-journey-story-body > p:not(.section-kicker) {
  color: rgba(255, 253, 249, 0.86);
}

#wood-story .wood-journey-facts span {
  border-color: rgba(255, 253, 249, 0.32);
  color: rgba(255, 253, 249, 0.86);
}

#wood-sales.wood-journey-menu-card,
#kirari.wood-journey-menu-card {
  position: relative;
  display: block;
  min-height: 370px;
  overflow: hidden;
  border: 0;
  background: var(--color-ink);
  color: var(--color-white);
}

#wood-sales .wood-journey-menu-image::after,
#kirari .wood-journey-menu-image::after {
  background: linear-gradient(0deg, rgba(43, 39, 35, 0.94) 0%, rgba(43, 39, 35, 0.64) 48%, rgba(43, 39, 35, 0.04) 100%);
}

#wood-sales .wood-journey-menu-body,
#kirari .wood-journey-menu-body {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  min-height: 370px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--color-white);
}

#wood-sales .wood-journey-menu-lead,
#kirari .wood-journey-menu-lead {
  color: var(--color-white);
}

#wood-sales .wood-journey-menu-body > p:last-of-type,
#kirari .wood-journey-menu-body > p:last-of-type {
  color: rgba(255, 253, 249, 0.82);
}

#wood-sales .wood-journey-link,
#kirari .wood-journey-link {
  border-color: rgba(255, 253, 249, 0.82);
  color: var(--color-white);
}

@media (max-width: 899px) {
  #wood-story.wood-journey-story-card {
    min-height: 500px;
  }

  #wood-story .wood-journey-story-body {
    min-height: 500px;
  }
}

/* Woodgrain accents: a few quiet, tactile circles instead of a full-bleed texture. */
.section-texture {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-texture > :not(.woodgrain-orb):not(.woodgrain-hero-ellipse),
.section-texture > .container > :not(.woodgrain-orb):not(.woodgrain-hero-ellipse) {
  position: relative;
  z-index: 1;
}

.woodgrain-orb {
  position: absolute;
  z-index: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background-image: url("../images/wood-grain/wood-grain-03-straight.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.75) contrast(0.94);
  opacity: 0.34;
  mix-blend-mode: multiply;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 58%, transparent 100%);
}

.woodgrain-orb--burl {
  background-image: url("../images/wood-grain/wood-grain-01-burl.jpg");
}

.woodgrain-orb--light {
  background-image: url("../images/wood-grain/wood-grain-02-light-wave.jpg");
}

.woodgrain-orb--straight {
  background-image: url("../images/wood-grain/wood-grain-03-straight.jpg");
}

.woodgrain-orb--deep {
  background-image: url("../images/wood-grain/wood-grain-04-deep-figure.jpg");
}

.woodgrain-shape-rectangle {
  width: 280px;
  height: 108px;
  border-radius: 3px;
  opacity: 0.25;
  -webkit-mask-image: none;
  mask-image: none;
}

.woodgrain-shape-tall {
  width: 128px;
  height: 244px;
  border-radius: 3px;
  opacity: 0.25;
  -webkit-mask-image: none;
  mask-image: none;
}

/* A single large ellipse for the heading-led section prototype. */
.woodgrain-hero-ellipse {
  position: absolute;
  top: clamp(72px, 9vw, 132px);
  left: -300px;
  z-index: 0;
  width: 600px;
  height: 380px;
  border-radius: 50%;
  background: url("../images/woodgrain-ellipse-reason.png") center / cover no-repeat;
  filter: saturate(0.8) contrast(0.96);
  opacity: 0.27;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.woodgrain-orb--top-left {
  top: 28px;
  left: clamp(24px, 4vw, 56px);
}

.woodgrain-orb--top-right {
  top: 52px;
  right: clamp(24px, 4vw, 56px);
}

.woodgrain-orb--bottom-left {
  bottom: 28px;
  left: clamp(24px, 4vw, 56px);
}

.woodgrain-orb--bottom-right {
  right: clamp(24px, 4vw, 56px);
  bottom: 28px;
}

#faq .woodgrain-orb {
  opacity: 0.14;
  mix-blend-mode: screen;
}

@media (max-width: 640px) {
  .woodgrain-orb {
    width: 132px;
    height: 132px;
    opacity: 0.26;
  }

  .woodgrain-shape-rectangle {
    width: 190px;
    height: 76px;
  }

  .woodgrain-shape-tall {
    width: 92px;
    height: 174px;
  }

  .woodgrain-hero-ellipse {
    top: 70px;
    left: -180px;
    width: 360px;
    height: 230px;
    opacity: 0.2;
  }

  .woodgrain-orb--top-left {
    top: 18px;
    left: 20px;
  }

  .woodgrain-orb--top-right {
    top: 32px;
    right: 20px;
  }

  .woodgrain-orb--bottom-left {
    bottom: 24px;
    left: 20px;
  }

  .woodgrain-orb--bottom-right {
    right: 20px;
    bottom: 24px;
  }

}
