:root {
  --ink: #21180e;
  --ink-soft: rgba(33, 24, 14, 0.74);
  --paper: #fff8eb;
  --paper-deep: #f0e2c6;
  --dark: #090705;
  --dark-2: #151008;
  --dark-3: #221b12;
  --gold: #d8aa32;
  --gold-soft: #f0d57f;
  --green: #06c755;
  --white: #fffdf5;
  --line-light: rgba(255, 253, 245, 0.16);
  --line-dark: rgba(33, 24, 14, 0.14);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", Georgia, "Times New Roman", serif;
  --sans: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --latin: "New York", "Iowan Old Style", "Apple Garamond", Baskerville, "Times New Roman", Georgia, serif;
  --content: 1120px;
  --narrow: 720px;
  --pad: clamp(24px, 5vw, 72px);
  --section-y: clamp(82px, 8.6vw, 136px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--dark);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--dark);
  font-family: var(--sans);
  font-feature-settings: "palt";
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

video {
  display: block;
  max-width: 100%;
}

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

button,
summary {
  font: inherit;
}

mark {
  color: inherit;
  background: none;
  font-weight: 600;
}

.no-break {
  white-space: nowrap;
}

@keyframes heroIntroUp {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroImageEase {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

@keyframes kojiCalloutGlow {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: none;
  }

  46% {
    filter: brightness(1.18);
    box-shadow: 0 0 0 1px rgba(240, 213, 127, 0.22), 0 0 26px rgba(216, 170, 50, 0.18);
  }
}

@keyframes kojiRouteStepGlow {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: none;
    transform: translateX(0);
    box-shadow: none;
  }

  42% {
    filter: brightness(1.18);
    text-shadow: 0 0 18px rgba(240, 213, 127, 0.22);
    transform: translateX(4px);
    box-shadow: 0 0 0 1px rgba(240, 213, 127, 0.22), 0 0 22px rgba(216, 170, 50, 0.18);
  }
}

@keyframes kojiRouteBadgeGlow {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
    box-shadow: none;
  }

  42% {
    filter: brightness(1.22);
    transform: scale(1.08);
    box-shadow: 0 0 0 1px rgba(240, 213, 127, 0.35), 0 0 22px rgba(240, 213, 127, 0.26);
  }
}

@keyframes statementLineGlow {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: none;
  }

  48% {
    filter: brightness(1.12);
    text-shadow: 0 0 24px rgba(240, 213, 127, 0.18);
  }
}

@keyframes heroProjectPhraseIn {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes statementAccentPulse {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: none;
  }

  42% {
    filter: brightness(1.16);
    text-shadow: 0 0 24px rgba(240, 213, 127, 0.2), 0 0 2px rgba(255, 253, 245, 0.18);
  }
}

@keyframes projectMovieZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes projectMoviePlayPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(240, 213, 127, 0.18);
  }

  52% {
    transform: scale(1.055);
    box-shadow: 0 0 0 14px rgba(240, 213, 127, 0.03), 0 0 28px rgba(240, 213, 127, 0.22);
  }
}

@keyframes ctaButtonBreath {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: 0 13px 24px rgba(6, 199, 85, 0.24), 0 0 0 0 rgba(6, 199, 85, 0.2);
  }

  48% {
    filter: brightness(1.04);
    box-shadow: 0 18px 34px rgba(6, 199, 85, 0.34), 0 0 0 10px rgba(6, 199, 85, 0);
  }
}

@keyframes ctaButtonInvite {
  0%,
  68%,
  100% {
    transform: translateY(0) scale(1);
  }

  74% {
    transform: translateY(-1px) scale(1.014);
  }

  82% {
    transform: translateY(0) scale(0.998);
  }
}

@keyframes ctaArrowNudge {
  0%,
  58%,
  100% {
    transform: translateX(0) rotate(45deg);
  }

  68% {
    transform: translateX(5px) rotate(45deg);
  }

  78% {
    transform: translateX(1px) rotate(45deg);
  }
}

@keyframes stickyButtonPrompt {
  0%,
  68%,
  100% {
    transform: translateY(0) scale(1);
  }

  76% {
    transform: translateY(-2px) scale(1.018);
  }

  86% {
    transform: translateY(0) scale(0.996);
  }
}

@keyframes stickyProductFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes stickyArrowPrompt {
  0%,
  62%,
  100% {
    transform: translateY(-50%) translateX(0) rotate(45deg);
  }

  74% {
    transform: translateY(-50%) translateX(4px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-video {
    transform: scale(1.045);
    animation: heroImageEase 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: center;
  }

  .hero-coedo-lockup,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-project-band {
    opacity: 0;
    animation: heroIntroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-coedo-lockup {
    animation-delay: 0.08s;
  }

  .hero-copy h1 {
    animation-delay: 0.18s;
  }

  .hero-copy .lead {
    animation-delay: 0.32s;
  }

  .hero-project-band {
    animation-delay: 0.48s;
  }

  .hero-project-copy span {
    opacity: 0;
    animation: heroProjectPhraseIn 0.86s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-project-copy span:nth-child(1) {
    animation-delay: 0.74s;
  }

  .hero-project-copy span:nth-child(2) {
    animation-delay: 0.9s;
  }

  .has-scroll-reveal .js-reveal {
    opacity: 0;
    transition:
      opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
      clip-path 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, clip-path;
  }

  .has-scroll-reveal .js-reveal.is-soft {
    transform: translate3d(0, 24px, 0);
  }

  .has-scroll-reveal .js-reveal.is-card {
    transform: translate3d(0, 18px, 0);
  }

  .has-scroll-reveal .js-reveal.is-message-line {
    transform: translate3d(0, 12px, 0);
  }

  .has-scroll-reveal .js-reveal.is-statement-line {
    transform: translate3d(0, 14px, 0);
  }

  .has-scroll-reveal .legacy-quote .legacy-line.js-reveal {
    transition-delay: 0ms;
  }

  .has-scroll-reveal .legacy-quote .legacy-line.js-reveal:nth-child(2) {
    transition-delay: 280ms;
  }

  .has-scroll-reveal .message-section .quote-stack blockquote.js-reveal {
    transition-delay: 0ms;
  }

  .has-scroll-reveal .message-section .quote-stack blockquote.js-reveal:nth-child(2) {
    transition-delay: 220ms;
  }

  .has-scroll-reveal .message-section .quote-stack blockquote.js-reveal:nth-child(3) {
    transition-delay: 440ms;
  }

  .has-scroll-reveal .js-reveal.is-image {
    clip-path: inset(7% 0 7% 0);
    transform: translate3d(0, 32px, 0) scale(1.018);
  }

  .has-scroll-reveal .js-reveal.is-inview {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0) scale(1);
  }

  .has-scroll-reveal .js-reveal.is-statement-line.is-inview {
    animation: statementLineGlow 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.18s 1;
  }

  .has-scroll-reveal .bioc-quote.js-reveal.is-inview span,
  .has-scroll-reveal .voice-note p.js-reveal.is-inview,
  .has-scroll-reveal .taste-impression-line.js-reveal.is-inview {
    animation: statementAccentPulse 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.18s 1;
  }

  .has-scroll-reveal .js-reveal.is-inview:is(.chapter-door, .full-bleed-photo, .wide-photo, .taste-side-visual) img,
  .has-scroll-reveal .js-reveal.is-inview:is(.chapter-door, .full-bleed-photo, .wide-photo, .taste-side-visual) video {
    transition: transform 1.25s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scale(1);
  }

  .has-scroll-reveal .js-reveal:is(.chapter-door, .full-bleed-photo, .wide-photo, .taste-side-visual) img,
  .has-scroll-reveal .js-reveal:is(.chapter-door, .full-bleed-photo, .wide-photo, .taste-side-visual) video {
    transform: scale(1.045);
  }

  .koji-simple-route.is-koji.is-inview .koji-process-callout {
    animation: kojiCalloutGlow 0.86s cubic-bezier(0.22, 1, 0.36, 1) 0.18s 1;
  }

  .koji-simple-route.is-koji.is-inview li {
    animation: kojiRouteStepGlow 0.88s cubic-bezier(0.22, 1, 0.36, 1) 1;
  }

  .koji-simple-route.is-koji.is-inview li::before {
    animation: kojiRouteBadgeGlow 0.88s cubic-bezier(0.22, 1, 0.36, 1) 1;
  }

  .koji-simple-route.is-koji.is-inview li:nth-child(1),
  .koji-simple-route.is-koji.is-inview li:nth-child(1)::before {
    animation-delay: 0.52s;
  }

  .koji-simple-route.is-koji.is-inview li:nth-child(2),
  .koji-simple-route.is-koji.is-inview li:nth-child(2)::before {
    animation-delay: 0.8s;
  }

  .koji-simple-route.is-koji.is-inview li:nth-child(3),
  .koji-simple-route.is-koji.is-inview li:nth-child(3)::before {
    animation-delay: 1.08s;
  }

  .koji-simple-route.is-koji.is-inview li:nth-child(4),
  .koji-simple-route.is-koji.is-inview li:nth-child(4)::before {
    animation-delay: 1.36s;
  }

  .koji-simple-route.is-koji.is-inview li:nth-child(5),
  .koji-simple-route.is-koji.is-inview li:nth-child(5)::before {
    animation-delay: 1.64s;
  }

  .cta-button,
  .sticky-actions a {
    animation:
      ctaButtonBreath 2.8s ease-in-out infinite,
      ctaButtonInvite 4.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .cta-button::after,
  .sticky-actions a::after {
    animation: ctaArrowNudge 2.35s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }
}

[hidden] {
  display: none;
}

.page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--dark);
}

.story-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  min-height: 62px;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  padding: 0 clamp(24px, 5vw, 72px);
  color: var(--white);
  background: rgba(7, 5, 3, 0.88);
  border-bottom: 1px solid rgba(255, 253, 245, 0.12);
  backdrop-filter: blur(14px);
}

.header-notice {
  display: none;
}

.header-main {
  display: contents;
}

.brand-mark {
  display: inline-flex;
  grid-column: 1;
  align-items: center;
  justify-self: start;
}

.brand-mark img {
  width: clamp(104px, 9vw, 132px);
  height: auto;
  filter: brightness(0) invert(1);
}

.header-line-button {
  display: inline-grid;
  grid-column: 3;
  justify-self: end;
  min-height: 38px;
  padding: 0 16px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.header-nav {
  display: flex;
  grid-column: 2;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 34px);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.header-nav a {
  color: rgba(255, 253, 245, 0.82);
}

main {
  background: var(--dark);
}

.story-section {
  position: relative;
  overflow: clip;
  padding: var(--section-y) var(--pad);
  color: var(--white);
  background: var(--dark);
  scroll-margin-top: 84px;
}

.story-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.story-section > * {
  position: relative;
  z-index: 1;
}

.story-section + .story-section {
  border-top: 1px solid rgba(255, 253, 245, 0.06);
}

.story-section:has(> .chapter-door:first-child) {
  padding-top: 0;
}

.story-section:has(> .chapter-door:first-child) > .section-kicker,
.story-section:has(> .chapter-door:first-child) > h2:not(#faq-title) {
  display: none;
}

.section-kicker,
.chapter-door figcaption span,
.executor-role,
.question-cards span,
.award-list span,
.beer-beautiful span,
.pairing-cue,
.pairing-reasons span,
.future-lines span,
.limited-lines span,
.makuake-flow span,
.return-lines span,
.taste-table > div > span:not(.visual-icon),
.launch-note,
.cta-launch {
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker {
  display: none;
  max-width: var(--content);
  margin: 0 auto 18px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: clamp(22px, 3vw, 36px);
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.18;
}

h2 {
  max-width: 980px;
  margin: 0 auto clamp(24px, 3.4vw, 42px);
  font-size: clamp(32px, 3.65vw, 54px);
  line-height: 1.36;
}

h3 {
  font-size: clamp(19px, 1.65vw, 28px);
  line-height: 1.5;
}

p {
  color: rgba(255, 253, 245, 0.76);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 400;
  line-height: 2.1;
}

.section-lead {
  max-width: var(--narrow);
  margin: 0 auto clamp(34px, 4.5vw, 64px);
  color: rgba(255, 253, 245, 0.8);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 400;
  line-height: 2.12;
}

.story-section > p,
.story-section > .keyword-chips,
.story-section > .question-cards,
.story-section > .award-list,
.story-section > .partner-roles-intro,
.story-section > .partner-roles,
.story-section > .beer-beautiful,
.story-section > .barley-regeneration,
.story-section > .person-quote-heading,
.story-section > .why-editorial,
.story-section > .wide-photo,
.story-section > .full-bleed-photo,
.story-section > .koji-simple-compare,
.story-section > .section-summary,
.story-section > .clean-editorial,
.story-section > .taste-table,
.story-section > .taste-impression-line,
.story-section > .pairing-photo-row,
.story-section > .pairing-editorial,
.story-section > .pairing-more,
.story-section > .future-editorial,
.story-section > .limited-lines,
.story-section > .fine-note,
.story-section > .makuake-editorial,
.story-section > .makuake-flow,
.story-section > .faq-featured,
.story-section > .accordion-list,
.story-section > .responsibility-note {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
}

.story-section > p {
  max-width: var(--narrow);
}

.story-section > p + p,
.story-section > .section-lead + p {
  margin-top: clamp(18px, 2vw, 26px);
}

.sp-only {
  display: none;
}

.keyword-chips {
  display: none;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.keyword-chips li {
  padding: 8px 12px;
  color: rgba(255, 253, 245, 0.76);
  border: 1px solid rgba(216, 170, 50, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.key-copy,
.section-summary,
.legacy-key-line,
.taste-impression-line,
.pairing-statement,
.future-statement {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2.12vw, 34px);
  font-weight: 700;
  line-height: 1.56;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(6, 199, 85, 0.24);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.button::after {
  content: "";
  display: none;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6, 199, 85, 0.32);
}

.button.full-width {
  width: 100%;
}

.cta-button {
  position: relative;
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  overflow: visible;
  color: var(--white);
  background-color: var(--green);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(6, 199, 85, 0.24);
  font-size: clamp(15px, 1.04vw, 17px);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  will-change: transform, filter, box-shadow;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.cta-button::after {
  content: "";
  flex: 0 0 auto;
  width: 0.48em;
  height: 0.48em;
  margin-left: 0.78em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.cta-button:hover {
  transform: translateY(-1px);
  background-color: #03b84e;
  box-shadow: 0 18px 34px rgba(6, 199, 85, 0.32);
}

.cta-button-wide {
  width: min(100%, 440px);
}

.chapter-door {
  position: relative;
  width: calc(100% + (var(--pad) * 2));
  min-height: clamp(380px, 42vw, 560px);
  margin: 0 calc(var(--pad) * -1) clamp(40px, 4.8vw, 64px);
  overflow: hidden;
  background: #070503;
}

.chapter-door img {
  width: 100%;
  height: clamp(380px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) brightness(1.04) contrast(0.98);
}

.chapter-door::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 5, 3, 0.34), rgba(7, 5, 3, 0.14) 42%, rgba(7, 5, 3, 0) 72%),
    linear-gradient(0deg, rgba(7, 5, 3, 0.2), rgba(7, 5, 3, 0) 58%);
}

.chapter-door figcaption {
  position: absolute;
  left: clamp(28px, 6vw, 88px);
  bottom: clamp(24px, 3.2vw, 44px);
  z-index: 1;
  max-width: min(720px, calc(100% - 56px));
}

.chapter-door figcaption span {
  display: block;
  margin-bottom: clamp(8px, 1.1vw, 14px);
  color: rgba(240, 213, 127, 0.92);
  font-size: clamp(10px, 0.82vw, 12px);
  letter-spacing: 0.12em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.34);
}

.chapter-door figcaption strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(28px, 2.9vw, 46px);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.48), 0 0 2px rgba(0, 0, 0, 0.32);
}

.hero-section {
  min-height: min(820px, 96vh);
  padding: 0;
  display: grid;
  align-items: stretch;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.26) 42%, rgba(0, 0, 0, 0.02) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.02) 48%);
}

.hero-beer {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.06) brightness(1.05) contrast(0.98);
}

.hero-video {
  background: #050403;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(820px, 96vh);
  max-width: 820px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 12vw, 150px) var(--pad) clamp(150px, 16vw, 190px);
}

.hero-coedo-lockup {
  display: block;
  width: clamp(120px, 12vw, 170px);
  margin-bottom: clamp(28px, 3vw, 42px);
}

.hero-coedo-lockup img {
  filter: brightness(0) invert(1);
}

.hero-copy .lead {
  max-width: 28em;
  margin-bottom: 0;
  color: rgba(255, 253, 245, 0.86);
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.95;
}

.hero-origin-badge {
  margin: clamp(22px, 3vw, 32px) 0 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 800;
}

.hero-project-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: clamp(10px, 1.3vw, 16px);
  padding: clamp(24px, 3vw, 38px) var(--pad);
  background: rgba(8, 6, 4, 0.88);
  border-top: 1px solid rgba(216, 170, 50, 0.24);
}

.hero-project-copy {
  max-width: var(--content);
  margin: 0 auto;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2.42vw, 38px);
  font-weight: 700;
  line-height: 1.55;
}

.hero-project-copy span {
  display: inline;
}

@media (min-width: 860px) {
  .hero-project-copy span {
    display: inline-block;
  }
}

.fv-cta-section,
.final-section {
  color: var(--ink);
  background: #fff;
}

.fv-cta-section,
.final-section {
  padding: clamp(34px, 4.8vw, 58px) var(--pad);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(520px, 600px) minmax(330px, 460px);
  grid-template-areas:
    "launch image"
    "title image"
    "offer image"
    "origin image"
    "actions image";
  gap: 8px clamp(10px, 1.5vw, 22px);
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  margin: 0 auto;
}

.cta-launch {
  grid-area: launch;
  width: fit-content;
  padding: 0 0 6px;
  color: #07542f;
  background: transparent;
  border-bottom: 2px solid var(--green);
  box-shadow: none;
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.cta-product-photo {
  grid-area: image;
  justify-self: start;
  width: clamp(350px, 29vw, 460px);
  margin: 0;
  overflow: visible;
}

.cta-product-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  transform: none;
  transform-origin: center;
}

.cta-panel h2 {
  grid-area: title;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(33px, 2.9vw, 48px);
  line-height: 1.18;
}

.cta-title-nowrap {
  white-space: nowrap;
}

.cta-panel .cta-body-strong {
  grid-area: offer;
}

.cta-body-strong {
  margin: 0;
  color: #2c704b;
}

.cta-body-strong span {
  display: block;
  margin-bottom: 4px;
  color: rgba(33, 24, 14, 0.62);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 700;
}

.cta-body-strong strong {
  display: block;
  color: #2c704b;
  font-family: var(--serif);
  font-size: clamp(31px, 2.65vw, 42px);
  font-weight: 800;
  line-height: 1.08;
}

.cta-panel .cta-origin-note {
  grid-area: origin;
}

.cta-origin-note {
  margin: 0;
  color: rgba(33, 24, 14, 0.72);
  font-family: var(--serif);
  font-weight: 800;
}

.cta-panel .hero-actions,
.cta-panel .final-actions {
  grid-area: actions;
}

.hero-actions,
.final-actions {
  margin-top: 2px;
}

.cta-panel .cta-button {
  width: fit-content;
  min-width: min(100%, 350px);
}

.fv-pairing-section {
  padding: clamp(40px, 5vw, 72px) var(--pad) clamp(54px, 6vw, 86px);
  overflow: hidden;
  color: var(--ink);
  background: #fff;
}

.fv-pairing-heading {
  display: grid;
  gap: 6px;
  max-width: 1360px;
  margin: 0 auto clamp(14px, 1.7vw, 22px);
  text-align: center;
}

.fv-pairing-heading span {
  color: #07542f;
  font-family: var(--sans);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.fv-pairing-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.22;
}

.fv-pairing-heading p {
  margin: 0;
  color: rgba(33, 24, 14, 0.66);
  font-family: var(--serif);
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1.6;
}

.fv-pairing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.3vw, 18px);
  max-width: 1360px;
  margin: 0 auto;
}

.fv-pairing-grid figure {
  position: relative;
  min-height: clamp(300px, 29vw, 460px);
  margin: 0;
  overflow: hidden;
  background: #100c08;
}

.fv-pairing-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.fv-pairing-grid figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.mid-cta-section {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(34px, 4.4vw, 58px) var(--pad);
  color: var(--ink);
  background: #fffdf8;
  border-top: 1px solid rgba(33, 24, 14, 0.1);
  border-bottom: 1px solid rgba(33, 24, 14, 0.1);
  text-align: center;
}

.mid-cta-section-dark {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 5, 3, 0.92), rgba(12, 9, 5, 0.96)),
    var(--dark);
  border-color: rgba(206, 168, 86, 0.22);
}

.mid-cta-kicker {
  margin: 0;
  color: #07542f;
  font-family: var(--sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.mid-cta-section-dark .mid-cta-kicker {
  color: var(--gold);
}

.mid-cta-copy {
  margin: 0;
  color: rgba(33, 24, 14, 0.78);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.36;
}

.mid-cta-section-dark .mid-cta-copy {
  color: rgba(255, 255, 255, 0.88);
}

.mid-cta-button {
  min-width: min(100%, 360px);
  margin-top: 4px;
}

.project-movie-section {
  padding: clamp(36px, 5vw, 68px) var(--pad);
  color: var(--white);
  background:
    radial-gradient(circle at 72% 18%, rgba(216, 170, 50, 0.16), transparent 28%),
    linear-gradient(180deg, #050403 0%, #090705 100%);
}

.project-movie-frame {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.project-movie-frame {
  position: relative;
  display: grid;
  min-height: clamp(210px, 44vw, 640px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.1), rgba(255, 253, 245, 0.02)),
    linear-gradient(90deg, rgba(12, 8, 4, 0.94), rgba(24, 18, 10, 0.86));
  border: 1px solid rgba(240, 213, 127, 0.22);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.36);
}

.project-movie-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 253, 245, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.18;
}

.project-movie-frame::after {
  position: absolute;
  inset: -6%;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 213, 127, 0.2), transparent 28%),
    radial-gradient(circle at 42% 58%, rgba(255, 253, 245, 0.12), transparent 18%),
    linear-gradient(135deg, rgba(36, 25, 13, 0.4), rgba(5, 4, 3, 0.8));
  opacity: 0.82;
  transform: scale(1.02);
  transform-origin: center;
  will-change: transform;
}

.project-movie-frame p {
  position: relative;
  z-index: 2;
  color: rgba(255, 253, 245, 0.54);
  font-family: var(--latin);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-movie-frame > video,
.project-movie-frame > iframe,
.project-movie-frame > img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-movie-frame > video {
  background: #000;
  object-fit: contain;
}

.project-movie-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: clamp(68px, 8vw, 104px);
  height: clamp(68px, 8vw, 104px);
  padding: 0;
  cursor: pointer;
  background: rgba(255, 253, 245, 0.92);
  border: 1px solid rgba(255, 253, 245, 0.72);
  border-radius: 50%;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
  transition: opacity 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.project-movie-center-play::before {
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  content: "";
  border-top: clamp(11px, 1.2vw, 15px) solid transparent;
  border-bottom: clamp(11px, 1.2vw, 15px) solid transparent;
  border-left: clamp(18px, 1.9vw, 26px) solid #07542f;
  transform: translate(-42%, -50%);
}

.project-movie-center-play:hover {
  background: #fffdf5;
  transform: translate(-50%, -50%) scale(1.04);
}

.project-movie-frame.is-playing .project-movie-center-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.project-movie-frame > iframe {
  border: 0;
}

.project-movie-play {
  position: absolute;
  z-index: 2;
  width: clamp(58px, 7vw, 88px);
  height: clamp(58px, 7vw, 88px);
  border: 1px solid rgba(240, 213, 127, 0.66);
  border-radius: 50%;
  background: rgba(255, 253, 245, 0.08);
}

.project-movie-play::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--gold-soft);
  transform: translate(-38%, -50%);
}

.visual-bg-section {
  background: var(--dark);
}

.visual-bg-section::before {
  opacity: 0.82;
  background-size: cover;
  background-position: center;
}

.section-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.95;
  filter: saturate(1.08) contrast(1.02);
}

.beer-section::after {
  content: none;
}

.bg-beer-bubbles::before {
  opacity: 0.86;
  background:
    linear-gradient(90deg, rgba(12, 8, 4, 0.72), rgba(12, 8, 4, 0.34) 54%, rgba(12, 8, 4, 0.52)),
    url("./assets/lp-updated/images/beer-bubbles-closeup.jpg") center / cover no-repeat;
}

.bg-barley-hands::before {
  opacity: 0.84;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.66), rgba(8, 6, 4, 0.3) 56%, rgba(8, 6, 4, 0.46)),
    url("./assets/lp-updated/images/barley-hands-closeup.jpg") center / cover no-repeat;
}

.question-section::before {
  opacity: 0.94;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.92), rgba(8, 6, 4, 0.68) 54%, rgba(8, 6, 4, 0.84)),
    url("./assets/lp-updated/images/harvested-barley-pouring.jpg") center / cover no-repeat;
}

.bg-koji-vessel::before {
  opacity: 0.84;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.72), rgba(8, 6, 4, 0.36) 52%, rgba(8, 6, 4, 0.58)),
    url("./assets/lp-updated/images/koji-grain-closeup.jpg") center / cover no-repeat;
}

.bg-brewery-shadow::before {
  opacity: 0.86;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.76), rgba(8, 6, 4, 0.36) 52%, rgba(8, 6, 4, 0.6)),
    url("./assets/lp-updated/images/brewery-dark-work-tank.jpg") center / cover no-repeat;
}

.bg-chef-hands::before {
  opacity: 0.84;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.66), rgba(8, 6, 4, 0.28) 54%, rgba(8, 6, 4, 0.52)),
    url("./assets/lp-updated/images/chef-plating-dish.jpg") center / cover no-repeat;
}

.bg-project-meeting::before {
  opacity: 0.86;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.76), rgba(8, 6, 4, 0.38) 58%, rgba(8, 6, 4, 0.58)),
    url("./assets/lp-updated/images/brewery-tank-side-dark.jpg") center / cover no-repeat;
}

.barley-section,
.faq-section {
  color: var(--ink);
  background: var(--paper);
}

.coedo-section {
  color: var(--white);
  background: #050403;
}

.coedo-section::before {
  opacity: 0.78;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.72)),
    url("./assets/lp-updated/images/beer-beautiful-flag.jpg") center / cover no-repeat;
}

.barley-section p,
.faq-section p {
  color: var(--ink-soft);
}

.barley-section .section-lead {
  color: rgba(33, 24, 14, 0.74);
}

.coedo-section p {
  color: rgba(255, 253, 245, 0.76);
}

.coedo-section .section-lead {
  color: rgba(255, 253, 245, 0.84);
}

.coedo-section .keyword-chips li,
.barley-section .keyword-chips li {
  color: rgba(33, 24, 14, 0.72);
  border-color: rgba(33, 24, 14, 0.18);
}

.beer-beautiful,
.legacy-quote,
.barley-regeneration,
.voice-note,
.responsibility-note {
  padding: clamp(18px, 2.6vw, 30px) 0 0;
  border: 0;
  border-top: 1px solid currentColor;
}

.beer-beautiful {
  max-width: 760px;
  margin-top: clamp(30px, 4vw, 54px);
  margin-bottom: clamp(30px, 4vw, 54px);
  color: rgba(33, 24, 14, 0.18);
}

.beer-beautiful span,
.beer-beautiful strong,
.beer-beautiful p {
  color: var(--ink);
}

.beer-beautiful strong {
  display: block;
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.3vw, 36px);
  line-height: 1.18;
}

.coedo-section .beer-beautiful {
  color: rgba(240, 213, 127, 0.34);
}

.coedo-section .beer-beautiful span {
  color: var(--gold-soft);
}

.coedo-section .beer-beautiful strong {
  color: var(--white);
}

.coedo-section .beer-beautiful p {
  color: rgba(255, 253, 245, 0.78);
}

.award-list,
.question-cards,
.partner-roles-intro,
.partner-roles,
.taste-table,
.future-lines,
.limited-lines,
.makuake-flow,
.return-lines,
.faq-featured {
  display: grid;
  gap: clamp(18px, 2.6vw, 32px);
}

.question-cards,
.award-list,
.future-lines,
.limited-lines,
.makuake-flow,
.faq-featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.award-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.award-emblem {
  display: grid;
  width: clamp(72px, 7vw, 104px);
  height: clamp(72px, 7vw, 104px);
  margin: 0 0 16px;
  background: transparent;
  place-items: center;
}

.award-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.36));
}

.question-cards article,
.award-list article,
.partner-roles article,
.future-lines article,
.limited-lines article,
.makuake-flow article,
.return-lines article,
.faq-featured article,
.accordion-list details {
  padding: clamp(18px, 2.4vw, 28px) 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line-light);
}

.coedo-section .award-list article,
.faq-featured article,
.accordion-list details,
.responsibility-note {
  background: transparent;
  border-top-color: var(--line-dark);
}

.coedo-section .award-list article {
  border-top-color: rgba(240, 213, 127, 0.28);
}

.question-cards strong,
.award-list strong,
.partner-roles-intro strong,
.limited-lines strong,
.makuake-flow strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.44;
}

.question-cards span,
.award-list span,
.beer-beautiful span,
.pairing-cue,
.pairing-reasons span,
.future-lines span,
.limited-lines span,
.makuake-flow span,
.return-lines span,
.taste-table > div > span:not(.visual-icon),
.koji-simple-route span {
  display: none;
}

.question-cards p,
.award-list p,
.partner-roles p,
.future-lines p,
.faq-featured p {
  margin-bottom: 0;
  font-weight: 400;
}

.award-list span {
  display: block;
  margin-bottom: 10px;
  color: rgba(33, 24, 14, 0.58);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.coedo-section .award-list span {
  color: var(--gold-soft);
}

.coedo-section .award-list strong {
  color: var(--white);
  font-size: clamp(17px, 1.42vw, 22px);
  font-weight: 700;
  line-height: 1.46;
}

.coedo-section .award-stat strong {
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1;
}

.coedo-section .award-list p {
  margin-top: 10px;
  color: rgba(255, 253, 245, 0.72);
}

.partner-roles-intro {
  margin-top: clamp(32px, 4vw, 52px);
  margin-bottom: clamp(18px, 2.6vw, 30px);
  padding-top: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid rgba(216, 170, 50, 0.3);
}

.bioc-profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  width: 100%;
  max-width: 68em;
  margin: clamp(24px, 3vw, 40px) auto 0;
  padding: clamp(18px, 2.6vw, 28px);
  gap: clamp(18px, 2.8vw, 34px);
  align-items: center;
  background: rgba(255, 253, 245, 0.08);
  border: 1px solid rgba(240, 213, 127, 0.24);
  border-radius: 8px;
}

.bioc-profile-visual {
  margin: 0;
}

.bioc-profile-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  object-fit: cover;
  border-radius: 6px;
}

.bioc-profile-copy {
  display: grid;
  gap: 10px;
}

.bioc-profile-copy span {
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bioc-profile-copy strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.35;
}

.bioc-profile-copy p {
  max-width: 50em;
  margin: 0;
  color: rgba(255, 253, 245, 0.76);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.9;
}

.partner-roles-intro span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.partner-roles-intro strong {
  max-width: 22em;
}

.partner-roles-intro p {
  max-width: 52em;
  margin-top: 12px;
}

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

.partner-roles article span {
  display: flex;
  width: fit-content;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold-soft);
  border-radius: 999px;
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

.partner-roles article strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
}

.person-quote-heading {
  display: none;
}

.full-bleed-photo,
.wide-photo,
.bioc-visual-lockup,
.taste-side-visual,
.makuake-editorial figure,
.return-showcase figure,
.pairing-photo-row figure {
  margin: clamp(30px, 4vw, 54px) auto;
  overflow: hidden;
}

.full-bleed-photo img,
.full-bleed-photo video,
.wide-photo img,
.wide-photo video,
.bioc-visual-lockup img,
.bioc-visual-lockup video,
.taste-side-visual img,
.taste-side-visual video,
.makuake-editorial img,
.makuake-editorial video,
.pairing-photo-row img {
  width: 100%;
  height: clamp(260px, 33vw, 460px);
  object-fit: cover;
}

.full-bleed-photo figcaption,
.wide-photo figcaption,
.bioc-visual-lockup figcaption,
.pairing-photo-row figcaption {
  margin-top: 10px;
  color: rgba(255, 253, 245, 0.62);
  font-family: var(--sans);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.9;
}

.coedo-section .wide-photo figcaption,
.barley-section .full-bleed-photo figcaption {
  color: rgba(33, 24, 14, 0.62);
}

.future-section .wide-photo figcaption {
  color: rgba(255, 253, 245, 0.72);
}

.legacy-quote {
  max-width: 760px;
  margin-top: clamp(34px, 5vw, 64px);
  color: rgba(33, 24, 14, 0.18);
}

.barley-regeneration {
  max-width: 760px;
  margin-top: clamp(28px, 4vw, 52px);
  margin-bottom: clamp(18px, 3vw, 34px);
  color: rgba(255, 253, 245, 0.22);
}

.barley-regeneration span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.barley-regeneration strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 700;
  line-height: 1.48;
}

.barley-regeneration p {
  max-width: 42em;
  margin-top: 12px;
  color: rgba(255, 253, 245, 0.78);
}

.legacy-quote strong,
.legacy-quote p {
  color: var(--ink);
}

.legacy-quote strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.56;
}

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

.barley-section p,
.barley-section .section-lead {
  color: rgba(255, 253, 245, 0.8);
}

.barley-section .full-bleed-photo figcaption {
  color: rgba(255, 253, 245, 0.62);
}

.barley-section .legacy-quote {
  color: rgba(255, 253, 245, 0.24);
}

.barley-section .legacy-quote strong,
.barley-section .legacy-quote p,
.barley-section .legacy-key-line {
  color: var(--white);
}

.barley-section::before {
  opacity: 0.86;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.72), rgba(8, 6, 4, 0.34) 54%, rgba(8, 6, 4, 0.58)),
    url("./assets/lp-updated/images/barley-field-wide-sky.jpg") center / cover no-repeat;
}

.executor-section {
  padding-top: clamp(58px, 7vw, 100px);
}

.executor-section #executor-title {
  max-width: 18em;
  margin: 0 0 16px;
  font-size: clamp(26px, 2.8vw, 42px);
  text-align: left;
}

.executor-lead {
  max-width: 46em;
  margin: 0 0 clamp(30px, 4vw, 52px);
  text-align: left;
}

.executor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 34px);
  max-width: var(--content);
  margin: 0 auto;
}

.executor-card {
  display: grid;
  grid-template-columns: minmax(170px, 40%) minmax(0, 1fr);
  min-height: clamp(230px, 21vw, 300px);
  overflow: hidden;
  gap: clamp(18px, 2vw, 28px);
  padding-top: clamp(18px, 2.4vw, 28px);
  background: transparent;
  border-top: 1px solid var(--line-light);
}

.executor-card img {
  width: 100%;
  height: 100%;
  min-height: clamp(230px, 21vw, 300px);
  object-fit: cover;
}

.executor-card:nth-child(1) img {
  object-position: center 42%;
}

.executor-body {
  padding: 0;
}

.executor-role {
  display: block;
  margin-bottom: 8px;
}

.executor-card h3 {
  margin-bottom: 14px;
}

.executor-card p {
  font-size: clamp(13px, 0.98vw, 15px);
  line-height: 1.8;
}

.executor-card blockquote,
.quote-stack blockquote,
.bioc-copy blockquote,
.voice-note p {
  margin: clamp(16px, 2vw, 24px) 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(17px, 1.42vw, 23px);
  font-weight: 700;
  line-height: 1.72;
}

.bioc-quote {
  margin-top: clamp(22px, 3vw, 34px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.bioc-quote cite {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bioc-quote span {
  display: block;
  color: var(--white);
  font-size: clamp(18px, 1.42vw, 23px);
  line-height: 1.78;
}

.voice-note {
  padding-top: clamp(18px, 2.6vw, 30px);
  border-top: 0;
}

.voice-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.why-editorial,
.bioc-editorial,
.clean-editorial,
.makuake-editorial,
.future-editorial,
.pairing-editorial,
.return-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.why-core-copy {
  max-width: 34em;
}

.safety-note,
.fine-note {
  color: rgba(255, 253, 245, 0.58);
  font-size: 12px;
}

.koji-simple-compare {
  max-width: var(--content);
  margin-top: clamp(44px, 6vw, 78px);
  padding: clamp(26px, 4vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 253, 245, 0.1), rgba(216, 170, 50, 0.08)),
    rgba(7, 5, 3, 0.72);
  border: 1px solid rgba(240, 213, 127, 0.34);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

.koji-simple-heading {
  max-width: 18em;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(23px, 2.38vw, 36px);
  font-weight: 700;
  line-height: 1.38;
}

.koji-simple-routes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(30px, 4.5vw, 56px);
}

.koji-simple-route {
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 253, 245, 0.06);
  border: 1px solid rgba(255, 253, 245, 0.16);
  border-top: 4px solid rgba(255, 253, 245, 0.24);
}

.koji-simple-route.is-koji {
  background:
    linear-gradient(135deg, rgba(216, 170, 50, 0.18), rgba(255, 253, 245, 0.07)),
    rgba(12, 9, 5, 0.88);
  border-color: rgba(240, 213, 127, 0.5);
  border-top-color: var(--gold-soft);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(240, 213, 127, 0.16);
}

.koji-simple-route span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.koji-simple-route h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.3vw, 38px);
}

.route-sub,
.koji-simple-note {
  color: rgba(255, 253, 245, 0.68);
}

.koji-process-callout {
  position: relative;
  margin: clamp(14px, 2vw, 20px) 0 0;
  padding: 12px 14px;
  overflow: hidden;
  color: var(--white);
  background: rgba(216, 170, 50, 0.16);
  border-left: 4px solid var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(15px, 1.16vw, 19px);
  font-weight: 700;
  line-height: 1.7;
}

.koji-simple-route ol {
  display: grid;
  gap: 12px;
  margin: clamp(18px, 2.8vw, 28px) 0 0;
  padding: 0;
  list-style: none;
}

.koji-simple-route li {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: clamp(15px, 1.16vw, 19px);
  font-weight: 700;
  border-radius: 999px;
}

.koji-simple-route li::before {
  content: attr(data-step);
  display: inline-grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  color: var(--gold-soft);
  background: rgba(255, 253, 245, 0.08);
  border: 1px solid rgba(240, 213, 127, 0.25);
  border-radius: 50%;
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.koji-simple-route.is-koji li:nth-child(2),
.koji-simple-route.is-koji li:nth-child(3) {
  color: var(--white);
  background: rgba(216, 170, 50, 0.13);
  outline: 1px solid rgba(240, 213, 127, 0.28);
  padding: 6px 10px 6px 0;
}

.koji-simple-route.is-koji li:nth-child(2)::before,
.koji-simple-route.is-koji li:nth-child(3)::before {
  color: var(--ink);
  background: var(--gold-soft);
}

.koji-simple-note {
  margin: clamp(28px, 4vw, 48px) 0 0;
  max-width: 42em;
  color: rgba(255, 253, 245, 0.78);
  font-family: var(--sans);
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 400;
  line-height: 2;
}

.koji-simple-note strong {
  color: var(--gold-soft);
  font-family: inherit;
  font-weight: 600;
}

.message-section,
.partner-section,
.limited-section,
.clean-taste-section,
.pairing-section,
.future-section,
.makuake-section {
  background: var(--dark-2);
}

.message-section::before {
  opacity: 0.84;
  background:
    linear-gradient(90deg, rgba(10, 7, 4, 0.82), rgba(10, 7, 4, 0.42) 54%, rgba(10, 7, 4, 0.66)),
    url("./assets/lp-updated/images/president-interview-door.jpg") center / cover no-repeat;
}

.partner-section::before {
  opacity: 0.78;
  background:
    linear-gradient(90deg, rgba(10, 7, 4, 0.76), rgba(10, 7, 4, 0.34) 54%, rgba(10, 7, 4, 0.64)),
    url("./assets/lp-updated/images/brewery-sample-flasks.jpg") center / cover no-repeat;
}

.limited-section::before {
  opacity: 0.76;
  background:
    linear-gradient(90deg, rgba(10, 7, 4, 0.78), rgba(10, 7, 4, 0.34) 52%, rgba(10, 7, 4, 0.62)),
    url("./assets/lp-updated/images/experimental-label-closeup.jpg") center / cover no-repeat;
}

.clean-taste-section::before {
  opacity: 0.76;
  background:
    linear-gradient(90deg, rgba(5, 6, 6, 0.72), rgba(5, 6, 6, 0.28) 52%, rgba(5, 6, 6, 0.58)),
    linear-gradient(180deg, rgba(5, 4, 3, 0.04), rgba(5, 4, 3, 0.36)),
    url("./assets/lp-updated/images/brewery-tank-room-upward.jpg") center 48% / cover no-repeat;
}

.clean-editorial {
  margin-top: 0;
}

.taste-side-visual {
  margin: 0;
}

.taste-table {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 70px);
}

.taste-table div {
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--line-light);
}

.taste-table .visual-icon {
  display: none;
}

.taste-table p {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 800;
  line-height: 1.6;
}

.taste-impression-line {
  max-width: 900px;
  margin-top: clamp(34px, 5vw, 62px);
  text-align: center;
  font-size: clamp(24px, 2.4vw, 36px);
}

.pairing-photo-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.pairing-photo-row figure {
  margin: 0;
}

.pairing-photo-row img {
  height: clamp(240px, 24vw, 380px);
}

.pairing-copy-block {
  max-width: 760px;
}

.pairing-statement {
  max-width: 13em;
}

.pairing-reasons {
  display: grid;
  gap: 18px;
  padding: 0;
  list-style: none;
}

.pairing-reasons li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 253, 245, 0.18);
}

.pairing-reasons li:first-child {
  padding-top: 0;
  border-top: 0;
}

.pairing-reasons span {
  grid-row: span 2;
  color: var(--gold-soft);
  font-family: var(--latin);
  font-weight: 800;
}

.pairing-reasons strong,
.pairing-reasons em {
  display: block;
  min-width: 0;
  color: var(--white);
  font-style: normal;
  line-height: 1.58;
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.pairing-reasons strong {
  font-size: clamp(16px, 1.12vw, 19px);
  font-weight: 800;
}

.pairing-reasons em {
  color: rgba(255, 253, 245, 0.76);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 400;
  line-height: 1.72;
}

.pairing-more {
  margin-top: clamp(24px, 4vw, 42px);
  color: rgba(255, 253, 245, 0.64);
}

.future-section::before {
  opacity: 0.78;
  background:
    linear-gradient(90deg, rgba(10, 7, 4, 0.66), rgba(10, 7, 4, 0.28) 52%, rgba(10, 7, 4, 0.5)),
    url("./assets/lp-updated/images/barley-field-wide.jpg") center 46% / cover no-repeat;
}

.pairing-section::before {
  opacity: 0.84;
}

.future-editorial,
.makuake-editorial {
  max-width: var(--content);
}

.future-statement {
  max-width: 19em;
}

.future-team-photo img {
  height: clamp(320px, 34vw, 500px);
}

.future-lines {
  gap: clamp(14px, 1.8vw, 22px);
}

.future-lines article,
.limited-lines article,
.makuake-flow article {
  min-width: 0;
}

.future-lines h3,
.limited-lines strong,
.makuake-flow strong {
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.future-lines h3 {
  color: var(--white);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.45;
}

.future-lines p {
  color: rgba(255, 253, 245, 0.7);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.82;
}

.future-lines {
  margin-top: clamp(26px, 4vw, 46px);
}

.limited-lines {
  margin-top: clamp(32px, 4vw, 52px);
}

.limited-section > .fine-note {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.limited-lines article,
.makuake-flow article {
  background: transparent;
  border-color: rgba(216, 170, 50, 0.28);
}

.limited-lines strong,
.makuake-flow strong {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
}

.makuake-editorial img,
.makuake-editorial video {
  height: clamp(280px, 31vw, 430px);
}

.makuake-flow {
  margin-top: clamp(30px, 4vw, 50px);
}

.makuake-section::before {
  opacity: 0.82;
  background:
    linear-gradient(90deg, rgba(10, 7, 4, 0.72), rgba(10, 7, 4, 0.32) 52%, rgba(10, 7, 4, 0.58)),
    url("./assets/lp-updated/images/coedo-tank-closeup.jpg") center 46% / cover no-repeat;
}

.makuake-editorial figure {
  margin: 0;
}

.faq-section {
  padding-bottom: clamp(82px, 10vw, 140px);
}

.faq-section .section-kicker,
.faq-section h2 {
  color: var(--ink);
}

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

.faq-featured .visual-icon {
  display: none;
}

.faq-featured h3,
.accordion-list summary,
.responsibility-note strong {
  color: var(--ink);
}

.accordion-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 46px);
}

.accordion-list details {
  color: var(--ink);
}

.accordion-list summary {
  cursor: pointer;
  font-weight: 700;
  line-height: 1.5;
}

.accordion-list details p {
  margin: 14px 0 0;
}

.responsibility-note {
  margin-top: clamp(24px, 4vw, 46px);
  color: var(--line-dark);
}

.responsibility-note p {
  margin-bottom: 0;
}

.final-section {
  display: block;
}

.final-section h2,
.final-section p {
  color: var(--ink);
}

.final-section .cta-body-strong {
  margin-bottom: 0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  left: auto;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: 118px max-content auto;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  width: auto;
  max-width: calc(100vw - 48px);
  min-height: 112px;
  padding: 12px 14px;
  overflow: hidden;
  color: #07542f;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(6, 199, 85, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24), 0 0 0 7px rgba(6, 199, 85, 0.12);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.sticky-product {
  width: 118px;
  height: 88px;
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 6px;
  box-shadow: none;
}

.sticky-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.sticky-copy span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  padding: 0 0 4px;
  color: #07542f;
  background: transparent;
  border-bottom: 1px solid rgba(6, 199, 85, 0.55);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.sticky-copy strong {
  display: block;
  color: #07542f;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 900;
  line-height: 1.28;
  text-shadow: none;
}

.sticky-actions a {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  overflow: hidden;
  color: var(--white);
  background-color: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  isolation: isolate;
  box-shadow: 0 10px 22px rgba(6, 199, 85, 0.28);
  will-change: transform, filter, box-shadow;
}

.sticky-button-main {
  display: inline;
}

.sticky-button-sub {
  display: none;
}

.sticky-actions a::after {
  content: "";
  flex: 0 0 auto;
  width: 0.48em;
  height: 0.48em;
  margin-left: 0.78em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateX(0) rotate(45deg);
}

@media (min-width: 860px) {
  .story-section:not(.hero-section):not(.final-section):not(.barley-section):not(.why-section):not(.message-section):not(.development-section):not(.pairing-section) > .section-kicker,
  .story-section:not(.hero-section):not(.final-section):not(.barley-section):not(.why-section):not(.message-section):not(.development-section):not(.pairing-section) > h2,
  .story-section:not(.hero-section):not(.final-section):not(.barley-section):not(.why-section):not(.message-section):not(.development-section):not(.pairing-section) > .section-lead,
  .story-section:not(.hero-section):not(.final-section):not(.barley-section):not(.why-section):not(.message-section):not(.development-section):not(.pairing-section) > p {
    padding-left: clamp(0px, 2vw, 24px);
    padding-right: clamp(0px, 2vw, 24px);
  }

  .barley-section,
  .why-section,
  .message-section,
  .development-section,
  .pairing-section {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
    column-gap: clamp(42px, 6vw, 86px);
    row-gap: clamp(18px, 2.4vw, 32px);
    align-items: start;
  }

  .barley-section > .chapter-door,
  .why-section > .chapter-door,
  .message-section > .chapter-door,
  .development-section > .chapter-door,
  .pairing-section > .chapter-door {
    grid-column: 1 / -1;
  }

  .barley-section > .section-lead,
  .barley-section > p,
  .barley-section > .barley-regeneration,
  .barley-section > .legacy-quote,
  .why-section > .section-lead,
  .why-section > .why-editorial,
  .message-section > .section-lead,
  .message-section > p,
  .message-section > .quote-stack,
  .development-section > .section-lead,
  .development-section > p,
  .development-section > .voice-note,
  .pairing-section > .pairing-editorial,
  .pairing-section > .pairing-more {
    grid-column: 1;
    width: 100%;
    max-width: 620px;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .barley-section > .full-bleed-photo,
  .why-section > .why-process-photo,
  .message-section > .wide-photo,
  .development-section > .wide-photo,
  .pairing-section > .pairing-photo-row-top {
    grid-column: 2;
    grid-row: 2 / span 5;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .barley-section > .full-bleed-photo img,
  .barley-section > .full-bleed-photo video,
  .why-section > .why-process-photo img,
  .why-section > .why-process-photo video,
  .message-section > .wide-photo img,
  .message-section > .wide-photo video,
  .development-section > .wide-photo img,
  .development-section > .wide-photo video {
    height: clamp(360px, 38vw, 560px);
  }

  .why-section > .why-editorial,
  .pairing-section > .pairing-editorial {
    display: block;
  }

  .why-section > .koji-simple-compare,
  .why-section > .section-summary {
    grid-column: 1 / -1;
  }

  .pairing-section > .pairing-photo-row-top {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.72fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: clamp(320px, 30vw, 460px);
  }

  .pairing-section > .pairing-photo-row-top figure {
    display: grid;
    min-height: 0;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .pairing-section > .pairing-photo-row-top figure:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .pairing-section > .pairing-photo-row-top figure:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .pairing-section > .pairing-photo-row-top figure:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .pairing-section > .pairing-photo-row-top img {
    height: 100%;
    min-height: 0;
  }

  .future-editorial > .future-statement,
  .future-editorial > .future-lines,
  .makuake-editorial > div {
    grid-column: 1;
  }

  .future-editorial > .future-team-photo,
  .makuake-editorial > figure {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 100%;
    margin: 0;
  }

  .future-editorial > .future-lines {
    grid-row: 2;
    grid-template-columns: 1fr;
  }

  .makuake-editorial > div {
    grid-row: 1;
  }

  .future-section > .section-lead,
  .limited-section > .section-lead,
  .limited-section > p,
  .limited-section > .fine-note,
  .makuake-section > .section-lead {
    max-width: min(760px, var(--content));
    text-align: left;
  }

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

@media (min-width: 1040px) {
  .makuake-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 859px) {
  :root {
    --pad: 24px;
    --section-y: 56px;
  }

  body {
    padding-bottom: 108px;
  }

  .page-shell {
    padding-top: 62px;
  }

  .story-header {
    position: fixed;
    left: 0;
    right: 0;
    display: block;
    height: 62px;
    padding: 0;
    border-bottom: 0;
    background: #050403;
  }

  .header-main {
    display: flex;
    height: 62px;
    align-items: center;
    justify-content: center;
  }

  .header-nav,
  .header-line-button,
  .header-notice {
    display: none;
  }

  .brand-mark img {
    width: 112px;
    filter: brightness(0) invert(1);
  }

  .sp-only {
    display: initial;
  }

  h1 {
    font-size: clamp(38px, 10.6vw, 50px);
    line-height: 1.24;
  }

  h2 {
    font-size: clamp(28px, 7.4vw, 37px);
    line-height: 1.42;
  }

  p,
  .section-lead {
    font-size: 15px;
    line-height: 2.04;
  }

  .story-section {
    scroll-margin-top: 62px;
  }

  .chapter-door,
  .chapter-door img {
    min-height: min(88vw, 380px);
    height: min(88vw, 380px);
  }

  .chapter-door {
    margin-bottom: 38px;
  }

  .chapter-door::after {
    background:
      linear-gradient(90deg, rgba(7, 5, 3, 0.36), rgba(7, 5, 3, 0.1) 64%, rgba(7, 5, 3, 0)),
      linear-gradient(0deg, rgba(7, 5, 3, 0.28), rgba(7, 5, 3, 0) 60%);
  }

  .chapter-door figcaption {
    left: 24px;
    bottom: 22px;
    max-width: calc(100% - 64px);
  }

  .chapter-door figcaption strong {
    font-size: clamp(28px, 7.2vw, 34px);
    line-height: 1.36;
  }

  .hero-section,
  .hero-copy {
    min-height: 600px;
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 70px 24px 132px;
  }

  .hero-coedo-lockup {
    display: block;
    width: clamp(138px, 38vw, 154px);
    margin-bottom: 22px;
  }

  .hero-copy h1 {
    max-width: 7.6em;
    margin-bottom: 0;
  }

  .hero-copy .lead {
    display: none;
  }

  .hero-origin-badge {
    display: none;
  }

  .hero-project-band {
    left: 24px;
    right: 24px;
    bottom: 34px;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .hero-project-copy {
    max-width: 19em;
    margin: 0;
    color: rgba(255, 253, 245, 0.88);
    font-family: var(--serif);
    font-size: clamp(14px, 3.85vw, 16px);
    font-weight: 700;
    line-height: 1.72;
  }

  .hero-project-copy span {
    display: block;
  }

  .cta-panel,
  .final-section,
  .why-editorial,
  .bioc-editorial,
  .clean-editorial,
  .makuake-editorial,
  .future-editorial,
  .pairing-editorial,
  .return-showcase {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-areas:
      "launch"
      "title"
      "image"
      "offer"
      "origin"
      "actions";
    gap: 9px;
  }

  .fv-cta-section .cta-launch,
  .fv-cta-section .cta-origin-note {
    display: none;
  }

  .cta-product-photo {
    width: min(calc(100vw - 44px), 372px);
    margin: 6px auto 0;
  }

  .cta-product-photo img {
    width: 100%;
    max-height: 332px;
    transform: none;
  }

  .cta-panel h2 {
    font-size: clamp(27px, 7.1vw, 34px);
  }

  .cta-launch {
    padding-bottom: 6px;
    border-bottom-width: 1px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }

  .cta-body-strong {
    margin-top: 2px;
  }

  .cta-body-strong strong {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .cta-origin-note {
    font-size: 15px;
  }

  .cta-panel .cta-button {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
    min-width: 0;
    min-height: 62px;
    justify-content: center;
    padding-right: 22px;
    padding-left: 24px;
    font-size: clamp(16px, 4.35vw, 18px);
  }

  .fv-pairing-section {
    padding: 28px 0 38px;
  }

  .fv-pairing-heading {
    padding: 0 24px;
    margin-bottom: 14px;
  }

  .fv-pairing-heading h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .fv-pairing-heading p {
    font-size: 15px;
  }

  .fv-pairing-grid {
    display: flex;
    gap: 10px;
    max-width: none;
    padding: 0 24px 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .fv-pairing-grid::-webkit-scrollbar {
    display: none;
  }

  .fv-pairing-grid figure {
    flex: 0 0 min(78vw, 312px);
    min-height: 230px;
    scroll-snap-align: center;
  }

  .mid-cta-section {
    gap: 8px;
    padding: 30px 24px;
  }

  .mid-cta-kicker {
    font-size: 13px;
  }

  .mid-cta-copy {
    font-size: clamp(18px, 5vw, 22px);
  }

  .mid-cta-button {
    width: min(100%, calc(100vw - 48px));
    max-width: calc(100vw - 48px);
    min-width: 0;
    min-height: 60px;
    padding-right: 22px;
    padding-left: 24px;
    font-size: clamp(15px, 4.15vw, 17px);
  }

  .project-movie-section {
    padding-right: 0;
    padding-left: 0;
  }

  .project-movie-frame {
    width: 100%;
    max-width: none;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }

  .question-cards,
  .partner-roles,
  .bioc-profile,
  .taste-table,
  .future-lines,
  .limited-lines,
  .makuake-flow,
  .faq-featured,
  .koji-simple-routes,
  .pairing-photo-row {
    grid-template-columns: 1fr;
  }

  .award-list,
  .executor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 13px;
  }

  .award-list article {
    padding-top: 13px;
  }

  .award-emblem {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .award-list span {
    margin-bottom: 5px;
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }

  .coedo-section .award-list strong {
    font-size: clamp(13px, 3.45vw, 16px);
    line-height: 1.28;
  }

  .coedo-section .award-stat strong {
    font-size: clamp(27px, 8.4vw, 34px);
  }

  .coedo-section .award-list p {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.55;
  }

  .bioc-profile {
    gap: 18px;
    padding: 16px;
  }

  .bioc-profile-photo {
    aspect-ratio: 16 / 7;
  }

  .executor-card {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding-top: 13px;
  }

  .executor-card img {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .executor-role {
    margin-bottom: 4px;
    font-size: 9.5px;
    letter-spacing: 0.08em;
    line-height: 1.35;
  }

  .executor-card h3 {
    margin-bottom: 7px;
    font-size: clamp(17px, 5vw, 21px);
    line-height: 1.2;
  }

  .executor-card p {
    font-size: 11px;
    line-height: 1.6;
  }

  .executor-card blockquote {
    margin-top: 8px;
    font-size: clamp(12px, 3.35vw, 14px);
    line-height: 1.45;
  }

  .full-bleed-photo img,
  .full-bleed-photo video,
  .wide-photo img,
  .wide-photo video,
  .bioc-visual-lockup img,
  .bioc-visual-lockup video,
  .taste-side-visual img,
  .taste-side-visual video,
  .makuake-editorial img,
  .makuake-editorial video,
  .pairing-photo-row img {
    height: auto;
    min-height: 220px;
  }

  .pairing-section > .pairing-photo-row-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .pairing-section > .pairing-photo-row-top figure {
    grid-column: auto;
    grid-row: auto;
  }

  .pairing-section > .pairing-photo-row-top figure:first-child {
    grid-column: 1 / -1;
  }

  .pairing-section > .pairing-photo-row-top img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .pairing-section > .pairing-photo-row-top figure:first-child img {
    aspect-ratio: 16 / 10;
  }

  .pairing-reasons li {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    padding-top: 14px;
  }

  .pairing-reasons strong {
    font-size: 15px;
  }

  .pairing-reasons em {
    font-size: 13px;
  }

  .makuake-editorial > div {
    order: -1;
  }

  .final-section {
    padding: 44px 24px 96px;
  }

  .sticky-cta {
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    max-width: none;
    min-height: calc(94px + env(safe-area-inset-bottom));
    padding: 11px 15px calc(13px + env(safe-area-inset-bottom)) 112px;
    overflow: visible;
    opacity: 0;
    transform: translateY(110%);
    pointer-events: none;
    color: #073d27;
    background: rgba(255, 253, 246, 0.99);
    border: 0;
    border-width: 1px 0 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
  }

  .sticky-cta::before {
    content: none;
  }

  .sticky-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sticky-copy {
    display: block;
    min-height: 16px;
    margin-bottom: 7px;
    text-align: center;
  }

  .sticky-product {
    position: absolute;
    left: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 2;
    display: block;
    width: 101px;
    height: 134px;
    overflow: visible;
    pointer-events: none;
  }

  .sticky-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(33, 24, 14, 0.18));
  }

  .sticky-copy span {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    color: #073d27;
    border: 0;
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.15;
  }

  .sticky-copy strong {
    display: block;
    width: 100%;
    margin-top: 0;
    color: #073d27;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    white-space: nowrap;
  }

  .sticky-actions {
    position: relative;
    z-index: 1;
    width: 100%;
  }

  .sticky-actions a {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 8px 30px;
    overflow: visible;
    color: var(--white);
    background-color: var(--green);
    border: 0;
    border-radius: 999px;
    font-size: clamp(15px, 4.05vw, 17px);
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(6, 199, 85, 0.28);
    transform: none;
    will-change: transform;
  }

  .sticky-actions a::before {
    content: none;
  }

  .sticky-actions a::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    margin: 0;
    border-top-width: 2px;
    border-right-width: 2px;
    transform: translateY(-50%) rotate(45deg);
    animation: none;
  }

  .sticky-button-main {
    display: block;
    width: max-content;
    max-width: calc(100% - 40px);
    line-height: 1.1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .sticky-button-sub {
    display: block;
    opacity: 0.88;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.1;
  }
}

@media (max-width: 859px) and (prefers-reduced-motion: no-preference) {
  .sticky-cta.is-visible .sticky-product img {
    animation: stickyProductFloat 4.2s ease-in-out infinite;
  }

  .sticky-cta.is-visible .sticky-actions a {
    animation: stickyButtonPrompt 3.1s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }

  .sticky-actions a::after {
    animation: stickyArrowPrompt 2.35s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }
}

@media (max-width: 359px) {
  .button,
  .cta-button,
  .sticky-actions a {
    font-size: 13px;
  }

  .cta-button {
    padding-right: 14px;
    padding-left: 16px;
  }

  .sticky-cta {
    padding-right: 14px;
    padding-left: 98px;
  }

  .sticky-product {
    left: 5px;
    width: 92px;
    height: 122px;
  }

  .sticky-actions a {
    padding-right: 24px;
    padding-left: 18px;
    line-height: 1.12;
  }

  .sticky-actions a::after {
    right: 13px;
  }

  .sticky-button-main {
    max-width: calc(100% - 22px);
    line-height: 1.14;
  }

  .chapter-door figcaption strong {
    font-size: 26px;
  }
}
