/* ─── tokens ─────────────────────────────────────────────── */
:root {
  --red:        #b3171c;
  --red-deep:   #7a0d12;
  --red-soft:   #d44a48;
  --wood:       #b87a3d;
  --wood-soft:  #c79262;
  --lotus:      #faf3df;
  --lotus-2:    #f2e8cf;
  --leaf:       #2f5b3f;
  --silk-blue:  #1f5a8f;
  --ink:        #18120f;
  --ink-2:      #3a322c;
  --ink-3:      #6c5f54;
  --rule:       #d8c9ac;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Work Sans', system-ui, sans-serif;
  --mono:  'JetBrains Mono', 'Courier New', monospace;

  --container: 1320px;
}

/* ─── reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { zoom: 0.9; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--lotus);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }

/* ─── layout ─────────────────────────────────────────────── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── helpers ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.018em;
}
.display em { font-style: italic; font-weight: 400; }

/* ─── buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .arr {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1;
  transition: transform .25s ease;
}
.btn:hover .arr { transform: translateX(4px); }

.btn.solid { background: var(--ink); color: var(--lotus); border-color: var(--ink); }
.btn.solid:hover { background: var(--red); border-color: var(--red); }
.btn.cream { background: var(--lotus); color: var(--ink); border-color: var(--lotus); }
.btn.cream:hover { background: #fff; border-color: #fff; }
.btn.ghost-light { background: transparent; color: var(--lotus); border-color: rgba(250,243,223,.55); }
.btn.ghost-light:hover { border-color: var(--lotus); background: rgba(250,243,223,.08); }
.btn.red { background: var(--red); color: var(--lotus); border-color: var(--red); }
.btn.red:hover { background: var(--red-deep); border-color: var(--red-deep); }

/* ─── page loader ────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), visibility .7s cubic-bezier(.4,0,.2,1);
  /* fallback so the overlay never traps a no-JS visitor */
  animation: loader-auto-hide 0s linear 2.5s forwards;
}
#loader::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 2px solid rgba(250,243,223,.18);
  border-top-color: var(--red);
  border-radius: 50%;
  opacity: 0;
  animation: loader-fade-in .4s ease .1s forwards, loader-spin .9s linear infinite;
}
#loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes loader-auto-hide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}
@keyframes loader-fade-in {
  to { opacity: 1; }
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* language-switch transition — reuses the page-loader look (ink + gold ring).
   Shown briefly by i18n.js while the page text swaps between EN and VN. */
.lang-fx {
  position: fixed;
  inset: 0;
  z-index: 10000;                 /* above the sticky header + #loader */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s cubic-bezier(.4,0,.2,1), visibility .3s cubic-bezier(.4,0,.2,1);
}
.lang-fx.show { opacity: 1; visibility: visible; }
.lang-fx::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 2px solid rgba(250,243,223,.18);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: loader-spin .9s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .lang-fx { transition: none; }
  .lang-fx::after { animation: none; }
}

/* page reveal, paired with the loader above */
main {
  animation: page-reveal .8s cubic-bezier(.4,0,.2,1) .35s both;
}
@keyframes page-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── top utility bar ────────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: var(--lotus-2);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 9px 0;
}
.topbar .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar .row a { color: var(--lotus-2); text-decoration: none; opacity: .85; }
.topbar .row a:hover { opacity: 1; color: var(--lotus); }
.topbar .pill {
  background: var(--red);
  color: var(--lotus);
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 10px;
}
.topbar .pill.sale {
  background: linear-gradient(135deg, #e7c79a, #c79262 55%, #b87a3d);
  color: var(--ink);
}

/* ─── nav ────────────────────────────────────────────────── */
#thu-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  background: var(--lotus);
  border-bottom: 1px solid var(--rule);
}
.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
}
.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex: 0 0 auto;
}
.brand .sub {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  border-left: 1px solid var(--rule);
  padding-left: 12px;
}
.nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  flex: 1 1 auto;
  justify-content: center;
}
.nav ul a {
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav ul a:hover { color: var(--ink); }
.nav ul a.active { color: var(--ink); }
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  background: var(--red);
  width: 0;
  transition: width .28s ease;
}
.nav ul a:hover::after { width: 100%; }
.nav ul a.active::after { width: 100%; transition: none; }
.nav .util { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }

.cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--lotus);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s ease, border-color .2s ease;
}
.cart:hover { background: var(--red); border-color: var(--red); }
.cart svg { width: 16px; height: 16px; }
.cart .count {
  position: absolute;
  top: -9px;
  right: -9px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: var(--red);
  color: var(--lotus);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--lotus);
  box-sizing: border-box;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.cart .count.bump { transform: scale(1.45); }
.cart .count.is-zero { display: none; }

/* ─── nav mobile toggle ──────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5.5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  background: transparent;
  padding: 0 10px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transform-origin: center;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .2s ease;
}
.nav-toggle span:nth-child(2) { width: 68%; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── fade-load (fires on page load, no scroll trigger) ─── */
.fade-load {
  animation: fade-load 1s cubic-bezier(.2,.6,.2,1) both;
}
@keyframes fade-load {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-load { animation: none; }
}

/* ─── scroll-reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.2,.6,.2,1), transform 1.1s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.shown { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal[data-delay="1"] { transition-delay: .10s; }
.reveal[data-delay="2"] { transition-delay: .20s; }
.reveal[data-delay="3"] { transition-delay: .30s; }
.reveal[data-delay="4"] { transition-delay: .40s; }
.reveal[data-delay="5"] { transition-delay: .50s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── inner page header ──────────────────────────────────── */
.page-intro {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.page-intro .eyebrow { margin-bottom: 18px; display: block; }
.page-intro h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -.02em;
  margin: 0;
}
.page-intro h1 em { font-style: italic; color: var(--red); }
.page-intro .sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 22px 0 0;
  max-width: 540px;
}
.contact-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.contact-intro-text { flex: 1 1 auto; }
.contact-intro-img {
  flex: 0 0 auto;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 760px) {
  .contact-intro {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
  }
  .contact-intro-img {
    width: 160px;
    height: 160px;
  }
}
.page-body {
  padding: 80px 0 120px;
}
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 100px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.coming-soon::before {
  content: "✦";
  font-family: var(--serif);
  font-size: 28px;
  color: var(--red);
}

/* ─── homepage: hero ─────────────────────────────────────── */
.hero {
  position: relative;
  height: min(820px, 92vh);
  min-height: 680px;
  overflow: hidden;
  background: #5b000c;
  isolation: isolate;
}
.hero .photo {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-thu-le.jpeg");
  background-size: cover;
  background-position: 0% top;
  animation: kenburns 28s ease-in-out infinite alternate, hero-fade 1.8s ease-out both;
}
@keyframes kenburns {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.08) translate3d(-1.5%, -0.5%, 0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.20) 38%, rgba(0,0,0,0) 60%),
    linear-gradient(to top,   rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 30%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: .6;
}
.hero .content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 64px 0 72px;
}
.hero .text {
  color: var(--lotus);
  animation: hero-rise 1s cubic-bezier(.22,.61,.36,1) 0.5s both;
}
.hero .text .eyebrow { color: rgba(250,243,223,.78); }
.hero h1 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(80px, 12vw, 184px);
  line-height: .86;
  letter-spacing: -.025em;
  color: var(--lotus);
}
.hero h1 em { font-style: italic; font-weight: 300; color: #f6dca5; }
.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.35;
  margin: 26px 0 0;
  max-width: 520px;
  color: rgba(250,243,223,.92);
}
.hero .ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero .meta {
  position: absolute;
  right: 0;
  bottom: 24px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,243,223,.75);
  display: flex;
  gap: 24px;
  align-items: center;
  z-index: 3;
}
.hero .meta .dot {
  width: 5px;
  height: 5px;
  background: var(--red-soft);
  border-radius: 50%;
  display: inline-block;
}

/* ─── homepage: events card ──────────────────────────────── */
.events {
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 4;
  animation: hero-rise 1s cubic-bezier(.22,.61,.36,1) 0.8s both;
  width: 360px;
  background: var(--lotus);
  color: var(--ink);
  padding: 26px 26px 22px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.events::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,.4);
  pointer-events: none;
}
.events .ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--red);
  color: var(--lotus);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 7px 12px;
}
.events .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 6px;
}
.events .date {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.05;
  margin: 6px 0 4px;
}
.events .where { font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.events .where b { color: var(--ink); font-weight: 600; }
.events hr { border: 0; border-top: 1px solid var(--rule); margin: 18px 0 14px; }
.events .more { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.events .more-list {
  font-family: var(--mono);
  font-size: 10.5px;
  line-height: 1.8;
  letter-spacing: .08em;
  color: var(--ink-2);
}
.events .more-list span { color: var(--red); margin-right: 6px; }

/* ─── homepage: scroll cue ───────────────────────────────── */
.hero-quote {
  position: absolute;
  right: 40px;
  bottom: 24px;
  z-index: 4;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  color: rgba(250,243,223,.65);
  text-align: right;
  max-width: 480px;
  animation: hero-fade 1.6s ease-out 1s both;
}
.hero-quote span { display: block; font-style: normal; font-family: var(--mono); font-size: 14px; letter-spacing: .18em; text-transform: uppercase; margin-top: 8px; opacity: .8; }
@media (max-width: 760px) {
  .hero-quote { display: none; }
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  animation: hero-fade 1s ease-out 1.2s both;
  z-index: 4;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(250,243,223,.7);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  background: rgba(250,243,223,.5);
  animation: cue 1.6s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { opacity: .3; transform: translateY(0); }
  50%       { opacity: 1;  transform: translateY(6px); }
}

/* ─── homepage: hero divider ─────────────────────────────── */
.hero-divider {
  height: 1px;
  background: var(--red);
  border: 0;
  margin: 0;
  box-shadow: 0 0 24px rgba(179,23,28,.35);
}

/* ─── homepage: news section ─────────────────────────────── */
.news {
  background: var(--lotus);
  padding: 64px 0 100px;
  position: relative;
}
.news .head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.news h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 7.2vw, 96px);
  line-height: .96;
  letter-spacing: -.02em;
  margin: 18px 0 0;
}
.news h2 em { font-style: italic; color: var(--red); }
.news .intro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 380px;
  margin: 0 0 22px auto;
  text-align: right;
}
.news .head-right { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.news .body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--rule);
}

/* ─── homepage: news grid ────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
  row-gap: 0;
  margin-top: 24px;
}
.news-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.news-item:nth-child(odd)  { padding-right: 8px; }
.news-item:nth-child(even) { padding-left:  8px; }
.news-item .lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: inline-block;
}
.news-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.22;
  margin: 0 0 12px;
  color: var(--ink);
}
.news-item p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0 0 18px; }
.news-item .link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  margin-top: auto;
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease;
}
.news-item .link:hover { color: var(--red); border-color: var(--red); }
.news-item .news-links { display: flex; gap: 20px; align-items: center; margin-top: auto; }
.news-item .news-links .link { margin-top: 0; }

/* ─── homepage: slideshow ────────────────────────────────── */
.slideshow {
  position: sticky;
  top: 88px;
  align-self: start;
  margin-top: 24px;
}
.slideshow .frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slideshow .slide.on { opacity: 1; }
.slide.s1 { background: #1a0a08 url("../assets/thu-le-performance-1.jpeg") center/cover no-repeat; }
.slide.s2 { background: #1a0a08 url("../assets/thu-le-performance-2.jpeg") center/cover no-repeat; }
.slide.s3 { background: #1a0a08 url("../assets/thu-le-performance-3.jpeg") center/cover no-repeat; }
.slide.s4 { background: #1a0a08 url("../assets/thu-le-performance-4.jpeg") center/cover no-repeat; }
.slide.s5 { background: #1a0a08 url("../assets/thu-le-performance-5.jpeg") center/cover no-repeat; }
.slide.s6 { background: #1a0a08 url("../assets/thu-le-performance-6.jpeg") center/cover no-repeat; }

.slide .cap {
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,243,223,.92);
  background: rgba(0,0,0,.35);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.slideshow .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to left, rgba(250,243,223,0) 60%, rgba(250,243,223,1) 100%);
}
.slideshow .controls {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slideshow .controls .ctrls { display: flex; gap: 8px; }
.slideshow .controls .ctrls button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  display: grid;
  place-items: center;
  transition: background .2s, color .2s;
}
.slideshow .controls .ctrls button:hover { background: var(--ink); color: var(--lotus); }
.slideshow .controls .dots { display: flex; gap: 8px; align-items: center; }
.slideshow .controls .dots i {
  width: 22px;
  height: 1.5px;
  background: #cdb990;
  display: block;
  cursor: pointer;
  transition: background .2s;
}
.slideshow .controls .dots i.on { background: var(--red); height: 2px; }
.slideshow .counter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ─── homepage: lotus rule ───────────────────────────────── */
.lotus-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 70px 0 0;
}
.lotus-rule .line { flex: 1; height: 1px; background: var(--rule); }
.lotus-rule .glyph { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--red); }

/* ─── footer ─────────────────────────────────────────────── */
footer.site {
  background: var(--ink);
  color: var(--lotus);
  padding: 80px 0 28px;
  position: relative;
}
footer.site::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--wood), var(--red));
}
footer .row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #b9ad9c;
  font-weight: 500;
  margin: 0 0 20px;
}
footer .contact .email {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
  color: var(--lotus);
  text-decoration: none;
  border-bottom: 1px solid #4a3f35;
  transition: border-color .2s, color .2s;
}
footer .contact .email:hover { border-color: var(--red-soft); color: #f6dca5; }
footer .contact .meta {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #8a7d6e;
  line-height: 1.9;
}
footer .contact .meta span { color: var(--lotus); }

footer .sponsor { text-align: center; }
footer .sponsor a.slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 28px;
  min-width: 280px;
  min-height: 96px;
  border: 1px solid #4a3f35;
  background: #1f1814;
  color: var(--lotus);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: border-color .2s, background .2s, transform .15s;
}
footer .sponsor a.slot:hover { border-color: var(--red-soft); background: #241c17; transform: translateY(-2px); }
footer .sponsor-img {
  max-width: 180px;
  height: auto;
  display: block;
}
footer .sponsor a.slot .crest {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--red-soft);
  display: inline-grid;
  place-items: center;
  color: var(--red-soft);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
footer .sponsor a.slot .name { display: flex; flex-direction: column; line-height: 1.1; }
footer .sponsor a.slot .name small {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a7d6e;
  margin-top: 4px;
}
footer .sponsor .tag {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #8a7d6e;
}

footer .social { text-align: right; }
footer .social .icons { display: inline-flex; gap: 10px; }
footer .social .ic {
  width: 48px;
  height: 48px;
  border: 1px solid #4a3f35;
  display: grid;
  place-items: center;
  color: var(--lotus);
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
footer .social .ic:hover { background: var(--red); border-color: var(--red); color: var(--lotus); transform: translateY(-2px); }
footer .social .ic svg { width: 20px; height: 20px; }
footer .social .handle {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b9ad9c;
}
footer .social .handle a { color: #b9ad9c; text-decoration: none; }
footer .social .handle a:hover { color: var(--lotus); }

footer .bottom {
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid #2a221c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #8a7d6e;
  gap: 20px;
  flex-wrap: wrap;
}
footer .bottom .links { display: flex; gap: 24px; }
footer .bottom a { color: #8a7d6e; text-decoration: none; }
footer .bottom a:hover { color: var(--lotus); }

/* ─── bio page ───────────────────────────────────────────── */
.bio { padding: 90px 0 120px; }
.bio .head { margin-bottom: 56px; }
.bio .head .eyebrow { color: var(--red); }
.bio h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(96px, 13vw, 200px);
  line-height: .86;
  letter-spacing: -.025em;
  margin: 18px 0 0;
  color: var(--ink);
}
.bio h1 em { font-style: italic; color: var(--red); font-weight: 300; }

.bio .body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 100px;
  align-items: stretch;
}
.bio .prose { max-width: 680px; }
.bio .prose p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.62;
  color: var(--ink);
  margin: 0 0 24px;
}
.bio .prose p.first::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  float: left;
  font-size: 78px;
  line-height: .85;
  padding: 8px 14px 0 0;
  color: var(--red);
}
.bio .prose p em { font-style: italic; }
.bio .prose p strong { font-weight: 600; }

.bio .rail { display: flex; flex-direction: column; justify-content: space-between; }
.bio .rail figure { margin: 0; position: relative; }
.bio .rail .frame {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--lotus-2);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.28);
  position: relative;
}
.bio .rail .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24,18,15,.08);
  pointer-events: none;
}
.bio .rail figcaption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bio .rail figcaption .glyph { color: var(--red); }
.bio .rail figure:nth-child(2) .frame { aspect-ratio: 1/1; }
.bio .rail figure:nth-child(3) .frame { aspect-ratio: 3/4; }
.bio .rail figure:not(:last-child) {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.bio .signature {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.bio .signature .name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  color: var(--red);
}
.bio .signature .where {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
}

/* ─── concerts & events ──────────────────────────────────── */
.ce-hero { padding: 84px 0 62px; border-bottom: 1px solid var(--rule); }
.ce-hero .eyebrow { color: var(--red); }
.ce-hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(72px, 11vw, 168px);
  line-height: .86; letter-spacing: -.025em; margin: 18px 0 0; color: var(--ink);
}
.ce-hero h1 em { font-style: italic; color: var(--red); font-weight: 300; }
.ce-hero .lede {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 23px; line-height: 1.5; color: var(--ink-2); margin: 26px 0 0; max-width: 620px;
}
.ce-hero .stats {
  display: flex; gap: 46px; flex-wrap: wrap; margin-top: 40px;
  border-top: 1px solid var(--rule); padding-top: 26px;
}
.ce-hero .stat .n { font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1; color: var(--red); }
.ce-hero .stat .l {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 10px;
}

.ce-band { position: relative; }
.ce-band .frame {
  position: relative;
  aspect-ratio: 21/8;
  background: #5a0608 url("../assets/thu-le-concerts.jpeg") 50% 30% / cover no-repeat;
  animation: hero-fade 1.6s ease-out 0.3s both;
}
.ce-band .frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, rgba(20,8,8,.55) 0%, rgba(20,8,8,.12) 42%, rgba(20,8,8,0) 70%);
}
.ce-band .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  padding: 34px 40px; color: var(--lotus); z-index: 2;
}
.ce-band .cap .q {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px); line-height: 1.2; max-width: 640px;
  text-shadow: 0 2px 30px rgba(0,0,0,.45);
}
.ce-band .cap .tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(250,243,223,.82); white-space: nowrap; text-align: right; line-height: 1.9;
}
.ce-band .corner { position: absolute; width: 22px; height: 22px; border: 1px solid rgba(250,243,223,.65); z-index: 3; }
.ce-band .corner.tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.ce-band .corner.tr { top: 22px; right: 22px; border-left: 0; border-bottom: 0; }
.ce-band .corner.bl { bottom: 22px; left: 22px; border-right: 0; border-top: 0; }
.ce-band .corner.br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }

.section-label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); display: flex; align-items: center; gap: 14px;
}
.section-label::before { content: ""; display: inline-block; width: 34px; height: 1px; background: var(--red); }
.sec-h {
  font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1.04; letter-spacing: -.015em; margin: 16px 0 0;
}
.sec-h em { font-style: italic; color: var(--red); }

.upcoming { padding: 88px 0 20px; }
.upcoming .head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
#upcoming-list { margin-top: 44px; }
.upcoming .empty {
  border: 1px solid var(--rule);
  background: repeating-linear-gradient(45deg, rgba(179,23,28,.035) 0 1px, transparent 1px 13px), var(--lotus-2);
  padding: 60px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.upcoming .empty .lotus-mark { font-family: var(--serif); font-style: italic; color: var(--red); font-size: 30px; line-height: 1; flex: 0 0 auto; }
.upcoming .empty .txt h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.15; margin: 0; color: var(--ink); }
.upcoming .empty .txt h3 em { font-style: italic; color: var(--red); }
.upcoming .empty .txt p { font-family: var(--sans); font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 12px 0 0; max-width: 520px; }
.upcoming .empty .act { flex: 0 0 auto; }

.archive { padding: 80px 0 110px; }
.archive .head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }

.yearbar {
  position: sticky; top: 108px; z-index: 30;
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  background: var(--lotus);
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 14px 0; margin-bottom: 8px;
}
.yearbar .lab { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-right: 6px; }
.yearbar a {
  font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-decoration: none; color: var(--ink-2);
  padding: 6px 13px; border: 1px solid var(--rule); transition: all .18s ease;
}
.yearbar a:hover { border-color: var(--ink); color: var(--ink); }
.yearbar a.on { background: var(--ink); color: var(--lotus); border-color: var(--ink); }

.year-group { padding-top: 18px; scroll-margin-top: 150px; }
.year-head {
  display: grid; grid-template-columns: 160px 1fr; gap: 28px; align-items: baseline;
  padding: 30px 0 16px; border-bottom: 2px solid var(--ink);
}
.year-head .y {
  font-family: var(--serif); font-weight: 300; font-size: clamp(46px, 5vw, 64px); line-height: .9;
  letter-spacing: -.02em; color: var(--ink);
}
.year-head .y em { font-style: normal; color: var(--red); font-size: .42em; vertical-align: super; font-family: var(--mono); letter-spacing: 0; }
.year-head .summ {
  justify-self: end; text-align: right;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3);
}

.ev-row {
  display: grid; grid-template-columns: 160px 1fr auto; gap: 28px; align-items: baseline;
  padding: 17px 12px 17px 0; border-bottom: 1px dashed var(--rule);
  text-decoration: none; color: inherit; position: relative;
  transition: background .18s ease, padding-left .18s ease;
}
.ev-row.linked { cursor: pointer; }
.ev-row.linked:hover { background: #fff; padding-left: 14px; }
.ev-row .date { font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--ink-3); padding-top: 3px; white-space: nowrap; }
.ev-row .main { display: flex; flex-direction: column; gap: 7px; }
.ev-row .place { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.18; color: var(--ink); transition: color .18s ease; }
.ev-row.linked:hover .place { color: var(--red); }
.ev-row .chips { display: flex; gap: 9px; align-items: center; flex-wrap: wrap; }
.chip { font-family: var(--mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; padding: 3px 9px; border: 1px solid var(--red); color: var(--red); border-radius: 999px; line-height: 1.4; }
.chip.kind { border-color: var(--rule); color: var(--ink-3); }
.ev-row .meta { justify-self: end; display: flex; align-items: center; gap: 16px; font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); padding-top: 4px; white-space: nowrap; }
.ev-row .meta .arr { font-family: var(--serif); font-size: 20px; letter-spacing: 0; text-transform: none; color: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity .18s ease, transform .18s ease; }
.ev-row.linked:hover .meta .arr { opacity: 1; transform: none; }

/* ─── coming-soon pages ──────────────────────────────────── */
.cs-page {
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  animation: hero-fade 0.9s ease-out 0.1s both;
}
.cs-label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,243,223,.45);
  margin-bottom: 28px;
  opacity: 0;
  animation: hero-fade 0.7s ease-out 0.4s forwards;
}
.cs-heading {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(72px, 11vw, 156px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--lotus);
  margin: 0;
  clip-path: inset(-20px 100% -20px -20px);
  animation: cs-wipe 1.1s cubic-bezier(.77,0,.18,1) 0.6s forwards;
}
.cs-heading em {
  font-style: italic;
  font-weight: 300;
  color: #f6dca5;
}
@keyframes cs-wipe {
  to { clip-path: inset(-20px 0% -20px -20px); }
}

/* ─── legal pages ────────────────────────────────────────── */
.legal {
  max-width: 700px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 52px 0 14px;
}
.legal h2:first-child { margin-top: 0; }
.legal p {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--ink);
  margin: 0 0 18px;
}
.legal ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal ul li {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal a { color: var(--red); text-decoration: none; }
.legal a:hover { text-decoration: underline; }

/* ─── responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav ul { gap: 18px; font-size: 12.5px; }
  .events { width: 280px; }
  .news .head { grid-template-columns: 1fr; }
  .news .intro { margin-left: 0; }
  .news .body { grid-template-columns: 1fr; }
  .slideshow { position: relative; top: auto; }
  footer .row { grid-template-columns: 1fr; text-align: left; gap: 40px; }
  footer .sponsor, footer .social { text-align: left; }
  .bio .body { grid-template-columns: 1fr; gap: 48px; }
  .bio .rail { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 820px) {
  /* stack each event row so long date ranges can't overlap the venue */
  .ev-row { grid-template-columns: 1fr; gap: 5px; padding: 16px 0; }
  .ev-row .date { grid-column: 1; padding-top: 0; white-space: normal; }
  .ev-row .main { grid-column: 1; }
  .ev-row .meta { grid-column: 1; justify-self: start; padding-top: 4px; }
  .ev-row .meta .arr { display: none; }
  .ev-row.linked:hover { padding-left: 0; }
  .year-head { grid-template-columns: 1fr; gap: 2px; padding: 26px 0 14px; }
  .year-head .summ { justify-self: start; text-align: left; }
  .ce-band .frame { aspect-ratio: 4/3; }
  .ce-band .cap .q { font-size: 20px; }
}
@media (max-width: 760px) {
  html { zoom: .85; }
  .wrap { padding: 0 22px; }

  /* mobile nav drawer */
  .nav-toggle { display: flex; }
  .nav ul {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height .38s cubic-bezier(.22,.8,.22,1);
    box-shadow: 0 24px 40px -14px rgba(0,0,0,.5);
  }
  .nav.open ul { max-height: 540px; }
  .nav ul a {
    display: block;
    padding: 14px 24px;
    color: rgba(250,243,223,.8);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .06em;
    border-bottom: 1px solid rgba(250,243,223,.07);
    transition: color .18s, background .18s;
  }
  .nav ul a:hover, .nav ul a.active { color: var(--lotus); background: rgba(255,255,255,.05); }
  .nav ul a::after { display: none; }

  /* topbar — prevent text overflow on narrow phones */
  .topbar .row > div:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; flex: 1; }

  .hero { height: auto; min-height: 520px; padding-bottom: 40px; }
  .hero .content { flex-direction: column; align-items: stretch; justify-content: flex-end; padding: 48px 0 40px; }
  .events { position: relative; top: auto; right: auto; width: 100%; margin-top: 30px; }
  .hero .photo { background-position: center; }
  .scroll-cue { display: none; }   /* would overlap the next-concert card on phones */
  .news-grid { grid-template-columns: 1fr; }
  .bio .prose p.first::first-letter { font-size: 56px; }
  .yearbar { top: 104px; }
  .upcoming .empty { padding: 40px 28px; }
}
@media (max-width: 480px) {
  .topbar .row > div:last-child { display: none; }
  .nav .cart { padding: 9px 11px; gap: 0; }   /* icon-only cart to save room beside the hamburger */
  .nav .cart .label { display: none; }
  footer .bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-intro { padding: 64px 0 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   MUSIC SCORES & CDs — catalog
   ═══════════════════════════════════════════════════════════════ */
.shop-section { padding: 78px 0 10px; }
.shop-section .head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 30px; flex-wrap: wrap; margin-bottom: 42px;
}
.sec-note {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-3); text-align: right; padding-bottom: 6px;
}

/* ── score category filter bar ────────────────────────────── */
.score-filter-bar {
  position: sticky;
  top: 108px;
  z-index: 30;
  background: var(--lotus);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 13px 0;
}
.score-filter {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
}
.sf-sep {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--rule);
  margin: 0 4px;
  flex-shrink: 0;
}
.sf-btn {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  transition: border-color .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.sf-btn:hover { border-color: var(--ink); color: var(--ink); }
.sf-btn.active { background: var(--red); color: var(--lotus); border-color: var(--red); }
.sf-scroll { border-style: dashed; }
.sf-scroll:hover { background: var(--ink); color: var(--lotus); border-color: var(--ink); border-style: solid; }

.scores-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px 26px; }
.cds-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; max-width: 880px; }

/* product card */
.prod { display: flex; flex-direction: column; }
.prod .cover {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  border: 1px solid var(--rule); background: var(--lotus-2);
  display: block; text-decoration: none;
}
.prod .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.prod:hover .cover img { transform: scale(1.045); }

/* generated lettered placeholder cover */
.ph { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 18px; color: var(--ink); }
.ph::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 90% at 85% 12%, rgba(255,255,255,.35), transparent 55%),
    repeating-linear-gradient(135deg, rgba(0,0,0,.03) 0 1px, transparent 1px 16px);
}
.ph .mono-top { font-family: var(--mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; opacity: .75; position: relative; }
.ph .glyph { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(40px, 7vw, 70px); line-height: .9; align-self: flex-start; position: relative; }
.ph .pht { font-family: var(--serif); font-weight: 500; font-size: 17px; line-height: 1.12; position: relative; max-width: 90%; }
.ph .seal { position: absolute; right: 16px; bottom: 16px; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-style: italic; font-size: 13px; opacity: .5; }
.ph.v0 { background: var(--lotus-2); }
.ph.v1 { background: #efe2c4; }
.ph.v2 { background: var(--red); color: var(--lotus); }
.ph.v2 .seal { border-color: rgba(250,243,223,.6); }
.ph.v3 { background: var(--ink); color: var(--lotus); }
.ph.v3 .seal { border-color: rgba(250,243,223,.5); }
.ph.v4 { background: #234234; color: var(--lotus); }
.ph.v4 .seal { border-color: rgba(250,243,223,.5); }

/* add-to-cart overlay */
.cover .addbar {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px;
  display: flex; justify-content: center;
  transform: translateY(120%); opacity: 0; z-index: 6;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), opacity .32s ease;
}
.prod .cover:hover .addbar, .prod .cover:focus-within .addbar { transform: none; opacity: 1; }
.add {
  display: inline-flex; align-items: center; gap: 10px; width: auto;
  padding: 11px 18px; border: none;
  background: var(--ink); color: var(--lotus);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(20,8,8,.32);
  transition: background .2s, transform .15s;
}
.add:hover { background: var(--red); }
.add:active { transform: scale(.96); }
.add svg { width: 15px; height: 15px; }
.add .lbl-added { display: none; }
.add.done { background: var(--leaf); pointer-events: none; }
.add.done .lbl-add { display: none; }
.add.done .lbl-added { display: inline; }
@keyframes pop { 0% { transform: scale(1); } 40% { transform: scale(.93); } 100% { transform: scale(1); } }
.add.popped { animation: pop .35s ease; }

/* buy-now button (music.html) */
.buy-btn {
  display: block; width: 100%; margin-top: auto; padding-top: 11px;
  padding: 10px 16px;
  background: var(--red); color: #fff;
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  border: none; cursor: pointer; text-align: center; text-decoration: none;
  transition: background .2s, transform .15s;
}
.buy-btn:hover { background: #8f1115; }
.buy-btn:active { transform: scale(.97); }
.buy-btn.soon { background: var(--ink-3); cursor: default; pointer-events: none; color: rgba(255,255,255,.7); }

/* meta under cover */
.prod .info { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-top: 13px; }
.prod .info .t { font-family: var(--serif); font-weight: 400; font-size: 19px; line-height: 1.14; color: var(--ink); }
.prod .info .s { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 5px; }
.prod .info .price { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--red); white-space: nowrap; padding-top: 2px; }

/* seasonal sale — corner flag on the cover + struck-through original price */
.prod .cover .sale-flag {
  position: absolute; bottom: 10px; left: 10px; z-index: 3;
  font-family: var(--mono); font-weight: 500; font-size: 9.5px; letter-spacing: .08em;
  color: var(--ink); background: linear-gradient(135deg, #e7c79a, #c79262 55%, #b87a3d);
  padding: 5px 7px; line-height: 1; border-radius: 2px;
  box-shadow: 0 4px 14px rgba(20,8,8,.28); pointer-events: none;
}
.prod .info .price.onsale { display: flex; align-items: baseline; gap: 7px; }
.price.onsale .was { color: var(--ink-3); text-decoration: line-through; opacity: .8; }
.price.onsale .now { color: var(--red); font-weight: 500; }
/* cart line: struck original above the discounted price */
.cart-line .ln-price.onsale { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1.15; }
.ln-price.onsale .was { color: var(--ink-3); text-decoration: line-through; opacity: .8; font-size: 11px; }
.ln-price.onsale .now { color: var(--red); }

/* CD card — wider, framed */
.cds-grid .prod .cover { box-shadow: 0 14px 40px rgba(20,8,8,.14); }
#cds-grid { margin-bottom: 60px; }
.cds-grid .prod .info .t { font-size: 24px; }

/* CD image flipper */
.cd-flip { position: absolute; inset: 0; }
.cd-flip .cd-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.cd-flip .cd-slide.active { opacity: 1; }
.cd-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%; padding: 0;
  background: rgba(24,18,15,.55); border: none; cursor: pointer;
  color: #fff; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s, background .2s;
  z-index: 5;
}
.cd-prev { left: 10px; }
.cd-next { right: 10px; }
.prod .cover:hover .cd-arrow,
.prod .cover:focus-within .cd-arrow { opacity: 1; }
.cd-arrow:hover { background: rgba(24,18,15,.88); }
.cd-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5; pointer-events: none;
}
.cd-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.38); transition: background .25s;
}
.cd-dot.active { background: rgba(255,255,255,.9); }

/* flying dot */
.fly { position: fixed; z-index: 200; width: 14px; height: 14px; border-radius: 50%; background: var(--red); box-shadow: 0 4px 12px rgba(122,13,18,.4); pointer-events: none; transition: transform .7s cubic-bezier(.5,0,.6,1), opacity .7s ease; }

/* ═══════════════════════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════════════════════ */
.cartpage { padding: 64px 0 110px; }
.cartpage .layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: start; }

.cart-lines { border-top: 1px solid var(--rule); }
.cart-line {
  display: grid; grid-template-columns: 88px minmax(0, 1fr) auto auto auto;
  gap: 22px; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
}
.cart-line .thumb { position: relative; width: 88px; height: 88px; overflow: hidden; border: 1px solid var(--rule); background: var(--lotus-2); }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .thumb .ph { padding: 8px; }
.cart-line .thumb .ph .glyph { font-size: 26px; }
.cart-line .thumb .ph .mono-top, .cart-line .thumb .ph .pht, .cart-line .thumb .ph .seal { display: none; }
.cart-line .ln-title { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.12; color: var(--ink); }
.cart-line .ln-sub { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }
.cart-line .ln-tag { display: inline-block; margin-top: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--leaf); }
.cart-line .ln-tag.warn { color: var(--red); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--rule); }
.qty button { width: 32px; height: 32px; border: 0; background: transparent; display: grid; place-items: center; font-family: var(--mono); font-size: 15px; color: var(--ink); transition: background .15s, color .15s; }
.qty button:hover { background: var(--ink); color: var(--lotus); }
.qty .n { min-width: 34px; text-align: center; font-family: var(--mono); font-size: 13px; }
/* Scores are single-copy: a non-interactive "1" sized to match the CD stepper. */
.qty-fixed { height: 34px; color: var(--ink-3); }

.cart-line .ln-price { font-family: var(--mono); font-size: 14px; color: var(--red); white-space: nowrap; text-align: right; min-width: 66px; }
.cart-line .ln-remove {
  width: 30px; height: 30px; border: 1px solid var(--rule); background: transparent; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-3); transition: border-color .18s, color .18s, background .18s;
}
.cart-line .ln-remove:hover { border-color: var(--red); color: var(--red); background: #fff; }
.cart-line .ln-remove svg { width: 13px; height: 13px; }

/* summary card */
.cart-summary { border: 1px solid var(--rule); background: var(--lotus-2); padding: 30px 28px; position: sticky; top: 96px; }
.cart-summary h3 { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin: 0 0 22px; }
.cart-summary .line { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; font-size: 14px; color: var(--ink-2); }
.cart-summary .line .v { font-family: var(--mono); }
.cart-summary .grand { border-top: 1px solid var(--rule); margin-top: 10px; padding-top: 16px; }
.cart-summary .grand .k { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.cart-summary .grand .v { font-family: var(--mono); font-size: 18px; color: var(--red); }
.cart-summary .checkout { width: 100%; justify-content: center; margin-top: 22px; }
.cart-summary .checkout[disabled] { opacity: .45; pointer-events: none; }
.cart-summary .note {
  font-family: var(--sans); font-size: 12px; line-height: 1.6; color: var(--ink-3);
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule);
}
.cart-summary .note strong { color: var(--ink-2); font-weight: 600; }

/* shipping address form (shown only when the cart contains a CD) */
.ship-form {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--rule);
}
.ship-form[hidden] { display: none; }
.ship-form .ship-h {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500; margin: 0 0 4px;
}
.ship-form .ship-note { font-family: var(--sans); font-size: 12px; line-height: 1.5; color: var(--ink-3); margin: 0 0 16px; }
.ship-form .fld { margin-bottom: 12px; }
.ship-form .fld.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.ship-form .fld.row2 .fld { margin-bottom: 12px; }
.ship-form label {
  display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 5px;
}
.ship-form label .req { color: var(--red); }
.ship-form input, .ship-form select {
  width: 100%; box-sizing: border-box; font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: #fff; border: 1px solid var(--rule); padding: 9px 11px; border-radius: 0;
  transition: border-color .18s ease;
}
.ship-form input:focus, .ship-form select:focus { outline: none; border-color: var(--red); }
.ship-form input.invalid, .ship-form select.invalid { border-color: var(--red); background: rgba(179,23,28,.04); }
.ship-form select { appearance: none; -webkit-appearance: none; cursor: pointer; }

/* PayPal checkout block (replaces old single checkout button) */
#paypal-button-container { margin-top: 22px; min-height: 46px; }
.pp-loading {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); text-align: center; margin: 18px 0 0;
}
.checkout-status:not(:empty) {
  font-family: var(--mono); font-size: 11px; letter-spacing: .04em; line-height: 1.5;
  color: var(--ink-2); margin-top: 14px;
}
.download-area:not(:empty) { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.download-area .btn { width: 100%; justify-content: center; }

/* post-purchase success view (reuses .cart-empty shell) */
.cart-done .download-area { max-width: 420px; margin: 22px auto 6px; }
.cart-done .btn { margin: 6px 6px 0; }

/* empty state */
.cart-empty {
  border: 1px solid var(--rule);
  background: repeating-linear-gradient(45deg, rgba(179,23,28,.035) 0 1px, transparent 1px 13px), var(--lotus-2);
  padding: 64px 48px; text-align: center;
}
.cart-empty .mark { font-family: var(--serif); font-style: italic; color: var(--red); font-size: 32px; }
.cart-empty h3 { font-family: var(--serif); font-weight: 400; font-size: 30px; margin: 14px 0 0; color: var(--ink); }
.cart-empty p { font-size: 14.5px; line-height: 1.6; color: var(--ink-3); margin: 12px auto 26px; max-width: 420px; }

/* ─── shop/cart responsive ─────────────────────────────────── */
@media (max-width: 760px) {
  .score-filter-bar { top: 104px; }
  .score-filter { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 2px; scrollbar-width: none; }
  .score-filter::-webkit-scrollbar { display: none; }
}
@media (max-width: 1100px) {
  .scores-grid { grid-template-columns: repeat(4, 1fr); }
  .cartpage .layout { grid-template-columns: 1fr; gap: 40px; }
  .cart-summary { position: relative; top: auto; }
}
@media (max-width: 820px) { .scores-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) {
  .cds-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 64px minmax(0, 1fr) auto; row-gap: 12px; }
  .cart-line .thumb { width: 64px; height: 64px; }
  .cart-line .qty { grid-column: 2; justify-self: start; }
  .cart-line .ln-price { grid-column: 3; }
  .cart-line .ln-remove { grid-row: 1; grid-column: 3; justify-self: end; }
}
@media (max-width: 520px) {
  .scores-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .cover .addbar { transform: none; opacity: 1; }   /* reachable without hover on touch */
}

/* ═══════════════════════════════════════════════════════════════
   VIDEOS PAGE
   ═══════════════════════════════════════════════════════════════ */

.vid-hero { padding: 84px 0 52px; border-bottom: 1px solid var(--rule); }
.vid-hero .eyebrow { color: var(--red); }
.vid-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(64px,10vw,150px); line-height: .88; letter-spacing: -.025em; margin: 18px 0 0; color: var(--ink); }
.vid-hero h1 em { font-style: italic; color: var(--red); font-weight: 300; }
.vid-hero .lede { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 22px; line-height: 1.5; color: var(--ink-2); margin: 24px 0 0; max-width: 600px; }

.vid-hero-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 60px; }
.vid-hero-cta { flex: 0 0 auto; display: flex; flex-direction: column; align-items: flex-end; gap: 18px; text-align: right; padding-bottom: 2px; }
.vid-hero-cta .l { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 20px; color: var(--ink-2); margin: 0; }
.vid-hero-cta .l b { font-style: normal; font-weight: 500; color: var(--ink); }

.vid-section { padding: 74px 0 80px; }
.vid-section .head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 38px; }

/* ── video thumbnail ─────────────────────────────────────────── */
.vthumb { position: relative; display: block; width: 100%; aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--rule); background: var(--ink); cursor: pointer; }
.vthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.6,.2,1), filter .4s; }
.vthumb:hover img { transform: scale(1.04); filter: brightness(.82); }
.vthumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,8,8,.45), rgba(20,8,8,0) 45%); pointer-events: none; }

.play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; width: 84px; height: 84px; border-radius: 50%; border: 1px solid rgba(250,243,223,.85); background: rgba(20,8,8,.34); backdrop-filter: blur(2px); display: grid; place-items: center; transition: background .25s, transform .25s, border-color .25s; }
.vthumb:hover .play { background: var(--red); border-color: var(--red); transform: translate(-50%,-50%) scale(1.08); }
.play svg { width: 30px; height: 30px; fill: var(--lotus); margin-left: 5px; }
.play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(250,243,223,.35); opacity: 0; transition: opacity .25s, transform .4s; }
.vthumb:hover .play::before { opacity: 1; transform: scale(1.12); }

.vph { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; color: var(--lotus); background: radial-gradient(110% 80% at 80% 10%, rgba(212,74,72,.45), transparent 55%), var(--ink); }
.vph::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 1px, transparent 1px 18px); }
.vph .top { font-family: var(--mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,243,223,.7); position: relative; }
.vph .g { font-family: var(--serif); font-style: italic; font-size: clamp(30px,5vw,52px); line-height: 1; position: relative; color: rgba(250,243,223,.92); }

/* ── featured video ──────────────────────────────────────────── */
.feature { display: grid; grid-template-columns: 1.5fr 1fr; gap: 46px; align-items: center; }
.feature .meta .badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--red); border: 1px solid var(--red); padding: 5px 12px; border-radius: 999px; }
.feature .meta .badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(179,23,28,.45); } 70% { box-shadow: 0 0 0 9px rgba(179,23,28,0); } 100% { box-shadow: 0 0 0 0 rgba(179,23,28,0); } }
.feature .meta h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px,3.4vw,46px); line-height: 1.08; letter-spacing: -.01em; margin: 22px 0 0; color: var(--ink); }
.feature .meta .by { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--ink-2); margin-top: 12px; }
.feature .meta .date { font-family: var(--mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-top: 18px; }
.feature .meta .act { margin-top: 30px; }
.feature .vthumb { box-shadow: 0 22px 60px rgba(20,8,8,.22); }

/* ── video grid ──────────────────────────────────────────────── */
.videos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px 28px; }
.vcard .info { margin-top: 15px; }
.vcard .info .t { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.16; color: var(--ink); }
.vcard .info .s { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 7px; }

/* ── channel CTA ─────────────────────────────────────────────── */
.vid-channel { margin-top: 64px; border-top: 1px solid var(--rule); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.vid-channel .l { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 24px; color: var(--ink-2); }
.vid-channel .l b { font-style: normal; font-weight: 500; color: var(--ink); }

/* ── lightbox ────────────────────────────────────────────────── */
.lb { position: fixed; inset: 0; z-index: 300; background: rgba(14,6,6,.92); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.lb.open { opacity: 1; pointer-events: auto; }
.lb .frame { width: min(1100px,100%); transform: scale(.96); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.lb.open .frame { transform: none; }
.lb .box { position: relative; aspect-ratio: 16/9; background: #000; border: 1px solid rgba(250,243,223,.18); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lb iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lb .lb-cap { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; margin-top: 18px; color: var(--lotus); }
.lb .lb-cap .t { font-family: var(--serif); font-size: 24px; font-weight: 400; }
.lb .lb-cap .s { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: #b9ad9c; white-space: nowrap; }
.lb .lb-close { position: absolute; top: -44px; right: 0; width: 38px; height: 38px; border: 1px solid rgba(250,243,223,.4); background: transparent; border-radius: 50%; color: var(--lotus); display: grid; place-items: center; transition: background .2s, border-color .2s; }
.lb .lb-close:hover { background: var(--red); border-color: var(--red); }
.lb .lb-close svg { width: 16px; height: 16px; }
.lb .noid { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; color: var(--lotus); padding: 30px; }
.lb .noid .g { font-family: var(--serif); font-style: italic; font-size: 40px; color: rgba(212,74,72,.8); }
.lb .noid p { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #b9ad9c; line-height: 1.8; margin: 0; max-width: 380px; }

/* ─── contact page ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 56px;
  margin-top: 8px;
}
.contact-card {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.contact-num {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
.contact-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}
.contact-cta { text-align: center; padding: 40px 0 20px; }

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-card + .contact-card { margin-top: 0; padding-top: 24px; }
}

/* ─── teaching page: luxury intro gate ──────────────────────── */
.ac-gate {
  position: fixed; inset: 0; z-index: 10000;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 80% at 50% 18%, rgba(184,122,61,.14), transparent 60%),
    radial-gradient(140% 90% at 50% 120%, rgba(179,23,28,.16), transparent 55%),
    #070504;
  color: var(--lotus);
  text-align: center;
  opacity: 1; visibility: visible;
  transition: opacity 1s cubic-bezier(.4,0,.2,1), visibility 1s cubic-bezier(.4,0,.2,1);
}
.ac-gate.leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.ac-gate-inner {
  padding: 40px;
  animation: gate-rise 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.ac-gate.leaving .ac-gate-inner { transform: scale(1.04); transition: transform 1s ease; }
.ac-gate-orn {
  display: block; font-size: 22px; color: var(--wood-soft);
  letter-spacing: .3em; margin-bottom: 26px; opacity: .85;
  animation: gate-glow 3.4s ease-in-out infinite;
}
.ac-gate-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .42em;
  text-transform: uppercase; color: rgba(199,146,98,.85); margin: 0 0 22px;
  padding-left: .42em;
}
.ac-gate-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 6vw, 76px); line-height: 1.06; letter-spacing: .01em;
  margin: 0; color: var(--lotus);
}
.ac-gate-title em {
  display: inline-block; font-style: italic; margin-top: .12em;
  background: linear-gradient(100deg, #e7c79a, #c79262 45%, #b87a3d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ac-gate-rule {
  width: 0; height: 1px; margin: 34px auto 36px;
  background: linear-gradient(90deg, transparent, var(--wood-soft), transparent);
  animation: gate-rule 1.3s ease .5s forwards;
}
.ac-gate-enter {
  font-family: var(--mono); font-size: 12px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--lotus);
  background: transparent; border: 1px solid rgba(199,146,98,.55);
  padding: 16px 46px; border-radius: 1px;
  transition: background .35s ease, color .35s ease, border-color .35s ease, letter-spacing .35s ease;
  animation: gate-pulse 3s ease-in-out 1s infinite;
}
.ac-gate-enter:hover {
  background: linear-gradient(100deg, #c79262, #b87a3d);
  color: #1a0f08; border-color: transparent; letter-spacing: .4em;
  animation: none;
}
@keyframes gate-rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes gate-rule { to { width: 110px; } }
@keyframes gate-glow { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes gate-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(199,146,98,0); } 50% { box-shadow: 0 0 26px 0 rgba(199,146,98,.18); } }
@media (prefers-reduced-motion: reduce) {
  .ac-gate-inner, .ac-gate-orn, .ac-gate-rule, .ac-gate-enter { animation: none; }
  .ac-gate-rule { width: 110px; }
}

/* ─── teaching page (Thu Le Academy — dark luxury theme) ─────── */
.academy {
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(184,122,61,.08), transparent 55%),
    #0c0908;
  color: var(--lotus);
}
/* gold luxury accents + academy button variants */
.academy .btn.ac-gold {
  background: linear-gradient(100deg, #e7c79a, #c79262 50%, #b87a3d);
  color: #1a0f08; border-color: transparent;
}
.academy .btn.ac-gold:hover { filter: brightness(1.06); }
.academy .btn.ghost-light { border-color: rgba(199,146,98,.5); color: var(--lotus); }
.academy .btn.ghost-light:hover { border-color: var(--wood-soft); background: rgba(199,146,98,.08); }
/* shared dark-section heading helpers */
.academy .section-label.light { color: rgba(199,146,98,.9); }
.academy .section-label.light::before { background: var(--wood-soft); }
.academy .sec-h.light { color: var(--lotus); }
.academy .sec-h.light em { color: var(--wood-soft); }
.academy .ac-sec-head { margin-bottom: 28px; }
.academy .ac-sec-head.center { text-align: center; }
.academy .ac-sec-head.center .section-label::before { display: none; }
.academy .ac-sec-intro {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 21px; line-height: 1.55; color: rgba(242,232,207,.72);
  max-width: 620px; margin: 20px 0 0;
}

/* hero — centered, full-height, dramatic */
.ac-hero {
  position: relative; overflow: hidden;
  min-height: 76vh; display: grid; place-items: center; text-align: center;
  padding: 84px 0 70px; border-bottom: 1px solid rgba(199,146,98,.14);
}
.ac-hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/teaching/Thu-Le-Teaching-Hero.jpeg') 68% 20% / cover no-repeat;
  opacity: .44; filter: grayscale(.3);
}
.ac-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(100% 75% at 50% 4%, rgba(199,146,98,.16), transparent 55%),
    radial-gradient(120% 100% at 50% 55%, transparent 30%, rgba(12,9,8,.55) 72%, #0c0908),
    linear-gradient(180deg, rgba(12,9,8,.45), rgba(12,9,8,.35) 45%, #0c0908);
}
.ac-hero-inner { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
/* armed behind the gate, then swept in left-to-right when ENTER is pressed */
.ac-hero-inner.is-armed { opacity: 0; }
.ac-hero-inner.is-revealing {
  --m: linear-gradient(to right, #000 0 33%, transparent 66%);
  -webkit-mask: var(--m); mask: var(--m);
  -webkit-mask-size: 300% 100%; mask-size: 300% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  animation: hero-sweep 2.4s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes hero-sweep {
  from { opacity: 1; -webkit-mask-position: 100% 0; mask-position: 100% 0; transform: translateX(-24px); filter: blur(2px); }
  to   { opacity: 1; -webkit-mask-position: 0 0;   mask-position: 0 0;   transform: translateX(0);     filter: blur(0); }
}
/* lede + buttons hold back, then fade up a few seconds after the title sweeps in */
.ac-hero-inner.is-revealing .lede { animation: hero-late 1.0s ease 2.0s both; }
.ac-hero-inner.is-revealing .ac-hero-ctas { animation: hero-late 1.0s ease 2.4s both; }
@keyframes hero-late {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ac-hero-inner.is-armed { opacity: 1; }
  .ac-hero-inner.is-revealing { -webkit-mask: none; mask: none; animation: none; }
  .ac-hero-inner.is-revealing .lede,
  .ac-hero-inner.is-revealing .ac-hero-ctas { animation: none; }
}
.ac-hero .ac-orn {
  display: block; font-size: 20px; letter-spacing: .3em; color: var(--wood-soft);
  margin-bottom: 22px; animation: gate-glow 3.4s ease-in-out infinite;
}
.ac-hero-head { display: inline-block; text-align: left; max-width: 100%; }
.ac-hero .eyebrow { color: rgba(199,146,98,.9); display: inline-block; }
.ac-hero .eyebrow::before { background: var(--wood-soft); }
.ac-hero h1 {
  font-family: var(--serif); font-weight: 300; font-size: clamp(60px, 10vw, 150px);
  line-height: .88; letter-spacing: -.02em; margin: 24px 0 0; color: var(--lotus);
}
.ac-hero h1 em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(100deg, #e7c79a, #c79262 45%, #b87a3d);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ac-hero-rule {
  width: 0; height: 1px; margin: 26px auto;
  background: linear-gradient(90deg, transparent, var(--wood-soft), transparent);
  animation: gate-rule 1.4s ease .5s forwards;
}
.ac-hero .lede {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 27px); line-height: 1.55;
  color: rgba(242,232,207,.82); max-width: 660px; margin: 0 auto;
}
.ac-hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 34px; }

/* learning options */
.ac-options { padding: 60px 0 56px; border-bottom: 1px solid rgba(250,243,223,.1); }
.ac-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(250,243,223,.12); border: 1px solid rgba(250,243,223,.12); }
.ac-card { background: var(--ink); padding: 34px 28px 38px; transition: background .3s ease; }
.ac-card:hover { background: rgba(199,146,98,.07); }
.ac-card .n { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; color: var(--wood-soft); }
.ac-card h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; line-height: 1.15; margin: 18px 0 12px; color: var(--lotus); }
.ac-card p { font-family: var(--sans); font-size: 14px; line-height: 1.7; color: rgba(242,232,207,.62); margin: 0; }

/* exam boards */
.ac-boards { padding: 48px 0; border-bottom: 1px solid rgba(250,243,223,.1); text-align: center; }
.ac-boards-lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(242,232,207,.5); margin: 0 0 28px; }
.ac-board-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: flex-start; gap: 22px; }
.ac-board-item { display: flex; flex-direction: column; align-items: center; gap: 13px; margin: 0; }
.ac-board-item figcaption {
  font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,232,207,.42);
}
.ac-board {
  width: 172px; height: 96px; padding: 18px 22px;
  display: grid; place-items: center;
  background: var(--lotus); border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.ac-board img { max-height: 48px; max-width: 100%; width: auto; object-fit: contain; }
.ac-board img.mono { filter: brightness(0); }   /* white logos → dark, so they read on cream */

/* teaching packages */
.ac-packages { padding: 60px 0; border-bottom: 1px solid rgba(250,243,223,.1); }
.ac-pk-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.ac-packages p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.55;
  color: rgba(242,232,207,.82); max-width: 700px; margin: 22px 0 0;
}
.ac-packages p.muted { color: rgba(242,232,207,.6); margin-top: 14px; }

/* pull-quote box (right of the packages text) */
.ac-quote-box {
  position: relative; margin: 0;
  padding: 44px 40px 38px;
  border: 1px solid rgba(199,146,98,.3);
  background: linear-gradient(160deg, rgba(199,146,98,.08), rgba(199,146,98,.02));
}
.ac-quote-box::before {
  content: "\201C";   /* gold opening quote mark */
  position: absolute; top: 8px; left: 26px;
  font-family: var(--serif); font-size: 96px; line-height: 1;
  color: var(--wood-soft);
}
.ac-quote-box blockquote {
  margin: 30px 0 0;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(21px, 2.2vw, 27px); line-height: 1.42; color: var(--lotus);
}
.ac-quote-box figcaption {
  margin-top: 22px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--wood-soft);
}
.ac-email {
  display: inline-block; margin-top: 26px;
  font-family: var(--serif); font-style: italic; font-size: 27px; color: var(--wood-soft);
  text-decoration: none; border-bottom: 1px solid rgba(199,146,98,.4);
  transition: color .2s ease, border-color .2s ease;
}
.ac-email:hover { color: #e7c79a; border-color: var(--wood-soft); }

/* teaching experience timeline — two columns to keep it compact */
.ac-exp { padding: 60px 0; border-bottom: 1px solid rgba(250,243,223,.1); }
.ac-timeline {
  list-style: none; margin: 0; padding: 0; max-width: 940px;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 54px;
}
.ac-timeline li {
  display: grid; grid-template-columns: 106px 1fr; gap: 20px;
  padding: 15px 0; border-bottom: 1px solid rgba(199,146,98,.13);
}
.ac-timeline .yr { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; color: var(--wood-soft); padding-top: 4px; }
.ac-timeline h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.22; color: var(--lotus); margin: 0; }
.ac-timeline p { font-family: var(--sans); font-size: 13px; line-height: 1.55; color: rgba(242,232,207,.6); margin: 5px 0 0; }

/* videos */
.ac-videos { padding: 60px 0; border-bottom: 1px solid rgba(250,243,223,.1); }
.ac-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ac-vcard .vthumb { border-color: rgba(250,243,223,.16); box-shadow: 0 22px 60px rgba(0,0,0,.4); }
.ac-vcard .info { padding-top: 16px; }
.ac-vcard .info .t { font-family: var(--serif); font-size: 22px; color: var(--lotus); }
.ac-vcard .info .s { font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242,232,207,.5); margin-top: 6px; }
.vph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, #241a16, #140d0b); }
.vph .top { font-family: var(--mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(242,232,207,.4); }
.vph .g { font-family: var(--serif); font-size: 44px; color: var(--wood-soft); }
.academy .vthumb:hover .play { background: var(--wood); border-color: var(--wood); }

/* gallery */
.ac-gallery { padding: 60px 0; border-bottom: 1px solid rgba(250,243,223,.1); }
.ac-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ac-gitem { margin: 0; aspect-ratio: 4/3; overflow: hidden; border: 1px solid rgba(250,243,223,.12); position: relative; background: #140d0b; }
.ac-gitem img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.ac-gitem:hover img { transform: scale(1.05); }
.gph { position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(135deg, #241a16, #140d0b); }
.gph span { font-family: var(--serif); font-size: 40px; color: rgba(199,146,98,.6); }

/* reviews carousel */
.ac-reviews { padding: 64px 0 70px; border-bottom: 1px solid rgba(250,243,223,.1); scroll-margin-top: 96px; }
.ac-carousel { display: flex; align-items: center; gap: 20px; max-width: 940px; margin: 0 auto; }
.ac-track-vp { overflow: hidden; flex: 1; }
.ac-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.ac-quote { flex: 0 0 100%; text-align: center; padding: 8px 10px; }
.ac-quote .mark { font-family: var(--serif); font-size: 88px; line-height: .5; color: var(--wood-soft); height: 40px; }
.ac-quote blockquote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(22px, 2.7vw, 31px); line-height: 1.45; color: var(--lotus); margin: 0 auto; max-width: 700px; }
.ac-quote .who { font-family: var(--mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--wood-soft); margin-top: 26px; }
.ac-arw { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(199,146,98,.4); background: transparent; color: var(--lotus); display: grid; place-items: center; transition: background .2s, border-color .2s, transform .15s; }
.ac-arw:hover { background: var(--wood); border-color: var(--wood); color: #1a0f08; transform: translateY(-1px); }
.ac-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.ac-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0; background: rgba(250,243,223,.25); transition: background .25s, transform .25s; }
.ac-dot.on { background: var(--wood-soft); transform: scale(1.25); }

/* final CTA */
.ac-cta { padding: 66px 0 78px; text-align: center; }
.ac-cta h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 6vw, 68px); line-height: 1; letter-spacing: -.02em; color: var(--lotus); margin: 0; }
.ac-cta h2 em { font-style: italic; color: var(--wood-soft); }
.ac-cta p { font-family: var(--serif); font-style: italic; font-size: 22px; color: rgba(242,232,207,.72); margin: 20px 0 34px; }
.btn.lg { padding: 17px 34px; font-size: 13px; }

/* teaching responsive */
@media (max-width: 1100px) {
  .ac-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .ac-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-timeline { grid-template-columns: 1fr; column-gap: 0; }
}
@media (max-width: 760px) {
  .ac-hero { padding: 72px 0 60px; }
  .ac-options, .ac-videos, .ac-gallery { padding: 60px 0; }
  .ac-reviews { padding: 64px 0; }
  .ac-cta { padding: 64px 0 72px; }
  .ac-video-grid { grid-template-columns: 1fr; gap: 26px; }
  .ac-cards { grid-template-columns: 1fr; }
  .ac-packages, .ac-exp { padding: 60px 0; }
  .ac-pk-grid { grid-template-columns: 1fr; gap: 38px; }
  .ac-timeline li { grid-template-columns: 1fr; gap: 4px; }
  .ac-timeline .yr { padding-top: 0; }
  .ac-carousel { gap: 8px; }
  .ac-arw { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .ac-gallery-grid { grid-template-columns: 1fr; }
  .ac-board { width: 140px; height: 84px; padding: 14px 16px; }
  .ac-board img { max-height: 40px; }
}

/* ─── gallery page ───────────────────────────────────────────── */
.gal-hero { padding: 80px 0 44px; text-align: center; }
.gal-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 8vw, 116px); line-height: .92; letter-spacing: -.02em;
  color: var(--ink); margin: 0;
  animation: gal-title-in 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.gal-title em { font-style: italic; color: var(--red); }
@keyframes gal-title-in {
  from { opacity: 0; transform: translateY(18px); letter-spacing: .04em; }
  to   { opacity: 1; transform: none; }
}

.gal-wrap { padding: 0 0 96px; }
/* simple masonry via CSS columns — photos keep their own proportions */
.gal-grid { column-count: 4; column-gap: 16px; }
.gal-item {
  break-inside: avoid; margin: 0 0 16px;
  overflow: hidden; background: #efe6d0; cursor: pointer;
}
.gal-item img {
  width: 100%; height: auto; display: block;
  transition: transform .8s cubic-bezier(.2,.6,.2,1), filter .5s ease;
}
.gal-item:hover img { transform: scale(1.04); filter: brightness(.94); }
.gal-item:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* gallery lightbox */
.gal-lb {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(10,7,6,.94); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 5vh 6vw;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.gal-lb.open { opacity: 1; pointer-events: auto; }
.gal-lb-img {
  max-width: 92vw; max-height: 90vh; width: auto; height: auto; object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
  transform: scale(.97); transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.gal-lb.open .gal-lb-img { transform: none; }
.gal-lb-close, .gal-lb-nav {
  position: absolute; display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(250,243,223,.4); background: rgba(20,12,10,.4);
  color: var(--lotus); transition: background .2s, border-color .2s;
}
.gal-lb-close { top: 22px; right: 26px; }
.gal-lb-close svg { width: 18px; height: 18px; }
.gal-lb-nav { top: 50%; transform: translateY(-50%); }
.gal-lb-nav.prev { left: 22px; }
.gal-lb-nav.next { right: 22px; }
.gal-lb-nav svg { width: 20px; height: 20px; }
.gal-lb-close:hover, .gal-lb-nav:hover { background: var(--red); border-color: var(--red); }
@media (max-width: 600px) {
  .gal-lb-nav { width: 40px; height: 40px; }
  .gal-lb-nav.prev { left: 10px; } .gal-lb-nav.next { right: 10px; }
}

@media (prefers-reduced-motion: reduce) { .gal-title { animation: none; } }
@media (max-width: 1100px) { .gal-grid { column-count: 3; } }
@media (max-width: 720px)  { .gal-grid { column-count: 2; column-gap: 12px; } .gal-item { margin-bottom: 12px; } }
@media (max-width: 440px)  { .gal-grid { column-count: 1; } }

/* ─── videos responsive ──────────────────────────────────────── */
@media (max-width: 1100px) { .videos-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 860px)  { .feature { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 760px)  {
  .lb { padding: 22px; }
  .vid-hero-row { flex-direction: column; align-items: flex-start; gap: 32px; }
  .vid-hero-cta { align-items: flex-start; text-align: left; }
}
@media (max-width: 560px) {
  .videos-grid { grid-template-columns: 1fr; }
  .play { width: 64px; height: 64px; }
  .play svg { width: 24px; height: 24px; }
}
