/* ============================================================
   GLOBAL PLUS — Epic & Elegant
   ------------------------------------------------------------
   Design language: a concert house programme.
   Deep velvet darks · antique gold · monumental thin serif.
   Methodology: BEM. Mobile-first. 768px / 1024px breakpoints.
   ============================================================ */

/* ----- Design tokens ----- */
:root {
  /* Colour — velvet darkness + antique gold + warm ivory */
  --c-deep:        #080505;
  --c-bg:          #0F0A09;   /* page                          */
  --c-bg-2:        #140D0B;   /* a touch raised                */
  --c-surface:     #1A1310;   /* panels / form bg              */
  --c-surface-2:   #221813;   /* hover surface                 */

  --c-ink:         #F2EBDD;   /* ivory headlines               */
  --c-ink-mid:     #C9BEAA;   /* body copy                     */
  --c-ink-dim:     #8A7E6E;   /* captions, labels              */
  --c-ink-faint:   #5A5247;   /* whispered metadata            */

  --c-gold:        #C9A961;   /* brand green — primary accent  */
  --c-gold-soft:   #E5C97A;   /* light green — highlights      */
  --c-gold-deep:   #8C7338;   /* dark green — shadows          */

  --c-line:        rgba(201, 169, 97, 0.22);   /* hairline green */
  --c-line-strong: rgba(201, 169, 97, 0.48);
  --c-line-faint:  rgba(242, 235, 221, 0.08);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-caps:    "Cinzel", "Trajan Pro", "Cormorant Garamond", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Mobile-first scale — these grow at each breakpoint */
  --t-xs:   0.6875rem;   /* 11 */
  --t-sm:   0.8125rem;   /* 13 */
  --t-base: 1rem;        /* 16 */
  --t-md:   1.0625rem;   /* 17 */
  --t-lg:   1.25rem;     /* 20 */
  --t-xl:   1.625rem;    /* 26 */
  --t-2xl:  2.25rem;     /* 36 — chapter h2 mobile */
  --t-3xl:  3.25rem;     /* 52 — hero title mobile */
  --t-4xl:  4.5rem;      /* 72 — large display     */
  --t-5xl:  6rem;        /* 96 — colossal          */
  --t-6xl:  8rem;        /* 128 — Roman numeral    */

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  --max-w: 1280px;
  --max-w-narrow: 720px;
  --max-w-prose:  560px;
  --gutter: 1.5rem;
}

/* ----- Reset & base ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
em, i { font-family: var(--font-display); font-style: italic; }

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--c-ink-mid);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* A faint warm vignette across the whole document, so the page
     never feels flat. This is what gives the design its depth. */
  background-image:
    radial-gradient(ellipse at top, rgba(201, 169, 97, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom, rgba(38, 166, 154, 0.10) 0%, transparent 55%);
  background-attachment: fixed;
  min-height: 100vh;
}

::selection { background: var(--c-gold); color: var(--c-deep); }
:focus-visible { outline: 1px solid var(--c-gold); outline-offset: 4px; }

.skip-link {
  position: absolute; top: -100%; left: var(--s-4);
  background: var(--c-gold); color: var(--c-deep);
  padding: var(--s-2) var(--s-4);
  font-family: var(--font-caps);
  font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 1000;
  transition: top 200ms ease;
}
.skip-link:focus { top: var(--s-4); }

/* ============================================================
   ORNAMENT — a tiny gold mark used to punctuate sections.
   Hairline · diamond · hairline.
   This is the design's single repeating gesture.
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--c-gold);
}
.ornament__line {
  display: block;
  width: 48px; height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--c-gold) 40%,
    var(--c-gold) 60%,
    transparent 100%);
}
.ornament--top .ornament__line { width: 72px; }
.ornament__diamond {
  font-size: 0.625rem;
  letter-spacing: 0;
  line-height: 1;
}
.ornament--small .ornament__line { width: 36px; }

/* The chapter label — small Cinzel caps, gold, with hairline */
.chapter {
  font-family: var(--font-caps);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-6);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-caps);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  min-height: 48px;
  border: 1px solid var(--c-gold);
  transition: background 350ms ease, color 350ms ease,
              border-color 350ms ease, transform 350ms ease;
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-deep);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--c-gold-soft);
  border-color: var(--c-gold-soft);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-line-strong);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--c-gold);
  color: var(--c-gold-soft);
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: var(--s-5) 0;
}
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  gap: var(--s-5);
}
.brand {
  flex-shrink: 0;
}
.nav {
  flex-shrink: 0;
}
.brand__logo {
  display: block;
  width: 120px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--c-ink);
  letter-spacing: 0.01em;
  line-height: 1;
}

/* Nav (desktop) */
.nav__list {
  display: none;
  align-items: center;
  gap: var(--s-7);
}
.nav__link {
  position: relative;
  font-family: var(--font-caps);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  padding: var(--s-2) 0;
  transition: color 300ms ease;
}
.nav__link:hover { color: var(--c-gold); }
.nav__link::after {
  content: "";
  position: absolute; left: 50%; right: 50%; bottom: -2px;
  height: 1px; background: var(--c-gold);
  transition: left 350ms ease, right 350ms ease;
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
  left: 0; right: 0;
}
.nav__link--cta {
  border: 1px solid var(--c-line-strong);
  padding: 0.65rem 1.25rem;
  color: var(--c-gold);
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover,
.nav__link--cta:focus-visible {
  background: var(--c-gold);
  color: var(--c-deep);
  border-color: var(--c-gold);
}

/* Hamburger */
.nav__toggle {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 12px;
}
.nav__toggle-bar {
  width: 20px; height: 1px;
  background: var(--c-gold);
  transition: transform 350ms ease, opacity 350ms ease;
}

/* ============================================================
   STAGE — the cinematic hero
   ============================================================ */
.stage {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-10) var(--gutter) var(--s-8);
  overflow: hidden;
  isolation: isolate;
}

/* The hero photograph itself — full-bleed, behind everything */
.stage__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -3;
  /* desaturate + warm-shift slightly so the image marries the gold palette
     and doesn't fight the text. Falls back gracefully if filter unsupported. */
  filter: saturate(0.78) brightness(0.62) contrast(1.05);
}

/* The warm spotlight from above (sits above the photo, beneath text) */
.stage__glow {
  position: absolute; inset: -10% -10% auto -10%;
  height: 80%;
  background: radial-gradient(ellipse at 50% 0%,
    rgba(156, 204, 101, 0.22) 0%,
    rgba(201, 169, 97, 0.10) 25%,
    transparent 55%);
  z-index: -1;
  pointer-events: none;
}
/* Deep edge vignette — strengthened so headline + lede stay readable
   against the photograph behind. Layered: dark frame at edges + a
   centred wash that fades the photo just enough to let the text breathe. */
.stage__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%,
      rgba(8, 5, 5, 0.55) 0%,
      rgba(8, 5, 5, 0.30) 30%,
      rgba(8, 5, 5, 0.55) 65%,
      var(--c-deep) 100%),
    linear-gradient(to bottom,
      rgba(8, 5, 5, 0.65) 0%,
      rgba(8, 5, 5, 0.10) 25%,
      rgba(8, 5, 5, 0.10) 70%,
      rgba(8, 5, 5, 0.80) 100%);
  z-index: -1;
  pointer-events: none;
}

.stage__content {
  display: flex; flex-direction: column; align-items: center;
  max-width: var(--max-w-narrow);
  position: relative;
}

.stage__kicker {
  font-family: var(--font-caps);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold-soft);    /* brighter gold for mobile readability */
  margin-top: var(--s-5);
  margin-bottom: var(--s-7);
  /* Subtle text-shadow ensures the small caps pop on dark photo backgrounds */
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.5);
}

/* The monumental title — thin Cormorant at colossal scale */
.stage__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-4xl);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin-bottom: var(--s-5);
}
.stage__title-line {
  display: block;
}

.stage__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-lg);
  color: var(--c-ink);          /* bumped from mid → full white for dark bg readability */
  letter-spacing: 0.02em;
  margin-bottom: var(--s-6);
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.45);
}

/* Hairline gold rule beneath the title block */
.stage__rule {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--c-gold) 50%,
    transparent 100%);
  margin: var(--s-3) auto var(--s-6);
}

.stage__lede {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-md);
  line-height: 1.6;
  color: var(--c-ink);          /* full white — essential for mobile dark bg readability */
  max-width: 36ch;              /* tighter column for mobile line-length */
  margin-bottom: var(--s-7);
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.40);
}

.stage__actions {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  justify-content: center;
}

/* The footer of the stage — small corner labels */
.stage__footer {
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: var(--s-5);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.stage__foot-label {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  white-space: nowrap;
}

/* ============================================================
   LEGACY — the centrepiece (royal command performance)
   ============================================================ */
.legacy {
  position: relative;
  padding: var(--s-10) var(--gutter) var(--s-10);
  background:
    radial-gradient(ellipse at 50% 0%,
      rgba(201, 169, 97, 0.10) 0%,
      transparent 60%),
    var(--c-bg);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.legacy__inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}

/* The crest — pure SVG, glows faintly */
.crest {
  width: 96px; height: 96px;
  color: var(--c-gold);
  margin-bottom: var(--s-7);
  filter: drop-shadow(0 0 28px rgba(201, 169, 97, 0.18));
}
.crest svg { width: 100%; height: 100%; }

.legacy__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-3xl);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.legacy__rule {
  width: 80px; height: 1px;
  background: var(--c-gold);
  margin: var(--s-2) auto var(--s-6);
}

.legacy__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-xl);
  line-height: 1.5;
  color: var(--c-ink);
  max-width: 36ch;
  margin: 0 auto var(--s-6);
}
.legacy__body {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-md);
  line-height: 1.7;
  color: var(--c-ink-mid);
  max-width: 52ch;
  margin: 0 auto;
}

/* ---- Royal photograph in the legacy section ---- */
.legacy__figure {
  margin: var(--s-9) auto 0;
  max-width: 800px;
  width: 100%;
}
.legacy__photo-frame {
  position: relative;
  padding: var(--s-2);                       /* the gold matte border        */
  background: linear-gradient(160deg,
    var(--c-gold) 0%,
    var(--c-gold-deep) 50%,
    var(--c-gold) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset, /* faint gold rim highlight     */
    0 30px 60px -25px rgba(0, 0, 0, 0.75);   /* dropped shadow, museum frame */
}
.legacy__photo {
  display: block;
  width: 100%; height: auto;
  /* warm-tone the image very slightly so it sits with the rest of the page */
  filter: saturate(0.92) brightness(0.96);
}
.legacy__caption {
  margin-top: var(--s-4);
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}

/* ============================================================
   REPERTOIRE — alternating cinematic movements
   ============================================================ */
.repertoire {
  position: relative;
  padding: var(--s-10) var(--gutter) var(--s-10);
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.repertoire__head {
  text-align: center;
  max-width: var(--max-w-narrow);
  margin: 0 auto var(--s-10);
  display: flex; flex-direction: column; align-items: center;
}
.repertoire__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.repertoire__rule {
  width: 60px; height: 1px;
  background: var(--c-gold);
  margin: var(--s-5) auto;
}
.repertoire__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--c-ink-mid);
  max-width: 50ch;
}

/* Each movement — stack on mobile, side-by-side on tablet+ */
.movement {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-9);
  align-items: center;
}
.movement:last-child { margin-bottom: 0; }

.movement__visual {
  position: relative;
  margin: 0;                              /* <figure> default margin reset  */
  aspect-ratio: 4 / 3;
  border: 1px solid var(--c-line);
  background-color: var(--c-surface);
  overflow: hidden;
  isolation: isolate;
}
.movement__visual::after {
  /* Soft cinematic vignette inside the photo frame */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    transparent 55%,
    rgba(8, 5, 5, 0.45) 100%);
  z-index: 2;
  pointer-events: none;
}
/* The actual production photograph */
.movement__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1200ms cubic-bezier(0.2, 0.6, 0.2, 1),
              filter 600ms ease;
  filter: saturate(0.88) brightness(0.92);
}
.movement:hover .movement__image,
.movement:focus-within .movement__image {
  transform: scale(1.03);
  filter: saturate(1) brightness(1);
}

/* Legacy class kept for graceful fallback if any movement loses its image */
.movement__crest {
  font-size: 1.5rem;
  color: var(--c-gold);
  opacity: 0.55;
  z-index: 2;
}

/* Four atmospheric placeholder backdrops — stage moods */
.movement--01 {
  background:
    radial-gradient(circle at 50% 30%, #6b5230 0%, #3c2a18 60%, #140D0B 100%),
    #140D0B;
}
.movement--02 {
  background:
    linear-gradient(160deg, #1A1A26 0%, #2C2C45 50%, #3F3552 100%),
    #140D0B;
}
.movement--03 {
  background:
    radial-gradient(ellipse at 30% 40%, #5a3a28 0%, #2a1810 60%, #140D0B 100%),
    #140D0B;
}
.movement--04 {
  background:
    linear-gradient(135deg, #4a3a22 0%, #2a2018 50%, #140D0B 100%),
    #140D0B;
}

.movement__body {
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-4) 0;
}
.movement__roman {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: var(--t-5xl);
  line-height: 0.9;
  color: var(--c-gold);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}
.movement__label {
  font-family: var(--font-caps);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}
.movement__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-xl);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--c-ink);
}
.movement__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-md);
  line-height: 1.7;
  color: var(--c-ink-mid);
  max-width: 48ch;
}
.movement__meta {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
  padding-top: var(--s-3);
  margin-top: var(--s-2);
  border-top: 1px solid var(--c-line-faint);
}

/* ============================================================
   CREDO — single elegant pull quote
   ============================================================ */
.credo {
  position: relative;
  padding: var(--s-10) var(--gutter);
  background:
    radial-gradient(ellipse at center,
      rgba(201, 169, 97, 0.08) 0%,
      transparent 70%),
    var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.credo__inner {
  max-width: var(--max-w-prose);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.credo__quote {
  margin: var(--s-6) 0 var(--s-5);
}
.credo__quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-xl);
  line-height: 1.45;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}
.credo__quote em {
  font-weight: 400;
  color: var(--c-gold-soft);
}
.credo__source {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  margin-top: var(--s-4);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  position: relative;
  padding: var(--s-10) var(--gutter) var(--s-10);
  overflow: hidden;
}
.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-3xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.contact__title em {
  color: var(--c-gold-soft);
  font-weight: 400;
}
.contact__rule {
  width: 60px; height: 1px;
  background: var(--c-gold);
  margin: var(--s-5) auto;
}
.contact__lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-md);
  line-height: 1.65;
  color: var(--c-ink-mid);
  max-width: 48ch;
  margin: 0 auto var(--s-9);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  text-align: left;
  width: 100%;
  max-width: 900px;
}

/* Form — borderless, hairline inputs only */
.form {
  background: var(--c-surface);
  padding: var(--s-7) var(--s-5);
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
}
.form__field {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-bottom: var(--s-5);
}
.form__label {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}
.form__input {
  font-family: var(--font-display);
  font-size: var(--t-md);
  color: var(--c-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-line-strong);
  padding: 0.6rem 0;
  min-height: 44px;
  transition: border-color 300ms ease;
}
.form__input:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
}
.form__input--textarea {
  resize: vertical;
  min-height: 110px;
  font-style: italic;
}
.form__submit {
  margin-top: var(--s-4);
  width: 100%;
}

/* Aside with elegant key/value details */
.contact__aside {
  padding: var(--s-4) 0;
}
.contact__details {
  display: flex; flex-direction: column;
  gap: var(--s-5);
}
.contact__details > div {
  display: flex; flex-direction: column; gap: var(--s-2);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-line-faint);
}
.contact__details > div:last-child { border-bottom: 0; }
.contact__details dt {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.contact__details dd {
  font-family: var(--font-display);
  font-size: var(--t-lg);
  color: var(--c-ink);
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line-faint);
}
.contact__social-link {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  text-decoration: none;
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--c-line);
  transition: border-color 300ms ease, color 300ms ease;
}
.contact__social-link:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* ============================================================
   COLOPHON — minimal ceremonial footer
   ============================================================ */
.colophon {
  background: var(--c-deep);
  padding: var(--s-9) var(--gutter) var(--s-6);
  text-align: center;
  border-top: 1px solid var(--c-line);
}
.colophon__inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-5);
}
.colophon__logo {
  display: block;
  width: 100px;
  height: auto;
  opacity: 0.8;
  filter: brightness(1.1);
  margin-bottom: var(--s-2);
}
.colophon__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--t-lg);
  color: var(--c-ink);
  margin-top: var(--s-3);
}
.colophon__tag {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}
.colophon__links {
  display: flex; flex-wrap: wrap; gap: var(--s-6);
  justify-content: center;
  padding: var(--s-3) 0;
}
.colophon__links a {
  font-family: var(--font-caps);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
  transition: color 300ms ease;
}
.colophon__links a:hover { color: var(--c-gold); }
.colophon__copy {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
  padding-top: var(--s-5);
  margin-top: var(--s-3);
  border-top: 1px solid var(--c-line-faint);
  width: 100%;
}

/* ============================================================
   RESPONSIVE — Tablet (768px+)
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --t-2xl:  3rem;       /* 48 */
    --t-3xl:  4.25rem;    /* 68 */
    --t-4xl:  6rem;       /* 96 — hero */
    --t-5xl:  7.5rem;     /* 120 — Roman numeral */
    --gutter: 2rem;
  }

  .masthead { padding: var(--s-6) 0; }
  .nav__list { display: flex; }
  .nav__toggle { display: none; }

  .stage__title { letter-spacing: -0.025em; }

  /* Movement — alternating two columns */
  .movement {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
  .movement--right .movement__visual { order: 2; }
  .movement--right .movement__body    { order: 1; padding-right: var(--s-4); }
  .movement--left  .movement__visual { order: 1; }
  .movement--left  .movement__body    { order: 2; padding-left: var(--s-4); }

  /* Contact split */
  .contact__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-8);
  }
  .form { padding: var(--s-8) var(--s-7); }
  .contact__aside { padding: var(--s-5) var(--s-3); }
}

/* ============================================================
   RESPONSIVE — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --t-3xl:  5.5rem;     /* 88 */
    --t-4xl:  7.5rem;     /* 120 — hero monumental */
    --t-5xl:  9rem;       /* 144 — Roman numeral */
    --gutter: 3rem;
  }

  .stage__title { font-weight: 300; letter-spacing: -0.03em; }
  .stage__lede  { font-size: var(--t-lg); max-width: 48ch; }

  .legacy { padding: var(--s-11) var(--gutter); }
  .crest  { width: 120px; height: 120px; }

  .repertoire { padding: var(--s-11) var(--gutter); }
  .movement { gap: var(--s-10); margin-bottom: var(--s-11); }

  .credo { padding: var(--s-11) var(--gutter); }
  .credo__quote p { font-size: var(--t-2xl); }

  .contact { padding: var(--s-11) var(--gutter); }
}

/* ============================================================
   MOBILE NAV (< 768px) — slide-in panel
   ============================================================ */
@media (max-width: 767px) {
  .nav__list {
    position: fixed;
    top: 0; right: -100%;
    width: min(85vw, 320px);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: var(--s-6);
    padding: var(--s-10) var(--s-7);
    background: var(--c-deep);
    border-left: 1px solid var(--c-line);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    transition: right 400ms ease;
    z-index: 60;
  }
  .nav__list.is-open { right: 0; display: flex; }
  .nav__link { font-size: 0.875rem; letter-spacing: 0.28em; }
  .nav__link--cta {
    margin-top: var(--s-3);
    align-self: stretch;
    text-align: center;
  }

  .nav__toggle { position: relative; z-index: 70; }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

}

/* ============================================================
   RIBBON DECORATIONS — brand swooshes at section edges
   ============================================================ */
.ribbon {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.ribbon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Legacy — small orange arc at top-right */
.ribbon--legacy {
  top: var(--s-5);
  right: var(--s-5);
  width: 140px;
  height: 90px;
  opacity: 0.18;
}

/* Repertoire — green vertical sweep at left edge */
.ribbon--repertoire {
  top: 15%;
  left: 0;
  width: 80px;
  height: 320px;
  opacity: 0.15;
}

/* Contact — teal vertical sweep at right edge */
.ribbon--contact {
  top: 20%;
  right: 0;
  width: 80px;
  height: 280px;
  opacity: 0.15;
}

/* Credo — green horizontal sweep at bottom-left */
.ribbon--credo {
  bottom: var(--s-5);
  left: var(--s-5);
  width: 160px;
  height: 70px;
  opacity: 0.14;
}

@media (max-width: 767px) {
  .ribbon--repertoire,
  .ribbon--contact {
    width: 50px;
    height: 200px;
    opacity: 0.12;
  }
  .ribbon--legacy {
    width: 90px;
    height: 60px;
  }
  .ribbon--credo {
    width: 100px;
    height: 50px;
  }
}

/* ============================================================
   CAPABILITIES — four-pillar ecosystem
   ============================================================ */
.capabilities {
  position: relative;
  padding: var(--s-10) var(--gutter);
  background: var(--c-bg);
  border-top: 1px solid var(--c-line);
  overflow: hidden;
}
.capabilities__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.capabilities__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.capabilities__rule {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: var(--s-3) auto var(--s-5);
}
.capabilities__lede {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.6;
  color: var(--c-ink-mid);
  max-width: 56ch;
  text-align: center;
}

.capabilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  width: 100%;
  margin: var(--s-6) 0 var(--s-8);
}

.capability {
  text-align: center;
  padding: var(--s-5);
  border: 1px solid var(--c-line);
  background: var(--c-bg-2);
  transition: border-color 400ms ease, transform 600ms ease;
}
.capability:hover {
  border-color: var(--c-gold-dim);
  transform: translateY(-4px);
}
.capability__num {
  display: block;
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.capability__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-lg);
  color: var(--c-ink);
  line-height: 1.2;
  margin-bottom: var(--s-3);
}
.capability__text {
  font-family: var(--font-body);
  font-size: var(--t-sm);
  line-height: 1.6;
  color: var(--c-ink-mid);
}

.capabilities__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-5) var(--s-7);
  border: 1px solid var(--c-gold-dim);
  position: relative;
}
.capabilities__center::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--c-gold);
  opacity: 0.3;
  pointer-events: none;
}
.capabilities__hub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-xl);
  color: var(--c-ink);
  line-height: 1.1;
}
.capabilities__hub-text {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}

@media (min-width: 768px) {
  .capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
}

@media (min-width: 1024px) {
  .capabilities__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
  }
}

/* ============================================================
   POSTERS — concert poster archive
   ============================================================ */
.posters {
  position: relative;
  padding: var(--s-10) var(--gutter);
  background: var(--c-bg-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.posters__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
}
.posters__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--t-2xl);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.posters__rule {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin: var(--s-3) auto var(--s-5);
}

.posters__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  width: 100%;
  margin: var(--s-4) 0 var(--s-6);
}

/* Individual poster — portrait orientation */
.poster {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-4);
}
.poster__frame {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  padding: var(--s-2);
  background: linear-gradient(160deg,
    var(--c-gold) 0%,
    var(--c-gold-deep) 50%,
    var(--c-gold) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 20px 40px -15px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.poster__frame::before {
  content: '';
  position: absolute;
  inset: var(--s-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 2;
}
.poster__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) brightness(0.96);
  transition: filter 600ms ease, transform 1200ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.poster:hover .poster__image {
  transform: scale(1.02);
  filter: saturate(1) brightness(1);
}

/* Mockup posters — CSS-built, portrait */
.poster__frame--mockup {
  aspect-ratio: 3 / 4;
}
.poster__mockup {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  text-align: center;
  padding: var(--s-5);
  position: relative;
}
.poster__mockup--03 {
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
}
.poster__mockup--04 {
  background:
    radial-gradient(circle at 50% 40%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #1A1A2E 0%, #2D1B2E 50%, #3D2B1F 100%);
}
.poster__mockup-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-lg);
  color: var(--c-ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.poster__mockup-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-sm);
  color: var(--c-ink-mid);
}
.poster__mockup-date {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: var(--s-2);
}

/* Caption */
.poster__caption {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  text-align: center;
}
.poster__label {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.poster__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-lg);
  color: var(--c-ink);
  line-height: 1.1;
}
.poster__date {
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-ink-dim);
}

.posters__actions {
  margin-top: var(--s-4);
}

@media (min-width: 768px) {
  .posters__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-7);
  }
  .poster__frame {
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .posters__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6);
  }
}

/* ============================================================
   LANGUAGE TOGGLE — elegant nav button
   ============================================================ */
.lang-toggle {
  display: none;
  font-family: var(--font-caps);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: transparent;
  border: 1px solid var(--c-gold-dim);
  padding: var(--s-2) var(--s-4);
  cursor: pointer;
  transition: border-color 300ms ease, background 300ms ease, color 300ms ease;
}
.lang-toggle:hover {
  border-color: var(--c-gold);
  background: rgba(201, 169, 97, 0.08);
}

/* Thai text adjustments */
.lang-th {
  --font-display: 'Noto Sans Thai', 'Cormorant Garamond', serif;
}

/* ============================================================
   REVEAL — slow, ceremonial fade-up
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1100ms ease, transform 1100ms ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  /* Stage content gets a slower, more theatrical entrance */
  .stage .reveal { transition-duration: 1500ms; }
}

/* ============================================================
   LIGHT MODE — keep ceremony, swap to a museum-warm palette.
   Cream paper, deep ink, antique-gold accents.
   ============================================================ */
@media (prefers-color-scheme: light) {
  :root {
    --c-deep:        #1A140E;
    --c-bg:          #F4ECDD;
    --c-bg-2:        #EFE5D2;
    --c-surface:     #FAF3E3;
    --c-surface-2:   #F0E5CC;

    --c-ink:         #1A140E;
    --c-ink-mid:     #4A3F2E;
    --c-ink-dim:     #82725A;
    --c-ink-faint:   #B5A789;

    --c-gold:        #C9A961;
    --c-gold-soft:   #E5C97A;
    --c-gold-deep:   #8C7338;

    --c-line:        rgba(201, 169, 97, 0.28);
    --c-line-strong: rgba(201, 169, 97, 0.5);
    --c-line-faint:  rgba(26, 20, 14, 0.10);
  }
  body {
    background-image:
      radial-gradient(ellipse at top, rgba(201, 169, 97, 0.10) 0%, transparent 55%),
      radial-gradient(ellipse at bottom, rgba(201, 169, 97, 0.06) 0%, transparent 55%);
  }

  /* ---- Hero stage overrides — the photograph is ALWAYS dark,
     so the text must always stay light, even in light mode. ---- */
  .stage__title       { color: #F2EBDD; }
  .stage__subtitle    { color: #F2EBDD; }
  .stage__lede        { color: #F2EBDD; }
  .stage__kicker      { color: #E5C97A; }
  .stage__foot-label  { color: #8A7E6E; }
  .stage__rule        { background: linear-gradient(to bottom, transparent 0%, #C9A961 50%, transparent 100%); }

  /* Masthead also floats over the dark hero photo */
  .brand__name        { color: #F2EBDD; }
  .nav__toggle-bar    { background: #C9A961; }
}

/* -------------------------------------------------- */
/* Contact form - honeypot + states                   */
/* -------------------------------------------------- */
.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form__success,
.form__error {
  text-align: center;
  padding: 2rem 0;
}

.form__success-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: #c9a84c;
}

.form__error-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #c44;
}

/* ═══════════════════════════════════════════
   GALLERY TEASER — homepage portfolio section
   ═══════════════════════════════════════════ */
.gallery-teaser {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-teaser__inner {
  text-align: center;
}
.gallery-teaser__title {
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #e8d5a3;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.gallery-teaser__title span {
  display: block;
  font-size: 0.85rem;
  color: #8a857a;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.gallery-teaser__title em {
  font-style: normal;
}
.gallery-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 2.5rem;
  text-align: left;
  justify-items: center;
}
.gallery-teaser__card {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, 1fr);
  align-items: stretch;
  background: #14141f;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  max-width: 900px;
  width: 100%;
}
.gallery-teaser__image {
  aspect-ratio: 16 / 9;
  max-height: 280px;
  overflow: hidden;
  background: #0d0d14;
}
.gallery-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-teaser__card:hover .gallery-teaser__image img {
  transform: scale(1.04);
}
.gallery-teaser__body {
  padding: clamp(1.25rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-teaser__tag {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: #c9a84c;
  text-transform: uppercase;
}
.gallery-teaser__name {
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #e8e4dc;
  font-weight: 500;
  margin: 0.4rem 0 0.6rem;
  letter-spacing: 0.04em;
}
.gallery-teaser__desc {
  font-size: 0.85rem;
  color: #8a857a;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.gallery-teaser__link {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #c9a84c;
  text-transform: uppercase;
  transition: color 0.2s;
}
.gallery-teaser__card:hover .gallery-teaser__link {
  color: #e8d5a3;
}
@media (max-width: 767px) {
  .gallery-teaser__card {
    grid-template-columns: 1fr;
  }
  .gallery-teaser__image {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 480px) {
  .gallery-teaser__grid {
    grid-template-columns: 1fr;
  }
}
