:root {
  --bg: #fbf6ee;
  --paper: #fffdf8;
  --paper-soft: #fbf1e4;
  --ink: #3a2519;
  --muted: #806453;
  --line: #d1ad73;
  --line-soft: rgba(177, 136, 73, 0.26);
  --burgundy: #8e1f24;
  --burgundy-dark: #74171b;
  --gold: #a98242;
  --shadow: 0 28px 70px rgba(61, 38, 18, 0.12);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 6%, rgba(244, 218, 170, 0.35), transparent 30%),
    radial-gradient(circle at 95% 92%, rgba(204, 153, 88, 0.20), transparent 30%),
    var(--bg);
  font-family: "Noto Serif JP", serif;
  line-height: 1.75;
  letter-spacing: .03em;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.sp-only { display: none; }

.nowrap {
  white-space: nowrap;
}

.hero-names {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 .28em;
  white-space: normal;
}
.hero-names > span {
  white-space: nowrap;
}
.hero-names .amp {
  font-size: .82em;
  color: var(--muted);
}
.hero-title-sub {
  display: block;
}
.hero-names--final {
  display: inline-flex;
  justify-content: center;
}
.button-label {
  display: grid;
  gap: 1px;
  text-align: center;
  line-height: 1.18;
}
.button-label > span {
  font-size: 1em;
  line-height: 1.2;
  font-weight: 700;
}
.button-label small {
  display: block;
  margin-top: 2px;
  font-size: .44em;
  letter-spacing: .04em;
  font-weight: 500;
  opacity: .62;
}



.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 246, 238, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(177, 136, 73, .20);
}
.site-header__brand {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.site-nav {
  display: flex;
  gap: clamp(14px, 2.3vw, 32px);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: .08em;
  color: var(--muted);
}
.site-nav a {
  text-decoration: none;
  font-size: 18px;
}
.site-nav a:hover { color: var(--burgundy); }

.section {
  position: relative;
  width: min(var(--container), calc(100% - clamp(32px, 7vw, 96px)));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 128px) 0;
}
.section::before,
.section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid var(--line-soft);
  opacity: .8;
}
.section::before {
  width: 220px;
  height: 220px;
  left: -96px;
  top: 58px;
  border-radius: 50%;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.section::after {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: 52px;
  border-radius: 50%;
  border-left-color: transparent;
  border-top-color: transparent;
}

/* HERO */
.hero {
  min-height: calc(100svh - 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .92fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
  padding: clamp(42px, 5vw, 64px);
  margin-top: clamp(22px, 3vw, 42px);
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(249, 241, 229, .92));
  border: 1px solid rgba(177, 136, 73, .28);
  box-shadow: var(--shadow);
}
.hero__visual {
  min-height: 560px;
  height: min(72vh, 720px);
  overflow: hidden;
  border-radius: 48px 48px 48px 0;
  border: 1px solid rgba(177, 136, 73, .34);
  background: var(--paper-soft);
  box-shadow: 0 22px 54px rgba(72, 44, 20, .14);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.98) contrast(.98) brightness(1.03);
}
.hero__content {
  max-width: 650px;
}
.eyebrow {
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  color: var(--gold);
  font-size: clamp(14px, 1.35vw, 19px);
  letter-spacing: .18em;
  white-space: nowrap;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(177, 136, 73, .8), transparent);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 3.85vw, 58px);
  line-height: 1.32;
  letter-spacing: .075em;
  font-weight: 600;
}
.divider {
  position: relative;
  width: min(420px, 70%);
  height: 1px;
  margin: 28px auto 26px;
  background: linear-gradient(90deg, transparent, rgba(177, 136, 73, .8), transparent);
}
.divider::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translateX(-50%);
  color: var(--line);
  background: var(--paper);
  padding: 0 12px;
  font-size: 14px;
}
.lead {
  margin-bottom: 34px;
  font-size: clamp(18px, 1.6vw, 23px);
  letter-spacing: .08em;
}
.event-facts {
  margin: 0 0 34px;
}
.fact {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: start;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line-soft);
}
.fact:last-child { border-bottom: 1px solid var(--line-soft); }
.fact dt {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--gold);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.fact dd {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 25px);
}
.fact small {
  display: inline-block;
  color: var(--muted);
  font-size: .72em;
}
.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-group {
  display: grid;
  gap: 14px;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 62px;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button span {
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
}
.button--primary {
  color: #fffdf8;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  box-shadow: 0 16px 30px rgba(142, 31, 36, .22);
}
.button--secondary {
  color: var(--burgundy);
  background: rgba(255, 253, 248, .72);
  border: 1px solid rgba(142, 31, 36, .55);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(61, 38, 18, .16);
}
.micro-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.micro-note:first-of-type {
  margin-top: 20px;
}

/* Common section heads */
.split-section {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}
.section-label {
  align-self: center;
  text-align: center;
  color: var(--ink);
}
.instrument-icons {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(58, 37, 25, .58);
}
.instrument-icons svg {
  width: 54px;
  height: 54px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.15;
}
.section-kicker {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: .08em;
}
.section-label h2,
.center-head h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: .12em;
}
.label-note {
  max-width: 260px;
  margin: 46px auto 0;
  color: var(--burgundy);
  font-size: 13px;
  text-align: left;
}
.center-head {
  margin-bottom: clamp(36px, 5vw, 64px);
  text-align: center;
}
.center-head .section-kicker {
  margin-bottom: 8px;
}
.center-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}
.center-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--line);
}

/* About */
.about-copy {
  max-width: 820px;
}
.about-copy .statement {
  margin-bottom: 30px;
  padding-top: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 2.15;
  letter-spacing: .03em;
}
.about-copy p:not(.statement):not(.closing) {
  max-width: 780px;
  margin-bottom: 30px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 2.15;
}
.about-copy .closing {
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 2;
}

/* Artists */
.artists-section {
  width: min(1180px, calc(100% - clamp(32px, 7vw, 96px)));
}
.artist-card {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(20px, 2vw, 28px) 0;
}
.artist-card + .artist-card {
  margin-top: 36px;
  padding-top: 58px;
  border-top: 1px solid var(--line-soft);
}
.artist-card__image {
  overflow: hidden;
  border-radius: 52px 52px 52px 0;
  border: 1px solid rgba(177,136,73,.30);
  background: var(--paper);
  box-shadow: 0 20px 46px rgba(67, 42, 20, .12);
}
.artist-card__image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center top;
  background: #fffdf8;
}
.artist-card h3 {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
  font-size: clamp(34px, 3.6vw, 54px);
  line-height: 1.25;
  letter-spacing: .14em;
}
.artist-card h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.role {
  margin-bottom: 24px;
  color: var(--burgundy);
  font-size: clamp(17px, 1.35vw, 22px);
  letter-spacing: .08em;
}
.artist-card p:not(.role) {
  margin-bottom: 18px;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 2.05;
}

/* Program */
.program-list {
  display: grid;
  gap: 0;
}
.program-item {
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line-soft);
}
.program-title {
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.65;
}
.program-title span {
  display: block;
  color: var(--muted);
  font-size: .78em;
  letter-spacing: .10em;
}
.program-title strong {
  font-weight: 500;
  letter-spacing: .08em;
}
.program-title small {
  margin-left: .7em;
  color: var(--muted);
  font-size: .68em;
}
.program-title em {
  display: block;
  margin-top: 6px;
  color: #9a765a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(16px, 1.35vw, 21px);
  letter-spacing: .06em;
  font-style: italic;
}
.program-note {
  margin: 28px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* Ticket */
.ticket-body {
  max-width: 760px;
  margin: 0 auto;
}
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}
.price-card {
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(177,136,73,.52);
  border-radius: 16px;
  background: rgba(255,253,248,.72);
}
.price-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
}
.price-card strong {
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.1;
}
.seat-note {
  margin: 0 0 30px;
  text-align: center;
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: .12em;
}
.ticket-cta {
  max-width: 640px;
  margin: 0 auto;
}
.lcode {
  margin: 26px 0 10px;
  text-align: center;
  font-size: 18px;
  color: var(--muted);
}

/* Venue */
.venue-card {
  display: grid;
  grid-template-columns: minmax(350px, .75fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(177,136,73,.34);
  border-radius: 26px;
  background: rgba(255,253,248,.62);
  box-shadow: 0 18px 42px rgba(61,38,18,.07);
}
.venue-info h3 {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: clamp(30px, 2.7vw, 42px);
  line-height: 1.3;
  letter-spacing: .06em;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}
.address {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}
.access-title {
  margin-bottom: 18px;
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}
.access-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.access-block li {
  position: relative;
  padding: 0 0 22px 20px;
  border-left: 1px solid var(--line-soft);
  font-size: 18px;
  line-height: 1.8;
}
.access-block li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--line);
}
.access-block li span {
  display: block;
  color: var(--muted);
  font-size: .84em;
}
.venue-map {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line-soft);
  background: #fffdf8;
}
.venue-map img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

/* Flyer */
.flyer-section .center-head {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.flyer-section .center-head p:not(.section-kicker) {
  margin-top: 24px;
  font-size: 17px;
}
.flyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}
.flyer-grid figure {
  margin: 0;
}
.flyer-grid figcaption {
  margin-bottom: 14px;
  padding: 8px 18px;
  display: inline-block;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255,253,248,.72);
  color: var(--muted);
  font-size: 14px;
}
.flyer-grid img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(177,136,73,.28);
  box-shadow: 0 20px 46px rgba(61, 38, 18, .12);
}
.flyer-note {
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 13px;
}
.button--download {
  width: min(520px, 100%);
  margin: 0 auto;
}

/* Final */
.final-cta {
  padding-bottom: 80px;
}
.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: clamp(34px, 5vw, 66px);
  border-radius: 28px;
  border: 1px solid rgba(177,136,73,.34);
  background: linear-gradient(135deg, rgba(255,253,248,.98), rgba(249,241,229,.92));
  box-shadow: var(--shadow);
}
.final-card h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.35;
  letter-spacing: .08em;
}
.final-eyebrow {
  display: block;
  color: var(--gold);
}
.final-eyebrow::before,
.final-eyebrow::after { display: none; }
.final-summary {
  color: var(--muted);
  font-size: 18px;
}

/* Footer */
.site-footer {
  padding: 36px 20px 54px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line-soft);
}
.site-footer p { margin: 4px 0; }

/* Responsive */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .site-header {
    justify-content: center;
    padding: 12px 18px;
  }
  .section {
    width: min(100% - 32px, 760px);
    padding: 66px 0;
  }
  .section::before,
  .section::after { opacity: .32; }
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 18px;
    border-radius: 26px;
    min-height: auto;
  }
  .hero__visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.15 / 1;
    border-radius: 24px 24px 24px 0;
  }
  .hero__content {
    max-width: none;
    padding: 8px 10px 18px;
  }
  .sp-only { display: block; }
  .eyebrow {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    white-space: normal;
  }
  .eyebrow::before,
  .eyebrow::after { display: none; }
  h1 {
    text-align: center;
    font-size: clamp(32px, 9vw, 48px);
    letter-spacing: .05em;
  }
  .divider {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .lead {
    text-align: center;
    font-size: 18px;
  }
  .event-facts {
    margin-top: 28px;
  }
  .fact {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 13px 0;
  }
  .fact dd {
    font-size: 18px;
  }
  .button {
    min-height: 58px;
    padding: 14px 20px;
    font-size: 15px;
  }
  .split-section,
  .artist-card,
  .artist-card--reverse,
  .venue-card,
  .final-card {
    grid-template-columns: 1fr;
  }
  .section-label {
    margin-bottom: 8px;
  }
  .section-kicker {
    font-size: 46px;
  }
  .label-note {
    max-width: none;
    margin: 22px auto 0;
    text-align: center;
  }
  .hero-names {
    justify-content: center;
  }
  .about-copy .statement {
    font-size: 16px;
    text-align: left;
    line-height: 2.1;
  }
  .about-copy p:not(.statement):not(.closing),
  .about-copy .closing {
    font-size: 16px;
    line-height: 2.1;
  }
  .about-copy .closing {
    text-align: center;
  }
  .artist-card__image img {
    height: auto;
    max-height: 520px;
  }
  .artist-card h3 {
    font-size: 34px;
  }
  .artist-card h3::after { display: none; }
  .program-item {
    padding: 15px 0;
  }
  .program-title {
    font-size: 16px;
  }
  .program-title em {
    font-size: 17px;
  }
  .price-cards {
    grid-template-columns: 1fr;
  }
  .venue-card {
    padding: 24px;
  }
  .flyer-grid {
    grid-template-columns: 1fr;
  }
  .final-card {
    text-align: center;
  }
}
@media (max-width: 520px) {
  body {
    letter-spacing: .02em;
  }
  .section {
    width: min(100% - 24px, 520px);
    padding: 56px 0;
  }
  .site-header__brand {
    font-size: 14px;
    letter-spacing: .02em;
  }
  .hero {
    margin-top: 14px;
  }
  .hero__visual {
    aspect-ratio: .92 / 1;
  }
  .micro-note {
    font-size: 11px;
  }
  .section::before,
  .section::after {
    display: none;
  }
  .instrument-icons svg {
    width: 42px;
    height: 42px;
  }
  .section-kicker {
    font-size: 40px;
  }
  .section-label h2,
  .center-head h2 {
    font-size: 16px;
  }
  .about-copy .statement {
    font-size: 22px;
    text-align: left;
  }
  .price-card {
    padding: 22px;
  }
  .price-card strong {
    font-size: 42px;
  }
  .access-block li {
    font-size: 15px;
  }
}

@media (max-width: 520px) {
    .nowrap {
    white-space: normal;
  }
  .hero-names {
    justify-content: center;
    row-gap: 0;
  }
}

@media (max-width: 520px) {
  .venue-info h3 {
    font-size: clamp(24px, 7vw, 32px);
    letter-spacing: .03em;
    white-space: nowrap;
  }
  .button-label small {
    font-size: .42em;
  }
}

.button--secondary .button-label {
  transform: translateY(1px);
}
.button--secondary .button-label > span {
  font-size: 1em;
}
.button--secondary .button-label small {
  color: var(--muted);
}


/* v6: normalize CTA typography */
.button {
  font-size: 16px;
}
.button--primary {
  font-size: 16px;
}
.button--secondary {
  font-size: 16px;
}
.button-label {
  display: grid;
  gap: 2px;
  text-align: center;
  line-height: 1.18;
  font-size: 16px;
}
.button-label > span {
  font-size: 16px;
  line-height: 1.18;
  font-weight: 700;
}
.button-label small {
  display: block;
  margin-top: 2px;
  font-size: 9px;
  line-height: 1.15;
  letter-spacing: .04em;
  font-weight: 500;
  opacity: .62;
}
@media (max-width: 520px) {
  .button,
  .button--primary,
  .button--secondary,
  .button-label,
  .button-label > span {
    font-size: 15px;
  }
  .button-label small {
    font-size: 8.5px;
  }
}

