/* Laulude Sild — 歌の架け橋 LP
   Inspired by fumio design system; warm amber/朱 palette from poster */

:root {
  /* Light (default — poster vibe: warm cream, amber, 朱) */
  --bg: #f7f1e6;
  --bg-2: #efe6d4;
  --bg-3: #ffffff;
  --bg-warm: linear-gradient(180deg, #fbeed5 0%, #f7e2c4 35%, #f3d4a8 100%);
  --bg-soft: #fdf6e9;
  --fg: #1a1410;
  --fg-2: #5a4838;
  --fg-3: #8a7559;
  --rule: #e2d3b8;
  --rule-strong: #c9b390;
  --amber: #c08442;     /* warm amber from poster */
  --amber-2: #a86530;
  --amber-deep: #8a4a1f;
  --vermillion: #c74a3a; /* 朱 */
  --gold: #d4a04a;
  --shadow: 0 12px 40px rgba(120, 70, 30, 0.08);
  --shadow-lift: 0 24px 60px rgba(120, 70, 30, 0.18);

  /* Type */
  --serif-ja: "Shippori Mincho B1", "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", serif;
  --serif-en: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans-ja: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", ui-monospace, monospace;

  --page-x: clamp(20px, 5.5vw, 88px);
}

[data-theme="dark"] {
  --bg: #15110c;
  --bg-2: #1d1812;
  --bg-3: #251e16;
  --bg-warm: linear-gradient(180deg, #2a1f12 0%, #1d1610 50%, #15110c 100%);
  --bg-soft: #1d1812;
  --fg: #f3ead8;
  --fg-2: #c5b497;
  --fg-3: #8a7959;
  --rule: #322820;
  --rule-strong: #4a3c2c;
  --amber: #d99a55;
  --amber-2: #e2a866;
  --amber-deep: #f0bc7e;
  --vermillion: #e26350;
  --gold: #e6b85a;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-lift: 0 24px 60px rgba(0, 0, 0, 0.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans-ja);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: var(--amber); color: var(--bg-3); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--page-x);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--rule); padding-top: 12px; padding-bottom: 12px; }

.nav-brand {
  display: flex; align-items: baseline; gap: 12px;
}
.nav-brand .ja {
  font-family: var(--serif-ja); font-weight: 500;
  font-size: 17px; letter-spacing: 0.05em; color: var(--fg);
}
.nav-brand .en {
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; color: var(--amber-2); letter-spacing: 0.02em;
}

.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
}
.nav-links a {
  color: var(--fg-2); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--amber);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }

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

.theme-toggle {
  appearance: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-3) 70%, transparent);
  color: var(--amber-deep);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
}
.theme-toggle:hover {
  border-color: var(--amber);
  background: color-mix(in srgb, var(--amber) 12%, var(--bg-3));
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.theme-toggle-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.theme-toggle-icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dotted currentColor;
  opacity: 0.75;
  transition: opacity 0.25s, transform 0.25s;
}
[data-theme="dark"] .theme-toggle-icon {
  background: transparent;
  box-shadow: inset -5px -4px 0 1px currentColor;
  transform: rotate(-20deg);
}
[data-theme="dark"] .theme-toggle-icon::before {
  opacity: 0;
  transform: scale(0.65);
}

.nav-cta {
  font-family: var(--sans-ja);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--amber-deep); color: #fff; transform: translateY(-1px); }
.nav-cta .arrow { font-family: var(--serif-en); font-style: italic; transition: transform 0.2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-actions { gap: 8px; }
  .theme-toggle { width: 38px; height: 38px; }
  .nav-cta { padding: 9px 14px; font-size: 11px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(120px, 18vh, 200px) var(--page-x) clamp(60px, 10vw, 120px);
  background: var(--bg-warm);
  overflow: hidden;
  isolation: isolate;
}

/* Soft amber glow blobs */
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.5; z-index: -1;
  pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--vermillion) 0%, transparent 70%);
  bottom: -180px; left: -120px;
  opacity: 0.25;
}

.hero-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  display: flex; gap: 20px; align-items: center;
  margin-bottom: 28px;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--amber-2); }

.hero-supertitle {
  font-family: var(--serif-ja);
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.18em;
  color: var(--fg-2);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 6px;
  position: relative;
}
.hero-title .word {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber-deep) 0%, var(--amber) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .drop {
  font-size: 1.15em;
  font-style: normal;
  vertical-align: -0.02em;
}
.hero-title .ampersand {
  font-style: italic;
  color: var(--amber);
  font-size: 0.7em;
  margin: 0 0.05em;
  opacity: 0.7;
}

.hero-subtitle {
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-top: 8px;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.hero-subtitle .accent { color: var(--amber-deep); font-style: italic; font-family: var(--serif-en); margin: 0 0.2em; }

/* Score / staff lines that animate in */
.hero-score {
  position: absolute;
  left: -3%; right: -3%;
  top: 52%;
  height: 220px;
  z-index: -1;
  opacity: 0.85;
  pointer-events: none;
}
.hero-score svg { width: 100%; height: 100%; overflow: visible; }
.hero-score .staff {
  stroke: var(--amber-2);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawStaff 2.5s ease-out forwards;
  opacity: 0.55;
}
.hero-score .staff:nth-child(2) { animation-delay: 0.1s; }
.hero-score .staff:nth-child(3) { animation-delay: 0.2s; }
.hero-score .staff:nth-child(4) { animation-delay: 0.3s; }
.hero-score .staff:nth-child(5) { animation-delay: 0.4s; }
.hero-score .note {
  fill: var(--amber-deep);
  opacity: 0;
  animation: noteIn 0.6s ease-out forwards;
}
.hero-score .note-stem { stroke: var(--amber-deep); stroke-width: 1.5; opacity: 0.7; }

@keyframes drawStaff {
  to { stroke-dashoffset: 0; }
}
@keyframes noteIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 0.85; transform: translateY(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-top: clamp(40px, 6vw, 80px);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

.hero-info {
  display: flex; flex-direction: column; gap: 28px;
}
.hero-tagline {
  font-family: var(--serif-ja);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
  color: var(--fg-2);
  max-width: 30ch;
  text-wrap: pretty;
  border-left: 2px solid var(--amber);
  padding-left: 20px;
}
.hero-tagline .em { color: var(--amber-deep); font-weight: 500; }
.hero-tagline-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-3);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.hero-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-top: 8px;
}
.btn-primary {
  font-family: var(--sans-ja);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  background: var(--fg);
  color: var(--bg);
  padding: 18px 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--amber-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-primary .arrow { font-family: var(--serif-en); font-style: italic; transition: transform 0.25s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  font-family: var(--sans-ja);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--fg-2);
  text-decoration: none;
  padding: 16px 22px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
  background: transparent;
}
.btn-ghost:hover { color: var(--fg); border-color: var(--fg); }

/* Hero side card — date + venue */
.hero-card {
  background: color-mix(in srgb, var(--bg-3) 70%, transparent);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(10px);
  position: relative;
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: ""; position: absolute; top: -1px; left: 24px;
  width: 80px; height: 2px; background: var(--amber);
}
.hero-card .label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
}
.hero-card .date-big {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  color: var(--fg);
  margin-bottom: 4px;
}
.hero-card .date-big .month { color: var(--amber-2); font-style: italic; }
.hero-card .date-ja {
  font-family: var(--serif-ja);
  font-size: 15px;
  color: var(--fg-2);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-card .venue {
  font-family: var(--serif-ja);
  font-size: 18px;
  color: var(--fg);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.hero-card .venue-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 4px;
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-3);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 56px;
  animation: marquee 40s linear infinite;
  font-family: var(--serif-ja);
  font-size: 14px;
  color: var(--fg-2);
  letter-spacing: 0.1em;
  width: max-content;
}
.marquee-track .star {
  color: var(--amber);
  font-family: var(--serif-en); font-style: italic;
}
.marquee-track .en {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--fg-3);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ SECTION CHROME ============ */
section.block {
  padding: clamp(80px, 12vw, 160px) var(--page-x);
  position: relative;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 28px;
}
.eyebrow .num { color: var(--fg-3); }
.eyebrow .bar { width: 32px; height: 1px; background: var(--amber); }

.section-title {
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--fg);
  text-wrap: balance;
  margin-bottom: 16px;
}
.section-title .en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--amber-2);
  font-size: 0.42em;
  letter-spacing: 0.01em;
  margin-top: 14px;
  font-weight: 400;
}

.lede {
  font-family: var(--serif-ja);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 2;
  color: var(--fg-2);
  max-width: 56ch;
  text-wrap: pretty;
  margin-bottom: 24px;
}

/* ============ CONCEPT (story / 橋渡し) ============ */
.concept {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
@media (max-width: 900px) { .concept-grid { grid-template-columns: 1fr; } }

.concept-body p {
  font-family: var(--serif-ja);
  font-size: 17px;
  line-height: 2.1;
  color: var(--fg-2);
  text-wrap: pretty;
  max-width: 44ch;
}
.concept-body p + p { margin-top: 22px; }
.concept-body .signature {
  margin-top: 36px;
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--amber-deep);
  font-size: 18px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  max-width: 44ch;
}

/* Bridge map (visualizing 伊勢 ↔ Estonia) */
.bridge-map {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 40px);
}
.bridge-map::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(192, 132, 66, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(199, 74, 58, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.bridge-pin {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.bridge-pin.top { align-self: flex-end; text-align: right; }
.bridge-pin.bot { align-self: flex-start; }
.bridge-pin .coord {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--amber-deep);
}
.bridge-pin .name-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--fg);
  line-height: 1;
}
.bridge-pin .name-ja {
  font-family: var(--serif-ja);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--fg-2);
  letter-spacing: 0.05em;
}
.bridge-pin .meta {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 2px;
}
.bridge-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.bridge-line svg { display: block; }
.bridge-line .path {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  stroke-linecap: round;
}
.bridge-line .marker { fill: var(--amber-deep); }
.bridge-line .label {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  fill: var(--amber-deep);
}
.bridge-line .label-distance {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  fill: var(--fg-3);
  text-transform: uppercase;
}

/* ============ PROGRAM ============ */
.program {
  background: var(--bg);
}
.program-list {
  display: flex; flex-direction: column;
  margin-top: 40px;
}
.program-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--rule);
  position: relative;
  transition: padding 0.3s ease;
  cursor: default;
}
.program-item:last-child { border-bottom: 1px solid var(--rule); }
.program-item:hover { padding-left: 16px; }
.program-item:hover .program-num { color: var(--amber); }
.program-item:hover .program-title-ja { color: var(--amber-deep); }

.program-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--rule-strong);
  line-height: 1;
  transition: color 0.3s;
}
.program-titles { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.program-title-ja {
  font-family: var(--serif-ja);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  text-wrap: balance;
}
.program-title-en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 15px;
  color: var(--fg-3);
  line-height: 1.4;
}
.program-title-en .lang-tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  background: var(--bg-2);
  color: var(--amber-deep);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}
.program-meta {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2);
  white-space: nowrap;
  text-align: right;
  display: flex; flex-direction: column; gap: 4px;
}
.program-meta .composer {
  font-family: var(--serif-ja);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--fg);
}

@media (max-width: 700px) {
  .program-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .program-meta { grid-column: 2; text-align: left; padding-top: 8px; }
}

.program-note {
  margin-top: 36px;
  font-family: var(--serif-ja);
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.9;
  display: flex; gap: 10px; align-items: flex-start;
  padding: 16px 20px;
  background: var(--bg-soft);
  border-left: 2px solid var(--amber);
}
.program-note::before {
  content: "※";
  color: var(--amber);
  flex-shrink: 0;
}

/* ============ ENSEMBLES ============ */
.ensembles {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
}
.ensemble-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .ensemble-grid { grid-template-columns: 1fr; } }

.ensemble-card {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  overflow: hidden;
}
.ensemble-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--amber); }
.ensemble-card .corner {
  position: absolute; top: 0; right: 0;
  width: 40px; height: 40px;
  background: var(--amber);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.85;
}
.ensemble-card .country {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  display: flex; align-items: center; gap: 8px;
}
.ensemble-card .country .flag {
  width: 18px; height: 12px;
  background: var(--amber); border-radius: 1px;
  display: inline-block;
}
.ensemble-card .country .flag.jp {
  background: #fff; border: 1px solid var(--rule-strong);
  position: relative;
}
.ensemble-card .country .flag.jp::before {
  content: ""; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--vermillion);
}
.ensemble-card .country .flag.ee {
  background: linear-gradient(180deg, #0072ce 0% 33%, #1a1410 33% 66%, #fff 66% 100%);
}

.ensemble-card .name {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--fg);
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.ensemble-card .name-en {
  font-family: var(--serif-en);
  font-style: italic;
  color: var(--fg-3);
  font-size: 16px;
  margin-top: -8px;
}
.ensemble-card .desc {
  font-family: var(--serif-ja);
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--fg-2);
  text-wrap: pretty;
  flex: 1;
}
.ensemble-card .stat-row {
  display: flex; gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
}
.ensemble-card .stat-row strong {
  display: block;
  font-family: var(--serif-en);
  font-style: italic; font-weight: 400;
  font-size: 22px;
  color: var(--amber-deep);
  letter-spacing: 0;
  text-transform: none;
}

/* ============ PERFORMANCE INFO ============ */
.shows {
  background: var(--bg);
}
.shows-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 800px) { .shows-grid { grid-template-columns: 1fr; } }

.show-card {
  background: var(--bg-3);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.show-card:hover {
  border-color: var(--amber);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.show-card .show-tag {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.show-card .show-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}
.show-card .show-name {
  font-family: var(--serif-ja);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.show-card .show-name .en {
  display: block;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 0.5em;
  color: var(--fg-3);
  margin-top: 4px;
  letter-spacing: 0;
}
.show-card .show-times {
  display: flex; gap: clamp(20px, 4vw, 56px);
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.show-card .show-time {
  display: flex; flex-direction: column; gap: 2px;
}
.show-card .show-time .label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-3);
}
.show-card .show-time .time {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--fg);
  line-height: 1.1;
}
.show-card .show-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px;
  flex-wrap: wrap; gap: 12px;
}
.show-card .show-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-en); font-style: italic;
  font-size: 22px; color: var(--amber-deep);
}

/* Pricing strip */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 600px) { .pricing { grid-template-columns: 1fr; } }
.pricing-cell {
  padding: 24px clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--rule);
  background: var(--bg-3);
}
.pricing-cell:last-child { border-right: 0; }
@media (max-width: 600px) { .pricing-cell { border-right: 0; border-bottom: 1px solid var(--rule); } .pricing-cell:last-child { border-bottom: 0; } }
.pricing-cell .label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.pricing-cell .amount {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--fg);
  line-height: 1;
}
.pricing-cell .amount .yen {
  font-family: var(--serif-ja);
  font-size: 0.55em;
  color: var(--amber-deep);
  margin-left: 4px;
}
.pricing-cell .sub {
  font-family: var(--serif-ja);
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 6px;
}

/* ============ GALLERY (Estonia imagery) ============ */
.gallery-block {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
}
.gallery-block .section-head {
  padding: 0 var(--page-x);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.gallery-strip {
  display: flex;
  gap: 16px;
  padding: 0 var(--page-x);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 12px;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--rule); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }

.gallery-card {
  flex: 0 0 clamp(240px, 28vw, 360px);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1);
  filter: saturate(0.92) contrast(1.02);
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card .cap {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--serif-en); font-style: italic;
  font-size: 13px; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; gap: 2px;
}
.gallery-card .cap .pin {
  font-family: var(--mono); font-style: normal;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.gallery-card.tall { aspect-ratio: 2/3; }

/* ============ FOOTER / CTA ============ */
.cta-block {
  background: linear-gradient(135deg, #2a1810 0%, #4a2818 50%, #6a3818 100%);
  color: #f5e6d0;
  padding: clamp(80px, 12vw, 140px) var(--page-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(212, 160, 74, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(199, 74, 58, 0.25) 0%, transparent 40%);
  pointer-events: none;
}
.cta-block .eyebrow {
  color: #d4a04a;
  justify-content: center;
}
.cta-block .eyebrow .bar { background: #d4a04a; }
.cta-block .cta-title {
  font-family: var(--serif-ja);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  position: relative;
  text-wrap: balance;
}
.cta-block .cta-title .en {
  display: block;
  font-family: var(--serif-en); font-style: italic;
  font-size: 0.45em;
  color: #d4a04a;
  margin-top: 14px;
  letter-spacing: 0.02em;
}
.cta-block .cta-sub {
  font-family: var(--serif-ja);
  font-size: 16px; line-height: 2;
  color: rgba(245, 230, 208, 0.75);
  max-width: 50ch; margin: 0 auto 36px;
  text-wrap: pretty;
}
.cta-block .btn-primary {
  background: #f5e6d0;
  color: #2a1810;
  padding: 22px 40px;
  font-size: 15px;
}
.cta-block .btn-primary:hover {
  background: #fff;
  color: #2a1810;
}
.cta-block .btn-ghost {
  color: #f5e6d0;
  border-color: rgba(245, 230, 208, 0.3);
}
.cta-block .btn-ghost:hover { color: #fff; border-color: #fff; }

.footer {
  background: #1a0f08;
  color: rgba(245, 230, 208, 0.6);
  padding: 56px var(--page-x) 36px;
  display: flex; flex-direction: column; gap: 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .ja {
  font-family: var(--serif-ja);
  font-size: 22px;
  color: #f5e6d0;
  margin-bottom: 4px;
}
.footer-brand .en {
  font-family: var(--serif-en); font-style: italic;
  color: #c08442;
  font-size: 14px;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #c08442;
  font-weight: 400;
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-family: var(--serif-ja);
  font-size: 13px; line-height: 1.9;
  color: rgba(245, 230, 208, 0.7);
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: #f5e6d0; }
.footer-bottom {
  border-top: 1px solid rgba(245, 230, 208, 0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245, 230, 208, 0.4);
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Note hover spark */
.note-hover { transition: transform 0.3s ease, fill 0.3s; cursor: pointer; }
.note-hover:hover { transform: translateY(-4px); fill: var(--vermillion); }
