/* ============================
   CTA STRIP (under HERO)
============================ */
.cta-strip {
  background: linear-gradient(90deg, #6b1d2a 0%, #8b2839 50%, #a8302d 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(232, 212, 160, .18);
  border-bottom: 1px solid rgba(232, 212, 160, .18);
  padding: 30px 0px !important;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(232, 212, 160, .12), transparent 55%),
    radial-gradient(ellipse at 95% 50%, rgba(212, 112, 138, .18), transparent 50%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-strip-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--sans-jp);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--gold-soft);
  padding: 6px 14px;
  border: 1px solid rgba(232, 212, 160, .4);
}

.cta-strip-lede {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--en);
  font-weight: 300;
  color: var(--ink);
  font-size: 36px;
  letter-spacing: .02em;
  line-height: 1.1;
}

.cta-strip-lede .day {
  font-weight: 500
}

.cta-strip-lede .sep {
  color: var(--gold-soft);
  font-weight: 300;
  margin: 0 1px
}

.cta-strip-lede .dash {
  color: var(--gold-soft);
  font-weight: 300;
  margin: 0 2px;
  font-size: 32px;
}

.cta-strip-lede .venue {
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 14px;
  color: rgba(245, 237, 224, .85);
  letter-spacing: .12em;
  margin-left: 8px;
  align-self: center;
}

.cta-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 36px;
  background: var(--ink);
  color: #0a0a0e;
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: .12em;
  border: 1px solid var(--gold-soft);
  transition: transform .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

.cta-strip-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.cta-strip-btn .free {
  font-family: var(--en);
  font-weight: 700;
  font-style: italic;
  font-size: 11px;
  letter-spacing: .22em;
  padding: 4px 8px;
  background: var(--wine);
  color: #fff;
  border-radius: 2px;
}

.cta-strip-btn .arrow {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .3s ease;
}

.cta-strip-btn .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.cta-strip-btn:hover .arrow {
  width: 44px
}

@media (max-width: 980px) {
  .cta-strip-inner {
    padding: 24px;
    gap: 20px;
    flex-direction: column;
    align-items: stretch
  }

  .cta-strip-lede {
    font-size: 24px;
    gap: 8px
  }

  .cta-strip-lede .dash {
    font-size: 20px
  }

  .cta-strip-lede .venue {
    font-size: 12px;
    margin-left: 0;
    width: 100%
  }

  .cta-strip-btn {
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: stretch;
}

.intro-visual {
  position: relative;
  overflow: hidden;
  background: #000;
  min-height: 100%;
  align-self: stretch;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.22, 1, .36, 1);
}

.intro-visual:hover img {
  transform: scale(1.05)
}

.intro-visual .vtag {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 14px;
  background: rgba(237, 228, 211, .94);
  color: var(--wine);
  font-family: var(--en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.intro-text .eyebrow {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--wine);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.intro-text h2 {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--ink-dark);
  margin-bottom: 36px;
}

.intro-text h2 .accent {
  color: var(--wine)
}

.intro-text h2 .quote {
  font-family: var(--en);
  color: var(--wine-soft);
  font-style: italic;
  font-weight: 400;
}

.intro-text p {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-dark-soft);
  letter-spacing: .04em;
  margin-bottom: 18px;
}

.intro-text p b {
  color: var(--ink-dark);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(184, 85, 106, .22) 60%);
  padding: 0 2px;
}

/* ============================
   WHY NOW (SECTION 02) - DARK
============================ */
.whynow-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0c0810 100%);
}

.whynow-content {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center
}

.whynow-lede {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 64px;
  color: var(--ink);
}

.whynow-lede .accent {
  color: var(--wine-bright)
}

.whynow-lede .quote {
  font-family: var(--en);
  font-style: italic;
  color: var(--wine-soft);
  font-weight: 300
}

/* Magazine grid for 5 image cards */
.whynow-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 240px;
  gap: 14px;
  text-align: left;
  margin-bottom: 56px;
}

.whynow-card {
  position: relative;
  overflow: hidden;
  background: #1a0e10;
  border: 1px solid rgba(245, 237, 224, .06);
  cursor: default;
  isolation: isolate;
}

.whynow-card:nth-child(1) {
  grid-column: span 7;
  grid-row: 1
}

.whynow-card:nth-child(2) {
  grid-column: span 5;
  grid-row: 1
}

.whynow-card:nth-child(3) {
  grid-column: span 4;
  grid-row: 2
}

.whynow-card:nth-child(4) {
  grid-column: span 4;
  grid-row: 2
}

.whynow-card:nth-child(5) {
  grid-column: span 4;
  grid-row: 2
}

.whynow-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05) brightness(.85);
  transition: transform 1.6s cubic-bezier(.22, 1, .36, 1), filter .6s ease;
}

.whynow-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05) brightness(.9);
}

.whynow-card.img-fallback {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 112, 138, .25), transparent 60%),
    linear-gradient(135deg, #3a121d 0%, #15080c 100%);
}

.whynow-card .ovr {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 14, .15) 0%, rgba(10, 10, 14, .35) 40%, rgba(10, 10, 14, .92) 100%);
  z-index: 1;
  transition: background .4s ease;
}

.whynow-card:hover .ovr {
  background:
    linear-gradient(180deg, rgba(10, 10, 14, .10) 0%, rgba(10, 10, 14, .30) 40%, rgba(10, 10, 14, .88) 100%);
}

.whynow-card .meta {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1px solid var(--gold-soft);
  padding-left: 12px;
}

.whynow-card .meta .num {
  font-family: var(--en);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: .02em;
}

.whynow-card .meta .en {
  font-family: var(--en);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: .28em;
  color: rgba(245, 237, 224, .78);
  text-transform: uppercase;
}

.whynow-card .ttl {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
}

.whynow-card .ttl h4 {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .4);
}

.whynow-card:nth-child(1) .ttl h4,
.whynow-card:nth-child(2) .ttl h4 {
  font-size: 30px;
}

.whynow-card .ttl p {
  font-family: var(--sans-jp);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(245, 237, 224, .82);
  padding-top: 10px;
  border-top: 1px solid rgba(232, 212, 160, .25);
  max-width: 90%;
}

.whynow-card:nth-child(1) .ttl p,
.whynow-card:nth-child(2) .ttl p {
  font-size: 14px;
  max-width: 80%;
}

.whynow-foot {
  font-family: var(--serif-jp);
  font-size: 18px;
  line-height: 2;
  color: var(--ink-soft);
  letter-spacing: .04em;
  margin-top: 8px;
}

.whynow-foot b {
  color: var(--ink);
  font-weight: 700
}

.whynow-foot b .accent {
  color: var(--gold-soft)
}

/* ============================
   STATS - CREAM
============================ */
.stats-lead {
  font-family: var(--sans-jp);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-dark-soft);
  max-width: 580px;
  margin-bottom: 56px;
  letter-spacing: .04em;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  container-type: inline-size;
}

.stat {
  padding: 8px 48px 8px 0;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.stat:last-child {
  border-right: none;
  padding-right: 0
}

.stat:not(:first-child) {
  padding-left: 48px
}

.stat-label {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--wine);
  text-transform: uppercase;
}

.stat-label-jp {
  display: block;
  font-family: var(--sans-jp);
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-dark);
  letter-spacing: .18em;
  margin-top: 6px;
}

.stat-number {
  font-family: var(--en);
  font-weight: 800;
  font-size: clamp(56px, 8.4cqi, 144px);
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink-dark);
  margin: 18px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-variant-numeric: lining-nums;
  white-space: nowrap;
  min-width: 0;
}

.stat-number .unit {
  font-family: var(--sans-jp);
  font-weight: 700;
  font-size: .22em;
  letter-spacing: .04em;
  color: var(--ink-dark-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-prev {
  font-family: var(--sans-jp);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-dark-muted);
  letter-spacing: .08em;
  padding-top: 14px;
  border-top: 1px solid rgba(21, 21, 28, .1);
  margin-top: auto;
}

.stat-prev em {
  font-family: var(--en);
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-right: 8px;
}

/* ============================
   WHY VISIT (SECTION 04) - WINE BURGUNDY
   Typographic ledger / editorial rows
============================ */
.whyvisit-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 760px;
  margin: -16px auto 56px;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: .18em;
  color: var(--gold-soft);
}

.whyvisit-sub .wv-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 212, 160, .55), transparent);
}

.whyvisit-sub .wv-sub-jp {
  flex-shrink: 0
}

.whyvisit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(232, 212, 160, .28);
}

.wv-row {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr 200px;
  gap: 48px;
  align-items: center;
  padding: 56px 32px 56px 32px;
  border-bottom: 1px solid rgba(232, 212, 160, .28);
  overflow: hidden;
  isolation: isolate;
  transition: background .4s ease, box-shadow .5s cubic-bezier(.22, 1, .36, 1);
}

.wv-row h3 {
  text-align: left;
}

.wv-row::after {
  /* background image layer */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  /* background-image は下の nth-child ルールで個別指定 */
  background-size: cover;
  background-position: center;
  filter: saturate(.75) contrast(1.05) brightness(.92);
  transform: scale(1.01);
  transition: transform 1.8s cubic-bezier(.22, 1, .36, 1), filter .6s ease;
}

.wv-row:hover::after {
  transform: scale(1.06);
  filter: saturate(.9) contrast(1.05) brightness(.95);
}

.wv-row:nth-child(even)::after {
  transform: scaleX(-1) scale(1.01);
}

.wv-row:nth-child(even):hover::after {
  transform: scaleX(-1) scale(1.06);
  filter: saturate(.9) contrast(1.05) brightness(.95);
}

/* 背景画像：CSSファイル(common/css/)を基準とした相対パスで直接指定 */
.wv-row:nth-child(1)::after {
  background-image: url('../img/wine2026/visit_01.webp');
}

.wv-row:nth-child(2)::after {
  background-image: url('../img/wine2026/visit_02.webp');
}

.wv-row:nth-child(3)::after {
  background-image: url('../img/wine2026/visit_03.webp');
}

.wv-row:nth-child(4)::after {
  background-image: url('../img/wine2026/visit_04.webp');
}

.wv-row:nth-child(even) h3 {
  text-align: right;
}

.wv-row>* {
  position: relative;
  z-index: 1
}

.wv-row::before {
  /* dark gradient overlay for legibility */
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(20, 6, 10, .72) 0%,
      rgba(20, 6, 10, .55) 38%,
      rgba(20, 6, 10, .32) 65%,
      rgba(20, 6, 10, .18) 100%),
    linear-gradient(180deg,
      rgba(107, 29, 42, .12) 0%,
      rgba(20, 6, 10, .18) 100%);
  transition: opacity .4s ease;
}

/* alternating rows mirror the gradient — keeps things visually rhythmic */
.wv-row:nth-child(even)::before {
  background:
    linear-gradient(270deg,
      rgba(20, 6, 10, .32) 0%,
      rgba(20, 6, 10, .48) 38%,
      rgba(20, 6, 10, .62) 70%,
      rgba(20, 6, 10, .74) 100%),
    linear-gradient(180deg,
      rgba(107, 29, 42, .12) 0%,
      rgba(20, 6, 10, .18) 100%);
}

.wv-row:nth-child(even) {
  grid-template-columns: 200px 1fr 180px;
}

.wv-row:nth-child(even) .wv-numeral {
  order: 3;
  padding-left: 0;
  padding-right: 8px;
  text-align: right;
}

#lp-wine .wv-row:nth-child(even) .wv-content {
  order: 2;
  text-align: right
}

.wv-row:nth-child(even) .wv-content .wv-p {
  margin-left: auto
}

#lp-wine .wv-row:nth-child(even) h3.wv-h {
  text-align: right;

}

.wv-row:nth-child(even) .wv-takeaway {
  order: 1;
  justify-self: start;
  align-items: flex-start;
}

.wv-row:nth-child(even) .wv-take-jp {
  text-align: left
}

.wv-row::marker {
  display: none
}

.wv-row:hover {
  box-shadow: inset 3px 0 0 0 var(--gold-soft)
}

.wv-row:nth-child(even):hover {
  box-shadow: inset -3px 0 0 0 var(--gold-soft)
}

.wv-numeral {
  font-family: var(--en);
  font-style: italic;
  font-weight: 200;
  font-size: 120px;
  line-height: .85;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-soft);
  text-stroke: 1px var(--gold-soft);
  padding-left: 8px;
}

.wv-content {
  min-width: 0
}

.wv-en-label {
  font-family: var(--en);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
}

h3.wv-h {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: .03em;
  color: var(--ink);
  margin: 0 0 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}

.wv-p {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: rgba(245, 237, 224, .92);
  max-width: 560px;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .4);
}

.wv-takeaway {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  padding: 18px 22px;
  border: 1px solid rgba(232, 212, 160, .42);
  background: rgba(10, 4, 8, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  min-width: 180px;
}

.wv-take-en {
  font-family: var(--en);
  font-style: italic;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, .55);
}

.wv-take-jp {
  font-family: var(--sans-jp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--gold-soft);
  border-top: 1px solid rgba(232, 212, 160, .25);
  padding-top: 8px;
  width: 100%;
  text-align: right;
}

/* ============================
   TASAKI (SECTION 04) - DARK
============================ */
.tasaki-section {
  background: #0a0a0e;
  padding: 140px var(--pad-x);
  position: relative;
  overflow: hidden;
}

.tasaki-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wine-soft), transparent);
  opacity: .55;
}

.tasaki-bg-deco {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(107, 29, 42, .32) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.tasaki-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 80px;
}

.tasaki-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(107, 29, 42, .45), transparent 65%),
    linear-gradient(180deg, #0a0a0e 0%, #15080c 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.tasaki-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 237, 224, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 237, 224, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 60%, #000 0%, transparent 70%);
}

.tasaki-visual .portrait {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .55));
}

.tasaki-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--gold-soft);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: rgba(10, 10, 14, .55);
  backdrop-filter: blur(4px);
}

.tasaki-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--ink-muted);
  line-height: 1.6;
  text-align: right;
}

.tasaki-badge b {
  display: block;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .12em;
  margin-bottom: 2px;
}

.tasaki-text .eyebrow {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--wine-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.tasaki-text h2 {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.35;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 28px;
}

.tasaki-text h2 .wine {
  color: var(--wine-bright)
}

.tasaki-text h2 .quote {
  font-family: var(--en);
  font-style: italic;
  color: var(--wine-soft);
  font-weight: 300;
}

.tasaki-text .lead {
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.tasaki-text .lead b {
  color: var(--ink);
  font-weight: 500
}

.tasaki-name {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--ink-muted);
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.tasaki-name b {
  display: inline-block;
  font-size: 20px;
  color: var(--ink);
  font-weight: 700;
  margin-right: 10px;
  letter-spacing: .1em;
}

.tasaki-name em {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--gold-soft);
  text-transform: uppercase;
  margin-left: 8px;
}

/* Two methods */
.methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
}

.method {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: rgba(20, 18, 14, .45);
  position: relative;
}

.method-num {
  position: absolute;
  top: -11px;
  left: 32px;
  background: #0a0a0e;
  padding: 0 12px;
  font-family: var(--en);
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .28em;
  color: var(--gold-soft);
  text-transform: uppercase;
}

.method .en-title {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .3em;
  color: var(--wine-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.method h3 {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 23px;
  letter-spacing: .04em;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 14px;
}

.method .theme {
  font-family: var(--serif-jp);
  font-size: 13px;
  color: var(--gold-soft);
  margin-bottom: 18px;
  letter-spacing: .06em;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}

.method p {
  font-size: 14px;
  line-height: 2;
  color: var(--ink-soft);
}

/* ============================
   PAIRINGS (SECTION 05) - CREAM
============================ */
.pairings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pairing-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 28, .06);
  transition: transform .5s cubic-bezier(.22, 1, .36, 1), box-shadow .5s ease;
}

.pairing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(21, 21, 28, .10);
}

.pairing-card .img-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232, 212, 160, .18), transparent 60%),
    linear-gradient(135deg, #2a1a14 0%, #1a0e10 100%);
  position: relative;
}

.pairing-card .img-wrap.img-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232, 212, 160, .22), transparent 55%),
    linear-gradient(135deg, #3a1f16 0%, #1a0e10 100%);
}

.pairing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22, 1, .36, 1);
}

.pairing-card:hover img {
  transform: scale(1.06)
}

.pairing-card .img-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .4));
}

.pairing-card .body {
  padding: 26px 26px 30px
}

.pairing-card .num {
  font-family: var(--en);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .28em;
  color: var(--wine);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pairing-card .num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-dark);
}

.pairing-card .dish {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: .02em;
  line-height: 1.5;
  color: var(--ink-dark);
  margin-bottom: 12px;
}

.pairing-card .dish .x {
  color: var(--wine);
  font-style: italic;
  font-family: var(--en);
  font-weight: 400;
  margin: 0 8px;
  font-size: 16px;
}

.pairing-card .desc {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-dark-soft);
  letter-spacing: .02em;
}

.pairings-note {
  margin-top: 32px;
  text-align: right;
  font-size: 12px;
  color: var(--ink-dark-muted);
  letter-spacing: .1em;
}

/* ============================
   AUDIENCE (SECTION 06) - DARK
============================ */
.audience-section {
  padding: var(--pad-y) var(--pad-x);
  background: var(--bg);
  text-align: center;
}

.audience-section .section-head {
  justify-content: center;
  border: none;
  margin-bottom: 56px;
  padding-bottom: 0;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.audience-chip {
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .16em;
  padding: 14px 26px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all .3s ease;
  cursor: default;
}

.audience-chip:hover {
  background: var(--wine-deep);
  border-color: var(--wine-soft);
}

.audience-list .audience-chip:nth-child(odd) {
  color: var(--wine-bright);
  border-color: var(--line-wine);
}

/* ============================
   FINAL CTA - DARK
============================ */
.cta-section {
  position: relative;
  padding: 140px var(--pad-x) 64px;
  overflow: hidden;
  background: #000;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: contrast(1.1);
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 14, 0%) 0%, rgba(10, 10, 14, .96) 100%);
}

.cta-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center
}

.cta-eyebrow {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .32em;
  color: var(--wine-soft);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-free {
  display: inline-block;
  margin-bottom: 24px;
  background: transparent;
  border: 1px solid var(--wine-soft);
  color: var(--wine-bright);
  padding: 8px 18px;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 600;
}

h2.cta-title {
  font-family: var(--sans-jp);
  font-weight: 900;
  font-size: 46px;
  line-height: 1.45;
  letter-spacing: .02em;
  margin-bottom: 14px;
  color: var(--ink);
  text-align: center !important;
}

.cta-title .accent {
  color: var(--wine-bright)
}

.cta-title .quote {
  font-family: var(--en);
  font-style: italic;
  color: var(--wine-soft);
  font-weight: 300
}

.cta-sub {
  font-family: var(--serif-jp);
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 22px 56px;
  background: var(--crimson);
  color: #fff;
  font-family: var(--serif-jp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .18em;
  cursor: pointer;
  transition: background .3s ease;
}

a.cta-button {
  color: #fff;
}

.cta-button:hover {
  background: #8b2422
}

.cta-button .arrow {
  width: 32px;
  height: 1px;
  background: #fff;
  position: relative;
  transition: width .3s ease;
}

.cta-button .arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.cta-button:hover .arrow {
  width: 44px
}

.cta-en {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .7;
}

.event-info {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.info-item .label {
  font-family: var(--en);
  font-style: italic;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--wine-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-item .value {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  letter-spacing: .04em;
  font-weight: 500;
}

.info-item .value small {
  display: block;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

/* ============================
   FOOTER
============================ */
footer {
  background: #000;
  padding: 36px var(--pad-x);
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--ink-muted);
}

footer .ft-title {
  font-family: var(--serif-jp);
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: .1em;
  font-size: 12px;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 980px) {
  :root {
    --pad-x: 24px;
    --pad-y: 80px;
    --hero-cols: 1fr;
    --tasaki-fig-h: 96%;
    --tasaki-fig-r: -8%;
    --tasaki-fig-o: 1;
    --hero-pour-o: .55;
  }

  .hero {
    max-height: none;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 30px !important;
    padding-bottom: 0 !important;
    gap: 0
  }

  .hero-grid {
    max-height: none;
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 0
  }

  .hero-visual {
    display: none
  }

  .hero-content {
    padding: 28px 20px 16px
  }

  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 12px
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 14px
  }

  .hero-lede {
    font-size: 24px;
    margin-bottom: 14px
  }

  .hero-body {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 16px
  }

  .hero-tags {
    gap: 6px
  }

  .hero-tag {
    font-size: 11px;
    padding: 5px 10px
  }

  .tasaki-figure {
    position: relative;
    bottom: -15px;
    right: auto;
    width: 65%;
    max-width: 100% !important;
    object-fit: contain;
    object-position: bottom right;
    display: block;
    margin: 0 0 0 auto;
    padding: 0;
    line-height: 0;
    font-size: 0;
  }

  .section-title-jp,
  .intro-text h2,
  .tasaki-text h2,
  .whynow-lede,
  .cta-title,
  .hero-lede {
    font-size: 32px;
  }

  .tasaki-quote {
    right: 24px;
    top: auto;
    bottom: 24px;
    text-align: right;
    max-width: 60%;
  }

  .tasaki-quote .q-text {
    font-size: 16px
  }

  .tasaki-quote .q-sig {
    font-size: 18px
  }

  .tasaki-credit {
    left: 24px;
    bottom: 18px
  }

  .section-head {
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px
  }

  .section-title-en {
    margin-left: 0;
    width: 100%;
    font-size: 13px
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start
  }

  .intro-visual {
    aspect-ratio: 4/5;
    min-height: auto
  }

  .whynow-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
    gap: 10px;
  }

  .whynow-card:nth-child(1) {
    grid-column: span 2;
    grid-row: 1
  }

  .whynow-card:nth-child(2) {
    grid-column: span 1;
    grid-row: 2
  }

  .whynow-card:nth-child(3) {
    grid-column: span 1;
    grid-row: 2
  }

  .whynow-card:nth-child(4) {
    grid-column: span 1;
    grid-row: 3
  }

  .whynow-card:nth-child(5) {
    grid-column: span 1;
    grid-row: 3
  }

  .whynow-card .ttl h4,
  .whynow-card:nth-child(1) .ttl h4,
  .whynow-card:nth-child(2) .ttl h4 {
    font-size: 20px
  }

  .whynow-card .ttl p {
    font-size: 12px
  }

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

  .stat {
    padding: 28px 0;
    border-right: none;
    border-bottom: 1px solid var(--line-dark)
  }

  .stat:last-child {
    border-bottom: none
  }

  .stat:not(:first-child) {
    padding-left: 0
  }

  .whyvisit-list {
    max-width: none
  }

  .wv-row,
  .wv-row:nth-child(even) {
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 32px 16px;
  }

  .wv-row:nth-child(even) .wv-numeral {
    order: 1;
    padding-left: 8px;
    padding-right: 0;
    text-align: left
  }

  .wv-row:nth-child(even) .wv-content {
    order: 2;
    text-align: left
  }

  .wv-row:nth-child(even) .wv-content .wv-p {
    margin-left: 0
  }

  .wv-row:nth-child(even) .wv-takeaway {
    order: 3;
    justify-self: stretch;
    align-items: center
  }

  .wv-row:nth-child(even) .wv-take-jp {
    text-align: left
  }

  .wv-row:nth-child(even)::before {
    background:
      linear-gradient(90deg,
        rgba(20, 6, 10, .92) 0%,
        rgba(20, 6, 10, .78) 38%,
        rgba(20, 6, 10, .55) 65%,
        rgba(20, 6, 10, .40) 100%),
      linear-gradient(180deg,
        rgba(107, 29, 42, .20) 0%,
        rgba(20, 6, 10, .30) 100%);
  }

  .wv-row:nth-child(even):hover {
    box-shadow: inset 3px 0 0 0 var(--gold-soft)
  }

  .wv-numeral {
    font-size: 78px
  }

  h3.wv-h {
    font-size: 24px
  }

  .wv-p {
    font-size: 13.5px;
    line-height: 1.8
  }

  .wv-takeaway {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    min-width: 0;
  }

  .wv-take-jp {
    border-top: none;
    border-left: 1px solid rgba(232, 212, 160, .25);
    padding: 0 0 0 14px;
    font-size: 15px;
    width: auto;
    text-align: left;
  }

  .whyvisit-sub {
    font-size: 15px;
    gap: 14px;
    margin-bottom: 36px
  }

  .tasaki-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start
  }

  .tasaki-visual {
    height: 480px
  }

  .methods {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .pairings-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .audience-chip {
    font-size: 13px;
    padding: 11px 18px
  }

  .cta-button {
    padding: 18px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center
  }

  .event-info {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 56px
  }

  .ribbon {
    padding: 10px 16px;
    font-size: 11px
  }

  .ribbon-event {
    font-size: 11px
  }

  .ribbon-date {
    font-size: 13px
  }
}

@media (max-width: 480px) {
  .wv-row {
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 32px 16px;
  }

  .tasaki-visual {
    height: 340px
  }

  .wv-numeral {
    font-size: 40px
  }

  h3.wv-h {
    font-size: 20px
  }

  .wv-p {
    font-size: 12.5px
  }

  .hero-content {
    padding: 22px 16px 16px
  }

  .hero-title {
    font-size: 40px;
    margin-bottom: 10px
  }

  .hero-lede {
    font-size: 21px;
    margin-bottom: 12px
  }

  .hero-body {
    font-size: 12.5px;
    margin-bottom: 14px
  }

  .tasaki-figure {
    height: 220px
  }

  .whynow-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .whynow-card:nth-child(n) {
    grid-column: 1;
    grid-row: auto
  }

  .section-title-jp,
  .intro-text h2,
  .tasaki-text h2,
  .whynow-lede,
  .cta-title,
  .hero-lede {
    font-size: 26px !important;
  }
}