:root {
  --ink: #181514;
  --muted: #6f6761;
  --paper: #fbfaf6;
  --paper-soft: #f7f4ee;
  --sand: #eee6d8;
  --wine: #7a2638;
  --wine-deep: #4d0c1d;
  --moss: #315844;
  --moss-deep: #183528;
  --copper: #c7774c;
  --mist: #dbe9e3;
  --white: #ffffff;
  --line: rgba(24, 21, 20, 0.14);
  --shadow: 0 24px 70px rgba(34, 27, 20, 0.14);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-on-light,
.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(247, 244, 238, 0.92);
  box-shadow: 0 8px 30px rgba(28, 22, 18, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-on-dark:not(.nav-active) { color: var(--white); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
}

.brand-mark--logo {
  width: 38px;
  height: 46px;
  border: 0;
  border-radius: 0;
}

.brand-mark--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 28px);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.12);
}

.site-header.is-on-light .site-nav a,
.site-header.is-scrolled .site-nav a,
.site-header.nav-active .site-nav a { text-shadow: none; }

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(35deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-35deg); }

.hero-scroll {
  position: relative;
  height: 400vh;
  min-height: 2200px;
  background: var(--paper-soft);
}

.hero-stage {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-soft);
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-grid,
.hero-ending,
.hero-readability,
.hero-wash,
.hero-copy-glow {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 2;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity, clip-path;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(0.99);
  transform: scale(1.06) translateZ(0);
  transform-origin: center;
  will-change: transform;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 14, 20, 0.1) 0%, rgba(6, 14, 20, 0.02) 42%, rgba(18, 12, 10, 0.18) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.02) 48%, rgba(0, 0, 0, 0.1));
  opacity: 0.72;
  pointer-events: none;
}

.hero-grid {
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 9px;
  background: var(--paper-soft);
  opacity: 0;
  will-change: opacity;
}

.hero-grid-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  opacity: 0;
  transform: scale(1.08) translateZ(0);
  transform-origin: center;
  will-change: transform, opacity;
}

.hero-grid-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translateZ(0);
  will-change: transform, opacity;
}

.hero-grid-tile .hero-grid-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-ending {
  z-index: 3;
  overflow: hidden;
  background: #f7f4ee;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-ending-video,
.hero-ending-ambient,
.hero-ending-liquid,
.hero-ending-overlay {
  position: absolute;
  inset: 0;
}

.hero-ending-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(1.18) contrast(1.08) brightness(0.92);
  transform: scale(1.035);
}

.hero-ending-ambient {
  z-index: 1;
  overflow: hidden;
  opacity: 0.36;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 211, 196, 0.26), rgba(255, 211, 196, 0) 38%),
    linear-gradient(180deg, rgba(140, 28, 52, 0.7) 0%, rgba(105, 15, 39, 0.88) 55%, rgba(58, 5, 24, 0.96) 100%);
  mix-blend-mode: multiply;
  animation: heroWineAmbient 16s ease-in-out infinite alternate;
}

.hero-ending-liquid {
  z-index: 1;
  opacity: 0.86;
  overflow: visible;
  transform: translateZ(0);
  pointer-events: none;
}

.hero-ending-wave {
  fill: url(#heroWineGradient);
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.hero-ending-wave--back {
  opacity: 0.56;
  filter: blur(2px);
  animation: heroWineWaveBack 15s ease-in-out infinite alternate;
}

.hero-ending-wave--front {
  opacity: 0.9;
  animation: heroWineWaveFront 12s ease-in-out infinite alternate;
}

.hero-ending-overlay {
  z-index: 2;
  background: linear-gradient(180deg, rgba(247, 244, 238, 0.68), rgba(247, 244, 238, 0.62));
  backdrop-filter: blur(0.6px);
}

@keyframes heroWineAmbient {
  0% { transform: translate3d(-1.5%, -1%, 0) scale(1.02); }
  100% { transform: translate3d(1.5%, 1%, 0) scale(1.04); }
}

@keyframes heroWineWaveBack {
  0% { transform: translate3d(-2.4%, -0.8%, 0) scaleY(1); }
  100% { transform: translate3d(2.2%, 1%, 0) scaleY(1.04); }
}

@keyframes heroWineWaveFront {
  0% { transform: translate3d(2%, 0.7%, 0) scaleY(1.02); }
  100% { transform: translate3d(-2%, -0.9%, 0) scaleY(0.98); }
}

.hero-readability {
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(18, 12, 10, 0.16), rgba(18, 12, 10, 0.16)),
    linear-gradient(180deg, rgba(18, 12, 10, 0.08), rgba(18, 12, 10, 0.08));
  pointer-events: none;
  will-change: opacity;
}

.hero-wash {
  z-index: 4;
  background: var(--paper-soft);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-copy-glow {
  z-index: 4;
  background: radial-gradient(circle at center, rgba(247, 244, 238, 0.82) 0%, rgba(247, 244, 238, 0.45) 45%, rgba(247, 244, 238, 0) 75%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  width: min(900px, calc(100vw - 80px));
  color: var(--white);
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transform-origin: 50% 50%;
  will-change: transform;
}

.hero-copy-en {
  color: #ffffff;
  will-change: color;
}

.hero-headline {
  max-width: 100%;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-line {
  display: block;
  white-space: nowrap;
  font-size: clamp(42px, 4.2vw, 64px);
}

.hero-line + .hero-line {
  margin-top: clamp(12px, 1.1vw, 18px);
}

.hero-line--through {
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.04;
}

.hero-copy-ja {
  margin: clamp(44px, 5vh, 72px) 0 0;
  color: #ffffff;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25), 0 0 20px rgba(0, 0, 0, 0.18);
}

.section-pad {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 72px);
}

.philosophy-intro,
.statement-section,
.table-section,
.values-section,
.service-section,
.process-section,
.initiative-section,
.news-page,
.job-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.philosophy-intro {
  width: min(1380px, 100%);
  padding-top: clamp(96px, 13vw, 180px);
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(120px, 220px) 1fr;
  gap: clamp(28px, 7vw, 90px);
}

.purpose-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(42px, 6.5vw, 96px);
  align-items: center;
  width: min(1380px, 100%);
  margin: 0 auto;
}

.purpose-copy {
  width: min(560px, 100%);
  margin: 0;
}

.purpose-visual-card {
  min-width: 0;
  height: clamp(560px, 58vw, 760px);
  overflow: hidden;
  border-radius: 8px;
  background: var(--sand);
  box-shadow: 0 28px 80px rgba(36, 27, 20, 0.18);
}

.purpose-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 100%;
  gap: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.purpose-person-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.purpose-person-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-label,
.section-kicker,
.eyebrow {
  margin: 0 0 clamp(16px, 1.8vw, 24px);
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.06em;
}

.section-kicker { color: var(--muted); }

.statement-title,
.section-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-title {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 72px);
}

.lead,
.section-lead {
  max-width: 860px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  line-height: 2;
}

.section-body {
  max-width: 860px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 2;
}

.body-text { max-width: 600px; color: var(--muted); font-size: 16px; line-height: 1.9; }

.section-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 72px);
}
.body-text p { margin: 0; }
.body-text p + p { margin-top: 18px; }
.business-body { max-width: 660px; margin: 30px 0 0; }

.text-link,
.outline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  font-weight: 800;
}

.text-link span,
.outline-link span,
.circle-link span:last-child { transition: transform 0.28s ease; }
.text-link:hover span,
.outline-link:hover span,
.circle-link:hover span:last-child { transform: translateX(8px); }

.outline-link {
  min-height: 48px;
  margin-top: 22px;
  padding: 10px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.outline-link.light { color: var(--white); }

.business-parallax {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: start;
  width: min(1380px, 100%);
  min-height: 145vh;
  margin: 0 auto;
  background: var(--paper);
}

.business-sticky {
  position: sticky;
  top: 128px;
  padding-top: clamp(16px, 5vw, 48px);
}

.business-gallery { position: relative; min-height: 1180px; }

.business-photo {
  position: absolute;
  width: min(34vw, 360px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.business-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.business-photo:hover img { transform: scale(1.08); }
.business-photo--01 { top: 80px; left: 0; height: 520px; }
.business-photo--02 { top: 0; left: 38%; z-index: 2; width: min(38vw, 430px); height: 640px; }
.business-photo--03 { top: 560px; left: 16%; height: 560px; }
.business-photo--04 { top: 480px; right: 0; height: 500px; }

.news-sustainability-scroll {
  position: relative;
  height: 340vh;
  background: var(--white);
}

.news-sustainability-stage {
  position: relative;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.news-content-layer {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  align-content: center;
  background: linear-gradient(180deg, rgba(251, 250, 246, 0.88), rgba(251, 250, 246, 0.72));
  will-change: opacity, transform;
}

.news-home { overflow: hidden; background: transparent; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), 100%);
  margin: 0 auto 42px;
}

.news-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.news-card {
  display: grid;
  min-height: 240px;
  align-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-card:hover {
  border-color: rgba(122, 38, 56, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.news-card time,
.news-row time {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.tag {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 2px 10px;
  border: 1px solid rgba(122, 38, 56, 0.28);
  border-radius: 999px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}

.news-card h3 { margin: 28px 0 0; font-size: clamp(18px, 2vw, 24px); line-height: 1.5; }

.cork-transition-layer,
.sustainability-content-layer,
.sustainability-bg,
.sustainability-overlay {
  position: absolute;
  inset: 0;
}

.cork-transition-layer {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.cork-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: var(--paper-soft);
  opacity: 0;
  transform: scale(1.035);
  transform-origin: center center;
  will-change: opacity, transform;
}

.cork-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 246, 0.24);
  pointer-events: none;
}

.cork-grid-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--sand);
  opacity: 0;
  transform: scale(1.02) translateZ(0);
  transform-origin: center center;
  will-change: opacity, transform;
}

.cork-grid-tile img,
.cork-zoom-frame img,
.sustainability-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
  will-change: transform;
}

.sustainability-bg img {
  filter: saturate(0.96) contrast(1.08) brightness(0.78);
}

.cork-zoom-frame {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 160px;
  height: 120px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  will-change: opacity, transform, border-radius;
}

.sustainability-content-layer {
  z-index: 5;
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding-block: clamp(86px, 9vw, 132px) clamp(52px, 6vw, 96px);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
}

.news-sustainability-stage.is-sustainability-active .sustainability-content-layer { pointer-events: auto; }

.sustainability-bg {
  z-index: 0;
  overflow: hidden;
  opacity: 0;
}

.sustainability-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 6, 4, 0.84) 0%, rgba(13, 8, 5, 0.68) 40%, rgba(16, 10, 7, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.34));
  opacity: 0;
}

.sustainability-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(520px, 1fr);
  gap: clamp(38px, 5.8vw, 88px);
  align-items: center;
}

.sustainability-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.sustainability-copy .section-title,
.sustainability-copy .body-text {
  max-width: 640px;
}

.sustainability-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  min-width: 0;
}

.sustainability-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  aspect-ratio: 1.34 / 1;
}

.sustainability-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sustainability-card--flower img { object-position: 50% 48%; }
.sustainability-card--corks img { object-position: center center; }
.sustainability-card--green-glass img { object-position: center center; }
.sustainability-card--glass-craft img { object-position: center center; }

.sustainability-copy .section-label { color: #f3c186; }
.sustainability-copy .body-text { color: rgba(255, 255, 255, 0.82); }
.sustainability-copy-item { opacity: 0; transform: translateY(24px); will-change: opacity, transform; }

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.8fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--moss);
  color: var(--white);
}

.feature-band .body-text { color: rgba(255, 255, 255, 0.78); }
.feature-band .eyebrow,
.feature-band .section-label { color: #f3c186; }

.feature-media img,
.culture-image img {
  width: 100%;
  min-height: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
}

.recruit-teaser {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr) 180px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.circle-link {
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.circle-link:hover { background: var(--ink); color: var(--white); transform: rotate(-5deg); }

.page-hero {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  color: var(--white);
}

.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 12, 10, 0.74), rgba(18, 12, 10, 0.26)), linear-gradient(180deg, rgba(18, 12, 10, 0.1), rgba(18, 12, 10, 0.5));
  content: "";
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 74vh;
  align-content: end;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 88px;
}

.page-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 12vw, 152px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero .lead { color: rgba(255, 255, 255, 0.86); }

.company-table { border-top: 1px solid var(--line); }
.company-table div { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.company-table dt { color: var(--muted); font-weight: 800; }
.company-table dd { margin: 0; font-size: 18px; font-weight: 700; }

.value-grid,
.initiative-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 42px; }
.value-card,
.initiative-card,
.process-card { border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.value-card { min-height: 260px; padding: 30px; }
.value-card span,
.service-number,
.job-row span { color: var(--copper); font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.value-card h3,
.initiative-card h3 { margin: 34px 0 12px; font-size: 24px; }
.value-card p,
.initiative-card p,
.service-item p,
.job-row p { margin: 0; color: var(--muted); }

.service-list { display: grid; gap: 22px; margin-top: 48px; }
.service-item { display: grid; grid-template-columns: 90px minmax(0, 1fr) 280px; gap: 28px; align-items: center; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.service-number { font-size: 46px; }
.service-item h3 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 34px); }
.service-item img { width: 100%; aspect-ratio: 4 / 3; border-radius: 8px; object-fit: cover; }

.process-section,
.metrics-band { background: var(--mist); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; width: min(var(--max), 100%); margin: 0 auto; }
.process-card { min-height: 190px; padding: 24px; }
.process-card span { display: block; margin-bottom: 36px; font-family: Georgia, "Times New Roman", serif; font-size: 28px; }
.process-card p { margin: 0; color: var(--muted); font-weight: 700; }

.news-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.news-filter span { display: inline-flex; min-height: 38px; align-items: center; padding: 4px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); font-size: 13px; font-weight: 800; }
.news-filter span:first-child { background: var(--ink); color: var(--white); }
.news-list { border-top: 1px solid var(--line); }
.news-row { display: grid; grid-template-columns: 150px 140px 1fr; gap: 22px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line); }
.news-row h2 { margin: 0; font-size: clamp(19px, 2.5vw, 30px); line-height: 1.45; }

.initiative-card { overflow: hidden; }
.initiative-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.initiative-card h3,
.initiative-card p { padding-inline: 24px; }
.initiative-card h3 { margin-top: 24px; }
.initiative-card p { padding-bottom: 28px; }

.metrics-band { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; }
.metric { display: grid; min-height: 220px; place-items: center; padding: 30px; background: var(--paper); text-align: center; }
.metric strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(54px, 7vw, 104px); font-weight: 500; line-height: 1; }
.metric span { color: var(--muted); font-weight: 800; }

.job-list { display: grid; gap: 14px; margin-top: 42px; }
.job-row { display: grid; grid-template-columns: 80px minmax(190px, 0.4fr) 1fr; gap: 24px; align-items: center; padding: 28px 0; border-top: 1px solid var(--line); }
.job-row:last-child { border-bottom: 1px solid var(--line); }
.job-row h3 { margin: 0; font-size: clamp(22px, 3vw, 34px); }

.culture-section { display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.75fr); gap: clamp(34px, 6vw, 82px); align-items: center; width: min(1320px, 100%); margin: 0 auto; background: var(--white); }
.culture-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.culture-list li { padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 800; }

.site-footer { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.3fr) auto; gap: 28px; align-items: start; padding: 54px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); background: var(--ink); color: var(--white); }
.site-footer p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.62); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 14px 24px; font-size: 14px; font-weight: 700; }
.site-footer small { color: rgba(255, 255, 255, 0.62); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .news-sustainability-scroll { height: auto !important; }
  .news-sustainability-stage { height: auto; min-height: 0; overflow: visible; }
  .news-content-layer,
  .sustainability-content-layer { position: relative; inset: auto; opacity: 1; pointer-events: auto; }
  .cork-transition-layer { display: none; }
  .sustainability-content-layer { min-height: 100svh; }
  .sustainability-bg,
  .sustainability-overlay,
  .sustainability-copy-item { opacity: 1; transform: none; }
  .hero-scroll { height: auto; min-height: 0; }
  .hero-stage { min-height: 100svh; }
  .hero-grid { opacity: 0; }
  .hero-wash { opacity: 0.1; }
  .hero-copy-en,
  .hero-copy-ja { color: #ffffff; }
  .hero-ending-video { display: none; }
  .hero-ending-ambient, .hero-ending-wave { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .hero-copy { width: min(820px, calc(100vw - 72px)); }
}

@media (max-width: 1023px) {
  .section-label,
  .section-kicker,
  .eyebrow { font-size: clamp(19px, 2.4vw, 24px); }
  .hero-scroll { height: 340vh; min-height: 1850px; }
  .hero-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); }
  .hero-grid-tile:nth-child(n + 17) { display: none; }
  .hero-copy { width: min(760px, calc(100vw - 72px)); }
  .hero-line { font-size: clamp(40px, 5.6vw, 58px); }
  .hero-line--through { font-size: clamp(27px, 3.2vw, 34px); }
  .hero-copy-ja { font-size: clamp(25px, 3vw, 33px); }
  .business-parallax { grid-template-columns: 1fr; min-height: auto; }
  .purpose-layout { grid-template-columns: 1fr; }
  .purpose-copy { width: min(680px, 100%); }
  .purpose-visual-card { height: clamp(500px, 74vw, 720px); }
  .sustainability-inner { grid-template-columns: 1fr; gap: 32px; }
  .sustainability-copy .section-title, .sustainability-copy .body-text { max-width: 720px; }
  .sustainability-visual-grid { width: min(640px, 100%); }
  .business-sticky { position: relative; top: auto; }
  .business-gallery { min-height: 900px; }
  .business-photo { width: min(42vw, 360px); }
  .business-photo--02 { left: 44%; width: min(48vw, 420px); }
  .news-sustainability-scroll { height: 290vh; }
  .news-sustainability-stage { min-height: 640px; }
  .cork-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); }
  .cork-grid-tile:nth-child(n + 13) { display: none; }
}

@media (max-width: 980px) {
  .nav-toggle { position: relative; z-index: 90; display: block; }
  .site-nav { position: fixed; inset: 0; z-index: 82; display: grid; align-content: center; gap: 0; padding: 92px 28px 36px; background: var(--paper); color: var(--ink); transform: translateX(100%); transition: transform 0.36s ease; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: clamp(24px, 8vw, 42px); text-shadow: none; }
  .statement-grid, .feature-band, .recruit-teaser, .culture-section { grid-template-columns: 1fr; }
  .news-strip, .value-grid, .initiative-grid, .metrics-band { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-item { grid-template-columns: 70px 1fr; }
  .service-item img { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .labo-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .labo-content .labo-heading {
    max-width: 680px;
  }
}
@media (max-width: 767px) {
  .section-label,
  .section-kicker,
  .eyebrow { font-size: clamp(18px, 5vw, 22px); }
  .hero-scroll { height: 340vh; min-height: 1450px; }
  .hero-stage { min-height: 560px; }
  .hero-bg img { object-position: 38% center; }
  .hero-readability { background: linear-gradient(180deg, rgba(18, 12, 10, 0.1) 0%, rgba(18, 12, 10, 0.46) 100%), linear-gradient(90deg, rgba(18, 12, 10, 0.08), rgba(18, 12, 10, 0.08)); }
  .hero-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 8px; }
  .hero-grid-tile:nth-child(n + 10) { display: none; }
  .hero-copy { width: min(520px, calc(100vw - 40px)); }
  .hero-line { font-size: clamp(32px, 8.4vw, 44px); white-space: normal; }
  .hero-line--through { font-size: clamp(24px, 6vw, 30px); }
  .hero-copy-ja { margin-top: clamp(34px, 5vh, 48px); font-size: clamp(21px, 5.4vw, 25px); }
  .business-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; min-height: 0; }
  .business-photo { position: relative; top: auto; right: auto; left: auto; width: 100%; height: auto; aspect-ratio: 3 / 4; }
  .business-photo--02 { width: 100%; transform: translateY(24px); }
  .business-photo--03 { transform: translateY(-16px); }
  .business-photo--04 { transform: translateY(18px); }
  .news-sustainability-scroll { height: 260vh; }
  .news-sustainability-stage { min-height: 620px; }
  .news-content-layer { align-content: center; }
  .cork-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); gap: 8px; padding: 8px; }
  .cork-grid-tile:nth-child(n + 13) { display: none; }
  .sustainability-content-layer { align-items: center; padding: clamp(82px, 12vh, 118px) 0 clamp(36px, 8vh, 72px); }
  .sustainability-overlay { background: linear-gradient(180deg, rgba(8, 5, 4, 0.62) 0%, rgba(9, 6, 4, 0.72) 48%, rgba(9, 6, 4, 0.84) 100%); }
  .sustainability-inner { width: min(var(--max), 100%); padding-inline: 20px; }
  .sustainability-visual-grid { gap: 10px; }
  .sustainability-card { aspect-ratio: 1.16 / 1; }
  .sustainability-copy .section-title { font-size: clamp(36px, 11vw, 54px); }
  .sustainability-copy .body-text { font-size: 15px; }
}

@media (max-width: 680px) {
  .brand-text { font-size: 14px; }
  .brand-mark { width: 38px; height: 38px; }
  .page-hero, .page-hero-copy { min-height: 68vh; }
  .page-title { font-size: clamp(52px, 16vw, 86px); }
  .section-pad { padding-block: 64px; }
  .section-head { display: grid; align-items: start; }
  .feature-media img, .culture-image img { min-height: 340px; }
  .company-table div, .news-row, .job-row { grid-template-columns: 1fr; gap: 10px; }
  .process-grid { grid-template-columns: 1fr; }
  .circle-link { width: 136px; height: 136px; }
}

@media (max-width: 430px) {
  .site-header { padding-inline: 16px; }
  .hero-copy { width: calc(100vw - 44px); }
  .hero-line { font-size: clamp(29px, 8vw, 38px); }
  .hero-line--through { font-size: clamp(23px, 5.8vw, 28px); }
  .hero-copy-ja { font-size: clamp(20px, 5.3vw, 24px); }
  .business-gallery { grid-template-columns: 1fr; }
  .purpose-visual-card { height: 430px; }
  .sustainability-visual-grid { grid-template-columns: 1fr 1fr; }
}
/* Latest motion refinements: Hero networks, Purpose line, Sustainability title, Recruit horizontal */
.hero-floating-networks {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  perspective: 900px;
  transform-style: preserve-3d;
  will-change: opacity;
}

.hero-copy { z-index: 6; }

.hero-network-item {
  position: absolute;
  width: var(--network-width, 280px);
  margin: 0;
  opacity: 0.78;
  pointer-events: auto;
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: transform, opacity;
}

.hero-network-item img {
  width: 100%;
  height: auto;
  transform: translateZ(0);
  user-select: none;
  pointer-events: none;
}

.hero-network-item--lt { top: 15%; left: 4.5%; --network-width: clamp(280px, 22vw, 360px); transform-origin: left top; }
.hero-network-item--lb { bottom: 10%; left: 7%; --network-width: clamp(220px, 18vw, 300px); transform-origin: left bottom; }
.hero-network-item--rt { top: 16%; right: 6%; --network-width: clamp(240px, 19vw, 340px); transform-origin: right top; }
.hero-network-item--rb { right: 4.5%; bottom: 9%; --network-width: clamp(300px, 24vw, 400px); transform-origin: right bottom; }
.hero-network-item--lm { top: 48%; left: 2%; --network-width: clamp(160px, 14vw, 230px); transform-origin: left center; opacity: 0.62; }

.purpose-title {
  max-width: none;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  font-size: clamp(34px, 4.6vw, 76px);
  line-height: 1.1;
}

.purpose-layout {
  position: relative;
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 4.6vw, 70px);
  width: min(1320px, 100%);
  overflow: visible;
}

.purpose-copy { width: min(520px, 100%); }

.js .purpose-person-card {
  opacity: 0;
  visibility: hidden;
}

.sustainability-title {
  max-width: 720px;
  font-size: clamp(42px, 5vw, 76px);
}

.sustainability-title span {
  display: block;
  white-space: nowrap;
}

.recruit-horizontal {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}

.recruit-horizontal-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.recruit-horizontal-track {
  display: flex;
  width: max-content;
  min-height: 100svh;
  will-change: transform;
}

.recruit-panel {
  flex: 0 0 var(--recruit-panel-width, 100vw);
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding-block: clamp(100px, 11vw, 150px) clamp(72px, 8vw, 120px);
  overflow: hidden;
}

.recruit-panel-inner {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
}

.recruit-panel--intro .recruit-panel-inner { justify-items: start; }
.recruit-title { font-size: clamp(56px, 9vw, 132px); line-height: 0.98; }
.recruit-panel--values { background: var(--white); }
.recruit-kicker { margin: 0; color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2vw, 34px); font-weight: 700; }
.recruit-lead { max-width: 760px; margin: 0; }

.recruit-phrases {
  position: relative;
  display: grid;
  gap: clamp(12px, 1.6vw, 22px);
  margin-top: clamp(12px, 2vw, 28px);
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(34px, 5.8vw, 86px);
  line-height: 1.08;
  color: rgba(24, 21, 20, 0.92);
}

.recruit-phrases span:nth-child(2) { margin-left: clamp(30px, 8vw, 150px); opacity: 0.78; }
.recruit-phrases span:nth-child(3) { margin-left: clamp(0px, 4vw, 78px); opacity: 0.58; }

.recruit-panel--join {
  background: var(--ink);
  color: var(--white);
}

.recruit-panel-inner--join {
  min-height: min(58vh, 620px);
  place-items: center;
  text-align: center;
}

.recruit-join-link {
  width: clamp(210px, 20vw, 300px);
  height: clamp(210px, 20vw, 300px);
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
  font-size: clamp(24px, 3vw, 42px);
}

.recruit-join-link:hover { background: var(--white); color: var(--ink); }

.recruit-progress {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(20px, 4vw, 46px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
}

.recruit-progress-rule {
  position: relative;
  display: block;
  width: clamp(82px, 12vw, 160px);
  height: 1px;
  background: rgba(122, 38, 56, 0.24);
  overflow: hidden;
}

.recruit-progress-rule span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #7a2638;
}

@media (hover: none), (pointer: coarse) {
  .hero-network-item { pointer-events: none; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-network-item--lt { --network-width: clamp(210px, 28vw, 280px); left: 3%; top: 13%; }
  .hero-network-item--lb { --network-width: clamp(170px, 24vw, 230px); left: 5%; bottom: 9%; }
  .hero-network-item--rt { --network-width: clamp(190px, 25vw, 250px); right: 4%; top: 15%; }
  .hero-network-item--rb { --network-width: clamp(220px, 30vw, 300px); right: 3%; bottom: 8%; }
  .hero-network-item--lm { display: none; }
  .recruit-panel { flex-basis: 92vw; }
}

@media (max-width: 767px) {
  .hero-floating-networks { opacity: 0; }
  .hero-network-item { opacity: 0.52; pointer-events: none; }
  .hero-network-item--lt { --network-width: clamp(120px, 38vw, 190px); left: -3%; top: 16%; }
  .hero-network-item--rt { --network-width: clamp(120px, 36vw, 180px); right: -4%; top: 17%; }
  .hero-network-item--lb { --network-width: clamp(118px, 34vw, 170px); left: 0; bottom: 13%; }
  .hero-network-item--rb,
  .hero-network-item--lm { display: none; }
  .purpose-title { font-size: clamp(34px, 9.4vw, 48px); }
  .purpose-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; overflow: hidden; }
  .purpose-copy { width: 100%; min-width: 0; }
  .sustainability-title { font-size: clamp(32px, 8.8vw, 46px); }
  .recruit-horizontal { overflow: visible; }
  .recruit-horizontal-stage { min-height: auto; overflow: visible; }
  .recruit-horizontal-track { display: grid; width: auto; min-height: 0; transform: none !important; }
  .recruit-panel { flex: none; min-height: auto; padding: 72px 0; }
  .recruit-title { font-size: clamp(46px, 14vw, 68px); }
  .recruit-phrases { font-size: clamp(30px, 9vw, 48px); }
  .recruit-phrases span:nth-child(2),
  .recruit-phrases span:nth-child(3) { margin-left: 0; }
  .recruit-panel-inner--join { min-height: 360px; }
  .recruit-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-floating-networks { opacity: 0.42; }
  .hero-network-item { pointer-events: none; transform: none !important; }
  .js .purpose-person-card { opacity: 1; visibility: visible; transform: none !important; }
  .recruit-horizontal { overflow: visible; }
  .recruit-horizontal-stage { min-height: auto; overflow: visible; }
  .recruit-horizontal-track { display: grid; width: auto; min-height: 0; transform: none !important; }
  .recruit-panel { flex: none; min-height: auto; }
  .recruit-progress { display: none; }
}
.motion-reduced .hero-floating-networks {
  opacity: 0.42;
}

.motion-reduced .hero-network-item {
  pointer-events: none;
  transform: none !important;
}

.motion-reduced .purpose-person-card {
  opacity: 1;
  visibility: visible;
  transform: none !important;
}

.motion-reduced .recruit-horizontal {
  overflow: visible;
}

.motion-reduced .recruit-horizontal-stage {
  min-height: auto;
  overflow: visible;
}

.motion-reduced .recruit-horizontal-track {
  display: grid;
  width: auto;
  min-height: 0;
  transform: none !important;
}

.motion-reduced .recruit-panel {
  flex: none;
  min-height: auto;
}

.motion-reduced .recruit-progress {
  display: none;
}
/* Latest requested refinements: logo, single Hero network, Purpose signature, Business brands */
.hero-network-item {
  pointer-events: none;
}

.hero-network-item--rb {
  right: clamp(24px, 6.4vw, 96px);
  bottom: clamp(56px, 10vh, 116px);
  --network-width: clamp(260px, 27vw, 440px);
  opacity: 0.43;
  transform-origin: center;
}

.purpose-visual-card {
  position: relative;
}

.purpose-signature {
  position: absolute;
  right: clamp(22px, 4.4vw, 64px);
  bottom: clamp(20px, 3.6vw, 48px);
  z-index: 5;
  display: inline-flex;
  gap: 0.03em;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", "Noto Serif JP", serif;
  font-size: clamp(28px, 3.4vw, 52px);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42), 0 0 28px rgba(122, 38, 56, 0.22);
  transform: rotate(-5deg);
  transform-origin: right center;
  pointer-events: none;
}

.purpose-signature span {
  display: inline-block;
}

.js .purpose-signature span {
  opacity: 0;
  visibility: hidden;
}

.business-brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 16px);
  max-width: 760px;
  margin: clamp(28px, 4vw, 46px) 0 clamp(24px, 3vw, 34px);
}

.business-brand-card {
  display: grid;
  min-height: 82px;
  margin: 0;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(24, 21, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(34, 27, 20, 0.06);
}

.business-brand-card img {
  width: 100%;
  max-width: 126px;
  max-height: 54px;
  object-fit: contain;
}

.business-brand-card--atelier-du-pain img,
.business-brand-card--sakura img {
  max-width: 142px;
}

.business-brand-card--rikka img {
  max-width: 58px;
  max-height: 64px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .business-brand-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 680px;
  }
}

@media (max-width: 767px) {
  .brand-mark--logo {
    width: 33px;
    height: 40px;
  }

  .brand-text {
    font-size: clamp(13px, 3.7vw, 16px);
  }

  .hero-network-item--rb {
    right: 12px;
    bottom: clamp(76px, 16vh, 132px);
    --network-width: clamp(150px, 48vw, 220px);
    opacity: 0.34;
  }

  .purpose-signature {
    right: 18px;
    bottom: 22px;
    max-width: calc(100% - 36px);
    font-size: clamp(23px, 7vw, 34px);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.56), 0 0 20px rgba(122, 38, 56, 0.22);
  }

  .business-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: 28px;
  }

  .business-brand-card {
    min-height: 76px;
    padding: 12px;
  }

  .business-brand-card img {
    max-height: 48px;
  }

  .business-brand-card--rikka img {
    max-height: 58px;
  }
}

@media (max-width: 430px) {
  .business-brand-strip {
    gap: 10px;
  }

  .business-brand-card {
    min-height: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .purpose-signature span,
  .motion-reduced .purpose-signature span {
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }
}

.motion-reduced .purpose-signature span {
  opacity: 1;
  visibility: visible;
  transform: none !important;
}
/* Final Hero network placement tuning: one quiet mark at the lower right */
.hero-network-item--rb {
  right: clamp(22px, 6vw, 86px);
  bottom: clamp(34px, 7vh, 76px);
  --network-width: clamp(220px, 23vw, 360px);
  opacity: 0.34;
}

@media (max-width: 767px) {
  .hero-network-item--rb {
    display: block !important;
    right: 10px;
    bottom: clamp(86px, 17vh, 142px);
    --network-width: clamp(136px, 42vw, 190px);
    opacity: 0.3;
  }
}
/* Contact page and requested refinements 2026-07-17 */
.site-nav {
  gap: clamp(12px, 1.4vw, 24px);
  font-size: 12.5px;
}

@media (min-width: 981px) and (max-width: 1100px) {
  .site-header { padding-inline: clamp(18px, 3vw, 36px); }
  .brand-text { font-size: 16px; }
  .site-nav { gap: 12px; font-size: 12px; }
}

.hero-network-item img {
  filter: drop-shadow(0 12px 24px rgba(77, 12, 29, 0.18)) contrast(1.08) saturate(1.04);
}

.hero-network-item--rb {
  right: clamp(42px, 5.2vw, 86px);
  bottom: clamp(44px, 7vh, 92px);
  --network-width: clamp(300px, 25vw, 430px);
  opacity: 0.72;
}

.purpose-signature {
  top: 57%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(82%, 760px);
  padding: clamp(10px, 1vw, 14px) clamp(18px, 2vw, 28px);
  color: #ffffff;
  font-size: clamp(22px, 2vw, 34px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38), 0 0 24px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  transform-origin: center;
  pointer-events: none;
}

.purpose-signature::before {
  position: absolute;
  inset: -8px -24px;
  z-index: -1;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(20, 15, 14, 0), rgba(20, 15, 14, 0.18) 18%, rgba(20, 15, 14, 0.18) 82%, rgba(20, 15, 14, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  content: "";
}

.purpose-signature span {
  display: inline-block;
}

.js .purpose-signature {
  opacity: 0;
  visibility: hidden;
  filter: blur(12px);
}

.js .purpose-signature span {
  opacity: 0;
  visibility: hidden;
}

.business-brand-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  width: 100%;
  max-width: 520px;
  margin: clamp(30px, 4vw, 46px) 0 clamp(24px, 3vw, 34px);
}

.business-brand-card {
  display: grid;
  min-height: clamp(86px, 7vw, 108px);
  margin: 0;
  place-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(24, 21, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(34, 27, 20, 0.07);
}

.business-brand-card img {
  width: auto;
  max-width: 88%;
  max-height: 64px;
  object-fit: contain;
}

.business-brand-card--wine-shiire-pro img { max-width: 94%; max-height: 50px; }
.business-brand-card--atelier-du-pain img { max-width: 95%; max-height: 58px; }
.business-brand-card--coco-ange img { max-width: 92%; max-height: 52px; }
.business-brand-card--sakura img { max-width: 90%; max-height: 62px; }
.business-brand-card--rikka img { max-height: 74px; }

.contact-page {
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 38, 56, 0.06), transparent 32%),
    linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.contact-hero {
  display: grid;
  min-height: clamp(420px, 52vh, 620px);
  align-items: end;
  padding-top: clamp(130px, 14vw, 190px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.contact-hero-copy,
.contact-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.contact-hero-copy .lead {
  max-width: 720px;
}

.contact-section {
  padding-top: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 132px;
}

.contact-title {
  max-width: 480px;
  font-size: clamp(36px, 4.2vw, 64px);
}

.contact-form {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(24, 21, 20, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(34, 27, 20, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-field label,
.form-field legend {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.5;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 21, 20, 0.16);
  border-radius: 6px;
  background: rgba(251, 250, 246, 0.94);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(122, 38, 56, 0.32);
  outline-offset: 2px;
  border-color: rgba(122, 38, 56, 0.48);
}

.form-field [aria-invalid="true"] {
  border-color: #b32638;
  background: rgba(255, 248, 248, 0.96);
}

.required-badge,
.optional-note,
.consent-field strong {
  display: inline-flex;
  margin-left: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-grid label,
.consent-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 21, 20, 0.14);
  border-radius: 6px;
  background: rgba(251, 250, 246, 0.78);
  cursor: pointer;
}

.choice-grid input,
.consent-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: var(--wine);
}

.field-error {
  min-height: 1.5em;
  margin: 0;
  color: #b32638;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.form-status {
  padding: 14px 16px;
  border-radius: 6px;
  background: rgba(122, 38, 56, 0.08);
  color: var(--wine-deep);
  font-weight: 800;
}

.form-status:empty,
.form-status[hidden] {
  display: none;
}

.form-status[data-status="error"] {
  border: 1px solid rgba(179, 38, 56, 0.22);
  background: rgba(179, 38, 56, 0.08);
  color: #8b1a2a;
}

.form-status[data-status="success"] {
  border: 1px solid rgba(49, 88, 68, 0.24);
  background: rgba(49, 88, 68, 0.1);
  color: var(--moss-deep);
}

.privacy-box {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 26px);
  border-radius: 8px;
  background: rgba(247, 244, 238, 0.82);
}

.privacy-box h2,
.privacy-box p,
.privacy-contact {
  margin: 0;
}

.privacy-box h2 {
  font-family: Georgia, "Times New Roman", "Noto Serif JP", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
}

.privacy-box p,
.privacy-contact {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.privacy-contact {
  display: grid;
  gap: 10px;
}

.privacy-contact div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
}

.privacy-contact dt {
  color: var(--ink);
  font-weight: 800;
}

.privacy-contact dd {
  margin: 0;
}

.privacy-link {
  margin-top: 2px;
  color: var(--wine);
}

.consent-field label {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.contact-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

.contact-submit:hover {
  background: var(--wine-deep);
  transform: translateY(-2px);
}

.contact-submit:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 1023px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  .hero-network-item--rb {
    display: block !important;
    right: clamp(12px, 4vw, 20px);
    bottom: clamp(78px, 16vh, 130px);
    --network-width: clamp(160px, 50vw, 230px);
    opacity: 0.62;
  }

  .purpose-signature {
    top: 58%;
    width: calc(100% - 34px);
    padding: 10px 14px;
    font-size: clamp(18px, 5.2vw, 25px);
    letter-spacing: 0.12em;
  }

  .purpose-signature::before {
    inset: -6px -12px;
  }

  .business-brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 10px;
    margin-top: 28px;
  }

  .business-brand-card {
    min-height: 76px;
    padding: 10px;
  }

  .business-brand-card img {
    max-width: 90%;
    max-height: 48px;
  }

  .business-brand-card--rikka img { max-height: 58px; }

  .contact-hero {
    min-height: 380px;
    padding-top: 118px;
  }

  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px;
  }

  .privacy-contact div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact-submit {
    width: 100%;
  }
}

@media (max-width: 340px) {
  .business-brand-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .purpose-signature,
  .motion-reduced .purpose-signature {
    opacity: 1;
    visibility: visible;
    filter: none !important;
    transform: translate(-50%, -50%) !important;
  }

  .js .purpose-signature span,
  .motion-reduced .purpose-signature span {
    opacity: 1;
    visibility: visible;
    filter: none !important;
    transform: none !important;
  }
}
/* SOMMELIER LABO section */
.labo-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  padding: clamp(104px, 12vw, 174px) 0 clamp(86px, 9vw, 132px);
  background:
    linear-gradient(180deg, rgba(24, 21, 20, 0.98) 0%, rgba(46, 18, 25, 0.97) 20%, rgba(122, 38, 56, 0.92) 42%, rgba(244, 234, 223, 0.97) 72%, rgba(250, 247, 240, 1) 100%);
  color: var(--ink);
}

.labo-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(255, 250, 240, 0.16), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(255, 250, 240, 0.12), transparent 34%);
  background-size: 88px 88px, 88px 88px, 100% 100%, 100% 100%;
  content: "";
  opacity: 0.9;
  pointer-events: none;
}

.labo-section::after {
  position: absolute;
  right: -18vw;
  bottom: 8%;
  z-index: -1;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border: 1px solid rgba(122, 38, 56, 0.22);
  border-radius: 50%;
  content: "";
  opacity: 0.62;
  pointer-events: none;
}

.labo-transition {
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: min(86vw, 1240px);
  height: 126px;
  transform: translateX(-50%);
  pointer-events: none;
}

.labo-transition span {
  align-self: start;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 240, 0.5), transparent);
}

.labo-transition span:nth-child(2) {
  width: 58%;
  justify-self: end;
  margin-top: 34px;
  opacity: 0.56;
}

.labo-transition span:nth-child(3) {
  width: 34%;
  justify-self: center;
  margin-top: 68px;
  opacity: 0.36;
}

.labo-inner {
  position: relative;
  z-index: 1;
}

.labo-loader {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 64px);
  color: rgba(255, 250, 240, 0.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.labo-loader ol {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.labo-loader li {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 50%;
  color: rgba(255, 250, 240, 0.9);
}

.labo-heading {
  max-width: 980px;
  color: var(--white);
}

.labo-kicker,
.labo-micro,
.labo-choice,
.labo-card-number,
.labo-card-category,
.labo-card-meta,
.labo-card-helper,
.labo-url-state,
.labo-footer-note p {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.labo-kicker {
  margin-bottom: 18px;
  color: rgba(255, 250, 240, 0.72);
}

.labo-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 9vw, 132px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
}

.labo-copy {
  max-width: 760px;
  margin: clamp(34px, 4vw, 54px) 0 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(34px, 4.7vw, 76px);
  font-weight: 500;
  line-height: 1.25;
}

.labo-description {
  max-width: 760px;
  margin: clamp(24px, 3vw, 36px) 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 700;
  line-height: 2;
}

.labo-micro {
  margin-top: clamp(24px, 3vw, 38px);
  color: rgba(255, 250, 240, 0.62);
}

.labo-choice {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: clamp(54px, 7vw, 94px);
  color: rgba(255, 250, 240, 0.72);
}

.labo-choice span:last-child {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0.42), rgba(255, 250, 240, 0));
}

.labo-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 24px);
  margin-top: clamp(22px, 3vw, 34px);
}

.labo-grid::before {
  position: absolute;
  inset: 8% 7% auto;
  z-index: -1;
  height: 54%;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(255, 250, 240, 0.36) 10% 10.4%, transparent 10.4% 52%, rgba(255, 250, 240, 0.22) 52% 52.4%, transparent 52.4%),
    linear-gradient(rgba(255, 250, 240, 0.2), rgba(255, 250, 240, 0.2));
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%;
  content: "";
  opacity: 0.6;
  pointer-events: none;
}

.labo-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  display: grid;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(45, 37, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 24px 70px rgba(43, 18, 24, 0.18);
  backdrop-filter: blur(18px);
  transition: translate 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.labo-card::before,
.labo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.labo-card::before {
  background:
    linear-gradient(rgba(122, 38, 56, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 38, 56, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.labo-card::after {
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.72), transparent 28%);
  mix-blend-mode: screen;
}

.labo-card:hover,
.labo-card:focus-within {
  translate: 0 -6px;
  border-color: rgba(122, 38, 56, 0.58);
  box-shadow: 0 32px 90px rgba(43, 18, 24, 0.24);
}

.labo-card:hover::before,
.labo-card:hover::after,
.labo-card:focus-within::before,
.labo-card:focus-within::after {
  opacity: 1;
}

.labo-card--001 {
  grid-column: 1 / span 7;
  min-height: 520px;
}

.labo-card--002 {
  grid-column: 8 / span 5;
  min-height: 620px;
}

.labo-card--003 {
  grid-column: 1 / span 5;
}

.labo-card--004 {
  grid-column: 6 / span 7;
}

.labo-card-visual {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  background: rgba(45, 37, 34, 0.08);
}

.labo-card--002 .labo-card-visual {
  min-height: 310px;
}

.labo-card-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: scale 0.42s ease;
}

.labo-card:hover .labo-card-visual img,
.labo-card:focus-within .labo-card-visual img {
  scale: 1.045;
}

.labo-card-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 2.4vw, 34px);
}

.labo-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  color: rgba(45, 37, 34, 0.62);
}

.labo-card-number span {
  color: var(--wine);
}

.labo-card-category {
  color: rgba(122, 38, 56, 0.84);
}

.labo-card-title {
  margin: 0;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.labo-card--002 .labo-card-title,
.labo-card--003 .labo-card-title {
  font-size: clamp(25px, 2vw, 36px);
}

.labo-card-subcopy {
  margin: -4px 0 0;
  color: var(--wine);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 800;
  line-height: 1.7;
}

.labo-card-description {
  max-width: 620px;
  margin: 0;
  color: rgba(45, 37, 34, 0.72);
  font-weight: 700;
  line-height: 1.9;
}

.labo-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  color: rgba(45, 37, 34, 0.78);
}

.labo-card-meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(45, 37, 34, 0.14);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.36);
}

.labo-card--experimenting .labo-card-meta span:first-child,
.labo-card--business .labo-card-meta span:first-child {
  border-color: rgba(122, 38, 56, 0.38);
  color: var(--wine);
}

.labo-card--coming-soon .labo-card-meta span:first-child {
  border-color: rgba(45, 37, 34, 0.34);
  color: rgba(45, 37, 34, 0.58);
}

.labo-card-helper {
  margin: 0;
  color: rgba(45, 37, 34, 0.42);
}

.labo-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  margin-top: 6px;
}

.labo-card-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--wine);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.labo-card-link span[aria-hidden="true"] {
  transition: translate 0.24s ease;
}

.labo-card-link:hover,
.labo-card-link:focus-visible {
  background: var(--wine-deep);
  border-color: var(--wine-deep);
  outline: none;
}

.labo-card-link:hover span[aria-hidden="true"],
.labo-card-link:focus-visible span[aria-hidden="true"] {
  translate: 4px 0;
}

.labo-card-link.is-disabled {
  border-color: rgba(45, 37, 34, 0.22);
  background: rgba(45, 37, 34, 0.12);
  color: rgba(45, 37, 34, 0.58);
  cursor: not-allowed;
}

.labo-url-state {
  color: rgba(45, 37, 34, 0.44);
}

.labo-footer-note {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(34px, 5vw, 64px);
}

.labo-view-all {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(122, 38, 56, 0.42);
  border-radius: 999px;
  padding: 14px 24px;
  background: rgba(255, 250, 240, 0.68);
  color: var(--wine);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: border-color 0.24s ease, background 0.24s ease, translate 0.24s ease;
}

.labo-view-all:hover,
.labo-view-all:focus-visible {
  translate: 0 -2px;
  border-color: var(--wine);
  background: rgba(255, 250, 240, 0.92);
  outline: none;
}

.labo-footer-note p {
  margin: 0;
  color: rgba(45, 37, 34, 0.48);
}

.labo-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: calc(100vw - 32px);
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(45, 37, 34, 0.88);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.labo-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.js .labo-loader,
.js .labo-heading,
.js .labo-card,
.js .labo-footer-note {
  opacity: 0;
  visibility: hidden;
}

.js .labo-section.is-labo-static .labo-loader,
.js .labo-section.is-labo-static .labo-heading,
.js .labo-section.is-labo-static .labo-card,
.js .labo-section.is-labo-static .labo-footer-note {
  opacity: 1;
  visibility: visible;
  filter: none !important;
  transform: none !important;
}

@media (max-width: 1439px) {
  .labo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .labo-card,
  .labo-card--001,
  .labo-card--002,
  .labo-card--003,
  .labo-card--004 {
    grid-column: auto;
    min-height: 500px;
  }

  .labo-card-visual,
  .labo-card--002 .labo-card-visual {
    min-height: 260px;
  }
}

@media (max-width: 900px) {
  .labo-section {
    padding-top: 96px;
  }

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

  .labo-grid::before {
    display: none;
  }

  .labo-card,
  .labo-card--001,
  .labo-card--002,
  .labo-card--003,
  .labo-card--004 {
    min-height: auto;
  }

  .labo-card-visual,
  .labo-card--002 .labo-card-visual {
    min-height: 230px;
  }

  .labo-description br {
    display: none;
  }
}

@media (max-width: 767px) {
  .labo-section {
    padding: 86px 0 74px;
  }

  .labo-loader {
    gap: 12px;
  }

  .labo-loader li {
    width: 30px;
    height: 30px;
  }

  .labo-title {
    font-size: clamp(44px, 14vw, 62px);
    line-height: 0.95;
  }

  .labo-copy {
    font-size: clamp(30px, 9vw, 42px);
  }

  .labo-description {
    line-height: 1.85;
  }

  .labo-choice {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .labo-card-body {
    padding: 22px;
  }

  .labo-card-title,
  .labo-card--002 .labo-card-title,
  .labo-card--003 .labo-card-title {
    font-size: clamp(25px, 7.2vw, 32px);
  }

  .labo-card-actions,
  .labo-card-link,
  .labo-view-all {
    width: 100%;
  }

  .labo-card:hover,
  .labo-card:focus-within,
  .labo-view-all:hover,
  .labo-view-all:focus-visible {
    translate: none;
  }
}

@media (hover: none) {
  .labo-card:hover {
    translate: none;
  }

  .labo-card:hover::before,
  .labo-card:hover::after {
    opacity: 0;
  }

  .labo-card:hover .labo-card-visual img {
    scale: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .labo-card,
  .labo-card-visual img,
  .labo-card-link span[aria-hidden="true"],
  .labo-view-all,
  .labo-toast {
    transition: none !important;
  }

  .js .labo-loader,
  .js .labo-heading,
  .js .labo-card,
  .js .labo-footer-note {
    opacity: 1;
    visibility: visible;
    filter: none !important;
    transform: none !important;
  }
}
/* Recruit story redesign */
.recruit-story {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #171313;
  color: var(--white);
}

.recruit-story::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 24%, rgba(122, 38, 56, 0.42), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(183, 138, 86, 0.18), transparent 28%),
    linear-gradient(135deg, #171313 0%, #2b1017 54%, #171313 100%);
  content: "";
}

.recruit-story-stage {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.recruit-story-track {
  display: flex;
  width: max-content;
  min-height: 100svh;
  will-change: transform;
}

.recruit-scene {
  position: relative;
  flex: 0 0 var(--recruit-scene-width, 100vw);
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(98px, 10vw, 150px) clamp(74px, 8vw, 128px);
}

.recruit-scene::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.055) 1px, transparent 1px);
  background-size: 86px 86px;
  content: "";
  opacity: 0.55;
  pointer-events: none;
}

.recruit-scene-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(22px, 3.2vw, 42px);
}

.recruit-scene-inner--wide {
  width: min(1360px, 100%);
}

.recruit-chapter-label {
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recruit-main-title,
.recruit-scene-title,
.recruit-cycle-title,
.recruit-join-title {
  margin: 0;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0;
}

.recruit-main-title {
  display: grid;
  gap: clamp(10px, 1.3vw, 18px);
  font-size: clamp(48px, 8.5vw, 128px);
  line-height: 1.02;
}

.recruit-main-title__accent {
  color: #f5dfbd;
}

.recruit-main-title__last {
  font-size: 1.08em;
}

.recruit-scene-title,
.recruit-cycle-title,
.recruit-join-title {
  font-size: clamp(48px, 7.2vw, 112px);
  line-height: 0.95;
}

.recruit-statement,
.recruit-cycle-lead,
.recruit-join-copy {
  max-width: 820px;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(27px, 3.2vw, 54px);
  font-weight: 600;
  line-height: 1.45;
}

.recruit-cycle-lead {
  font-size: clamp(22px, 2.3vw, 38px);
  line-height: 1.75;
  color: rgba(255, 250, 240, 0.82);
}

.recruit-statement--keywords {
  display: grid;
  gap: 8px;
  color: #f5dfbd;
}

.recruit-ambient,
.recruit-abstract-field,
.recruit-join-echo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.recruit-ambient--wine::before,
.recruit-ambient--wine::after {
  position: absolute;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 50%;
  content: "";
}

.recruit-ambient--wine::before {
  right: 8%;
  bottom: 10%;
  width: clamp(260px, 36vw, 620px);
  aspect-ratio: 1;
}

.recruit-ambient--wine::after {
  right: 18%;
  bottom: 22%;
  width: clamp(160px, 20vw, 320px);
  aspect-ratio: 1;
  background: rgba(122, 38, 56, 0.2);
  filter: blur(2px);
}

.recruit-scene--values-intro {
  background: linear-gradient(130deg, #221818 0%, #6e2134 56%, #f1e6d6 150%);
}

.recruit-abstract-field span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.18);
  box-shadow: 0 0 54px rgba(255, 250, 240, 0.16);
}

.recruit-abstract-field span:nth-child(1) { width: 9px; height: 9px; left: 22%; top: 24%; }
.recruit-abstract-field span:nth-child(2) { width: 28px; height: 28px; left: 72%; top: 26%; background: rgba(245, 223, 189, 0.18); }
.recruit-abstract-field span:nth-child(3) { width: 120px; height: 120px; left: 62%; bottom: 12%; border: 1px solid rgba(255, 250, 240, 0.18); background: transparent; }
.recruit-abstract-field span:nth-child(4) { width: 1px; height: 42%; left: 52%; top: 24%; border-radius: 0; }
.recruit-abstract-field span:nth-child(5) { width: 42%; height: 1px; right: 8%; bottom: 30%; border-radius: 0; }

.recruit-scene--values {
  background: linear-gradient(140deg, #f7f0e4 0%, #ead8c6 58%, #33141b 150%);
  color: #201b18;
}

.recruit-scene--values .recruit-chapter-label {
  color: rgba(122, 38, 56, 0.7);
}

.recruit-value-stage {
  position: relative;
  min-height: min(62vh, 620px);
}

.recruit-value-item {
  display: grid;
  gap: 10px;
  align-content: center;
  width: min(640px, 92vw);
  min-height: 260px;
  border-left: 1px solid rgba(122, 38, 56, 0.42);
  padding: clamp(22px, 3vw, 38px);
}

.recruit-value-item p {
  margin: 0;
  color: rgba(122, 38, 56, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.recruit-value-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 132px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.recruit-value-item span {
  color: rgba(32, 27, 24, 0.72);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 800;
}

.recruit-scene--flow {
  background: linear-gradient(135deg, #171313 0%, #2b1017 65%, #3c1721 100%);
}

.recruit-scene--challenge {
  background: linear-gradient(135deg, #1c1514 0%, #4b1826 58%, #171313 100%);
}

.recruit-scene--growth {
  background: linear-gradient(135deg, #171313 0%, #301a1b 48%, #4e2c23 100%);
}

.recruit-flow,
.recruit-growth-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(160px, 0.7fr) minmax(220px, 0.85fr);
  gap: clamp(18px, 4vw, 68px);
  align-items: center;
  min-height: clamp(360px, 52vh, 560px);
}

.recruit-flow-node {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  min-height: clamp(190px, 22vw, 280px);
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 50%;
  padding: 24px;
  text-align: center;
  background: rgba(255, 250, 240, 0.055);
  backdrop-filter: blur(14px);
}

.recruit-flow-node p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 72px);
  line-height: 0.94;
}

.recruit-flow-node span {
  color: rgba(255, 250, 240, 0.76);
  font-weight: 800;
  line-height: 1.6;
}

.recruit-flow-line {
  position: relative;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 250, 240, 0), rgba(245, 223, 189, 0.92), rgba(255, 250, 240, 0));
  transform-origin: left center;
}

.recruit-flow-line::after {
  position: absolute;
  right: -5px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5dfbd;
  content: "";
  transform: translateY(-50%);
}

.recruit-flow-ripple {
  position: absolute;
  right: 9%;
  top: 50%;
  width: clamp(220px, 30vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 223, 189, 0.26);
  border-radius: 50%;
  transform: translateY(-50%);
}

.recruit-branch-lines {
  position: absolute;
  left: 43%;
  top: 50%;
  width: 22%;
  height: 190px;
  transform: translateY(-50%);
  pointer-events: none;
}

.recruit-branch-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 223, 189, 0.88), rgba(245, 223, 189, 0));
  transform-origin: left center;
}

.recruit-branch-lines span:nth-child(1) { top: 18%; rotate: -18deg; }
.recruit-branch-lines span:nth-child(2) { top: 50%; }
.recruit-branch-lines span:nth-child(3) { top: 82%; rotate: 18deg; }

.recruit-growth-dots {
  position: relative;
  min-height: 260px;
}

.recruit-growth-dots span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f5dfbd;
  box-shadow: 0 0 26px rgba(245, 223, 189, 0.34);
}

.recruit-growth-dots span:nth-child(1) { left: 8%; bottom: 22%; }
.recruit-growth-dots span:nth-child(2) { left: 24%; bottom: 34%; }
.recruit-growth-dots span:nth-child(3) { left: 42%; bottom: 48%; }
.recruit-growth-dots span:nth-child(4) { left: 58%; bottom: 62%; }
.recruit-growth-dots span:nth-child(5) { left: 72%; bottom: 72%; }
.recruit-growth-dots span:nth-child(6) { left: 86%; bottom: 82%; }

.recruit-growth-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(170px, 18vw, 300px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 223, 189, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.recruit-scene--union {
  background: linear-gradient(135deg, #2b1017 0%, #7a2638 42%, #ead9c6 130%);
}

.recruit-union {
  position: relative;
  min-height: clamp(480px, 64vh, 680px);
}

.recruit-union-node,
.recruit-union-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.recruit-union-node {
  width: clamp(170px, 17vw, 250px);
  aspect-ratio: 1;
  color: rgba(255, 250, 240, 0.92);
  font-weight: 900;
}

.recruit-union-node[data-union-node="trust"] { --node-x: -300px; --node-y: -160px; translate: var(--node-x) var(--node-y); }
.recruit-union-node[data-union-node="value"] { --node-x: 310px; --node-y: -116px; translate: var(--node-x) var(--node-y); }
.recruit-union-node[data-union-node="capability"] { --node-x: 0px; --node-y: 230px; translate: var(--node-x) var(--node-y); }

.recruit-union-core {
  width: clamp(260px, 28vw, 420px);
  aspect-ratio: 1;
  background: rgba(255, 250, 240, 0.88);
  color: #2b1017;
  box-shadow: 0 0 80px rgba(255, 250, 240, 0.18);
}

.recruit-union-core p {
  width: min(280px, 76%);
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.35;
}

.recruit-scene--happiness,
.recruit-scene--return,
.recruit-scene--join {
  background: linear-gradient(150deg, #f5eadb 0%, #ead6c3 54%, #7a2638 150%);
  color: #201b18;
}

.recruit-scene--happiness .recruit-chapter-label,
.recruit-scene--return .recruit-chapter-label,
.recruit-scene--join .recruit-chapter-label {
  color: rgba(122, 38, 56, 0.72);
}

.recruit-happiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 36px);
  align-items: center;
  margin-top: clamp(14px, 3vw, 38px);
}

.recruit-happiness-circle {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(122, 38, 56, 0.32);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.58);
  box-shadow: 0 20px 80px rgba(122, 38, 56, 0.1);
  text-align: center;
}

.recruit-happiness-circle span {
  width: min(190px, 74%);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.45;
}

.recruit-return-loop {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  min-height: clamp(430px, 58vh, 660px);
}

.recruit-return-orbit {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(122, 38, 56, 0.22);
  border-radius: 50%;
}

.recruit-return-orbit::before,
.recruit-return-orbit::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(122, 38, 56, 0.18);
  border-radius: 50%;
  content: "";
}

.recruit-return-orbit span {
  position: absolute;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid rgba(122, 38, 56, 0.34);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 250, 240, 0.78);
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.recruit-return-orbit span:first-child { left: 6%; top: 42%; }
.recruit-return-orbit span:nth-child(2) { right: 6%; bottom: 22%; }

.recruit-return-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
}

.recruit-return-orbit i:nth-of-type(1) { left: 50%; top: 6%; }
.recruit-return-orbit i:nth-of-type(2) { right: 12%; top: 45%; }
.recruit-return-orbit i:nth-of-type(3) { left: 25%; bottom: 12%; }

.recruit-scene-inner--join {
  min-height: min(66vh, 680px);
  place-items: center;
  text-align: center;
}

.recruit-join-copy {
  max-width: 780px;
  font-size: clamp(24px, 2.7vw, 44px);
}

.recruit-join-circle {
  position: relative;
  display: grid;
  width: clamp(220px, 22vw, 340px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(122, 38, 56, 0.48);
  border-radius: 50%;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.32s ease, background 0.32s ease, color 0.32s ease, border-color 0.32s ease;
}

.recruit-join-circle::before,
.recruit-join-circle::after {
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(122, 38, 56, 0.18);
  border-radius: 50%;
  content: "";
}

.recruit-join-circle::after {
  inset: -34px;
  opacity: 0.48;
}

.recruit-join-circle span[aria-hidden="true"] {
  font-size: 0.72em;
  transition: translate 0.28s ease;
}

.recruit-join-circle:hover,
.recruit-join-circle:focus-visible {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
  outline: none;
  transform: scale(1.035);
}

.recruit-join-circle:hover span[aria-hidden="true"],
.recruit-join-circle:focus-visible span[aria-hidden="true"] {
  translate: 8px 0;
}

.recruit-join-echo span {
  position: absolute;
  width: clamp(150px, 16vw, 260px);
  aspect-ratio: 1;
  border: 1px solid rgba(122, 38, 56, 0.15);
  border-radius: 50%;
}

.recruit-join-echo span:nth-child(1) { left: 11%; top: 18%; }
.recruit-join-echo span:nth-child(2) { right: 12%; top: 28%; }
.recruit-join-echo span:nth-child(3) { left: 45%; bottom: 8%; }

.recruit-chapter-nav {
  position: absolute;
  left: clamp(18px, 3vw, 44px);
  bottom: clamp(22px, 4vw, 52px);
  z-index: 6;
  display: grid;
  gap: 10px;
  color: rgba(255, 250, 240, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}

.recruit-chapter-nav span {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.recruit-chapter-nav span.is-active {
  color: #f5dfbd;
}

.recruit-progress {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f5dfbd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  pointer-events: none;
}

.recruit-progress-rule {
  position: relative;
  display: block;
  width: clamp(82px, 12vw, 160px);
  height: 1px;
  background: rgba(245, 223, 189, 0.22);
  overflow: hidden;
}

.recruit-progress-rule span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #f5dfbd;
}

@media (min-width: 768px) {
  .recruit-value-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1439px) {
  .recruit-scene {
    padding-block: clamp(92px, 9vw, 130px) clamp(70px, 7vw, 110px);
  }

  .recruit-flow,
  .recruit-growth-map {
    gap: 26px;
  }

  .recruit-union-node[data-union-node="trust"] { --node-x: -230px; --node-y: -140px; }
  .recruit-union-node[data-union-node="value"] { --node-x: 235px; --node-y: -104px; }
  .recruit-union-node[data-union-node="capability"] { --node-x: 0px; --node-y: 200px; }
}

@media (max-width: 1023px) {
  .recruit-flow,
  .recruit-growth-map,
  .recruit-return-loop {
    grid-template-columns: 1fr;
  }

  .recruit-flow-line {
    width: 1px;
    height: 120px;
    justify-self: center;
    transform-origin: center top;
    background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(245, 223, 189, 0.92), rgba(255, 250, 240, 0));
  }

  .recruit-flow-line::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
  }

  .recruit-branch-lines,
  .recruit-flow-ripple {
    display: none;
  }

  .recruit-happiness-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .recruit-happiness-circle {
    aspect-ratio: auto;
    min-height: 160px;
    border-radius: 8px;
  }
}

@media (max-width: 767px) {
  .recruit-story {
    overflow: visible;
  }

  .recruit-story-stage {
    min-height: auto;
    overflow: visible;
  }

  .recruit-story-track {
    display: grid;
    width: auto;
    min-height: 0;
    transform: none !important;
  }

  .recruit-scene {
    flex: none;
    min-height: auto;
    padding-block: 78px;
  }

  .recruit-scene::before {
    background-size: 58px 58px;
  }

  .recruit-main-title,
  .recruit-scene-title,
  .recruit-cycle-title,
  .recruit-join-title {
    font-size: clamp(42px, 13vw, 62px);
  }

  .recruit-statement,
  .recruit-cycle-lead,
  .recruit-join-copy {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  .recruit-value-stage {
    display: grid;
    gap: 24px;
    min-height: auto;
  }

  .recruit-value-item {
    width: 100%;
    min-height: 190px;
    border-left: 1px solid rgba(122, 38, 56, 0.42);
  }

  .recruit-value-item h3 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .recruit-flow-node {
    min-height: 190px;
    border-radius: 8px;
  }

  .recruit-growth-dots,
  .recruit-growth-ring {
    display: none;
  }

  .recruit-union {
    display: grid;
    gap: 18px;
    min-height: auto;
  }

  .recruit-union-node,
  .recruit-union-core {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    min-height: 130px;
    aspect-ratio: auto;
    border-radius: 8px;
    transform: none;
    --node-x: 0px;
    --node-y: 0px;
    translate: none !important;
  }

  .recruit-return-orbit {
    min-height: 330px;
  }

  .recruit-join-circle {
    width: min(74vw, 280px);
  }

  .recruit-chapter-nav {
    position: sticky;
    top: 76px;
    left: auto;
    bottom: auto;
    z-index: 7;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 12px 20px;
    background: rgba(23, 19, 19, 0.86);
    backdrop-filter: blur(12px);
    pointer-events: none;
  }

  .recruit-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-story {
    overflow: visible;
  }

  .recruit-story-stage {
    min-height: auto;
    overflow: visible;
  }

  .recruit-story-track {
    display: grid;
    width: auto;
    min-height: 0;
    transform: none !important;
  }

  .recruit-scene {
    flex: none;
    min-height: auto;
  }

  .recruit-value-item,
  .recruit-flow-node,
  .recruit-flow-line,
  .recruit-flow-ripple,
  .recruit-branch-lines span,
  .recruit-growth-dots span,
  .recruit-growth-ring,
  .recruit-union-node,
  .recruit-union-core,
  .recruit-happiness-circle,
  .recruit-return-orbit i,
  .recruit-join-circle {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  .recruit-progress {
    display: none;
  }
}
.recruit-story.is-recruit-static {
  overflow: visible;
}

.recruit-story.is-recruit-static .recruit-story-stage {
  min-height: auto;
  overflow: visible;
}

.recruit-story.is-recruit-static .recruit-story-track {
  display: grid;
  width: auto;
  min-height: 0;
  transform: none !important;
}

.recruit-story.is-recruit-static .recruit-scene {
  flex: none;
  min-height: auto;
}

.recruit-story.is-recruit-static .recruit-value-stage {
  display: grid;
  gap: 24px;
  min-height: auto;
}

.recruit-story.is-recruit-static .recruit-value-item,
.recruit-story.is-recruit-static .recruit-union-node,
.recruit-story.is-recruit-static .recruit-union-core {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 720px;
  min-height: 160px;
  aspect-ratio: auto;
  border-radius: 8px;
  transform: none !important;
  translate: none !important;
}

.recruit-story.is-recruit-static .recruit-union {
  display: grid;
  gap: 18px;
  min-height: auto;
}

.recruit-story.is-recruit-static .recruit-progress {
  display: none;
}
.recruit-story.is-recruit-static .recruit-flow,
.recruit-story.is-recruit-static .recruit-growth-map,
.recruit-story.is-recruit-static .recruit-return-loop {
  grid-template-columns: 1fr;
}

.recruit-story.is-recruit-static .recruit-flow-line {
  width: 1px;
  height: 110px;
  justify-self: center;
  transform-origin: center top;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0), rgba(245, 223, 189, 0.92), rgba(255, 250, 240, 0));
}

.recruit-story.is-recruit-static .recruit-branch-lines,
.recruit-story.is-recruit-static .recruit-flow-ripple,
.recruit-story.is-recruit-static .recruit-growth-dots,
.recruit-story.is-recruit-static .recruit-growth-ring {
  display: none;
}

.recruit-story.is-recruit-static .recruit-happiness-grid {
  grid-template-columns: 1fr;
  max-width: 620px;
}

.recruit-story.is-recruit-static .recruit-return-orbit {
  width: min(100%, 620px);
  justify-self: center;
}

.recruit-story.is-recruit-static .recruit-scene,
.recruit-story.is-recruit-static .recruit-scene-inner {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 1100px) {
  .sustainability-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
/* Recruit readability reset */
.recruit-story {
  position: relative;
  overflow: hidden;
  background: #171313;
  color: #fffaf0;
}

.recruit-story-stage {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
}

.recruit-story-track {
  display: flex;
  width: max-content;
  height: 100%;
  min-height: 0;
  will-change: transform;
}

.recruit-scene {
  position: relative;
  flex: 0 0 var(--recruit-scene-width, 100vw);
  width: var(--recruit-scene-width, 100vw);
  min-width: var(--recruit-scene-width, 100vw);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0;
  color: #fffaf0;
  background: linear-gradient(135deg, #171313 0%, #2b1017 58%, #171313 100%);
}

.recruit-scene--values,
.recruit-scene--union,
.recruit-scene--happiness,
.recruit-scene--return,
.recruit-scene--join {
  background: linear-gradient(135deg, #171313 0%, #35131d 58%, #1f1714 100%);
  color: #fffaf0;
}

.recruit-scene::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.045) 1px, transparent 1px);
  background-size: 92px 92px;
  content: "";
  pointer-events: none;
}

.recruit-scene-inner,
.recruit-scene-inner--wide,
.recruit-scene-inner--join,
.recruit-scene-inner.section-shell {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 2.2vw, 30px);
  width: min(1180px, calc(100vw - 120px));
  max-width: min(1180px, calc(100vw - 120px));
  height: 100%;
  min-height: 100%;
  margin-inline: auto;
  padding: calc(var(--header-height, 92px) + 36px) 0 48px;
  box-sizing: border-box;
  text-align: left;
  min-width: 0;
}

.recruit-scene-inner--join {
  align-items: center;
  text-align: center;
}

.recruit-reveal,
.recruit-flow-node,
.recruit-flow-line,
.recruit-flow-ripple,
.recruit-branch-lines span,
.recruit-growth-dots span,
.recruit-growth-ring,
.recruit-union-node,
.recruit-union-core,
.recruit-happiness-circle,
.recruit-return-orbit,
.recruit-join-circle {
  opacity: 1;
  visibility: visible;
  filter: none;
}

.recruit-motion-ready .recruit-scene.is-active .recruit-reveal {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.recruit-chapter-label {
  margin: 0;
  color: rgba(255, 250, 240, 0.72) !important;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.recruit-main-title,
.recruit-scene-title,
.recruit-cycle-title,
.recruit-join-title {
  margin: 0;
  max-width: 100%;
  color: #fffaf0;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.recruit-main-title {
  display: grid;
  gap: 8px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.28;
}

.recruit-main-title__accent {
  color: #f5dfbd;
}

.recruit-main-title__last {
  font-size: 1em;
}

.recruit-scene-title,
.recruit-join-title {
  font-size: clamp(58px, 6.2vw, 92px);
  line-height: 1.05;
}

.recruit-cycle-title {
  font-size: clamp(48px, 5.2vw, 76px);
  line-height: 1.06;
}

.recruit-statement,
.recruit-cycle-lead,
.recruit-join-copy,
.recruit-flow-node span {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 250, 240, 0.86);
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.8;
}

.recruit-statement--keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  color: #f5dfbd;
}

.recruit-value-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 32px);
  min-height: 0;
  width: 100%;
}

.recruit-value-item,
.recruit-story.is-recruit-static .recruit-value-item {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  display: grid;
  align-content: center;
  gap: 10px;
  width: 100% !important;
  max-width: none !important;
  min-height: 260px;
  border-left: 1px solid rgba(245, 223, 189, 0.42);
  padding: clamp(18px, 2vw, 28px);
  transform: none !important;
  translate: none !important;
}

.recruit-value-item p {
  margin: 0;
  color: rgba(245, 223, 189, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.recruit-value-item h3 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 4.8vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.recruit-value-item span {
  color: rgba(255, 250, 240, 0.84);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 800;
}

.recruit-flow,
.recruit-growth-map {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, 0.18fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
  width: 100%;
  min-height: 0;
}

.recruit-flow-node,
.recruit-story.is-recruit-static .recruit-flow-node {
  display: grid;
  place-items: start;
  gap: 12px;
  min-height: 210px;
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 8px;
  padding: clamp(22px, 2.8vw, 36px);
  background: rgba(255, 250, 240, 0.06);
  text-align: left;
  transform: none !important;
}

.recruit-flow-node p {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.recruit-flow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 223, 189, 0), rgba(245, 223, 189, 0.95), rgba(245, 223, 189, 0));
  transform: none !important;
}

.recruit-flow-line::after {
  right: -4px;
  top: 50%;
  background: #f5dfbd;
}

.recruit-flow-ripple,
.recruit-branch-lines,
.recruit-growth-dots,
.recruit-growth-ring {
  display: none;
}

.recruit-union {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  align-items: stretch;
  min-height: 0;
  width: 100%;
}

.recruit-union-node,
.recruit-union-core,
.recruit-story.is-recruit-static .recruit-union-node,
.recruit-story.is-recruit-static .recruit-union-core {
  position: relative !important;
  left: auto !important;
  top: auto !important;
  display: grid;
  width: 100% !important;
  max-width: none !important;
  min-height: 170px;
  aspect-ratio: auto;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.06);
  color: #fffaf0;
  text-align: center;
  transform: none !important;
  translate: none !important;
}

.recruit-union-core {
  grid-column: 1 / -1;
  min-height: 190px;
  background: rgba(245, 223, 189, 0.14);
}

.recruit-union-node span,
.recruit-union-core p {
  width: auto;
  margin: 0;
  color: #fffaf0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.35;
}

.recruit-happiness-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(440px, 1fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  width: 100%;
}

.recruit-happiness-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.recruit-happiness-circle {
  display: grid;
  min-height: clamp(128px, 13vw, 160px);
  aspect-ratio: auto;
  place-items: center;
  border: 1px solid rgba(245, 223, 189, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  color: #fffaf0;
  text-align: center;
  transform: none !important;
}

.recruit-happiness-circle span {
  width: min(180px, 86%);
  color: #fffaf0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.5;
}

.recruit-return-orbit {
  grid-column: 1 / -1;
  position: relative;
  width: min(100%, 520px);
  min-height: 74px;
  aspect-ratio: auto;
  justify-self: end;
  border: 1px solid rgba(245, 223, 189, 0.22);
  border-radius: 999px;
  transform: none !important;
}

.recruit-return-orbit::before,
.recruit-return-orbit::after,
.recruit-return-orbit i {
  display: none;
}

.recruit-return-orbit span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(245, 223, 189, 0.32);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 250, 240, 0.08);
  color: #f5dfbd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
}

.recruit-return-orbit span:first-child { left: 22px; }
.recruit-return-orbit span:nth-child(2) { right: 22px; }

.recruit-join-copy {
  max-width: 720px;
  text-align: center;
}

.recruit-join-circle {
  width: clamp(190px, 18vw, 260px);
  border-color: rgba(245, 223, 189, 0.58);
  color: #fffaf0;
  transform: none !important;
}

.recruit-join-circle:hover,
.recruit-join-circle:focus-visible {
  border-color: #f5dfbd;
  background: rgba(245, 223, 189, 0.13);
  color: #fffaf0;
  outline: none;
}

.recruit-chapter-nav {
  left: clamp(28px, 4vw, 60px);
  bottom: clamp(22px, 3vw, 42px);
  color: rgba(255, 250, 240, 0.52);
}

.recruit-chapter-nav span.is-active {
  color: #f5dfbd;
}

.recruit-progress {
  right: clamp(28px, 4vw, 60px);
  bottom: clamp(24px, 3vw, 44px);
  color: #f5dfbd;
}

.recruit-progress-rule,
.recruit-progress-rule span {
  background: rgba(245, 223, 189, 0.28);
}

.recruit-progress-rule span {
  background: #f5dfbd;
}

@media (max-width: 1180px) {
  .recruit-scene-inner,
  .recruit-scene-inner--wide,
  .recruit-scene-inner--join,
  .recruit-scene-inner.section-shell {
    width: min(100%, calc(100vw - 96px));
    max-width: min(100%, calc(100vw - 96px));
  }

  .recruit-value-item h3 {
    font-size: clamp(40px, 4.2vw, 58px);
  }

  .recruit-flow-node p {
    font-size: clamp(40px, 4.6vw, 62px);
  }
}

@media (max-width: 768px) {
  .recruit-story {
    overflow: visible;
  }

  .recruit-story-stage {
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .recruit-story-track {
    display: grid;
    width: auto;
    height: auto;
    min-height: 0;
    transform: none !important;
  }

  .recruit-scene {
    flex: none;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: auto;
    overflow: hidden;
  }

  .recruit-scene-inner,
  .recruit-scene-inner--wide,
  .recruit-scene-inner--join,
  .recruit-scene-inner.section-shell {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 96px 28px;
  }

  .recruit-main-title {
    font-size: clamp(36px, 10.4vw, 46px);
  }

  .recruit-scene-title,
  .recruit-cycle-title,
  .recruit-join-title {
    font-size: clamp(44px, 12vw, 62px);
  }

  .recruit-statement,
  .recruit-cycle-lead,
  .recruit-join-copy,
  .recruit-flow-node span {
    font-size: clamp(16px, 4.6vw, 18px);
  }

  .recruit-value-stage,
  .recruit-flow,
  .recruit-growth-map,
  .recruit-union,
  .recruit-happiness-layout,
  .recruit-happiness-grid {
    grid-template-columns: 1fr;
  }

  .recruit-value-item,
  .recruit-flow-node,
  .recruit-happiness-circle,
  .recruit-union-node,
  .recruit-union-core {
    min-height: auto;
  }

  .recruit-value-item h3,
  .recruit-flow-node p {
    font-size: clamp(38px, 10vw, 54px);
  }

  .recruit-flow-line {
    width: 1px;
    height: 72px;
    justify-self: start;
    margin-left: 24px;
    background: linear-gradient(180deg, rgba(245, 223, 189, 0), rgba(245, 223, 189, 0.95), rgba(245, 223, 189, 0));
  }

  .recruit-flow-line::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -4px;
    transform: translateX(-50%);
  }

  .recruit-return-orbit {
    justify-self: stretch;
    min-height: 112px;
  }

  .recruit-return-orbit span:first-child { left: 14px; }
  .recruit-return-orbit span:nth-child(2) { right: 14px; }

  .recruit-chapter-nav {
    position: sticky;
    top: 76px;
    left: auto;
    bottom: auto;
    z-index: 7;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 12px 20px;
    background: rgba(23, 19, 19, 0.88);
    backdrop-filter: blur(12px);
  }

  .recruit-progress {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-story,
  .recruit-story-stage {
    overflow: visible;
  }

  .recruit-story-stage {
    height: auto;
    min-height: auto;
  }

  .recruit-story-track {
    display: grid;
    width: auto;
    height: auto;
    transform: none !important;
  }

  .recruit-scene {
    flex: none;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: auto;
  }

  .recruit-reveal,
  .recruit-flow-node,
  .recruit-flow-line,
  .recruit-flow-ripple,
  .recruit-branch-lines span,
  .recruit-growth-dots span,
  .recruit-growth-ring,
  .recruit-union-node,
  .recruit-union-core,
  .recruit-happiness-circle,
  .recruit-return-orbit,
  .recruit-join-circle {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Home adjustments: business imagery, faster Recruit, simplified LABO */
.hero-floating-networks:empty {
  display: none;
}

.business-photo img {
  object-position: center center;
}

.recruit-scene--cycle-summary {
  background: linear-gradient(135deg, #171313 0%, #35131d 58%, #1f1714 100%);
}

.recruit-value-stage {
  gap: clamp(16px, 2vw, 24px);
}

.recruit-value-item {
  min-width: 0;
  min-height: 230px;
}

.recruit-value-item h3 {
  font-size: clamp(36px, 3.7vw, 56px);
  line-height: 1.02;
  white-space: nowrap;
}

.recruit-scene-inner--join {
  align-items: center;
  text-align: center;
}

.recruit-join-circle {
  justify-self: center;
  margin-inline: auto;
}

.labo-section {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding: clamp(82px, 7vw, 112px) 0 clamp(62px, 5.6vw, 88px);
}

.labo-loader {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.labo-title {
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.94;
}

.labo-copy {
  margin-top: clamp(20px, 2.4vw, 32px);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.28;
}

.labo-description {
  margin-top: clamp(16px, 2vw, 26px);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.78;
}

.labo-micro {
  margin-top: clamp(16px, 2vw, 26px);
}

.labo-coming-soon {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  width: fit-content;
  margin-top: clamp(26px, 3.3vw, 44px);
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 999px;
  padding: 13px 20px;
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
  backdrop-filter: blur(12px);
}

.labo-coming-soon span {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.labo-coming-soon small {
  color: rgba(255, 250, 240, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.recruit-story-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(122, 38, 56, 0.24), transparent 30%),
    linear-gradient(145deg, #211817 0%, #171313 56%, #100d0d 100%);
  color: #fffaf0;
}

.recruit-story-page-head {
  display: grid;
  gap: 18px;
  max-width: 860px;
}

.recruit-story-page .section-title {
  color: #fffaf0;
}

.recruit-story-page .body-text {
  max-width: 720px;
  color: rgba(255, 250, 240, 0.76);
}

.recruit-sketch-chapters {
  display: grid;
  margin-top: clamp(34px, 5vw, 72px);
}

.recruit-sketch-chapter {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 6vw, 94px);
  align-items: center;
  border-top: 1px solid rgba(245, 223, 189, 0.16);
  padding: clamp(40px, 6.2vw, 88px) 0;
}

.recruit-sketch-chapter:last-child {
  border-bottom: 1px solid rgba(245, 223, 189, 0.16);
}

.recruit-sketch-copy {
  display: grid;
  gap: clamp(14px, 2vw, 24px);
  max-width: 520px;
}

.recruit-sketch-copy p {
  margin: 0;
  color: #f5dfbd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recruit-sketch-copy h3 {
  margin: 0;
  color: #fffaf0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1.22;
}

.recruit-sketch-copy span {
  display: block;
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 700;
  line-height: 1.9;
}

.recruit-sketch-visual {
  width: min(100%, 560px);
  min-width: 0;
  justify-self: end;
}

.recruit-sketch-reveal {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(245, 223, 189, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.recruit-sketch-reveal::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(23, 19, 19, 0.18), transparent 36%);
  opacity: 0.85;
}

.recruit-sketch-layer,
.recruit-sketch-draw {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.recruit-sketch-layer {
  object-fit: cover;
  object-position: center;
}

.recruit-sketch-layer--sketch {
  z-index: 1;
  clip-path: inset(0 100% 0 0);
  filter: contrast(0.94) brightness(1.04);
  transition: clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease 1.72s;
}

.recruit-sketch-layer--mono {
  z-index: 2;
  opacity: 0;
  filter: grayscale(1) saturate(0) contrast(1.02);
  transition: opacity 0.5s ease 1.15s;
}

.recruit-sketch-layer--color {
  z-index: 3;
  opacity: 0;
  transition: opacity 0.8s ease 1.65s;
}

.recruit-sketch-draw {
  z-index: 4;
  fill: none;
  opacity: 0.72;
  pointer-events: none;
}

.recruit-sketch-draw path {
  fill: none;
  stroke: rgba(122, 38, 56, 0.62);
  stroke-width: 0.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--recruit-path-length, 180);
  stroke-dashoffset: var(--recruit-path-length, 180);
  transition:
    stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease 1.72s;
  transition-delay: calc(var(--recruit-path-index, 0) * 0.1s), 1.72s;
}

.recruit-sketch-reveal.is-animated .recruit-sketch-layer--sketch {
  clip-path: inset(0 0 0 0);
  opacity: 0.36;
}

.recruit-sketch-reveal.is-animated .recruit-sketch-layer--mono,
.recruit-sketch-reveal.is-animated .recruit-sketch-layer--color {
  opacity: 1;
}

.recruit-sketch-reveal.is-animated .recruit-sketch-draw path {
  stroke-dashoffset: 0;
}

.recruit-sketch-reveal.is-color-ready .recruit-sketch-layer--mono {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.recruit-sketch-reveal.is-complete .recruit-sketch-draw {
  opacity: 0;
  transition: opacity 0.35s ease;
}

@media (max-width: 1024px) {
  .recruit-sketch-chapter {
    grid-template-columns: minmax(240px, 0.72fr) minmax(320px, 0.9fr);
    gap: clamp(24px, 4vw, 46px);
  }

  .recruit-sketch-copy h3 {
    font-size: clamp(32px, 5vw, 52px);
  }
}

@media (max-width: 820px) {
  .recruit-sketch-chapter {
    grid-template-columns: 1fr;
  }

  .recruit-sketch-visual {
    width: min(100%, 520px);
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .recruit-story-page-head,
  .recruit-sketch-chapters {
    width: min(100%, calc(100vw - 40px));
  }

  .recruit-sketch-chapter {
    padding: 38px 0;
  }

  .recruit-sketch-copy h3 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .recruit-sketch-reveal {
    aspect-ratio: 3 / 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .recruit-sketch-layer--sketch,
  .recruit-sketch-layer--mono,
  .recruit-sketch-draw {
    display: none;
  }

  .recruit-sketch-layer--color {
    opacity: 1;
  }
}
.recruit-detail-cycle {
  background: #171313;
  color: #fffaf0;
}

.recruit-detail-cycle-head {
  display: grid;
  gap: 18px;
  max-width: 840px;
  margin-bottom: clamp(34px, 5vw, 66px);
}

.recruit-detail-cycle .section-title {
  color: #fffaf0;
}

.recruit-detail-cycle .body-text {
  color: rgba(255, 250, 240, 0.76);
}

.recruit-detail-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
}

.recruit-detail-flow {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 290px;
  border: 1px solid rgba(245, 223, 189, 0.26);
  border-radius: 8px;
  padding: clamp(22px, 2.5vw, 34px);
  background: rgba(255, 250, 240, 0.06);
}

.recruit-detail-flow > span {
  color: #f5dfbd;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.recruit-detail-flow h3 {
  margin: 0;
  color: #fffaf0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.08;
}

.recruit-detail-flow h3 small {
  display: block;
  margin-top: 8px;
  color: #f5dfbd;
  font-size: 0.48em;
  letter-spacing: 0.08em;
}

.recruit-detail-flow p {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-weight: 700;
  line-height: 1.85;
}

.recruit-detail-result {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(24px, 4vw, 56px);
  border-top: 1px solid rgba(245, 223, 189, 0.22);
  padding-top: clamp(24px, 4vw, 52px);
}

.recruit-detail-result p {
  margin: 0 0 10px;
  color: #f5dfbd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.recruit-detail-result h3 {
  margin: 0;
  color: #fffaf0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.35;
}

.recruit-detail-result ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-detail-result li {
  display: grid;
  min-height: 96px;
  place-items: center;
  border: 1px solid rgba(245, 223, 189, 0.26);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 240, 0.06);
  color: rgba(255, 250, 240, 0.86);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1024px) {
  .recruit-detail-flow-grid,
  .recruit-detail-result,
  .recruit-detail-result ul {
    grid-template-columns: 1fr;
  }

  .recruit-value-item h3 {
    font-size: clamp(30px, 4.6vw, 44px);
  }
}

@media (max-width: 768px) {
  .labo-section {
    min-height: 100svh;
    padding: 82px 0 66px;
  }

  .labo-title {
    font-size: clamp(42px, 13vw, 56px);
  }

  .labo-copy {
    font-size: clamp(26px, 8vw, 34px);
  }

  .labo-coming-soon {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.recruit-detail-cycle .eyebrow {
  color: #f5dfbd;
}

.js .labo-coming-soon {
  opacity: 0;
  visibility: hidden;
}

.js .labo-section.is-labo-static .labo-coming-soon {
  opacity: 1;
  visibility: visible;
  filter: none !important;
  transform: none !important;
}
/* Additional tuning: flowing Recruit, safe VALUE cards, white LABO */
.recruit-value-stage {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.recruit-value-item,
.recruit-story.is-recruit-static .recruit-value-item {
  padding: clamp(16px, 1.45vw, 22px);
}

.recruit-value-item h3 {
  max-width: 100%;
  font-size: clamp(30px, 3.05vw, 46px);
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
}

.recruit-scene--join .recruit-scene-inner--join {
  align-items: center;
}

.recruit-scene--join .recruit-join-copy {
  justify-self: center;
  width: min(720px, 100%);
  max-width: min(720px, 100%);
  text-align: center;
}

.recruit-scene--join .recruit-join-circle {
  justify-self: center;
  margin-inline: auto;
}

.labo-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 248, 246, 1) 48%, rgba(241, 242, 239, 1) 100%);
  color: #171717;
}

.labo-section::before {
  background-image:
    linear-gradient(rgba(23, 23, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 23, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(122, 38, 56, 0.055), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(45, 37, 34, 0.05), transparent 34%);
  opacity: 1;
}

.labo-section::after {
  border-color: rgba(122, 38, 56, 0.12);
  opacity: 0.48;
}

.labo-transition span {
  background: linear-gradient(90deg, transparent, rgba(23, 23, 23, 0.18), transparent);
}

.labo-loader,
.labo-kicker,
.labo-micro {
  color: rgba(23, 23, 23, 0.52);
}

.labo-loader li {
  border-color: rgba(23, 23, 23, 0.16);
  color: rgba(23, 23, 23, 0.68);
}

.labo-heading {
  color: #171717;
}

.labo-title {
  color: #171717;
}

.labo-copy {
  color: #252525;
}

.labo-description {
  color: rgba(23, 23, 23, 0.68);
}

.labo-coming-soon {
  border-color: rgba(122, 38, 56, 0.22);
  background: rgba(255, 255, 255, 0.74);
  color: #171717;
  box-shadow: 0 18px 46px rgba(23, 23, 23, 0.08);
}

.labo-coming-soon span {
  color: #171717;
}

.labo-coming-soon small {
  color: rgba(122, 38, 56, 0.68);
}

@media (max-width: 1180px) {
  .recruit-value-stage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .recruit-value-item h3 {
    font-size: clamp(24px, 3.2vw, 34px);
  }
}
/* Ensure LABO coming-soon badge remains visible immediately */
.labo-coming-soon {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
}
/* SOMMELIER LABO full-section draggable layer */
.labo-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.labo-inner {
  position: relative;
  z-index: 2;
  display: block;
}

.labo-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.labo-drag-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.labo-draggable {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  display: block;
  color: #252525;
  opacity: 0;
  cursor: grab;
  touch-action: none;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
  transition: opacity 0.22s ease;
}

.labo-draggable.is-ready {
  opacity: 1;
}

.labo-draggable::before {
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(122, 38, 56, 0.12);
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.labo-draggable:hover::before,
.labo-draggable:focus-visible::before,
.labo-draggable.is-dragging::before {
  opacity: 1;
  transform: scale(1);
}

.labo-draggable:active,
.labo-draggable.is-dragging {
  cursor: grabbing;
}

.labo-draggable:focus-visible {
  outline: 2px solid rgba(122, 38, 56, 0.58);
  outline-offset: 8px;
}

.labo-draggable__shape,
.labo-draggable__shape img {
  display: block;
  width: 100%;
  height: auto;
}

.labo-draggable__shape {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.08));
  transform-origin: 50% 50%;
  transition: filter 0.2s ease;
  will-change: transform;
}

.labo-draggable:hover .labo-draggable__shape,
.labo-draggable:focus-visible .labo-draggable__shape,
.labo-draggable.is-dragging .labo-draggable__shape {
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.16));
}

.labo-draggable__shape img {
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.labo-draggable--drink {
  width: clamp(96px, 7.2vw, 106px);
}

.labo-draggable--eat {
  width: clamp(118px, 9vw, 136px);
}

.labo-draggable--work {
  width: clamp(230px, 22vw, 310px);
}

.labo-drag-layer__reset {
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  top: clamp(84px, 7vw, 104px);
  bottom: auto;
  z-index: 80;
  min-width: 66px;
  min-height: 32px;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(23, 23, 23, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(8px);
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.labo-drag-layer__reset:hover,
.labo-drag-layer__reset:focus-visible {
  border-color: rgba(122, 38, 56, 0.36);
  background: #fff;
  color: #7a2638;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 767px) {
  .labo-section {
    min-height: 760px;
    min-height: max(760px, 100svh);
  }

  .labo-inner {
    display: block;
  }

  .labo-content {
    max-width: min(100%, 520px);
  }

  .labo-draggable--drink {
    width: clamp(65px, 19vw, 85px);
  }

  .labo-draggable--eat {
    width: clamp(105px, 31vw, 140px);
  }

  .labo-draggable--work {
    width: clamp(145px, 45vw, 190px);
  }

  .labo-drag-layer__reset {
    top: 86px;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .labo-draggable,
  .labo-draggable__shape,
  .labo-drag-layer__reset {
    transition-duration: 0.01ms;
  }
}
/* Business renewal page -------------------------------------------------- */
.business-page {
  --business-ink: #171717;
  --business-soft-ink: #4a4440;
  --business-muted: #756d66;
  --business-paper: #f7f4ee;
  --business-white: #ffffff;
  --business-wine: #7a2638;
  --business-gold: #b8874e;
  --business-green: #607465;
  --business-blue: #334e5c;
  --business-line: rgba(23, 23, 23, 0.12);
  --business-shadow: 0 24px 80px rgba(32, 24, 19, 0.14);
  background: var(--business-paper);
  color: var(--business-ink);
  overflow-x: hidden;
  letter-spacing: 0;
}

.business-page *,
.business-page *::before,
.business-page *::after { box-sizing: border-box; }

.business-page img { max-width: 100%; display: block; }

.business-main { overflow-x: clip; }

.business-section {
  position: relative;
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 122px;
}

.business-kicker {
  margin: 0 0 18px;
  color: var(--business-wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.business-section__head {
  max-width: 860px;
  margin: 0 0 52px;
}

.business-section__head--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 56px;
  align-items: end;
  max-width: none;
}

.business-section__title {
  margin: 0;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 3.25rem;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.business-section__lead {
  margin: 24px 0 0;
  color: var(--business-soft-ink);
  font-size: 1.05rem;
  line-height: 2;
  letter-spacing: 0;
}

.business-note {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 2px solid var(--business-gold);
  color: var(--business-muted);
  font-size: 0.96rem;
  line-height: 1.9;
}

.business-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 74px;
  color: var(--business-white);
  overflow: hidden;
  background: #15110f;
}

.business-hero__media,
.business-hero__scrim,
.business-hero__slide {
  position: absolute;
  inset: 0;
}

.business-hero__slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1.15s ease, transform 5.8s ease;
}

.business-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.business-hero__scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 7, 6, 0.78), rgba(10, 7, 6, 0.34) 52%, rgba(10, 7, 6, 0.22)),
    linear-gradient(180deg, rgba(10, 7, 6, 0.22), rgba(10, 7, 6, 0.7));
}

.business-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.business-hero__title {
  margin: 0;
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 4.7rem;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.32);
}

.business-hero__lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 2;
}

.business-hero__numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 38px 0 0;
}

.business-hero__numbers span {
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.business-hero__numbers strong {
  display: block;
  margin-bottom: 4px;
  color: var(--business-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.business-hero__controls {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 76px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.business-hero__controls button {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.business-hero__controls button.is-active,
.business-hero__controls button:focus-visible { background: var(--business-white); }

.business-subnav {
  position: sticky;
  top: 76px;
  z-index: 18;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 10px max(16px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--business-line);
  background: rgba(247, 244, 238, 0.86);
  backdrop-filter: blur(16px);
  scrollbar-width: none;
}

.business-subnav::-webkit-scrollbar { display: none; }

.business-subnav a {
  flex: 0 0 auto;
  padding: 11px 14px;
  border-radius: 99px;
  color: var(--business-muted);
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.business-subnav a:hover,
.business-subnav a:focus-visible,
.business-subnav a[aria-current="true"] {
  color: var(--business-white);
  background: var(--business-ink);
  outline: 0;
}

.business-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.business-overview-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  min-height: 390px;
  padding: 18px;
  border: 1px solid var(--business-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--business-shadow);
}

.business-overview-card figure,
.business-image-card,
.business-portfolio-card,
.business-channel-card,
.business-brand-panel,
.business-quality__images img,
.business-food__mosaic img {
  overflow: hidden;
  border-radius: 8px;
}

.business-overview-card figure { margin: 0; min-height: 100%; }

.business-overview-card img,
.business-image-card img,
.business-portfolio-card img,
.business-channel-card img,
.business-brand-panel__photo,
.business-quality__images img,
.business-food__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.business-overview-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 10px 10px 0;
}

.business-overview-card p:first-child {
  margin: 0 0 18px;
  color: var(--business-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
}

.business-overview-card h3,
.business-image-card h3,
.business-portfolio-card h3,
.business-channel-card h3,
.business-brand-panel h3,
.business-strength h3,
.business-quality__step h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Yu Mincho", serif;
  font-size: 1.34rem;
  line-height: 1.35;
  letter-spacing: 0;
}

.business-overview-card p:last-child,
.business-image-card p,
.business-portfolio-card p,
.business-channel-card p,
.business-brand-panel p,
.business-strength p,
.business-quality__step p {
  margin: 18px 0 0;
  color: var(--business-soft-ink);
  line-height: 1.85;
  font-size: 0.94rem;
}

.business-ecosystem {
  background: linear-gradient(180deg, #fffaf2, #f3eee5);
}

.business-ecosystem__flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-ecosystem__node {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(122, 38, 56, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.business-ecosystem__node span,
.business-quality__step span,
.business-strength span,
.business-image-card span,
.business-channel-card span {
  color: var(--business-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
}

.business-ecosystem__node strong { display: block; font-size: 1.02rem; line-height: 1.25; }
.business-ecosystem__node small { color: var(--business-muted); font-size: 0.8rem; line-height: 1.45; }

.business-ecosystem__line {
  display: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(122, 38, 56, 0), rgba(122, 38, 56, 0.62), rgba(122, 38, 56, 0));
  transform-origin: left center;
}

.business-wine__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.business-wine__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.business-metric {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--business-line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 56px rgba(32, 24, 19, 0.08);
}

.business-metric span {
  color: var(--business-wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.business-metric small {
  margin-top: 12px;
  color: var(--business-muted);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.business-sourcing__grid,
.business-portfolio__grid,
.business-channels__grid,
.business-strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.business-image-card,
.business-portfolio-card,
.business-channel-card {
  background: #fffdf8;
  border: 1px solid var(--business-line);
  box-shadow: 0 18px 56px rgba(32, 24, 19, 0.08);
}

.business-image-card img { aspect-ratio: 4 / 3; }
.business-image-card div,
.business-portfolio-card div { padding: 24px; }

.business-producers {
  background: #fffdf8;
}

.business-producers__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.56fr);
  grid-template-areas:
    "map card"
    "map list";
  gap: 22px;
  align-items: stretch;
}

.business-world {
  grid-area: map;
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(51, 78, 92, 0.08), rgba(96, 116, 101, 0.14)),
    radial-gradient(ellipse at 48% 44%, rgba(122, 38, 56, 0.14) 0 8%, transparent 9%),
    linear-gradient(90deg, transparent 0 8%, rgba(23, 23, 23, 0.04) 8% 8.2%, transparent 8.2% 16%),
    #eef0eb;
}

.business-world::before {
  content: "";
  position: absolute;
  inset: 9% 7%;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 46% 40% 43% 38%;
  transform: rotate(-3deg);
}

.business-world::after {
  content: "16 COUNTRIES / 100+ PRODUCERS";
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: rgba(23, 23, 23, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.business-world__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(122, 38, 56, 0.88);
  color: #fff;
  box-shadow: 0 10px 30px rgba(122, 38, 56, 0.28);
  cursor: pointer;
}

.business-world__pin span { font-size: 0.68rem; }
.business-world__pin.is-active,
.business-world__pin:hover,
.business-world__pin:focus-visible { transform: scale(1.16); background: var(--business-gold); outline: 0; }

.business-producer-card {
  grid-area: card;
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--business-line);
  border-radius: 8px;
  background: var(--business-white);
}

.business-producer-card img {
  width: 124px;
  height: 124px;
  border-radius: 8px;
  object-fit: cover;
}

.business-producer-card p:first-of-type { margin: 0 0 8px; color: var(--business-gold); font-size: 0.86rem; }
.business-producer-card h3 { margin: 0; font-family: Georgia, "Yu Mincho", serif; font-size: 1.35rem; }
.business-producer-card p:last-child { margin: 12px 0 0; color: var(--business-soft-ink); line-height: 1.75; font-size: 0.9rem; }

.business-producer-list {
  grid-area: list;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.business-producer-list button {
  min-height: 44px;
  border: 1px solid var(--business-line);
  border-radius: 8px;
  background: var(--business-white);
  color: var(--business-soft-ink);
  cursor: pointer;
}

.business-producer-list button.is-active,
.business-producer-list button:hover,
.business-producer-list button:focus-visible { border-color: var(--business-wine); color: var(--business-wine); outline: 0; }

.business-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--business-wine);
  font-weight: 700;
  text-decoration: none;
}

.business-quality__steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-quality__step {
  min-height: 230px;
  padding: 20px;
  border-top: 2px solid var(--business-wine);
  background: rgba(255, 255, 255, 0.62);
}

.business-quality__step h3 { margin-top: 18px; font-size: 1.05rem; }
.business-quality__step p { font-size: 0.84rem; }

.business-quality__images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  margin-top: 42px;
}

.business-quality__images img { aspect-ratio: 4 / 3; }

.business-portfolio__grid,
.business-channels__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.business-portfolio-card img,
.business-channel-card img { aspect-ratio: 4 / 5; }
.business-channel-card { display: flex; flex-direction: column; }
.business-channel-card img { height: auto; }
.business-channel-card span,
.business-channel-card h3,
.business-channel-card p,
.business-channel-card a { margin-left: 22px; margin-right: 22px; }
.business-channel-card span { margin-top: 24px; }
.business-channel-card h3 { margin-top: 8px; }
.business-channel-card a { margin-top: auto; margin-bottom: 24px; color: var(--business-wine); font-weight: 700; text-decoration: none; }

.business-food {
  color: var(--business-white);
  background: var(--business-ink);
}

.business-food .business-kicker { color: #e8c694; }
.business-food .business-section__lead { color: rgba(255, 255, 255, 0.78); }
.business-food__inner { display: grid; grid-template-columns: 0.8fr 1.1fr; gap: 70px; align-items: center; }
.business-food__mosaic { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 14px; }
.business-food__mosaic img { aspect-ratio: 4 / 3; }
.business-food__mosaic img:first-child { grid-row: span 2; aspect-ratio: auto; }

.business-brands__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.business-brand-panel {
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 18px;
  border: 1px solid var(--business-line);
  background: #fffdf8;
  box-shadow: 0 18px 56px rgba(32, 24, 19, 0.08);
}

.business-brand-panel__logo {
  width: 100%;
  height: 76px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
}

.business-brand-panel__logo--rikka { object-position: center; }
.business-brand-panel__photo { aspect-ratio: 4 / 4.4; }
.business-brand-panel h3 { margin-top: 20px; font-size: 1.12rem; }
.business-brand-panel p { margin-bottom: 0; }

.business-synergy {
  min-height: 760px;
  display: grid;
  align-items: center;
  color: var(--business-white);
  background: var(--business-ink);
  overflow: hidden;
}

.business-synergy__bg,
.business-synergy__bg img,
.business-synergy::before {
  position: absolute;
  inset: 0;
}

.business-synergy__bg { margin: 0; }
.business-synergy__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.44; }
.business-synergy::before { content: ""; z-index: 1; background: linear-gradient(90deg, rgba(10, 7, 6, 0.78), rgba(10, 7, 6, 0.35)); }
.business-synergy__inner { position: relative; z-index: 2; max-width: 860px; }
.business-synergy .business-kicker { color: #e8c694; }
.business-synergy .business-section__lead { color: rgba(255, 255, 255, 0.78); }

.business-synergy__flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.business-synergy__flow li {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
}

.business-strengths__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.business-strength { min-height: 270px; padding: 24px; border-left: 1px solid var(--business-line); background: rgba(255, 255, 255, 0.4); }
.business-strength h3 { margin-top: 42px; }

.business-contact { padding-bottom: 132px; }
.business-contact__inner { padding: 54px; border: 1px solid var(--business-line); border-radius: 8px; background: #fffdf8; box-shadow: var(--business-shadow); }
.business-contact__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; margin-top: 42px; }
.business-contact__grid a { min-height: 142px; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; border: 1px solid var(--business-line); border-radius: 8px; color: var(--business-ink); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; }
.business-contact__grid a:hover,
.business-contact__grid a:focus-visible { border-color: var(--business-wine); transform: translateY(-2px); outline: 0; }
.business-contact__grid span { color: var(--business-gold); font-family: Georgia, "Times New Roman", serif; font-size: 0.8rem; }
.business-contact__grid strong { font-size: 1rem; line-height: 1.45; }
.business-contact__actions { display: flex; gap: 12px; margin-top: 32px; }
.business-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 190px; min-height: 52px; padding: 0 22px; border-radius: 99px; background: var(--business-wine); color: var(--business-white); font-weight: 700; text-decoration: none; }
.business-button--outline { border: 1px solid var(--business-wine); background: transparent; color: var(--business-wine); }

.business-page .business-reveal { opacity: 1; transform: none; }
.business-page.js-business-ready .business-reveal { will-change: transform, opacity; }

@media (min-width: 1180px) {
  .business-ecosystem__flow {
    grid-template-columns: 1fr 36px 1fr 36px 1fr 36px 1fr 36px 1fr 36px 1fr 36px 1fr;
  }
  .business-ecosystem__line { display: block; }
}

@media (max-width: 1120px) {
  .business-section { padding-top: 92px; padding-bottom: 92px; }
  .business-section__title { font-size: 2.75rem; }
  .business-hero__title { font-size: 4rem; }
  .business-section__head--split,
  .business-wine__layout,
  .business-food__inner { grid-template-columns: 1fr; gap: 36px; }
  .business-overview-card { grid-template-columns: 1fr; }
  .business-overview-card figure { aspect-ratio: 16 / 10; }
  .business-sourcing__grid,
  .business-portfolio__grid,
  .business-channels__grid,
  .business-brands__grid,
  .business-strengths__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-quality__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-quality__step { min-height: 0; }
  .business-contact__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .business-hero { min-height: 92svh; padding-top: 116px; }
  .business-hero__title { font-size: 3.15rem; }
  .business-hero__lead { font-size: 1rem; }
  .business-hero__controls { left: 24px; right: auto; bottom: 30px; }
  .business-subnav { top: 68px; }
  .business-section__title { font-size: 2.25rem; }
  .business-overview__grid,
  .business-producers__layout { grid-template-columns: 1fr; }
  .business-producers__layout { grid-template-areas: "map" "card" "list"; }
  .business-world { min-height: 360px; }
  .business-wine__metrics { grid-template-columns: 1fr 1fr; }
  .business-metric { min-height: 130px; padding: 20px; }
  .business-metric span { font-size: 2.35rem; }
  .business-quality__images { grid-template-columns: 1fr; }
  .business-food__mosaic { grid-template-columns: 1fr; }
  .business-food__mosaic img:first-child { grid-row: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .business-section { padding: 72px 20px; scroll-margin-top: 112px; }
  .business-hero { padding: 110px 20px 78px; }
  .business-hero__title { font-size: 2.45rem; }
  .business-hero__numbers { gap: 8px; }
  .business-hero__numbers span { min-width: calc(50% - 4px); padding: 14px; }
  .business-hero__numbers strong { font-size: 1.75rem; }
  .business-subnav { top: 64px; padding-inline: 14px; }
  .business-section__title { font-size: 1.9rem; }
  .business-section__lead { font-size: 0.96rem; line-height: 1.85; }
  .business-overview__grid,
  .business-sourcing__grid,
  .business-portfolio__grid,
  .business-channels__grid,
  .business-brands__grid,
  .business-strengths__grid,
  .business-quality__steps,
  .business-contact__grid { grid-template-columns: 1fr; }
  .business-brand-panel { min-height: auto; }
  .business-brand-panel__photo { aspect-ratio: 4 / 3; }
  .business-producer-card { grid-template-columns: 88px 1fr; }
  .business-producer-card img { width: 88px; height: 88px; }
  .business-producer-list { grid-template-columns: 1fr; }
  .business-contact__inner { padding: 28px 20px; }
  .business-contact__actions { flex-direction: column; }
  .business-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .business-page *,
  .business-page *::before,
  .business-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}/* Company, philosophy, leadership renewal */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.12);
}
.site-header.is-on-light .nav-dropdown__toggle,
.site-header.is-scrolled .nav-dropdown__toggle,
.site-header.nav-active .nav-dropdown__toggle { text-shadow: none; }
.nav-dropdown__toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.24s ease;
}
.nav-dropdown.is-open .nav-dropdown__toggle::before,
.nav-dropdown:hover .nav-dropdown__toggle::before { transform: rotate(225deg) translate(-1px, -1px); }
.nav-dropdown__toggle::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-dropdown__toggle:hover::after,
.nav-dropdown.is-current .nav-dropdown__toggle::after,
.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  right: -18px;
  z-index: 130;
  display: grid;
  min-width: 230px;
  padding: 10px;
  border: 1px solid rgba(24, 21, 20, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 20px 56px rgba(28, 20, 16, 0.16);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  visibility: hidden;
}
.nav-dropdown__menu a {
  padding: 10px 12px;
  border-radius: 6px;
  text-shadow: none;
  white-space: nowrap;
}
.nav-dropdown__menu a::after { display: none; }
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a[aria-current="page"] {
  background: rgba(122, 38, 56, 0.1);
  color: var(--wine);
  outline: 0;
}
.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.company-page,
.philosophy-page,
.leadership-page {
  background: #fbfaf6;
  color: var(--ink);
}
.company-page h1,
.company-page h2,
.philosophy-page h1,
.philosophy-page h2,
.leadership-page h1,
.leadership-page h2 {
  font-family: Georgia, "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.company-kicker {
  margin: 0 0 18px;
  color: #a75b39;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}
.company-kicker span {
  color: var(--muted);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-size: 0.78rem;
  text-transform: none;
}
.company-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 30px;
  padding: 0 24px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  background: var(--wine);
  color: var(--white);
  font-weight: 800;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}
.company-button:hover,
.company-button:focus-visible {
  background: transparent;
  color: var(--wine);
  outline: 0;
  transform: translateY(-2px);
}
.company-button--light {
  border-color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.company-button--light:hover,
.company-button--light:focus-visible { background: var(--white); color: var(--wine); }
.company-hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  align-items: end;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 78px;
  overflow: hidden;
  background: #1c1512;
  color: var(--white);
}
.company-hero::after,
.philosophy-hero::after,
.leadership-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}
.company-hero::after {
  background: linear-gradient(90deg, rgba(18, 12, 10, 0.76), rgba(18, 12, 10, 0.3) 56%, rgba(18, 12, 10, 0.62));
}
.company-hero__media,
.company-hero__submedia,
.philosophy-hero__media {
  position: absolute;
  margin: 0;
  overflow: hidden;
}
.company-hero__media {
  inset: 0;
}
.company-hero__media img,
.philosophy-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04) brightness(0.84);
}
.company-hero__submedia {
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 74px;
  z-index: 2;
  width: min(38%, 440px);
  border-radius: 8px;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.34);
}
.company-hero__submedia img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.company-hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}
.company-hero h1,
.philosophy-hero h1,
.leadership-hero h1 {
  margin: 0;
  font-size: 4.6rem;
}
.company-hero p:last-child,
.philosophy-hero p:last-child,
.leadership-hero p {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
  line-height: 2;
}
.company-section,
.philosophy-section,
.leadership-section {
  padding: 118px max(24px, calc((100vw - 1180px) / 2));
}
.company-section__grid,
.philosophy-split,
.leadership-message,
.leadership-profile {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.company-section__label { color: #a75b39; font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.company-section__label span { color: var(--muted); font-family: "Noto Sans JP", sans-serif; font-size: 0.9rem; }
.company-copy h2,
.company-section__head h2,
.philosophy-statement h2,
.philosophy-section h2,
.leadership-section h2 {
  margin: 0;
  font-size: 3.45rem;
}
.company-copy p,
.company-section__head p,
.company-image-card p,
.company-profile-table dd,
.company-history-details dd,
.company-history-details p,
.company-location-card p,
.company-governance-card p,
.philosophy-copy p,
.philosophy-statement p,
.philosophy-value-card p,
.leadership-message__body p,
.leadership-profile__body p,
.leadership-happiness-card p,
.leadership-partner-card p,
.leadership-media-card p {
  color: var(--muted);
  line-height: 2;
}
.company-lead { color: var(--ink) !important; font-size: 1.15rem; font-weight: 700; }
.company-section__head { max-width: 820px; margin-bottom: 44px; }
.company-section__head p:last-child { max-width: 720px; margin-top: 20px; }
.company-stat-grid,
.company-card-grid,
.company-governance-grid,
.philosophy-value-grid,
.leadership-happiness__grid,
.leadership-media-grid,
.leadership-featured-grid,
.philosophy-next,
.leadership-next,
.leadership-partners {
  display: grid;
  gap: 18px;
}
.company-stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.company-stat,
.company-image-card,
.company-location-card,
.company-governance-card,
.philosophy-value-card,
.philosophy-next-card,
.leadership-happiness-card,
.leadership-partner-card,
.leadership-media-card {
  border: 1px solid rgba(24, 21, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(34, 27, 20, 0.08);
}
.company-stat { min-height: 240px; padding: 28px; }
.company-stat strong { display: block; color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 3.2rem; line-height: 1; }
.company-stat span { display: block; margin-top: 12px; color: #a75b39; font-weight: 800; }
.company-note { margin-top: 22px; color: var(--muted); }
.company-card-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.company-card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.company-image-card,
.company-location-card { overflow: hidden; }
.company-image-card img,
.company-location-card img,
.leadership-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}
.company-image-card div,
.company-location-card div,
.company-governance-card,
.philosophy-value-card,
.philosophy-next-card,
.leadership-happiness-card,
.leadership-partner-card,
.leadership-media-card { padding: 26px; }
.company-image-card span,
.company-location-card h3,
.company-governance-card h3,
.philosophy-value-card span,
.philosophy-next-card span,
.leadership-happiness-card span,
.leadership-partner-card span,
.leadership-media-card span {
  color: #a75b39;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.company-image-card h3,
.company-location-card h3,
.company-governance-card h3,
.philosophy-value-card h3,
.leadership-happiness-card h3,
.leadership-partner-card h2,
.leadership-media-card h4,
.leadership-media-card h5 { margin: 12px 0 0; line-height: 1.45; }
.company-philosophy-link,
.leadership-happiness {
  color: var(--white);
  background: linear-gradient(135deg, #4d0c1d, #181514 72%);
}
.company-philosophy-link__inner { max-width: 860px; }
.company-philosophy-link h2 { margin: 0; font-size: 4rem; }
.company-philosophy-link p { max-width: 760px; color: rgba(255, 255, 255, 0.82); line-height: 2; }
.company-en,
.philosophy-en,
.philosophy-hero__en { font-family: Georgia, "Times New Roman", serif; color: var(--wine); }
.company-philosophy-link .company-en { color: #f2c997; font-size: 1.25rem; }
.company-mini-values { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.company-mini-values span { padding: 9px 14px; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; color: rgba(255,255,255,0.86); font-weight: 800; }
.company-leadership-link__grid,
.philosophy-statement,
.leadership-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 70px;
  align-items: center;
}
.company-leadership-link figure,
.company-leadership-link__grid figure,
.leadership-hero__portrait,
.leadership-profile__photo { margin: 0; overflow: hidden; border-radius: 8px; }
.company-leadership-link figure img,
.leadership-hero__portrait img,
.leadership-profile__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.company-leadership-link blockquote { margin: 24px 0; color: var(--wine); font-family: Georgia, "Noto Serif JP", serif; font-size: 1.4rem; line-height: 1.7; }
.company-profile-table { display: grid; border-top: 1px solid var(--line); }
.company-profile-table div { display: grid; grid-template-columns: 220px 1fr; gap: 28px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.company-profile-table dt { color: var(--wine); font-weight: 800; }
.company-profile-table dd { margin: 0; }
.company-timeline,
.leadership-journey-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.company-timeline li,
.leadership-journey-list li { display: grid; grid-template-columns: 140px 1fr; gap: 28px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.company-timeline time,
.leadership-journey-list time { color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.company-timeline span,
.leadership-journey-list p { margin: 0; color: var(--ink); font-weight: 700; }
.company-history-details { margin-top: 30px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.6); }
.company-history-details summary { cursor: pointer; font-weight: 800; }
.company-history-details dl { margin: 24px 0 0; }
.company-history-details div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 12px 0; border-top: 1px solid rgba(24,21,20,0.08); }
.company-history-details dt { color: var(--wine); font-family: Georgia, "Times New Roman", serif; }
.company-governance-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.company-governance-card img { width: 54px; height: 54px; object-fit: contain; }
.company-governance-card a,
.company-location-card a,
.leadership-media-card a { display: inline-flex; margin-top: 14px; color: var(--wine); font-weight: 800; }
.company-governance-card a[target="_blank"]::after,
.company-location-card a[target="_blank"]::after,
.leadership-media-card a[target="_blank"]::after { content: "↗"; margin-left: 6px; }
.philosophy-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: center;
  padding: 130px max(24px, calc((100vw - 1180px) / 2)) 86px;
  overflow: hidden;
  color: var(--white);
  background: #181514;
}
.philosophy-hero::after { background: linear-gradient(90deg, rgba(18,12,10,0.76), rgba(18,12,10,0.28)); }
.philosophy-hero__media { inset: 0; }
.philosophy-hero__content { position: relative; z-index: 2; max-width: 820px; }
.philosophy-hero__en { color: #f2c997; font-size: 1.2rem; }
.philosophy-statement { padding: 118px max(24px, calc((100vw - 1180px) / 2)); }
.philosophy-statement__image,
.philosophy-wide-image,
.philosophy-culture__image { margin: 0; overflow: hidden; border-radius: 8px; }
.philosophy-statement__image img,
.philosophy-wide-image img,
.philosophy-culture__image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.philosophy-vision { background: #f7f4ee; }
.philosophy-split { grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.64fr); }
.philosophy-copy p:first-child { color: var(--ink); font-size: 1.2rem; font-weight: 800; }
.philosophy-wide-image { margin-top: 54px; }
.philosophy-culture { position: relative; overflow: hidden; color: var(--white); background: #181514; }
.philosophy-culture .company-kicker,
.leadership-happiness .company-kicker { color: #f2c997; }
.philosophy-culture .philosophy-copy p,
.leadership-happiness .leadership-section__head p,
.leadership-happiness-card p { color: rgba(255,255,255,0.78); }
.philosophy-culture-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.philosophy-culture-list li { padding: 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; }
.philosophy-culture-list span { display: block; color: #f2c997; font-family: Georgia, "Times New Roman", serif; }
.philosophy-culture__image { margin-top: 56px; }
.philosophy-value-grid,
.philosophy-value-card,
.philosophy-next,
.leadership-next { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-top: 0; }
.leadership-next { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.philosophy-next-card { color: var(--ink); }
.philosophy-next-card strong { display: block; margin-top: 18px; font-size: 1.2rem; }
.leadership-hero {
  position: relative;
  min-height: 92svh;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 80px;
  color: var(--white);
  background: linear-gradient(135deg, #4d0c1d, #181514 68%);
  overflow: hidden;
}
.leadership-hero::after { background: radial-gradient(circle at 76% 28%, rgba(255,255,255,0.12), transparent 35%); }
.leadership-hero__content,
.leadership-hero__portrait { position: relative; z-index: 2; }
.leadership-hero__portrait { max-height: 720px; align-self: end; box-shadow: 0 28px 86px rgba(0,0,0,0.34); }
.leadership-hero__name span { display: block; color: #f2c997; font-size: 0.86rem; font-weight: 800; }
.leadership-message { grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.82fr); }
.leadership-message__body { padding-left: 44px; border-left: 1px solid var(--line); }
.leadership-signature { margin-top: 34px !important; color: var(--ink) !important; font-family: Georgia, "Noto Serif JP", serif; font-size: 1.15rem; }
.leadership-section__head { max-width: 860px; margin-bottom: 44px; }
.leadership-happiness__grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.leadership-happiness-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); box-shadow: none; }
.leadership-happiness-card h3 { color: var(--white); }
.leadership-profile { grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1fr); }
.leadership-profile__photo { height: 680px; }
.leadership-profile__body h2 span { font-family: "Noto Sans JP", sans-serif; font-size: 1rem; color: var(--muted); }
.leadership-profile-list { margin: 30px 0; border-top: 1px solid var(--line); }
.leadership-profile-list div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.leadership-profile-list dt { color: var(--wine); font-weight: 800; }
.leadership-profile-list dd { margin: 0; color: var(--muted); line-height: 1.9; }
.leadership-journey { background: #f7f4ee; }
.leadership-partners { grid-template-columns: repeat(2, minmax(0,1fr)); }
.leadership-media-metrics { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.leadership-media-metrics span { display: grid; min-width: 190px; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,0.7); color: var(--muted); font-size: 0.78rem; }
.leadership-media-metrics strong { color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 2.2rem; line-height: 1; }
.leadership-media-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.leadership-media-filter button { min-height: 40px; padding: 0 14px; border: 1px solid rgba(122,38,56,0.24); border-radius: 999px; background: transparent; color: var(--wine); font-weight: 800; cursor: pointer; }
.leadership-media-filter button[aria-pressed="true"],
.leadership-media-filter button:hover,
.leadership-media-filter button:focus-visible { background: var(--wine); color: var(--white); outline: 0; }
.leadership-media-count { color: var(--muted); }
.leadership-media-block { margin-top: 42px; }
.leadership-media-block > h3 { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; color: var(--wine); }
.leadership-featured-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.leadership-media-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.leadership-media-year { margin-top: 34px; }
.leadership-media-year > h4 { margin: 0 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; color: var(--wine); }
.leadership-media-card { overflow: hidden; }
.leadership-media-card h4,
.leadership-media-card h5 { font-size: 1rem; }
.leadership-media-card.is-hidden { display: none; }
.company-reveal,
.philosophy-reveal,
.leadership-reveal { opacity: 1; transform: none; }
.js-company-ready .company-reveal,
.js-philosophy-ready .philosophy-reveal,
.js-leadership-ready .leadership-reveal { will-change: transform, opacity, filter; }
@media (max-width: 1120px) {
  .company-hero h1,
  .philosophy-hero h1,
  .leadership-hero h1 { font-size: 3.6rem; }
  .company-copy h2,
  .company-section__head h2,
  .philosophy-statement h2,
  .philosophy-section h2,
  .leadership-section h2 { font-size: 2.75rem; }
  .company-stat-grid,
  .company-card-grid--three,
  .company-governance-grid,
  .philosophy-value-grid,
  .leadership-happiness__grid,
  .leadership-media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-leadership-link__grid,
  .philosophy-statement,
  .leadership-hero,
  .leadership-message,
  .leadership-profile { grid-template-columns: 1fr; }
  .leadership-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .leadership-next { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav-dropdown { display: grid; width: 100%; }
  .nav-dropdown__toggle {
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.4rem;
    text-shadow: none;
  }
  .nav-dropdown__toggle::after { display: none; }
  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 16px;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.28s ease, padding 0.28s ease;
    visibility: visible;
  }
  .nav-dropdown.is-open .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    max-height: 230px;
    padding: 8px 0 12px 16px;
  }
  .nav-dropdown__menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1rem;
  }
}
@media (max-width: 820px) {
  .company-hero,
  .philosophy-hero,
  .leadership-hero { min-height: 82svh; padding: 112px 22px 58px; }
  .company-hero h1,
  .philosophy-hero h1,
  .leadership-hero h1 { font-size: 2.7rem; }
  .company-hero__submedia { display: none; }
  .company-section,
  .philosophy-section,
  .philosophy-statement,
  .leadership-section { padding: 82px 22px; }
  .company-section__grid,
  .philosophy-split { grid-template-columns: 1fr; gap: 28px; }
  .company-stat-grid,
  .company-card-grid--three,
  .company-card-grid--two,
  .company-governance-grid,
  .philosophy-value-grid,
  .leadership-happiness__grid,
  .leadership-partners,
  .leadership-media-grid,
  .leadership-featured-grid,
  .philosophy-next,
  .leadership-next { grid-template-columns: 1fr; }
  .company-profile-table div,
  .company-timeline li,
  .leadership-journey-list li,
  .company-history-details div,
  .leadership-profile-list div { grid-template-columns: 1fr; gap: 8px; }
  .leadership-message__body { padding-left: 0; border-left: 0; }
  .leadership-profile__photo { height: 520px; }
  .philosophy-culture-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .brand-text { font-size: 0.98rem; }
  .brand-mark--logo { width: 30px; height: 36px; }
  .company-hero h1,
  .philosophy-hero h1,
  .leadership-hero h1 { font-size: 2.28rem; }
  .company-copy h2,
  .company-section__head h2,
  .philosophy-statement h2,
  .philosophy-section h2,
  .leadership-section h2 { font-size: 2.05rem; }
  .company-stat strong { font-size: 2.35rem; }
  .company-image-card div,
  .company-location-card div,
  .company-governance-card,
  .philosophy-value-card,
  .leadership-happiness-card,
  .leadership-partner-card,
  .leadership-media-card { padding: 20px; }
}/* Keep mobile navigation from contributing to horizontal overflow, including no-JS fallbacks. */
@media (max-width: 860px) {
  html.js .site-nav { visibility: hidden; pointer-events: none; }
  html.js .site-nav.is-open { visibility: visible; pointer-events: auto; }
  html:not(.js) .site-header { position: static; }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .site-nav { position: static; inset: auto; transform: none; visibility: visible; width: 100%; min-height: 0; padding: 12px 24px 22px; background: var(--paper); }
}
/* Company hub, profile/history pages, and durable company navigation. */
.nav-dropdown__menu::before { position: absolute; top: -16px; right: 0; left: 0; height: 16px; content: ""; }
.company-hub-page, .company-profile-page, .history-page { background: #fbfaf6; }
.company-hub { padding: 112px max(24px, calc((100vw - 1180px) / 2)) 88px; }
.company-hub__intro { max-width: 700px; margin-bottom: 54px; }
.company-hub__intro h2, .company-subhero h1, .company-subhero h2 { margin: 0; font-family: Georgia, "Noto Serif JP", "Yu Mincho", serif; font-weight: 500; letter-spacing: 0; line-height: 1.15; }
.company-hub__intro h2 { font-size: 3.45rem; }
.company-hub__intro > p:last-child, .company-subhero > p:last-child { margin: 24px 0 0; color: var(--muted); line-height: 2; }
.company-hub__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 40px; }
.company-hub-card { display: block; min-width: 0; overflow: hidden; border: 1px solid rgba(24, 21, 20, 0.14); border-radius: 8px; background: rgba(255,255,255,0.72); color: var(--ink); transition: border-color 0.24s ease, box-shadow 0.24s ease; }
.company-hub-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; transition: transform 0.32s ease; }
.company-hub-card img.company-hub-card__portrait { object-position: center 23%; }
.company-hub-card div { display: grid; min-height: 254px; padding: 28px; }
.company-hub-card span, .company-hub-card b { color: #a75b39; font-family: Georgia, "Times New Roman", serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0; }
.company-hub-card h3 { margin: 14px 0 0; font-family: Georgia, "Noto Serif JP", serif; font-size: 1.7rem; font-weight: 500; }
.company-hub-card p { margin: 14px 0 22px; color: var(--muted); font-size: 0.93rem; line-height: 1.9; }
.company-hub-card b { align-self: end; font-family: "Noto Sans JP", sans-serif; font-size: 0.9rem; }
.company-hub-card i { display: inline-block; margin-left: 8px; font-style: normal; transition: transform 0.24s ease; }
.company-hub-card:hover, .company-hub-card:focus-visible { border-color: rgba(122,38,56,0.52); box-shadow: 0 18px 54px rgba(34,27,20,0.12); outline: 2px solid transparent; }
.company-hub-card:hover img, .company-hub-card:focus-visible img { transform: scale(1.03); }
.company-hub-card:hover h3, .company-hub-card:focus-visible h3 { color: var(--wine); }
.company-hub-card:hover i, .company-hub-card:focus-visible i { transform: translateX(5px); }
.company-next { padding: 0 max(24px, calc((100vw - 1180px) / 2)) 112px; }
.company-next > div { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.company-next a, .company-next span { min-height: 92px; display: grid; align-content: center; gap: 7px; padding: 16px; color: var(--ink); font-weight: 700; }
.company-next a:hover, .company-next a:focus-visible { color: var(--wine); outline: 2px solid var(--wine); outline-offset: -2px; }
.company-next span { color: var(--muted); background: rgba(122,38,56,0.05); }
.company-next small { color: #a75b39; font-size: 0.68rem; letter-spacing: 0; }
.company-subhero { min-height: 430px; padding: 166px max(24px, calc((100vw - 1180px) / 2)) 82px; background: #f2eee7; }
.company-subhero--history { color: var(--white); background: linear-gradient(90deg, rgba(24,21,20,0.82), rgba(24,21,20,0.4)), url("../images/company/history/01-wine-shop-history.jpg") center / cover; }
.company-subhero h1 { font-size: 4rem; }
.company-subhero h2 { margin-top: 26px; font-size: 2rem; }
.company-subhero--history .company-kicker { color: #f2c997; }
.company-subhero--history > p:last-child { color: rgba(255,255,255,0.82); }
.company-history-list { margin: 0; border-top: 1px solid var(--line); }
.company-history-list div { display: grid; grid-template-columns: 140px minmax(0, 1fr); gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.company-history-list dt { color: var(--wine); font-family: Georgia, "Times New Roman", serif; font-size: 1.48rem; }
.company-history-list dd { margin: 0; color: var(--ink); font-weight: 700; line-height: 1.9; }
.history-all { background: #f7f4ee; }
.history-all__note { margin: 28px 0 0; color: var(--muted); font-size: 0.9rem; line-height: 1.8; }
@media (max-width: 980px) { .nav-dropdown__menu::before { display: none; } .company-next > div { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px) { .company-hub { padding: 82px 22px 66px; } .company-hub__intro { margin-bottom: 36px; } .company-hub__intro h2, .company-subhero h1 { font-size: 2.45rem; } .company-hub__grid, .company-next > div { grid-template-columns: 1fr; gap: 22px; } .company-hub-card div { min-height: 0; padding: 22px; } .company-next { padding: 0 22px 82px; } .company-next > div { gap: 0; } .company-next a, .company-next span { min-height: 68px; border-bottom: 1px solid var(--line); } .company-next > div > :last-child { border-bottom: 0; } .company-subhero { min-height: 360px; padding: 132px 22px 62px; } .company-subhero h2 { font-size: 1.7rem; } .company-history-list div { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; } }

@media (max-width: 980px) { .nav-dropdown.is-open .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { max-height: 340px; } }

/* Company / philosophy copy and layout refinement. */
.company-hub { padding-top: 100px; }
.company-hub-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.company-hub-card__media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-vision__layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.64fr); gap: 70px; align-items: center; }
.philosophy-vision__statement h2 { margin: 0; font-family: Georgia, "Noto Serif JP", "Yu Mincho", serif; font-size: 3.45rem; font-weight: 500; line-height: 1.2; }
.philosophy-vision__image { margin: 0; overflow: hidden; border-radius: 8px; }
.philosophy-vision__image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.philosophy-culture__content { max-width: 850px; }
.philosophy-culture__content h2 { margin: 0; font-family: Georgia, "Noto Serif JP", "Yu Mincho", serif; font-size: 3.45rem; font-weight: 500; }
.philosophy-culture__content > p:last-child { margin: 28px 0 0; color: rgba(255,255,255,0.88); font-size: 1.35rem; font-weight: 700; line-height: 1.9; }
@media (max-width: 1120px) { .philosophy-vision__layout { grid-template-columns: 1fr; } .philosophy-vision__statement h2, .philosophy-culture__content h2 { font-size: 2.75rem; } }
@media (max-width: 820px) { .company-hub { padding-top: 60px; } .philosophy-vision__layout { gap: 28px; } .philosophy-vision__statement h2, .philosophy-culture__content h2 { font-size: 2.05rem; } .philosophy-culture__content > p:last-child { font-size: 1.1rem; } }



/* Leadership page polish: scoped overrides for the president message page only. */
.leadership-page .leadership-hero {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr);
  min-height: 640px;
  padding-top: 132px;
  padding-bottom: 84px;
}
.leadership-page .leadership-hero__content { max-width: 590px; }
.leadership-page .leadership-hero h1 { font-size: clamp(3.3rem, 4.3vw, 5rem); }
.leadership-page .leadership-hero__content > .company-kicker { color: #d8ad80; }
.leadership-page .leadership-hero__portrait {
  align-self: stretch;
  min-height: 480px;
  max-height: 670px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 24px 28px 70px rgba(0, 0, 0, 0.24);
}
.leadership-page .leadership-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.leadership-page .leadership-journey .leadership-section__head { margin-bottom: 34px; }
.leadership-page .leadership-journey .company-kicker { margin-bottom: 0; }
.leadership-page .leadership-partners { display: block; }
.leadership-page .leadership-partners__intro {
  max-width: 890px;
  margin: 0 0 42px;
  padding: 0 0 38px;
  border-bottom: 1px solid rgba(24, 21, 20, 0.14);
}
.leadership-page .leadership-partners__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}
.leadership-page .leadership-partners__intro p + p { margin-top: 15px; }
.leadership-page .leadership-partners__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.leadership-page .leadership-media .leadership-section__head { margin-bottom: 40px; }
.leadership-page .leadership-media-grid--simple { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.leadership-page .leadership-media-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-color: rgba(62, 34, 29, 0.12);
  background: #fff;
  box-shadow: 0 12px 30px rgba(34, 27, 20, 0.06);
}
.leadership-page .leadership-media-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.leadership-page .leadership-media-card__body { display: flex; flex: 1; flex-direction: column; padding: 23px 24px 25px; }
.leadership-page .leadership-media-card time { color: #9a4e39; font-family: Georgia, "Times New Roman", serif; font-size: 0.92rem; font-weight: 700; }
.leadership-page .leadership-media-card h3 { margin: 13px 0 12px; font-family: "Noto Serif JP", "Yu Mincho", serif; font-size: 1.26rem; font-weight: 600; line-height: 1.5; }
.leadership-page .leadership-media-card p { margin: 0 0 18px; font-size: 0.92rem; line-height: 1.8; }
.leadership-page .leadership-media-card a { margin-top: auto; color: var(--wine); font-size: 0.9rem; font-weight: 800; line-height: 1.65; text-decoration: none; }
.leadership-page .leadership-media-card a + a { margin-top: 8px; }
.leadership-page .leadership-media-card a:hover,
.leadership-page .leadership-media-card a:focus-visible { text-decoration: underline; outline: 0; }
@media (max-width: 1120px) {
  .leadership-page .leadership-media-grid--simple { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .leadership-page .leadership-hero { grid-template-columns: 1fr; min-height: 0; gap: 36px; padding-top: 116px; padding-bottom: 52px; }
  .leadership-page .leadership-hero__portrait { min-height: 430px; max-height: 560px; }
  .leadership-page .leadership-partners__intro { margin-bottom: 30px; padding-bottom: 28px; }
  .leadership-page .leadership-partners__intro br { display: none; }
  .leadership-page .leadership-partners__cards,
  .leadership-page .leadership-media-grid--simple { grid-template-columns: 1fr; }
}

/* Leadership image and introduction-message update. */
.leadership-page .leadership-hero__portrait {
  width: 100%;
  min-height: 0;
  max-height: none;
  aspect-ratio: 4 / 3;
  align-self: center;
}
.leadership-page .leadership-hero__portrait img { object-position: center 32%; }
.leadership-page .leadership-profile__photo img { object-position: 80% 20%; }
.leadership-page .leadership-partners__intro {
  max-width: 820px;
  margin: 0 0 64px;
  padding: 0;
  border-bottom: 0;
}
.leadership-page .leadership-partners__intro p {
  font-size: 1rem;
  line-height: 1.95;
}
.leadership-page .leadership-partners__intro p + p { margin-top: 20px; }
@media (max-width: 760px) {
  .leadership-page .leadership-hero__portrait {
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .leadership-page .leadership-partners__intro { margin-bottom: 52px; }
  .leadership-page .leadership-partners__intro p { font-size: 1rem; line-height: 1.9; }
}


/* Company profile and leadership hero update, scoped to the requested pages. */
.company-profile-page .company-subhero--profile {
  color: var(--white);
  background: linear-gradient(90deg, rgba(26, 17, 14, 0.78), rgba(26, 17, 14, 0.48) 54%, rgba(26, 17, 14, 0.28)), url("../images/company/profile/01-wine-shelves-hero.jpg") center / cover;
}
.company-profile-page .company-subhero--profile .company-kicker { color: #f2c997; }
.company-profile-page .company-subhero--profile > p:last-child { color: rgba(255, 255, 255, 0.88); }
.company-profile-page .company-profile-table a { color: var(--wine); font-weight: 700; text-decoration: none; }
.company-profile-page .company-profile-table a:hover,
.company-profile-page .company-profile-table a:focus-visible { text-decoration: underline; outline: 0; }
.company-profile-page .company-profile-map { padding-top: 0; }
.company-profile-page .company-profile-map__frame { overflow: hidden; border: 1px solid rgba(24, 21, 20, 0.14); border-radius: 8px; box-shadow: 0 18px 54px rgba(34, 27, 20, 0.08); }
.company-profile-page .company-profile-map iframe { display: block; width: 100%; height: clamp(320px, 42vw, 500px); border: 0; }
.company-profile-page .company-location-card img { aspect-ratio: 4 / 3; object-position: center; }
.leadership-page .leadership-hero { isolation: isolate; background: #310c19; }
.leadership-page .leadership-hero__cityscape { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.leadership-page .leadership-hero::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(35, 8, 19, 0.92) 0%, rgba(43, 9, 20, 0.78) 40%, rgba(23, 13, 16, 0.38) 100%); }
.leadership-page .leadership-hero::after { z-index: 1; background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(26, 8, 15, 0.18)); }
.leadership-page .leadership-hero__content,
.leadership-page .leadership-hero__portrait { z-index: 2; }
@media (max-width: 760px) {
  .company-profile-page .company-subhero--profile { background-position: 62% center; }
  .company-profile-page .company-profile-map { padding-top: 0; }
  .company-profile-page .company-profile-map iframe { height: 330px; }
  .leadership-page .leadership-hero::before { background: linear-gradient(180deg, rgba(35, 8, 19, 0.9) 0%, rgba(43, 9, 20, 0.76) 48%, rgba(23, 13, 16, 0.4) 100%); }
}
@media (max-width: 760px) {
  .leadership-page .leadership-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.55rem);
    white-space: nowrap;
  }
}

/* History hero update, scoped to the history page. */
.history-page .company-subhero--history {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #211b15;
}
.history-page .history-hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.history-page .company-subhero--history::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(19, 17, 15, 0.85) 0%, rgba(19, 17, 15, 0.58) 48%, rgba(19, 17, 15, 0.16) 100%);
}
.history-page .history-hero__content { position: relative; z-index: 2; max-width: 720px; }
.history-page .company-subhero--history .company-kicker { color: #f2c997; }
.history-page .company-subhero--history .history-hero__content > p:last-child { color: rgba(255, 255, 255, 0.84); }
@media (max-width: 760px) {
  .history-page .history-hero__image { object-position: 61% center; }
  .history-page .company-subhero--history::before { background: linear-gradient(90deg, rgba(19, 17, 15, 0.84), rgba(19, 17, 15, 0.42)); }
}

/* Business hub and detail-page reconstruction. */
.business-hub-page .business-hero__media .business-hero__slide { opacity: 1; transform: scale(1); }
.business-hub-page .business-hero__inner { max-width: 760px; }
.business-overview--hub { background: #f7f3eb; }
.business-overview__layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr); gap: clamp(40px, 8vw, 124px); align-items: start; max-width: 1120px; }
.business-overview__layout > div:last-child { padding-top: 10px; color: var(--business-soft-ink); font-size: 1.07rem; line-height: 2.05; }
.business-overview__layout > div:last-child p { margin: 0 0 24px; }
.business-ecosystem--radial { overflow: hidden; background: radial-gradient(circle at 53% 43%, rgba(255,255,255,0.92), rgba(255,250,242,0.86) 44%, #f5eee3 100%); }
.ecosystem-radial { position: relative; width: min(100%, 1040px); min-height: 800px; margin: 0 auto; }
.ecosystem-radial__lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ecosystem-radial__lines circle { fill: none; stroke: rgba(160, 115, 58, 0.34); stroke-width: 1.5; stroke-dasharray: 4 8; }
.ecosystem-radial__lines circle:last-of-type { stroke: rgba(122, 38, 56, 0.28); stroke-dasharray: 0; }
.business-ecosystem__radial-line { stroke: rgba(143, 97, 31, 0.75); stroke-width: 1.6; stroke-linecap: round; }
.ecosystem-radial__core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 262px; height: 262px; display: grid; place-content: center; gap: 13px; padding: 30px; border: 2px solid rgba(153, 107, 48, 0.55); border-radius: 50%; background: rgba(255, 253, 248, 0.88); box-shadow: 0 18px 38px rgba(59, 43, 26, 0.12); text-align: center; transform: translate(-50%, -50%); }
.ecosystem-radial__core::before { content: ""; width: 26px; height: 34px; justify-self: center; border: 2px solid var(--business-wine); border-radius: 14px 14px 10px 10px; opacity: 0.82; }
.ecosystem-radial__core span { font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; color: var(--business-ink); font-size: 2.05rem; line-height: 1.1; }
.ecosystem-radial__core small { color: var(--business-wine); font-family: Georgia, "Times New Roman", serif; font-size: 0.86rem; font-weight: 700; line-height: 1.25; }
.ecosystem-radial__nodes { margin: 0; padding: 0; list-style: none; }
.ecosystem-radial__node { position: absolute; z-index: 2; left: var(--x); top: var(--y); width: 184px; min-height: 184px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px 16px; border: 1px solid rgba(169, 125, 67, 0.5); border-radius: 50%; background: rgba(255, 253, 249, 0.9); text-align: center; transform: translate(-50%, -50%); }
.ecosystem-radial__node > span { margin-bottom: 6px; color: var(--business-wine); font-family: Georgia, "Times New Roman", serif; font-size: 0.96rem; font-weight: 700; }
.ecosystem-radial__node h3 { margin: 0; color: var(--business-ink); font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.06rem; line-height: 1.3; }
.ecosystem-radial__node strong { margin-top: 4px; color: var(--business-wine); font-family: Georgia, "Times New Roman", serif; font-size: 0.72rem; line-height: 1.2; }
.ecosystem-radial__node p { margin: 8px 0 0; color: var(--business-soft-ink); font-size: 0.7rem; line-height: 1.45; }
.business-ecosystem__support { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1120px; margin: 12px auto 0; }
.business-ecosystem__support article { padding: 28px; border: 1px solid rgba(169, 125, 67, 0.5); border-radius: 8px; background: rgba(255, 253, 249, 0.72); }
.business-ecosystem__support span { color: var(--business-ink); font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.28rem; }
.business-ecosystem__support p { margin: 16px 0 0; color: var(--business-soft-ink); font-size: 0.92rem; line-height: 1.8; }
.business-next-business { background: #f7f3eb; }
.business-link-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.business-link-card { display: grid; grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1fr); min-height: 340px; overflow: hidden; border: 1px solid rgba(42, 35, 29, 0.1); border-radius: 8px; background: #fffdf9; box-shadow: var(--business-shadow); color: var(--business-ink); text-decoration: none; }
.business-link-card figure { margin: 0; overflow: hidden; }
.business-link-card figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.business-link-card:hover figure img, .business-link-card:focus-visible figure img { transform: scale(1.03); }
.business-link-card > div { display: flex; flex-direction: column; padding: 32px 28px 28px; }
.business-link-card > div > span { color: var(--business-gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; }
.business-link-card h3 { margin: 30px 0 0; color: var(--business-wine); font-family: Georgia, "Times New Roman", serif; font-size: 0.82rem; letter-spacing: 0; }
.business-link-card h4 { margin: 8px 0 0; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.5rem; }
.business-link-card p { margin: 18px 0 0; color: var(--business-soft-ink); font-size: 0.9rem; line-height: 1.8; }
.business-link-card b { display: inline-flex; gap: 9px; margin-top: auto; padding-top: 24px; color: var(--business-wine); font-size: 0.92rem; }
.business-link-card i { font-style: normal; transition: transform 0.2s ease; }
.business-link-card:hover i, .business-link-card:focus-visible i { transform: translateX(5px); }
.business-link-card:focus-visible { outline: 2px solid var(--business-wine); outline-offset: 3px; }
.business-detail-hero { position: relative; min-height: min(710px, 82svh); display: grid; align-items: end; overflow: hidden; padding: 150px max(24px, calc((100vw - 1180px) / 2)) 82px; background: #1c1512; color: #fff; }
.business-detail-hero > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.business-detail-hero::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(17, 11, 9, 0.85), rgba(17, 11, 9, 0.44) 52%, rgba(17, 11, 9, 0.2)); }
.business-detail-hero > div { position: relative; z-index: 2; max-width: 780px; }
.business-detail-hero .business-kicker { color: #f2c997; }
.business-detail-hero h1 { margin: 18px 0 0; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2.6rem, 5vw, 4.75rem); font-weight: 500; line-height: 1.18; }
.business-detail-hero p:last-child { max-width: 620px; margin: 28px 0 0; color: rgba(255,255,255,0.88); line-height: 1.95; }
.business-detail-hero--food > img { object-position: center; }
.business-detail-page .business-section:first-child { padding-top: 122px; }
.business-detail-cta { text-align: center; background: #f7f3eb; }
.business-detail-cta .business-section__title { max-width: 760px; margin: 18px auto 0; }
.business-detail-cta > p:not(.business-kicker) { max-width: 620px; margin: 24px auto 0; color: var(--business-soft-ink); line-height: 1.9; }
.business-detail-cta > div { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.business-detail-page .company-next > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .business-overview__layout { grid-template-columns: 1fr; gap: 28px; }
  .ecosystem-radial { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 28px; }
  .ecosystem-radial__lines { display: none; }
  .ecosystem-radial__core { position: relative; left: auto; top: auto; justify-self: center; transform: none; }
  .ecosystem-radial__nodes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .ecosystem-radial__node { position: relative; left: auto; top: auto; width: auto; min-height: 178px; border-radius: 8px; transform: none; }
  .business-ecosystem__support { grid-template-columns: 1fr; }
  .business-link-card { grid-template-columns: 0.78fr 1fr; }
}
@media (max-width: 760px) {
  .business-detail-hero { min-height: 580px; padding: 126px 22px 58px; }
  .business-detail-hero h1 { font-size: 2.45rem; }
  .business-detail-hero::before { background: linear-gradient(90deg, rgba(17, 11, 9, 0.83), rgba(17, 11, 9, 0.42)); }
  .business-link-cards { grid-template-columns: 1fr; }
  .business-link-card { min-height: 0; }
  .business-link-card figure { min-height: 230px; }
  .business-detail-cta > div { flex-direction: column; align-items: stretch; }
  .business-detail-page .company-next > div { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .ecosystem-radial__nodes { grid-template-columns: 1fr; }
  .ecosystem-radial__node { min-height: 0; padding: 25px 20px; }
  .ecosystem-radial__node p { font-size: 0.88rem; }
  .business-link-card { grid-template-columns: 1fr; }
  .business-link-card > div { padding: 26px 22px; }
  .business-link-card h3 { margin-top: 22px; }
}

/* Business hub visual refinements. */
.business-hub-page .business-hero { min-height: 86svh; padding: 136px max(24px, calc((100vw - 1180px) / 2)) 78px; }
.business-hub-page .business-hero__slide { object-position: center; filter: saturate(0.92) contrast(1.04) brightness(0.78); }
.business-hub-page .business-hero__scrim { background: linear-gradient(90deg, rgba(12, 9, 8, 0.76), rgba(12, 9, 8, 0.34) 56%, rgba(12, 9, 8, 0.34)), linear-gradient(180deg, rgba(12, 9, 8, 0.12), rgba(12, 9, 8, 0.58)); }
.business-overview--hub .business-overview__layout { grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr); align-items: center; gap: clamp(48px, 8vw, 122px); }
.business-overview__copy { max-width: 520px; }
.business-overview__copy > p:not(.business-kicker) { margin: 26px 0 0; color: var(--business-soft-ink); font-size: 1.04rem; line-height: 2.02; }
.business-overview__media { min-height: 390px; margin: 0; overflow: hidden; border-radius: 8px; box-shadow: 0 24px 54px rgba(55, 40, 27, 0.16); }
.business-overview__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.business-ecosystem--radial .ecosystem-radial { width: min(100%, 1100px); min-height: 840px; }
.business-ecosystem--radial .ecosystem-radial__node { width: 196px; min-height: 196px; padding: 18px 14px; }
.business-ecosystem--radial .ecosystem-radial__node h3 { font-size: 1.08rem; line-height: 1.28; }
.business-ecosystem--radial .ecosystem-radial__node strong { margin-top: 7px; font-size: 0.68rem; line-height: 1.35; letter-spacing: 0.02em; overflow-wrap: anywhere; }
.business-ecosystem--radial .ecosystem-radial__node p { display: none; }
@media (max-width: 1170px) {
  .business-ecosystem--radial .ecosystem-radial { min-height: 0; display: grid; grid-template-columns: 1fr; gap: 30px; }
  .business-ecosystem--radial .ecosystem-radial__lines { display: none; }
  .business-ecosystem--radial .ecosystem-radial__core { position: relative; left: auto; top: auto; justify-self: center; transform: none; }
  .business-ecosystem--radial .ecosystem-radial__nodes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .business-ecosystem--radial .ecosystem-radial__node { position: relative; left: auto; top: auto; width: auto; min-height: 156px; border-radius: 8px; transform: none; }
}
@media (max-width: 820px) {
  .business-hub-page .business-hero { min-height: 82svh; padding: 112px 22px 58px; }
  .business-overview--hub .business-overview__layout { grid-template-columns: 1fr; gap: 34px; }
  .business-overview__media { min-height: 280px; }
}
@media (max-width: 520px) {
  .business-overview__copy > p:not(.business-kicker) { font-size: 1rem; line-height: 1.9; }
  .business-overview__media { min-height: 240px; }
  .business-ecosystem--radial .ecosystem-radial__nodes { grid-template-columns: 1fr; }
  .business-ecosystem--radial .ecosystem-radial__node { min-height: 0; padding: 23px 18px; }
}
/* Philosophy page refinement. */
.philosophy-statement__image img { object-position: center; }
.philosophy-vision__image img {
  height: min(350px, calc((100vw - 44px) * 0.625));
  max-height: 350px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 58%;
}
.philosophy-culture { min-height: 0; padding-block: clamp(84px, 8vw, 118px); }
.philosophy-culture__content { position: relative; z-index: 1; max-width: 720px; }
.philosophy-culture__wordmark { position: absolute; right: clamp(20px, 4vw, 72px); bottom: clamp(18px, 3vw, 52px); z-index: 0; color: rgba(255, 255, 255, 0.055); font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.2rem, 10.5vw, 10.5rem); font-weight: 700; line-height: 0.82; letter-spacing: 0; white-space: nowrap; filter: blur(2px); pointer-events: none; user-select: none; }
.philosophy-values .philosophy-section__head { margin-bottom: 0; padding-bottom: clamp(32px, 2.5vw, 40px); }
.philosophy-value-card { display: flex; min-height: 240px; padding: 30px 32px; flex-direction: column; justify-content: center; }
.philosophy-value-card span { display: block; font-size: clamp(0.94rem, 1.05vw, 1.06rem); line-height: 1.35; }
.philosophy-value-card h3 { margin: 14px 0 0; font-size: clamp(1.38rem, 1.55vw, 1.7rem); line-height: 1.4; }
.philosophy-value-card p { margin: 18px 0 0; }
@media (max-width: 820px) {
  .philosophy-culture { padding-block: 76px; }
  .philosophy-culture__wordmark { right: 16px; bottom: 18px; font-size: clamp(3rem, 15vw, 6rem); }
  .philosophy-vision__image img { max-height: none; }
  .philosophy-values .philosophy-section__head { padding-bottom: 32px; }
  .philosophy-value-card { min-height: 220px; padding: 28px 24px; }
}
/* Business overview illustration and optional ecosystem light-trail. */
.business-overview--hub .business-overview__media { min-height: 0; aspect-ratio: 16 / 10; }
.business-ecosystem--radial .business-ecosystem__title { max-width: 680px; font-size: clamp(1.2rem, 5.4vw, 2.75rem); line-height: 1.3; letter-spacing: 0; }
.business-ecosystem--radial .business-ecosystem__title span { display: block; white-space: nowrap; }
.ecosystem-radial__node--producer h3 { font-size: 0.92rem; }
.ecosystem-radial__light-trail { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.ecosystem-radial__light-trail [data-ecosystem-light-route] { fill: none; stroke: transparent; stroke-width: 10; }
.ecosystem-radial__light-orb { opacity: 0; fill: #f4c96d; filter: drop-shadow(0 0 4px rgba(184, 110, 40, 0.98)) drop-shadow(0 0 10px rgba(244, 201, 109, 0.82)); transition: opacity 240ms ease; }
.ecosystem-radial.is-light-trail-active .ecosystem-radial__light-orb { opacity: 1; }
@media (max-width: 1170px) {
  .business-ecosystem--radial .business-ecosystem__title { max-width: 100%; }
  .ecosystem-radial__light-trail { display: none; }
}
@media (max-width: 760px) {
  .business-overview--hub .business-overview__media { aspect-ratio: 16 / 10; }
  .business-ecosystem--radial .business-ecosystem__title { font-size: clamp(1.2rem, 5.4vw, 2.75rem); line-height: 1.3; }
}
/* Wine business and producer directory renewal. */
.wine-renewal-page { background: #f8f5ef; color: #1e1b19; }
.wine-renewal-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.wine-renewal-hero, .makers-hero { position: relative; display: grid; min-height: min(700px, 80svh); overflow: hidden; color: #fff; isolation: isolate; }
.wine-renewal-hero > img, .makers-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; z-index: -2; }
.wine-renewal-hero__shade, .makers-hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(24, 13, 11, 0.78), rgba(24, 13, 11, 0.34) 62%, rgba(24, 13, 11, 0.18)); }
.wine-renewal-hero__content, .makers-hero__content { align-self: end; width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0 82px; }
.wine-renewal-hero .business-kicker, .makers-hero .business-kicker, .wine-renewal-cta .business-kicker, .makers-message .business-kicker { color: #dfb77b; }
.wine-renewal-hero h1, .makers-hero h1 { max-width: 780px; margin: 18px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 5.8vw, 5.8rem); font-weight: 500; line-height: 1.04; letter-spacing: 0; }
.wine-renewal-hero p:not(.business-kicker), .makers-hero p:not(.business-kicker) { max-width: 600px; margin: 0; font-size: 1.03rem; line-height: 1.9; }
.wine-renewal-hero__link { display: inline-flex; gap: 12px; margin-top: 44px; color: inherit; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; }
.wine-renewal-intro { padding: clamp(92px, 12vw, 170px) 0; }
.wine-renewal-intro__grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.8fr); gap: 56px clamp(52px, 8vw, 130px); align-items: start; }
.wine-renewal-title { margin: 16px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.15rem, 4vw, 4.25rem); font-weight: 500; line-height: 1.18; letter-spacing: 0; }
.wine-renewal-intro__copy { max-width: 540px; padding-top: 10px; }
.wine-renewal-intro__copy p, .wine-renewal-feature__copy p, .wine-renewal-section__heading p, .wine-renewal-quality > div p, .makers-directory__intro > p, .makers-message p:not(.business-kicker) { color: #615a54; font-size: 1rem; line-height: 2; }
.wine-renewal-intro__copy p + p, .wine-renewal-feature__copy p + p { margin-top: 20px; }
.wine-renewal-text-link { display: inline-flex; gap: 12px; margin-top: 30px; color: #7a2638; font-size: 0.92rem; font-weight: 700; }
.wine-renewal-stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: clamp(12px, 3vw, 34px) 0 0; border-top: 1px solid rgba(63, 47, 35, 0.22); }
.wine-renewal-stats > div { padding: 26px 10px 0 0; border-right: 1px solid rgba(63, 47, 35, 0.14); }
.wine-renewal-stats > div + div { padding-left: 28px; }
.wine-renewal-stats dt { color: #7a2638; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4.5vw, 4.8rem); line-height: 1; }
.wine-renewal-stats dt span { font-size: 0.56em; }.wine-renewal-stats dd { margin: 9px 0 0; color: #786f68; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; }
.wine-renewal-section { padding: clamp(88px, 11vw, 160px) 0; }.wine-renewal-section--procurement { background: #eee7da; }.wine-renewal-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr); gap: clamp(44px, 8vw, 132px); align-items: center; }.wine-renewal-feature__image { min-height: 500px; margin: 0; overflow: hidden; border-radius: 7px; }.wine-renewal-feature__image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }.wine-renewal-feature__copy { max-width: 520px; }.wine-renewal-feature__copy .wine-renewal-title { margin-bottom: 30px; }
.wine-renewal-section--quality { background: #211b1b; color: #fff; }.wine-renewal-quality { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); gap: 70px 9vw; }.wine-renewal-quality > div p { color: rgba(255,255,255,0.72); }.wine-renewal-process { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-self: end; margin: 0; padding: 0; list-style: none; }.wine-renewal-process li { min-height: 158px; padding: 18px 15px; border-top: 1px solid rgba(237, 214, 178, 0.45); border-bottom: 1px solid rgba(237, 214, 178, 0.2); }.wine-renewal-process span { display:block; color:#dfb77b; font-family: Georgia, "Times New Roman", serif; font-size: .78rem; }.wine-renewal-process strong { display:block; margin-top:27px; font-size: .98rem; }.wine-renewal-process small { display:block; margin-top:8px; color:rgba(255,255,255,.5); font-size:.64rem; letter-spacing:.06em; }.wine-renewal-quality__images { grid-column: 1 / -1; display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 18px; }.wine-renewal-quality__images img { display:block; width:100%; height:300px; object-fit:cover; border-radius:6px; }.wine-renewal-quality__images img:last-child { object-position: center 45%; }
.wine-renewal-section--commitment { background: #f8f5ef; }.wine-renewal-section__heading { max-width: 720px; }.wine-renewal-section__heading .wine-renewal-title { margin-bottom: 28px; }.wine-renewal-commitment-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:20px; margin-top:64px; }.wine-renewal-commitment-grid article { margin:0; }.wine-renewal-commitment-grid img { display:block; width:100%; aspect-ratio: .9; object-fit:cover; border-radius:6px; }.wine-renewal-commitment-grid span { display:block; margin-top:20px; color:#a15b41; font-size:.67rem; font-weight:700; letter-spacing:.12em; }.wine-renewal-commitment-grid h3 { margin:10px 0 0; font-family:Georgia, "Times New Roman", serif; font-size:1.42rem; font-weight:500; line-height:1.45; }
.wine-renewal-brands { padding:clamp(88px, 11vw, 150px) 0; background:#e9e0d2; }.wine-renewal-brand-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:24px; margin-top:62px; }.wine-renewal-brand-card { display:grid; grid-template-columns: .8fr 1fr; min-height:420px; overflow:hidden; background:#fffdf9; border:1px solid rgba(73,54,42,.12); border-radius:7px; }.wine-renewal-brand-card__photo { width:100%; height:100%; object-fit:cover; }.wine-renewal-brand-card > div { display:flex; padding:42px clamp(28px, 4vw, 52px); flex-direction:column; justify-content:center; }.wine-renewal-brand-card__logo { width:min(100%, 218px); max-height:72px; object-fit:contain; object-position:left center; }.wine-renewal-brand-card__logo--pro { width:min(100%, 250px); }.wine-renewal-brand-card p { margin:28px 0 0; color:#625b55; font-size:.92rem; line-height:1.9; }.wine-renewal-brand-card .wine-renewal-text-link { margin-top:28px; }
.wine-renewal-cta, .makers-message { padding:clamp(88px, 11vw, 138px) 0; background:#4d0c1d; color:#fff; text-align:center; }.wine-renewal-cta .wine-renewal-container, .makers-message .wine-renewal-container { display:grid; justify-items:center; }.wine-renewal-cta h2, .makers-message h2 { margin:18px 0 36px; font-family:Georgia, "Times New Roman", serif; font-size:clamp(2.25rem,4.3vw,4.35rem); font-weight:500; line-height:1.2; }.wine-renewal-cta .business-button, .makers-message .business-button { min-width:220px; background:#fff; color:#5e1227; }.makers-message p:not(.business-kicker) { max-width:650px; margin:0 0 34px; color:rgba(255,255,255,.74); }
.makers-page { background:#f8f5ef; }.makers-hero { min-height:min(610px, 72svh); }.makers-hero > img { object-position:center 54%; filter:saturate(.92) contrast(1.05); }.makers-hero__content { padding-bottom:76px; }.makers-directory { padding:clamp(88px, 11vw, 150px) 0; }.makers-directory__intro { display:grid; grid-template-columns:minmax(0,.9fr) minmax(360px,.78fr); gap:60px 10vw; align-items:end; }.makers-directory__intro .business-kicker, .makers-directory__intro .wine-renewal-title { grid-column:1; }.makers-directory__intro > p { grid-column:2; grid-row:1 / span 2; margin:0; }.makers-filter { display:flex; flex-wrap:wrap; gap:9px; margin-top:64px; padding-top:20px; border-top:1px solid rgba(72,54,40,.2); }.makers-filter button { padding:10px 16px; border:1px solid rgba(91,61,48,.23); border-radius:999px; background:transparent; color:#544a43; font:700 .72rem/1 Georgia, "Times New Roman", serif; letter-spacing:.08em; cursor:pointer; }.makers-filter button[aria-pressed="true"] { border-color:#7a2638; background:#7a2638; color:#fff; }.makers-directory__count { margin:20px 0 0; color:#8a7d74; font-size:.7rem; letter-spacing:.12em; }.makers-directory__count strong { color:#7a2638; font-family:Georgia, "Times New Roman", serif; font-size:1.25rem; }.makers-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:26px 20px; margin-top:35px; }.makers-card { overflow:hidden; background:#fffdf9; border:1px solid rgba(72,54,40,.12); border-radius:6px; transition:opacity .2s ease, transform .2s ease; }.makers-card[hidden] { display:none; }.makers-card img { display:block; width:100%; aspect-ratio:1.26; object-fit:cover; }.makers-card > div { padding:22px 22px 25px; }.makers-card > div > p:first-child { margin:0; color:#a15b41; font-size:.65rem; font-weight:700; letter-spacing:.09em; }.makers-card h2 { margin:10px 0 0; font-family:Georgia, "Times New Roman", serif; font-size:1.35rem; font-weight:500; line-height:1.3; }.makers-card h2 + span { display:block; margin-top:5px; color:#7a2638; font:700 .72rem/1.4 Georgia, "Times New Roman", serif; }.makers-card__text { min-height:5.6em; margin:20px 0 0; color:#665e58; font-size:.83rem; line-height:1.8; }.makers-card__links { display:flex; flex-wrap:wrap; gap:14px; margin-top:20px; }.makers-card__links a { color:#7a2638; font-size:.73rem; font-weight:700; }
@media (max-width: 1024px) { .wine-renewal-quality { grid-template-columns:1fr; }.wine-renewal-process { grid-template-columns:repeat(5,minmax(132px,1fr)); overflow-x:auto; }.wine-renewal-quality__images { grid-template-columns:1fr 1fr; }.wine-renewal-brand-card { grid-template-columns:1fr; }.wine-renewal-brand-card__photo { height:230px; }.makers-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 760px) { .wine-renewal-container { width:min(100% - 40px, 560px); }.wine-renewal-hero, .makers-hero { min-height:650px; }.wine-renewal-hero > img { object-position:58% center; }.wine-renewal-hero__content, .makers-hero__content { width:min(100% - 40px, 560px); padding:112px 0 55px; }.wine-renewal-hero h1, .makers-hero h1 { font-size:clamp(2.7rem,12vw,4.1rem); }.wine-renewal-intro__grid, .wine-renewal-feature, .makers-directory__intro { grid-template-columns:1fr; gap:34px; }.makers-directory__intro > p { grid-column:auto; grid-row:auto; }.wine-renewal-stats { grid-template-columns:1fr 1fr; }.wine-renewal-stats > div:nth-child(3) { grid-column:1 / -1; padding-left:0; }.wine-renewal-feature__image { min-height:330px; }.wine-renewal-commitment-grid, .wine-renewal-brand-grid { grid-template-columns:1fr; }.wine-renewal-commitment-grid { margin-top:44px; }.wine-renewal-commitment-grid img { aspect-ratio:1.25; }.wine-renewal-brand-grid { margin-top:44px; }.wine-renewal-quality__images { grid-template-columns:1fr; }.wine-renewal-quality__images img { height:245px; }.makers-filter { margin-top:42px; }.makers-grid { grid-template-columns:1fr; }.makers-card__text { min-height:0; } }

/* Wine business trust refresh. Scoped to wine-business.html only. */
.wine-renewal-page .wine-renewal-hero--cellar { min-height: min(650px, 74svh); }
.wine-renewal-page .wine-renewal-hero--cellar > img { object-position: center; filter: saturate(.9) contrast(1.06) brightness(.76); }
.wine-renewal-page .wine-renewal-hero__content { max-width: 1180px; padding-bottom: clamp(70px, 8vw, 104px); }
.wine-renewal-page .wine-renewal-hero h1 { max-width: none; margin-bottom: 22px; font-size: clamp(3rem, 5vw, 5.4rem); }
.wine-renewal-page .wine-renewal-hero p:not(.business-kicker) { max-width: 640px; }
.wine-renewal-page .wine-renewal-intro--trust { padding-bottom: clamp(94px, 11vw, 148px); }
.wine-renewal-page .wine-renewal-intro__copy p:first-child { margin-top: 0; }
.wine-renewal-page .wine-renewal-stats { margin-top: clamp(30px, 5vw, 68px); }
.wine-awards { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(160px, .32fr) minmax(0, 1fr); min-height: 138px; margin-top: 26px; border: 1px solid rgba(117, 75, 50, .22); border-radius: 8px; background: rgba(255, 253, 249, .62); overflow: hidden; }
.wine-awards__heading { display: grid; align-content: center; gap: 8px; padding: 28px 32px; border-right: 1px solid rgba(117, 75, 50, .18); background: rgba(122, 38, 56, .04); }
.wine-awards__heading span { color: #8b5360; font-family: Georgia, "Times New Roman", serif; font-size: .7rem; font-weight: 700; letter-spacing: .16em; }
.wine-awards__heading p { margin: 0; color: #26201c; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.35rem; }
.wine-awards__stage { position: relative; min-height: 136px; }
.wine-award { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 22px 38px; color: #402620; opacity: 0; text-align: center; transform: translateY(7px); transition: opacity .7s ease, transform .7s ease; }
.wine-award.is-active { opacity: 1; transform: translateY(0); }
.wine-award strong { font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.1rem, 1.7vw, 1.7rem); font-weight: 500; line-height: 1.45; }
.wine-award span { padding: 7px 10px; border: 1px solid rgba(122, 38, 56, .35); color: #7a2638; font-family: Georgia, "Times New Roman", serif; font-size: .61rem; font-weight: 700; letter-spacing: .08em; white-space: nowrap; }
.wine-renewal-page .wine-renewal-section--purchase { background: #eee7da; }
.wine-renewal-page .wine-renewal-section--purchase .wine-renewal-feature__image { min-height: 0; aspect-ratio: 1; }
.wine-renewal-page .wine-renewal-feature__copy p { margin: 0; }
.wine-renewal-page .wine-renewal-feature__copy .wine-renewal-title { margin-bottom: 28px; }
.wine-renewal-page .wine-renewal-feature__copy > p:last-child { font-size: 1rem; line-height: 2.05; }
.wine-renewal-page .wine-renewal-quality--revised { grid-template-columns: minmax(0, .86fr) minmax(360px, .9fr); align-items: center; }
.wine-renewal-page .wine-renewal-quality__content { max-width: 535px; }
.wine-renewal-page .wine-renewal-quality__content .wine-renewal-title { margin-bottom: 30px; }
.wine-renewal-page .wine-renewal-quality__content p:last-child { margin: 0; font-size: 1rem; line-height: 2.05; }
.wine-renewal-page .wine-renewal-quality__single-image { min-height: 0; margin: 0; overflow: hidden; border-radius: 7px; box-shadow: 0 20px 52px rgba(0,0,0,.24); }
.wine-renewal-page .wine-renewal-quality__single-image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.wine-renewal-page .wine-renewal-section__heading--wide { max-width: 790px; }
.wine-commitment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 60px; }
.wine-commitment-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); min-height: 350px; overflow: hidden; border: 1px solid rgba(73, 54, 42, .14); border-radius: 7px; background: #fffdf9; box-shadow: 0 16px 40px rgba(68, 50, 33, .07); }
.wine-commitment-card > img { display: block; width: 100%; height: 100%; min-height: 350px; object-fit: cover; }
.wine-commitment-card > div { display: flex; flex-direction: column; justify-content: center; padding: 35px 32px; }
.wine-commitment-card span { color: #9a5f48; font-size: .63rem; font-weight: 700; letter-spacing: .11em; }
.wine-commitment-card h3 { margin: 14px 0 0; color: #241e1b; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.4rem, 1.75vw, 1.78rem); font-weight: 500; line-height: 1.35; }
.wine-commitment-card p { margin: 20px 0 0; color: #625a54; font-size: .88rem; line-height: 1.92; }
@media (max-width: 1120px) { .wine-commitment-card { grid-template-columns: 1fr; } .wine-commitment-card > img { min-height: 0; aspect-ratio: 16 / 9; } }
@media (max-width: 900px) { .wine-renewal-page .wine-renewal-quality--revised { grid-template-columns: 1fr; gap: 42px; } .wine-renewal-page .wine-renewal-quality__content { max-width: 680px; } .wine-awards { grid-template-columns: 1fr; } .wine-awards__heading { grid-template-columns: auto 1fr; align-items: center; border-right: 0; border-bottom: 1px solid rgba(117, 75, 50, .18); } }
@media (max-width: 760px) { .wine-renewal-page .wine-renewal-hero--cellar { min-height: 560px; } .wine-renewal-page .wine-renewal-hero--cellar > img { object-position: 58% center; } .wine-renewal-page .wine-renewal-hero h1 { font-size: clamp(2.75rem, 13vw, 4.1rem); } .wine-renewal-page .wine-renewal-hero p:not(.business-kicker) { font-size: .95rem; line-height: 1.85; } .wine-awards { margin-top: 20px; } .wine-awards__heading { padding: 18px 20px; gap: 14px; } .wine-awards__heading p { font-size: 1.15rem; } .wine-awards__stage { min-height: 130px; } .wine-award { flex-direction: column; gap: 10px; padding: 18px 22px; } .wine-award strong { font-size: 1.05rem; } .wine-renewal-page .wine-renewal-section--purchase .wine-renewal-feature__image { aspect-ratio: 1; } .wine-renewal-page .wine-renewal-quality__single-image img { aspect-ratio: 4 / 3; } .wine-commitment-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 42px; } .wine-commitment-card > div { padding: 28px 24px 30px; } }
@media (prefers-reduced-motion: reduce) { .wine-award { transition: none; } }

/* Wine business awards and media refinement. Scoped to wine-business.html. */
.wine-renewal-page .wine-awards--carousel { grid-template-columns: minmax(210px, .29fr) minmax(0, 1fr); min-height: 354px; margin-top: 34px; background: #2a1e1b; border-color: rgba(207, 171, 114, .42); box-shadow: 0 22px 48px rgba(60, 37, 25, .1); }
.wine-renewal-page .wine-awards--carousel .wine-awards__heading { position: relative; align-content: space-between; padding: 38px 30px; border-color: rgba(221, 191, 140, .28); background: linear-gradient(155deg, #641931, #2c1719 62%, #1e1715); color: #fff; }
.wine-renewal-page .wine-awards--carousel .wine-awards__heading span { color: #e8c381; }
.wine-renewal-page .wine-awards--carousel .wine-awards__heading h3 { margin: 13px 0 0; color: #fff; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.45rem; font-weight: 500; }
.wine-renewal-page .wine-awards--carousel .wine-awards__heading > p { display: flex; align-items: baseline; gap: 9px; margin: 0; color: #f4ead9; }
.wine-renewal-page .wine-awards--carousel .wine-awards__heading > p strong { font-family: Georgia, "Times New Roman", serif; font-size: 3.45rem; font-weight: 500; line-height: 1; }
.wine-renewal-page .wine-awards--carousel .wine-awards__heading > p span { font-size: .65rem; letter-spacing: .14em; }
.award-carousel { display: grid; grid-template-rows: 1fr auto; min-width: 0; padding: 20px clamp(20px, 3vw, 44px) 18px; overflow: hidden; background: radial-gradient(circle at 50% 18%, rgba(151, 111, 57, .35), transparent 38%), #201817; }
.award-carousel__track { position: relative; min-height: 272px; perspective: 1100px; transform-style: preserve-3d; }
.award-carousel__card { position: absolute; top: 50%; left: 50%; width: min(62%, 430px); overflow: hidden; border: 1px solid rgba(244, 215, 159, .42); border-radius: 6px; background: #120f0e; box-shadow: 0 18px 34px rgba(0,0,0,.45); opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.72); transition: transform .85s cubic-bezier(.2,.78,.25,1), opacity .65s ease, filter .65s ease; transform-style: preserve-3d; }
.award-carousel__card img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.award-carousel__card > div { position: absolute; inset: auto 0 0; display: grid; gap: 3px; padding: 26px 22px 16px; background: linear-gradient(transparent, rgba(14,9,8,.94) 55%); color: #fff; }
.award-carousel__card > div span { color: #edca89; font-family: Georgia, "Times New Roman", serif; font-size: .66rem; font-weight: 700; letter-spacing: .12em; }
.award-carousel__card > div strong { font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(.8rem, 1.15vw, 1rem); font-weight: 500; line-height: 1.3; }
.award-carousel__card > div small { color: rgba(255,255,255,.72); font-size: .63rem; font-weight: 700; letter-spacing: .1em; }
.award-carousel__card.is-active { z-index: 3; opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) translateZ(70px) scale(1); }
.award-carousel__card.is-previous { z-index: 2; opacity: .56; filter: saturate(.7) brightness(.78); transform: translate(-116%, -50%) rotateY(38deg) scale(.75); }
.award-carousel__card.is-next { z-index: 2; opacity: .56; filter: saturate(.7) brightness(.78); transform: translate(16%, -50%) rotateY(-38deg) scale(.75); }
.award-carousel__dots { display: flex; justify-content: center; gap: 8px; padding-top: 5px; }
.award-carousel__dots button { width: 7px; height: 7px; padding: 0; border: 1px solid rgba(239, 211, 160, .8); border-radius: 50%; background: transparent; cursor: pointer; transition: width .25s ease, background .25s ease; }
.award-carousel__dots button.is-active { width: 22px; border-radius: 999px; background: #e2b665; }
.wine-renewal-page .wine-renewal-title--controlled { font-size: clamp(2rem, 2.8vw, 3rem); line-height: 1.22; }
.wine-renewal-page .wine-renewal-title--controlled span { display: block; white-space: nowrap; }
.wine-renewal-page .wine-renewal-quality__content > p { margin: 0; font-size: 1rem; line-height: 2.05; }
.wine-renewal-page .wine-renewal-quality__context { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 30px; }
.wine-renewal-page .wine-renewal-quality__context figure { margin: 0; overflow: hidden; border: 1px solid rgba(239, 221, 187, .22); border-radius: 4px; background: rgba(255,255,255,.04); }
.wine-renewal-page .wine-renewal-quality__context img { display: block; width: 100%; aspect-ratio: 1.55; object-fit: cover; }
.wine-renewal-page .wine-renewal-quality__context figcaption { padding: 8px 10px; color: rgba(255,255,255,.67); font-size: .62rem; font-weight: 700; letter-spacing: .08em; }

@media (max-width: 760px) {
  .wine-renewal-page .wine-awards--carousel { grid-template-columns: 1fr; min-height: 0; }
  .wine-renewal-page .wine-awards--carousel .wine-awards__heading { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-right: 0; border-bottom: 1px solid rgba(221, 191, 140, .28); }
  .wine-renewal-page .wine-awards--carousel .wine-awards__heading h3 { margin-top: 6px; font-size: 1.22rem; }
  .wine-renewal-page .wine-awards--carousel .wine-awards__heading > p strong { font-size: 2.7rem; }
  .award-carousel { padding: 16px 14px 15px; }
  .award-carousel__track { min-height: 248px; }
  .award-carousel__card { width: min(85%, 340px); }
  .award-carousel__card.is-previous, .award-carousel__card.is-next { opacity: 0; }
  .wine-renewal-page .wine-renewal-title--controlled { font-size: clamp(1.8rem, 7.6vw, 2.45rem); line-height: 1.24; }
  .wine-renewal-page .wine-renewal-quality__context { margin-top: 24px; gap: 10px; }
  .wine-renewal-page .wine-renewal-quality__context figcaption { padding: 7px 8px; font-size: .56rem; }
}
@media (prefers-reduced-motion: reduce) { .award-carousel__card, .award-carousel__dots button { transition: none; } }

/* Three-happiness philosophy moved from leadership.html. */
.philosophy-page .philosophy-happiness { color: var(--white); background: linear-gradient(135deg, #4d0c1d, #181514 72%); }
.philosophy-page .philosophy-happiness .company-kicker { color: #f2c997; }
.philosophy-page .philosophy-happiness__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.philosophy-page .philosophy-happiness-card { min-height: 0; padding: clamp(26px, 2.2vw, 34px); border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 8px; background: rgba(255, 255, 255, 0.08); }
.philosophy-page .philosophy-happiness-card > span { color: #d98245; font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: 1.05rem; }
.philosophy-page .philosophy-happiness-card h3 { margin: 18px 0 0; color: var(--white); font-size: clamp(1.35rem, 1.55vw, 1.7rem); line-height: 1.45; }
.philosophy-page .philosophy-happiness-card p { margin: 22px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 1rem; line-height: 2; }
@media (max-width: 900px) { .philosophy-page .philosophy-happiness__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .philosophy-page .philosophy-happiness__grid { grid-template-columns: 1fr; gap: 12px; } .philosophy-page .philosophy-happiness-card { padding: 24px 22px; } }

/* Philosophy page: three-happiness light treatment and local kicker scale. */
.philosophy-page .company-kicker { font-size: clamp(1rem, 1.1vw, 1.12rem); line-height: 1.55; }
.philosophy-page .company-kicker span { font-size: clamp(0.9rem, 1vw, 1rem); }
.philosophy-page .philosophy-happiness { color: var(--ink); background: #fff; }
.philosophy-page .philosophy-happiness .company-kicker { color: var(--wine); }
.philosophy-page .philosophy-happiness .company-kicker span { color: var(--muted); }
.philosophy-page .philosophy-happiness .philosophy-section__head { margin-bottom: clamp(48px, 4vw, 66px); }
.philosophy-page .philosophy-happiness__grid { gap: clamp(16px, 1.5vw, 24px); }
.philosophy-page .philosophy-happiness-card { border-color: rgba(70, 43, 35, 0.16); background: #f7f4ee; box-shadow: 0 14px 32px rgba(60, 37, 29, 0.07); }
.philosophy-page .philosophy-happiness-card > span { color: #a75b39; }
.philosophy-page .philosophy-happiness-card h3 { color: var(--ink); }
.philosophy-page .philosophy-happiness-card p { color: #655d59; }
@media (max-width: 640px) { .philosophy-page .philosophy-happiness .philosophy-section__head { margin-bottom: 38px; } }

/* Food & hospitality renewal: the content structure follows the wine business template. */
.philosophy-page .philosophy-vision__title { font-size: clamp(2rem, 2.55vw, 3rem); line-height: 1.25; }
.philosophy-page .philosophy-vision__title span { display: block; white-space: nowrap; }

.food-renewal-hero > img { object-position: center 52%; filter: saturate(.86) contrast(1.05) brightness(.76); }
.food-renewal-intro { padding-bottom: clamp(94px, 11vw, 148px); }
.food-renewal-stats { margin-top: clamp(30px, 5vw, 68px); }
.food-renewal-section--sakura { background: #eee7da; }
.food-renewal-section--sakura .wine-renewal-feature__image { min-height: 0; aspect-ratio: 1; }
.food-renewal-section--rikka { background: #211b1b; }
.food-renewal-section--craft { background: #f8f5ef; }
.food-craft-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 64px; }
.food-craft-card { overflow: hidden; background: #fffdf9; border: 1px solid rgba(73,54,42,.12); border-radius: 7px; }
.food-craft-card > img { display: block; width: 100%; aspect-ratio: 1.38; object-fit: cover; }
.food-craft-card > div { padding: 30px clamp(24px, 3.5vw, 42px) 38px; }
.food-craft-card span { display: block; color: #a15b41; font-size: .68rem; font-weight: 700; letter-spacing: .1em; }
.food-craft-card h3 { margin: 14px 0 18px; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.6rem, 2.3vw, 2.3rem); font-weight: 500; line-height: 1.35; }
.food-craft-card p { margin: 0; color: #625b55; font-size: .94rem; line-height: 1.95; }
.food-craft-card p + p { margin-top: 14px; }
.food-renewal-brands { background: #e9e0d2; }
.food-brand-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 58px; }
.food-brand-tile { display: grid; align-content: space-between; min-height: 235px; padding: 28px 24px 22px; background: #fffdf9; border: 1px solid rgba(73,54,42,.12); border-radius: 7px; }
.food-brand-tile img { width: min(100%, 185px); max-height: 68px; object-fit: contain; object-position: left center; }
.food-brand-tile:nth-child(2) img { width: 52px; height: 74px; object-position: left center; }
.food-brand-tile p { margin: 25px 0 0; color: #625b55; font-size: .82rem; line-height: 1.8; }
.food-renewal-cta p:not(.business-kicker) { max-width: 640px; margin: 0 0 34px; color: rgba(255,255,255,.76); font-size: 1rem; line-height: 1.95; }

@media (max-width: 900px) {
  .food-brand-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .philosophy-page .philosophy-vision__title { font-size: clamp(1.52rem, 7.4vw, 1.9rem); line-height: 1.32; }
  .food-renewal-hero > img { object-position: 56% center; }
  .food-renewal-section--sakura .wine-renewal-feature__image { aspect-ratio: 4 / 3; }
  .food-craft-grid, .food-brand-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 42px; }
  .food-craft-card > img { aspect-ratio: 1.32; }
  .food-brand-tile { min-height: 172px; }
}

/* Food & Hospitality: store galleries */
.food-store { padding: clamp(88px, 10vw, 144px) 0; }
.food-store--sakura { background: #eee7da; }
.food-store--rikka { color: #fffaf3; background: #211b1b; }
.food-store--atelier { background: #f8f5ef; }
.food-store--coco { background: #f2e7e2; }
.food-store__layout { display: grid; grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr); align-items: start; gap: clamp(42px, 7vw, 104px); }
.food-store__copy { max-width: 430px; }
.food-store__concept { margin: 14px 0 30px; color: #7a2638; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(1.45rem, 2vw, 2.2rem); font-weight: 400; letter-spacing: .04em; }
.food-store__body { display: grid; gap: 18px; color: #514943; font-size: clamp(.92rem, 1.1vw, 1.02rem); line-height: 1.92; }
.food-store__body p { margin: 0; }
.food-store--rikka .business-kicker, .food-store--rikka .food-store__concept { color: #d8a463; }
.food-store--rikka .food-store__body { color: rgba(255,250,243,.82); }
.food-store__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.food-store__gallery-item { min-width: 0; margin: 0; overflow: hidden; border: 1px solid rgba(73,54,42,.12); border-radius: 5px; background: #e7ddd2; aspect-ratio: 4 / 3; }
.food-store__gallery-item img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.food-store__gallery-item:hover img { transform: scale(1.025); }
.food-store--rikka .food-store__gallery-item { border-color: rgba(255,250,243,.18); background: #3a302f; }
@media (max-width: 1100px) {
  .food-store__layout { grid-template-columns: minmax(225px, .72fr) minmax(0, 1.28fr); gap: clamp(34px, 5vw, 62px); }
  .food-store__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .food-store { padding: 78px 0; }
  .food-store__layout { grid-template-columns: 1fr; gap: 38px; }
  .food-store__copy { max-width: none; }
  .food-store__concept { margin: 10px 0 24px; }
  .food-store__body { gap: 16px; font-size: .96rem; line-height: 1.9; }
}
@media (max-width: 440px) {
  .food-store__gallery { grid-template-columns: 1fr; gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .food-store__gallery-item img { transition: none; }
}

/* Food & Hospitality: store logos, primary interior photography, and image modal */
.food-store__logo-frame { display: inline-flex; align-items: center; width: fit-content; max-width: min(100%, 230px); margin: 16px 0 28px; padding: 10px 14px; border: 1px solid rgba(73,54,42,.14); border-radius: 5px; background: rgba(255,253,249,.94); }
.food-store__logo { display: block; width: auto; max-width: 100%; height: clamp(30px, 3.1vw, 44px); object-fit: contain; }
.food-store__gallery { grid-auto-flow: dense; }
.food-store__gallery-item { position: relative; }
.food-store__gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.food-store__gallery-trigger { display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: transparent; cursor: zoom-in; }
.food-store__gallery-trigger:focus-visible { outline: 3px solid #9d5e46; outline-offset: -3px; }
.food-store__gallery-trigger img { pointer-events: none; }
.food-store--rikka .food-store__logo-frame { border-color: rgba(255,250,243,.24); background: rgba(255,253,249,.96); }
.food-gallery-modal { position: fixed; z-index: 1200; inset: 0; display: grid; place-items: center; padding: clamp(20px, 5vw, 72px); background: rgba(20,16,15,.88); }
.food-gallery-modal[hidden] { display: none; }
.food-gallery-modal__figure { display: grid; gap: 12px; width: min(100%, 1120px); max-height: 100%; margin: 0; }
.food-gallery-modal__figure img { display: block; width: auto; max-width: 100%; max-height: calc(100vh - 150px); margin: 0 auto; border-radius: 5px; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.36); }
.food-gallery-modal__figure figcaption { color: rgba(255,255,255,.82); font-size: .86rem; line-height: 1.5; text-align: center; }
.food-gallery-modal__close { position: fixed; z-index: 1; top: 22px; right: 28px; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); font-size: 2rem; font-weight: 200; line-height: 1; cursor: pointer; }
.food-gallery-modal__close:focus-visible { outline: 3px solid #d8a463; outline-offset: 3px; }
body.has-food-gallery-modal { overflow: hidden; }
@media (max-width: 760px) {
  .food-store__logo-frame { margin: 14px 0 24px; }
  .food-store__gallery-item--feature { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 440px) {
  .food-store__gallery-item--feature { grid-column: auto; grid-row: auto; }
  .food-gallery-modal { padding: 24px 16px; }
  .food-gallery-modal__close { top: 14px; right: 16px; }
}

/* Food, wine and news updates: 2026-08-14 */
.wine-related-pages { margin: 0; padding-top: 18px; background: #f8f5ef; border-top: 2px solid var(--wine); }
.wine-related-pages .company-kicker { margin: 0; padding: 0 0 16px; color: #a15b41; }
.wine-related-pages > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.news-filter span:nth-child(n + 2) { background: #f8f5ef; color: var(--wine); }
.news-row h2 a { color: inherit; text-decoration: none; transition: color .2s ease; }
.news-row h2 a:hover, .news-row h2 a:focus-visible { color: var(--wine); text-decoration: underline; text-underline-offset: .18em; }
.news-row h2 span { display: inline-block; margin-left: .2em; font-size: .62em; vertical-align: .14em; }
@media (max-width: 820px) { .wine-related-pages { padding-top: 14px; } .wine-related-pages > div { grid-template-columns: 1fr; } }
/* News archive and local article pages: 2026-08-14 */
.news-hero .page-title { font-size: 4.7rem; }
.news-filter { align-items: center; gap: 12px; margin-bottom: 38px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.news-filter span,
.news-filter span:nth-child(n + 2),
.news-filter span:first-child { display: block; min-height: 0; padding: 0; border: 0; border-radius: 0; background: transparent; color: var(--muted); font-size: 0.76rem; font-weight: 800; line-height: 1.2; }
.news-filter span:first-child { color: var(--wine); }
.news-filter span + span::before { content: "/"; margin-right: 12px; color: var(--line); }
.news-article-page { background: var(--white); }
.news-article-hero { padding: 172px max(24px, calc((100vw - 1060px) / 2)) 82px; background: #f4efe8; border-bottom: 1px solid var(--line); }
.news-article-hero__inner { max-width: 900px; }
.news-article-hero .eyebrow { margin: 0 0 18px; color: var(--wine); }
.news-article-hero time { display: block; color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: 0.96rem; font-weight: 700; }
.news-article-hero h1 { max-width: 1000px; margin: 18px 0 0; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2.1rem, 4.5vw, 4.25rem); font-weight: 500; line-height: 1.28; }
.news-article { max-width: 900px; margin: 0 auto; padding: 86px 24px 108px; }
.news-article__body { color: var(--ink); font-size: 1.05rem; line-height: 2; }
.news-article__body > :first-child { margin-top: 0; }
.news-article__body p,
.news-article__body ul,
.news-article__body ol { margin: 0 0 1.45em; }
.news-article__body h2,
.news-article__body h3 { margin: 2.5em 0 0.9em; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; line-height: 1.35; }
.news-article__body h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); }
.news-article__body h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.news-article__body img { display: block; width: min(100%, 780px); height: auto; margin: 34px auto; border: 1px solid var(--line); }
.news-article__body figure { margin: 34px 0; }
.news-article__body figcaption { margin-top: -22px; color: var(--muted); font-size: 0.85rem; text-align: center; }
.news-article__body a { color: var(--wine); overflow-wrap: anywhere; text-underline-offset: 0.2em; }
.news-article__back { margin: 68px 0 0; }
.news-article__back a { display: inline-flex; gap: 0.65em; align-items: center; color: var(--wine); font-weight: 800; text-decoration: none; }
.news-article__back a:hover,
.news-article__back a:focus-visible { text-decoration: underline; text-underline-offset: 0.2em; }
@media (max-width: 820px) {
  .news-hero .page-title { font-size: 3.15rem; }
  .news-article-hero { padding: 126px 22px 58px; }
  .news-article { padding: 58px 22px 76px; }
  .news-article__body { font-size: 1rem; line-height: 1.9; }
}
@media (max-width: 560px) {
  .news-hero .page-title { font-size: 2.45rem; }
  .news-filter { gap: 9px; margin-bottom: 26px; }
  .news-filter span,
  .news-filter span:nth-child(n + 2),
  .news-filter span:first-child { font-size: 0.67rem; }
  .news-filter span + span::before { margin-right: 9px; }
  .news-article-hero h1 { font-size: 2rem; }
}
/* Sustainability current-content pages: 2026-08-14 */
.sustainability-hero .page-title { font-size: 4.7rem; line-height: 1.12; }
.sustainability-hero .page-hero-media img { filter: saturate(.82) contrast(1.04) brightness(.72); }
.sustainability-intro { padding-bottom: clamp(52px, 7vw, 100px); }
.sustainability-intro__grid { display: grid; grid-template-columns: minmax(180px, .52fr) minmax(0, 1.48fr); gap: clamp(30px, 7vw, 120px); width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.sustainability-intro__grid .eyebrow { margin: .55em 0 0; }
.sustainability-intro__grid .section-title { max-width: 16em; margin: 0 0 26px; }
.sustainability-intro__grid p:not(.eyebrow) { max-width: 720px; margin: 0; color: var(--muted); line-height: 2; }
.sustainability-projects { padding: 0 24px; background: #f8f5ef; }
.sustainability-project { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(38px, 8vw, 136px); align-items: center; width: min(var(--max), 100%); margin: 0 auto; padding: clamp(64px, 9vw, 132px) 0; border-top: 1px solid var(--line); }
.sustainability-project:first-child { border-top: 0; }
.sustainability-project--reverse .sustainability-project__media { order: 2; }
.sustainability-project--reverse .sustainability-project__content { order: 1; }
.sustainability-project__media { margin: 0; overflow: hidden; border-radius: 8px; aspect-ratio: 4 / 3; background: #e9e3da; }
.sustainability-project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sustainability-project:hover .sustainability-project__media img { transform: scale(1.025); }
.sustainability-project__content { min-width: 0; }
.sustainability-project__content .eyebrow { margin: 0 0 14px; }
.sustainability-project__content h2 { margin: 0 0 24px; color: var(--ink); font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.72rem, 3vw, 2.75rem); font-weight: 500; line-height: 1.34; }
.sustainability-project__content p:not(.eyebrow) { margin: 0 0 1.15em; color: var(--muted); font-size: 1rem; line-height: 2; }
.sustainability-project__content .text-link { display: inline-flex; gap: .65em; margin-top: 12px; color: var(--wine); font-weight: 800; text-decoration: none; }
.sustainability-project__content .text-link:hover, .sustainability-project__content .text-link:focus-visible { text-decoration: underline; text-underline-offset: .2em; }
.sustainability-related { padding-top: clamp(72px, 10vw, 132px); padding-bottom: clamp(72px, 10vw, 132px); background: var(--white); }
.sustainability-related > .eyebrow, .sustainability-related__links { width: min(var(--max), calc(100% - 48px)); margin-left: auto; margin-right: auto; }
.sustainability-related > .eyebrow { margin-top: 0; margin-bottom: 18px; }
.sustainability-related__links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sustainability-related__links a { display: flex; justify-content: space-between; gap: 12px; align-items: center; min-height: 112px; padding: 22px; border-right: 1px solid var(--line); color: var(--ink); font-weight: 800; text-decoration: none; }
.sustainability-related__links a:first-child { border-left: 1px solid var(--line); }
.sustainability-related__links a:hover, .sustainability-related__links a:focus-visible { background: #f6f0ed; color: var(--wine); }
.sustainability-detail-page { background: var(--white); }
.sustainability-detail-hero { position: relative; display: grid; align-items: end; min-height: 62svh; overflow: hidden; color: #fff; }
.sustainability-detail-hero::after { position: absolute; inset: 0; z-index: 1; background: rgba(20, 13, 12, .48); content: ""; }
.sustainability-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); }
.sustainability-detail-hero > div { position: relative; z-index: 2; width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 150px 0 88px; }
.sustainability-detail-hero .eyebrow { margin: 0 0 18px; color: #e3b285; }
.sustainability-detail-hero h1 { max-width: 880px; margin: 0; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2.25rem, 5vw, 4.8rem); font-weight: 500; line-height: 1.22; }
.sustainability-detail-hero h1 + p { max-width: 680px; margin: 26px 0 0; font-size: 1.08rem; line-height: 1.9; }
.sustainability-detail-content { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(76px, 10vw, 132px) 0; }
.sustainability-detail-content__body { max-width: 840px; margin: 0 auto; color: var(--ink); font-size: 1rem; line-height: 2; }
.sustainability-detail-content__body > .eyebrow { margin: 0 0 16px; }
.sustainability-detail-content__body p { margin: 0 0 1.35em; }
.sustainability-detail-content__body h2 { margin: 2.35em 0 .8em; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.45rem, 2.7vw, 2.25rem); font-weight: 500; line-height: 1.45; }
.sustainability-detail-content__body h2:first-of-type { margin-top: 0; }
.sustainability-detail-content__gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 72px; }
.sustainability-detail-content__gallery img { display: block; width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; background: #f4efe8; }
.sustainability-detail-content__back { margin: 68px 0 0; }
.sustainability-detail-content__back a { display: inline-flex; gap: .65em; color: var(--wine); font-weight: 800; text-decoration: none; }
.sustainability-detail-content__back a:hover, .sustainability-detail-content__back a:focus-visible { text-decoration: underline; text-underline-offset: .2em; }
@media (max-width: 1120px) { .sustainability-hero .page-title { font-size: 4rem; } .sustainability-related__links { grid-template-columns: repeat(2, minmax(0, 1fr)); } .sustainability-related__links a:nth-child(3) { border-left: 1px solid var(--line); } }
@media (max-width: 820px) { .sustainability-hero .page-title { font-size: 3.15rem; } .sustainability-intro__grid, .sustainability-project { grid-template-columns: 1fr; } .sustainability-intro__grid { gap: 14px; width: min(var(--max), calc(100% - 40px)); } .sustainability-projects { padding: 0 20px; } .sustainability-project { gap: 32px; } .sustainability-project--reverse .sustainability-project__media, .sustainability-project--reverse .sustainability-project__content { order: initial; } .sustainability-related > .eyebrow, .sustainability-related__links { width: min(var(--max), calc(100% - 40px)); } .sustainability-detail-hero { min-height: 56svh; } .sustainability-detail-hero > div { width: calc(100% - 40px); padding: 132px 0 64px; } .sustainability-detail-content { width: calc(100% - 40px); padding: 66px 0 86px; } .sustainability-detail-content__gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 48px; } }
@media (max-width: 560px) { .sustainability-hero .page-title { font-size: 2.45rem; } .sustainability-project__content h2 { font-size: 1.72rem; } .sustainability-project__content p:not(.eyebrow), .sustainability-detail-content__body { font-size: .98rem; line-height: 1.92; } .sustainability-related__links { grid-template-columns: 1fr; } .sustainability-related__links a, .sustainability-related__links a:nth-child(3) { min-height: 76px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); } .sustainability-related__links a:last-child { border-bottom: 0; } .sustainability-detail-hero h1 { font-size: 2.25rem; } .sustainability-detail-hero h1 br { display: none; } .sustainability-detail-content__gallery { grid-template-columns: 1fr; } }
/* Sustainability hero and project-title refinement: 2026-08-17 */
.sustainability-hero .page-hero-media img { object-position: center 56%; filter: saturate(.88) contrast(1.04) brightness(.6); }
.sustainability-project--upcycle .sustainability-project__media { aspect-ratio: 16 / 9; }
.sustainability-project__content h2.sustainability-project__title { font-size: 2.1rem; line-height: 1.4; }
.sustainability-project__title > span { display: block; white-space: nowrap; }
@media (max-width: 1120px) { .sustainability-project__content h2.sustainability-project__title { font-size: 1.75rem; } }
@media (max-width: 820px) {
  .sustainability-project--upcycle .sustainability-project__media { aspect-ratio: 16 / 8; }
}
@media (max-width: 560px) {
  .sustainability-project__content h2.sustainability-project__title { font-size: 1.12rem; line-height: 1.45; }
  .sustainability-project__title > span { white-space: nowrap; }
}
/* Sustainability CTA mirrors the business-page contact panel without inheriting page-scoped variables. */
.sustainability-contact { --business-ink: #171717; --business-soft-ink: #4a4440; --business-muted: #756d66; --business-paper: #f7f4ee; --business-white: #ffffff; --business-wine: #7a2638; --business-gold: #b8874e; --business-line: rgba(23, 23, 23, 0.12); --business-shadow: 0 24px 80px rgba(32, 24, 19, 0.14); background: var(--business-paper); color: var(--business-ink); }
.sustainability-contact .business-contact__inner { max-width: 1180px; margin: 0 auto; }
.sustainability-contact .business-section__title { max-width: 1000px; }
.sustainability-contact .business-kicker { margin: 0 0 12px; color: var(--business-wine); font-family: Georgia, "Times New Roman", serif; font-size: .82rem; font-weight: 700; }
@media (max-width: 560px) { .sustainability-contact { padding-left: 20px; padding-right: 20px; } }

/* Supporting Future Artists: publication-style editorial layout */
.sfa-page { background: #fbf9f5; }
.sfa-hero { min-height: 86svh; padding: 144px max(24px, calc((100vw - 1180px) / 2)) 84px; }
.sfa-hero::after { background: linear-gradient(90deg, rgba(19, 15, 12, .74), rgba(19, 15, 12, .32)); }
.sfa-hero > div { width: min(820px, 100%); margin: 0; padding: 0; }
.sfa-hero h1 { max-width: 820px; }
.sfa-story { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(78px, 11vw, 144px) 0; color: var(--ink); }
.sfa-intro { max-width: 800px; margin: 0 auto clamp(84px, 12vw, 136px); text-align: center; }
.sfa-intro h2, .sfa-section h2, .sfa-support h2 { margin: 0; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2rem, 4vw, 3.55rem); font-weight: 500; letter-spacing: 0; line-height: 1.36; }
.sfa-intro > p:last-child { margin: 20px 0 0; font-size: 1.04rem; }
.sfa-section { padding: clamp(72px, 10vw, 124px) 0; border-top: 1px solid rgba(102, 66, 53, .16); }
.sfa-copy { max-width: 760px; }
.sfa-copy--wide { max-width: 900px; margin: 56px auto 0; }
.sfa-section h2 { margin-bottom: 28px; }
.sfa-section h3 { margin: 0 0 20px; color: #7a2638; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 500; line-height: 1.45; }
.sfa-section p, .sfa-support p { margin: 0 0 1.25em; font-size: 1rem; line-height: 2; }
.sfa-video { position: relative; margin: 56px 0 30px; overflow: hidden; border-radius: 4px; background: #1d1715; }
.sfa-video img { display: block; width: 100%; min-height: 170px; object-fit: cover; opacity: .78; }
.sfa-video span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-weight: 700; letter-spacing: .06em; text-shadow: 0 1px 14px rgba(0,0,0,.45); }
.sfa-gallery { display: grid; gap: 16px; margin-top: 32px; }
.sfa-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 4px; background: #eee7de; }
.sfa-gallery--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sfa-gallery--three img { aspect-ratio: 4 / 3; }
.sfa-gallery--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sfa-gallery--two img { aspect-ratio: 16 / 9; }
.sfa-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 7vw, 100px); margin-top: 42px; }
.sfa-quotes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 32px; }
.sfa-quotes blockquote { margin: 0; padding: 28px; border-left: 2px solid #a76b4c; background: #f2ece5; font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif; line-height: 1.8; }
.sfa-members { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.sfa-members article { display: grid; gap: 20px; }
.sfa-members img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.sfa-members h3, .sfa-voices h3 { margin-bottom: 10px; }
.sfa-members p, .sfa-voices p { font-size: .93rem; line-height: 1.85; }
.sfa-collaboration { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); align-items: center; gap: clamp(36px, 8vw, 112px); }
.sfa-collaboration > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.sfa-future { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 42px 0 0; padding: 0; list-style: none; background: rgba(102,66,53,.16); }
.sfa-future li { display: grid; gap: 12px; padding: 26px; background: #fbf9f5; font-weight: 600; line-height: 1.7; }
.sfa-future b { color: #7a2638; font-family: Georgia, serif; font-size: 1.35rem; }
.sfa-voices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px; margin-top: 42px; }
.sfa-voices article { display: grid; grid-template-columns: 160px minmax(0, 1fr); gap: 20px; align-items: start; }
.sfa-voices img { width: 160px; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.sfa-support { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 24px 56px; padding: clamp(52px, 8vw, 88px); color: #fff; background: #3b1019; }
.sfa-support h2 { margin-bottom: 20px; }
.sfa-support ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.sfa-support li { display: grid; grid-template-columns: 7em 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.3); }
.sfa-support li span { line-height: 1.6; }
.sfa-support > a { grid-column: 1 / -1; display: block; }
.sfa-support > a img { display: block; width: 100%; max-width: 768px; margin: 12px auto 0; }
.sfa-back { margin: 68px 0 0; }
.sfa-back a { color: #7a2638; font-weight: 700; }
@media (max-width: 820px) { .sfa-hero { min-height: 82svh; padding: 112px 22px 58px; } .sfa-hero > div { width: 100%; } .sfa-story { width: calc(100% - 40px); padding: 66px 0 86px; } .sfa-members { grid-template-columns: 1fr; } .sfa-members article { grid-template-columns: 150px minmax(0, 1fr); align-items: center; } .sfa-collaboration, .sfa-support { grid-template-columns: 1fr; } .sfa-future { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .sfa-hero h1 { font-size: 2.28rem; } .sfa-hero h1 br { display: none; } .sfa-gallery--three, .sfa-gallery--two, .sfa-columns, .sfa-quotes, .sfa-voices { grid-template-columns: 1fr; } .sfa-gallery--two img { aspect-ratio: 4 / 3; } .sfa-voices article { grid-template-columns: 104px minmax(0, 1fr); gap: 16px; } .sfa-voices img { width: 104px; } .sfa-members article { grid-template-columns: 1fr; } .sfa-members img { max-width: 190px; } .sfa-support { padding: 40px 24px; } .sfa-support li { grid-template-columns: 1fr; gap: 4px; } }
/* Supporting Future Artists: compact page revisions */
.sfa-hero {
  min-height: clamp(430px, 62svh, 640px);
  padding: 118px max(24px, calc((100vw - 1180px) / 2)) 64px;
}

.sfa-hero h1 {
  max-width: 920px;
  font-size: clamp(1.35rem, 3.2vw, 3rem);
  line-height: 1.28;
}

.sfa-hero h1 span,
.sfa-intro h2 span {
  display: block;
  white-space: nowrap;
}

.sfa-story {
  padding: clamp(72px, 10vw, 128px) 0;
}

.sfa-intro {
  max-width: 980px;
  margin: 0 auto clamp(70px, 10vw, 112px);
}

.sfa-intro h2 {
  font-size: clamp(1rem, 4.1vw, 2.45rem);
  line-height: 1.35;
}

.sfa-background-copy {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (max-width: 820px) {
  .sfa-hero {
    min-height: 58svh;
    padding: 102px 24px 50px;
  }
}

@media (max-width: 560px) {
  .sfa-hero {
    min-height: 480px;
    padding: 92px 22px 44px;
  }

  .sfa-hero h1 {
    font-size: clamp(1.05rem, 4.1vw, 1.22rem);
  }

  .sfa-intro h2 {
    font-size: clamp(.86rem, 3.5vw, 1.04rem);
  }

  .sfa-story {
    width: calc(100% - 40px);
  }
}
/* Makers directory: public-site migration, 2026-08 */
.makers-page { background: #f6f3ee; }
.makers-hero { position: relative; min-height: 420px; display: grid; align-items: end; color: #fff; background: linear-gradient(90deg, rgba(20, 13, 10, .78), rgba(20, 13, 10, .22)), url("../images/makers/link01/01-ph_f_Gallois.jpg") center/cover; }
.makers-hero-inner { padding-top: 130px; padding-bottom: 72px; }
.makers-hero .section-kicker { color: #d08a5d; }
.makers-hero h1 { margin: 14px 0 20px; font-family: "Noto Serif JP", serif; font-size: clamp(38px, 4.25vw, 64px); font-weight: 500; line-height: 1.25; }
.makers-hero p:last-child { margin: 0; max-width: 680px; font-size: 15px; line-height: 2; }
.makers-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 80px; padding-top: 110px; padding-bottom: 70px; border-bottom: 1px solid #dfd7cc; }
.makers-intro h2 { margin: 12px 0 0; font-size: clamp(34px, 3.3vw, 52px); font-weight: 500; line-height: 1.26; }
.makers-intro > p { align-self: end; margin: 0; color: #59514a; font-size: 15px; line-height: 2.1; }
.makers-catalog { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0; padding-top: 34px; padding-bottom: 90px; }
.makers-catalog a { min-height: 82px; display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 12px 14px; color: #211b18; border-right: 1px solid #e0d8ce; border-bottom: 1px solid #e0d8ce; font-size: 13px; text-decoration: none; transition: background .2s ease, color .2s ease; }
.makers-catalog a:nth-child(6n) { border-right: 0; }
.makers-catalog a:hover { color: #fff; background: #7a2638; }
.makers-catalog span { color: #9a6b4e; font-family: "Roboto Condensed", sans-serif; font-size: 11px; font-weight: 700; }
.makers-catalog a:hover span { color: #e7cdb8; }
.makers-directory { padding-bottom: 128px; }
.makers-country { padding: 76px 0; border-top: 1px solid #d9d1c7; scroll-margin-top: 90px; }
.makers-country:first-child { border-top: 0; padding-top: 0; }
.makers-country-heading { display: grid; grid-template-columns: 52px 1fr auto; align-items: baseline; gap: 10px; margin-bottom: 34px; }
.makers-country-heading > span { color: #8a2c3f; font-family: "Roboto Condensed", sans-serif; font-size: 14px; font-weight: 700; }
.makers-country-heading p { margin: 0; color: #8a2c3f; font-family: "Playfair Display", serif; font-size: 15px; letter-spacing: .08em; }
.makers-country-heading h2 { grid-column: 2; margin: -2px 0 0; font-family: "Noto Serif JP", serif; font-size: clamp(32px, 3vw, 46px); font-weight: 500; }
.makers-country-heading small { grid-column: 3; grid-row: 1 / span 2; color: #81776d; font-family: "Roboto Condensed", sans-serif; font-size: 11px; text-transform: uppercase; }
.makers-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.maker-card { overflow: hidden; display: flex; flex-direction: column; min-width: 0; background: #fffdfa; border: 1px solid #e1d9d0; border-radius: 4px; }
.maker-card > img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.maker-card-body { display: flex; flex: 1; flex-direction: column; padding: 22px 22px 20px; }
.maker-card-number { margin: 0 0 10px; color: #a56b4a; font-family: "Roboto Condensed", sans-serif; font-size: 11px; font-weight: 700; }
.maker-card h3 { min-height: 2.9em; margin: 0 0 13px; font-family: "Noto Serif JP", serif; font-size: 21px; font-weight: 600; line-height: 1.45; }
.maker-card-body > p:not(.maker-card-number) { margin: 0; color: #5f5650; font-size: 13px; line-height: 1.9; }
.maker-card-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; padding-top: 20px; }
.maker-card-links a { color: #7a2638; font-size: 12px; font-weight: 700; text-decoration: none; }
.maker-card-links a span { margin-left: 4px; }
.makers-cta { padding: 96px 0; color: #fff; text-align: center; background: #60172a; }
.makers-cta .section-kicker { color: #d6a37d; }
.makers-cta h2 { margin: 14px 0 28px; font-family: "Noto Serif JP", serif; font-size: clamp(30px, 3.3vw, 48px); font-weight: 500; line-height: 1.4; }
@media (max-width: 900px) { .makers-catalog { grid-template-columns: repeat(4, minmax(0, 1fr)); } .makers-catalog a:nth-child(6n) { border-right: 1px solid #e0d8ce; } .makers-catalog a:nth-child(4n) { border-right: 0; } .makers-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .makers-hero { min-height: 350px; } .makers-hero-inner { padding-top: 105px; padding-bottom: 44px; } .makers-hero h1 { font-size: 34px; } .makers-hero p:last-child { font-size: 13px; } .makers-intro { grid-template-columns: 1fr; gap: 22px; padding-top: 70px; padding-bottom: 38px; } .makers-intro h2 { font-size: 33px; } .makers-intro > p { font-size: 13px; } .makers-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); padding-top: 20px; padding-bottom: 56px; } .makers-catalog a:nth-child(n) { border-right: 1px solid #e0d8ce; } .makers-catalog a:nth-child(2n) { border-right: 0; } .makers-directory { padding-bottom: 72px; } .makers-country { padding: 54px 0; } .makers-country-heading { grid-template-columns: 32px 1fr; margin-bottom: 24px; } .makers-country-heading h2 { grid-column: 2; font-size: 32px; } .makers-country-heading small { display: none; } .makers-card-grid { grid-template-columns: 1fr; gap: 16px; } .maker-card h3 { min-height: 0; font-size: 19px; } .makers-cta { padding: 72px 0; } }

/* Shared news data UI and media achievement marquee. */
.news-fallback { display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin:0; padding:28px; border:1px solid var(--line); background:var(--white); color:var(--muted); }
.news-fallback a { color:var(--wine); font-weight:800; }
.news-media { padding-top:clamp(64px,8vw,112px); padding-bottom:clamp(64px,8vw,112px); border-bottom:1px solid var(--line); background:var(--paper-soft); }
.news-media__layout { display:grid; grid-template-columns:minmax(190px,.34fr) minmax(0,1fr); gap:clamp(34px,6vw,86px); align-items:center; width:min(var(--max),calc(100% - 48px)); margin:0 auto; }
.news-media__heading .eyebrow { margin:0 0 10px; }
.news-media__heading h2, .news-page__heading h2 { margin:0; font-family:Georgia,"Times New Roman","Yu Mincho",serif; font-size:clamp(2rem,3.1vw,3.25rem); font-weight:500; line-height:1.25; }
.news-page__heading { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:34px; }
.news-page__heading .eyebrow { margin:0 0 8px; }
.media-marquee { overflow:hidden; width:100%; padding:12px 0; }
.media-marquee__track { display:flex; width:max-content; animation:mediaMarquee 38s linear infinite; will-change:transform; }
.media-marquee:hover .media-marquee__track, .media-marquee:focus-within .media-marquee__track { animation-play-state:paused; }
.media-marquee__group { display:flex; flex:none; gap:14px; padding-right:14px; }
.media-logo-tile { display:grid; flex:0 0 180px; width:180px; height:84px; place-items:center; padding:13px; border:1px solid rgba(24,21,20,.1); border-radius:2px; background:#fffefa; opacity:.76; transition:opacity .25s ease, border-color .25s ease; }
.media-logo-tile:hover { border-color:rgba(122,38,56,.28); opacity:1; }
.media-logo-tile img { display:block; width:auto; height:auto; max-width:150px; max-height:56px; object-fit:contain; }
@keyframes mediaMarquee { to { transform:translateX(-50%); } }
@media (max-width: 767px) { .news-media__layout { grid-template-columns:1fr; width:calc(100% - 40px); gap:20px; }.news-page__heading { margin-bottom:26px; }.media-logo-tile { flex-basis:150px; width:150px; height:74px; }.media-logo-tile img { max-width:126px; max-height:48px; } }
@media (prefers-reduced-motion: reduce) { .media-marquee { overflow:visible; }.media-marquee__track { display:flex; width:100%; flex-wrap:wrap; animation:none; transform:none; }.media-marquee__group { flex-wrap:wrap; padding:0; }.media-marquee__group[aria-hidden="true"] { display:none; } }
/* News recovery, Contact flow, and internal privacy policy: 2026-08-24 */
.news-media__layout,
.news-page {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.news-page {
  padding-inline: 0;
  padding-bottom: clamp(76px, 10vw, 132px);
}
.news-page__heading {
  display: block;
}
.news-page__heading h2 {
  margin-top: 0;
}
.contact-page,
.privacy-page { background: var(--paper); }
.contact-hero,
.privacy-hero {
  min-height: clamp(360px, 48vh, 520px);
  display: grid;
  align-items: end;
  padding-top: clamp(124px, 13vw, 180px);
  padding-bottom: clamp(54px, 7vw, 88px);
  background: linear-gradient(120deg, rgba(122,38,56,.08), transparent 52%), var(--paper-soft);
}
.contact-hero-copy,
.privacy-container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.contact-hero .page-title,
.privacy-hero .page-title { font-size: clamp(48px, 7.2vw, 92px); line-height: 1.1; }
.contact-hero .lead,
.privacy-hero .lead { margin-top: 18px; max-width: 780px; }
.contact-section { padding-top: clamp(64px, 9vw, 110px); }
.contact-form-intro,
.contact-panel,
.contact-steps { width: min(880px, calc(100% - 48px)); margin-inline: auto; }
.contact-form-intro { margin-bottom: 34px; }
.contact-form-intro .section-title { font-size: clamp(34px, 4.2vw, 54px); }
.contact-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 28px; padding: 0; list-style: none; border-block: 1px solid var(--line); }
.contact-steps li { padding: 15px 12px; color: var(--muted); font-weight: 700; text-align: center; }
.contact-steps li + li { border-left: 1px solid var(--line); }
.contact-steps span { display: block; margin-bottom: 5px; color: var(--copper); font: 700 12px/1 Georgia, "Times New Roman", serif; letter-spacing: .08em; }
.contact-steps .is-current { color: var(--wine); background: rgba(122,38,56,.055); }
.contact-panel { padding: clamp(26px, 4vw, 48px); border: 1px solid rgba(24,21,20,.12); border-radius: 8px; background: rgba(255,255,255,.8); box-shadow: 0 20px 56px rgba(34,27,20,.08); }
.contact-form { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.contact-confirmation .section-title,
.contact-complete .section-title { font-size: clamp(32px, 4vw, 50px); }
.contact-summary { display: grid; margin: 38px 0; border-top: 1px solid var(--line); }
.contact-summary div { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-summary dt { color: var(--muted); font-weight: 800; }
.contact-summary dd { margin: 0; white-space: pre-wrap; line-height: 1.8; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.contact-secondary { min-height: 56px; padding: 13px 26px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; }
.contact-secondary:hover { border-color: var(--wine); color: var(--wine); }
.privacy-content { padding-top: clamp(70px, 10vw, 128px); padding-bottom: clamp(80px, 11vw, 144px); }
.privacy-content section + section { margin-top: clamp(62px, 8vw, 96px); padding-top: clamp(62px, 8vw, 96px); border-top: 1px solid var(--line); }
.privacy-content h2 { margin: 0 0 28px; font: 500 clamp(31px, 4vw, 52px)/1.22 Georgia, "Times New Roman", "Yu Mincho", serif; }
.privacy-content h3 { margin: 42px 0 15px; font: 600 clamp(21px, 2.2vw, 29px)/1.45 Georgia, "Times New Roman", "Yu Mincho", serif; }
.privacy-content h4 { margin: 28px 0 10px; font-size: 17px; line-height: 1.65; }
.privacy-content p,
.privacy-content li { color: var(--muted); font-size: 16px; line-height: 2; }
.privacy-content p { margin: 0; }
.privacy-content p + p { margin-top: 18px; }
.privacy-content ol { margin: 20px 0 0; padding-left: 1.5em; }
.privacy-content li + li { margin-top: 14px; }
.privacy-content ol ol { margin-top: 14px; }
.privacy-content a { color: var(--wine); text-decoration: underline; text-underline-offset: .2em; }
.privacy-callout { margin-top: 28px; padding: 26px 28px; border-left: 3px solid var(--wine); background: var(--paper-soft); }
.privacy-callout h3 { margin-top: 0; }
.privacy-table-wrap { overflow-x: auto; margin-top: 24px; border: 1px solid var(--line); }
.privacy-table-wrap table { width: 100%; min-width: 680px; border-collapse: collapse; }
.privacy-table-wrap th,
.privacy-table-wrap td { padding: 16px 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); text-align: left; vertical-align: top; font-size: 14px; line-height: 1.8; }
.privacy-table-wrap th { color: var(--ink); background: var(--paper-soft); }
.privacy-table-wrap tr:last-child td { border-bottom: 0; }
@media (max-width: 767px) {
  .news-media__layout,
  .news-page,
  .contact-hero-copy,
  .privacy-container,
  .contact-form-intro,
  .contact-panel,
  .contact-steps { width: calc(100% - 40px); }
  .news-page { padding-inline: 0; }
  .contact-hero,
  .privacy-hero { min-height: 330px; }
  .contact-hero .page-title,
  .privacy-hero .page-title { font-size: clamp(42px, 13vw, 64px); }
  .contact-panel { padding: 24px 18px; }
  .contact-steps li { padding: 13px 6px; font-size: 13px; }
  .contact-steps span { font-size: 10px; }
  .form-grid,
  .choice-grid { grid-template-columns: 1fr; }
  .contact-summary div { grid-template-columns: 1fr; gap: 4px; padding: 15px 0; }
  .contact-actions > * { width: 100%; }
  .contact-actions .contact-submit,
  .contact-actions .contact-secondary { justify-content: center; }
  .privacy-content p,
  .privacy-content li { font-size: 15px; }
}

/* Quality Journey logistics detail */
.wine-renewal-page .wine-renewal-quality__details { display:block; width:100%; margin-top:clamp(48px,5vw,64px); }
.wine-renewal-page .wine-renewal-quality__details section { width:100%; max-width:none; }
.wine-renewal-page .wine-renewal-quality__details section + section { margin-top:clamp(48px,5vw,64px); padding-top:clamp(32px,3.5vw,42px); border-top:1px solid rgba(239,221,187,.2); }
.wine-renewal-page .wine-renewal-quality__details h3 { margin:0 0 18px; color:#f5efe5; font-family:Georgia,"Yu Mincho","Hiragino Mincho ProN",serif; font-size:clamp(1.5rem,2vw,1.75rem); font-weight:500; line-height:1.45; }
.wine-renewal-page .wine-renewal-quality__details p { margin:0; color:rgba(255,255,255,.72); font-size:1rem; line-height:1.95; }
.wine-renewal-page .wine-renewal-quality__details p + p { margin-top:1.25em; }
@media (max-width:760px) { .wine-renewal-page .wine-renewal-quality__details { margin-top:48px; } .wine-renewal-page .wine-renewal-quality__details section + section { margin-top:48px; padding-top:32px; } .wine-renewal-page .wine-renewal-quality__details h3 { font-size:1.5rem; } .wine-renewal-page .wine-renewal-quality__details p { font-size:.94rem; } }

.contact-local-notice { margin: 28px 0; padding: 16px 18px; border-left: 3px solid var(--copper); background: var(--paper-soft); color: var(--ink); }
.contact-local-notice strong { color: var(--wine); font: 700 12px/1 Georgia, "Times New Roman", serif; letter-spacing: .1em; }
.contact-local-notice p { margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
