:root {
  color-scheme: only light;
  --ink: #14110f;
  --ink-soft: #2a241f;
  --paper: #ebeae6;
  --paper-deep: #dddcd6;
  --gold: #b8923a;
  --gold-bright: #d4ae55;
  --wine: #6e2430;
  --text: #1c1814;
  --muted: #5c534a;
  --white: #faf8f5;
  --shadow: 0 24px 60px rgba(20, 17, 15, 0.22);
  --max: 1120px;
  --nav-h: 4.5rem;
  --brand-seal: 10.15rem;
  --brand-hang: 1.1rem;
  --scroll-pad: calc(var(--nav-h) + (var(--brand-seal) / 2) + var(--brand-hang) + 1rem + env(safe-area-inset-top, 0px));
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background-color: #ebeae6;
  color-scheme: only light;
  supported-color-schemes: light;
  forced-color-adjust: none;
  scroll-padding-top: var(--scroll-pad);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: #1c1814;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(110, 36, 48, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(184, 146, 58, 0.07), transparent 50%),
    #ebeae6;
  color-scheme: only light;
  forced-color-adjust: none;
}

.site-header,
.hero,
.section-ink,
.site-footer {
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--wine);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

::selection {
  background: rgba(212, 174, 85, 0.38);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Opera gilt: two gold rings, logo black between, a faint inner gleam */
.roman-gold {
  border: 2px solid #d4ae55;
  box-shadow:
    inset 0 1px 0 rgba(240, 220, 160, 0.45),
    0 0 0 4px #000,
    0 0 0 6px #d4ae55;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: #14110f;
  border-bottom: 2px solid #d4ae55;
  overflow: visible;
}

.nav-inner {
  position: relative;
  max-width: var(--max);
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: visible;
}

.brand {
  position: relative;
  display: block;
  width: var(--brand-seal);
  height: var(--nav-h);
  flex-shrink: 0;
  z-index: 3;
  font-family: var(--font-display);
  color: var(--white);
  text-decoration: none;
  line-height: 1.05;
}

.brand-seal {
  position: absolute;
  left: 0;
  top: 100%;
  width: var(--brand-seal);
  height: var(--brand-seal);
  border-radius: 18%;
  overflow: hidden;
  background: #000;
  transform: translateY(calc(-50% + var(--brand-hang)));
  transition: width 0.45s ease, height 0.45s ease, transform 0.45s ease;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 9%;
  box-sizing: border-box;
}

.brand:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(212, 174, 85, 0.55);
  color: var(--white);
  padding: 0.4rem 0.7rem;
  font: inherit;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(250, 248, 245, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-bright);
}

.nav-links .nav-cta {
  color: var(--ink);
  background: var(--gold);
  padding: 0.4rem 0.9rem;
  text-decoration: none;
}

.nav-links .nav-cta:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

@media (max-width: 960px) {
  :root {
    --nav-h: 4rem;
    --brand-seal: 8rem;
    --brand-hang: 0.9rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 4;
    flex-direction: column;
    align-items: flex-start;
    background: var(--ink);
    padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(184, 146, 58, 0.25);
    gap: 0.85rem;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links .nav-cta {
    display: inline-block;
    width: fit-content;
  }
}

html.is-compact,
html:not(:has(.hero)) {
  --brand-seal: 6.75rem;
  --brand-hang: -0.62rem;
}

html.is-nav-open {
  --brand-seal: 3.55rem;
  --brand-hang: -2.18rem;
}

@media (max-width: 960px) {
  html.is-compact,
  html:not(:has(.hero)) {
    --brand-seal: 5.5rem;
    --brand-hang: -0.75rem;
  }

  html.is-nav-open {
    --brand-seal: 3.15rem;
    --brand-hang: -1.88rem;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0px));
  min-height: calc(100svh - var(--nav-h) - env(safe-area-inset-top, 0px));
  min-height: calc(100dvh - var(--nav-h) - env(safe-area-inset-top, 0px));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: min(100%, 170vh);
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transform: none;
  transform-origin: center center;
  transition: opacity 1.6s ease-in-out;
  z-index: 0;
}

.hero-media img.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-media img.hero-c {
  object-position: center 12%;
}

.hero-media img.hero-b {
  object-position: center 14%;
}

.hero-media img.hero-d {
  object-position: center 8%;
}

.hero-media.hero-media--ready img.is-active {
  animation: none;
}

.hero-media:not(.hero-media--ready) img.is-active {
  animation: hero-settle 2.2s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 15, 0.28) 0%, rgba(20, 17, 15, 0.08) 22%, rgba(20, 17, 15, 0.2) 48%, rgba(20, 17, 15, 0.92) 100%),
    linear-gradient(105deg, rgba(20, 17, 15, 0.7) 0%, rgba(20, 17, 15, 0.28) 42%, rgba(20, 17, 15, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 1.25rem max(1.75rem, env(safe-area-inset-bottom, 0px));
  animation: rise 1s ease-out 0.15s both;
}

.hero-copy {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 1.35rem 1.6rem 1.4rem;
  background: rgba(20, 17, 15, 0.62);
  border-top: 1px solid rgba(212, 174, 85, 0.45);
  border-bottom: 1px solid rgba(212, 174, 85, 0.45);
  overflow-wrap: break-word;
}

.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-family: var(--font-display);
  line-height: 1.05;
  text-shadow: none;
}

.hero-name,
.hero-studio {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.85rem, 6.4vw, 5.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-studio {
  position: relative;
  padding-bottom: 0.55rem;
  font-weight: 500;
  color: var(--gold-bright);
}

.hero-studio::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.75rem;
  height: 1px;
  background: rgba(212, 174, 85, 0.7);
}

.hero .tagline {
  margin: 1.1rem 0 0;
  max-width: min(26rem, 100%);
  padding-top: 0.15rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(250, 248, 245, 0.84);
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-actions .btn-ghost {
  color: rgba(250, 248, 245, 0.92);
}

@media (max-width: 700px) {
  .hero-media img {
    object-position: center 14%;
  }

  .hero-media img.hero-c {
    object-position: center 8%;
  }

  .hero-media img.hero-d {
    object-position: center 6%;
  }

  .hero-name,
  .hero-studio {
    font-size: clamp(1.7rem, 8.2vw, 2.75rem);
  }

  .hero-copy {
    display: block;
    width: 100%;
    padding: 1rem 1.15rem 1.05rem;
  }

  .hero-name,
  .hero-studio {
    white-space: normal;
  }

  .hero-studio {
    padding-bottom: 0.45rem;
  }

  .hero .tagline {
    margin-top: 0.85rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1.15rem;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.98rem;
  }
}

@media (max-height: 720px) {
  .hero-content {
    padding-top: 1.5rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  }

  .hero-name,
  .hero-studio {
    font-size: clamp(1.6rem, 6.5vw, 3.25rem);
  }

  .hero .tagline {
    margin-top: 0.5rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1rem;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.7rem 1.45rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--ink);
  border-color: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(184, 146, 58, 0.7);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 146, 58, 0.08);
}

.hero .btn-ghost,
.section-ink .btn-ghost {
  color: rgba(250, 248, 245, 0.92);
  border-color: rgba(212, 174, 85, 0.55);
}

.hero .btn-ghost {
  background: rgba(20, 17, 15, 0.45);
}

.hero .btn-ghost:hover,
.section-ink .btn-ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  background: rgba(212, 174, 85, 0.08);
}

.btn-secondary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink-soft);
  color: var(--white);
  border-color: var(--ink-soft);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Sections —— */
.section {
  padding: 5rem 1.25rem;
}

.section:has(+ .logo-break) {
  padding-bottom: 0.7rem;
}

.logo-break + .section {
  padding-top: 2.85rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  margin: 0 0 0.75rem;
  padding-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  line-height: 1.1;
  color: inherit;
  background-image: linear-gradient(rgba(184, 146, 58, 0.75), rgba(184, 146, 58, 0.75));
  background-repeat: no-repeat;
  background-size: 2.75rem 1px;
  background-position: left bottom;
}

.section-lead {
  margin: 0 0 2rem;
  max-width: 38rem;
  color: #5c534a;
  font-size: 1.1rem;
}

/* Wallpaper: Cooper Hewitt, Smithsonian. Sidewall, Tudor Rose and Fleur de Lis, 1848–60. Public domain.
   https://commons.wikimedia.org/wiki/File:Sidewall,_Tudor_Rose_and_Fleur_de_Lis,_1848–60_(CH_18394653).jpg */
.section-stage-pair {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
  background-color: #24180c;
  background-image: url("tudor-damask.jpg");
  background-size: 380px auto;
  background-repeat: repeat;
  background-position: center;
  background-blend-mode: multiply;
  box-shadow:
    inset 0 0 0 1px rgba(232, 205, 120, 0.75),
    inset 0 0 0 8px rgba(20, 16, 10, 0.92),
    inset 0 0 0 9px rgba(212, 174, 85, 0.5),
    inset 0 40px 80px rgba(0, 0, 0, 0.28),
    inset 0 -40px 80px rgba(0, 0, 0, 0.28);
}

.stage-pair {
  position: relative;
  aspect-ratio: 4 / 3;
  outline: 1px solid #d4ae55;
  outline-offset: 3px;
  background: #0c0a08;
}

.stage-pair-card {
  margin: 0;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.stage-pair-card.is-active,
html:not(.js) .stage-pair-card:first-child {
  opacity: 1;
  z-index: 1;
}

.stage-pair img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  outline: none;
  box-shadow: none;
}

.stage-pair-card:first-child img {
  object-position: center 18%;
}

.stage-pair-card:last-child img {
  object-position: center 42%;
}

@media (min-width: 800px) {
  .section-stage-pair {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
    background-size: 420px auto;
  }

  .stage-pair {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 1.15rem;
    align-items: stretch;
    aspect-ratio: auto;
    outline: none;
    background: none;
  }

  .stage-pair-card {
    position: relative;
    inset: auto;
    opacity: 1;
    z-index: auto;
    transition: none;
  }

  .stage-pair img {
    outline: 1px solid #d4ae55;
    outline-offset: 3px;
  }

  .stage-pair-card:first-child img {
    aspect-ratio: 1145 / 1374;
    height: auto;
    object-fit: contain;
    object-position: center top;
    background: #0c0a08;
  }

  .stage-pair-card:last-child {
    display: flex;
  }

  .stage-pair-card:last-child img {
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

.logo-break {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.85rem, 3vw, 1.75rem);
  padding: 0 1.25rem 0.15rem;
  background: linear-gradient(
    180deg,
    var(--paper) 0%,
    var(--paper) 50%,
    #14110f 50%,
    #14110f 100%
  );
}

.logo-break-rule {
  flex: 1;
  max-width: 11rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 146, 58, 0.15),
    var(--gold),
    rgba(184, 146, 58, 0.15),
    transparent
  );
}

.logo-break-seal {
  position: relative;
  flex-shrink: 0;
  width: clamp(12rem, 30vw, 15.5rem);
  height: clamp(12rem, 30vw, 15.5rem);
  border-radius: 18%;
  overflow: hidden;
  background: #000;
}

.logo-break-seal img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 9%;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .section:has(+ .logo-break) {
    padding-bottom: 1rem;
  }

  .logo-break {
    padding: 0.45rem 1rem 0;
    gap: 0.55rem;
  }

  .logo-break + .section {
    padding-top: 1.15rem;
  }
}

.section-ink {
  background-color: #14110f;
  background-image: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(184, 146, 58, 0.12), transparent 55%);
  color: #faf8f5;
  forced-color-adjust: none;
}

.section-ink .section-kicker {
  color: #d4ae55;
}

.section-ink h2 {
  background-image: linear-gradient(rgba(212, 174, 85, 0.7), rgba(212, 174, 85, 0.7));
}

.section-ink .section-lead,
.section-ink .muted {
  color: rgba(250, 248, 245, 0.7);
}

.section-paper-deep {
  background-color: #dddcd6;
  background-image: linear-gradient(180deg, rgba(20, 17, 15, 0.03), transparent 40%);
  color: #1c1814;
  forced-color-adjust: none;
}

.section:not(.section-ink) {
  color: #1c1814;
  forced-color-adjust: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  /* Drop transform after reveal — keeps YouTube iframes sizing correctly on resize */
  transform: none;
}

/* —— Press —— */
.press-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .press-grid {
    grid-template-columns: 1.25fr 1fr;
    align-items: stretch;
  }
}

.press-quote {
  margin: 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold);
  height: 100%;
}

.press-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.35;
  font-style: italic;
}

.press-quote cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
}

.press-stars {
  display: block;
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  line-height: 1;
}

.press-quote-featured {
  background: rgba(184, 146, 58, 0.08);
}

.press-stack {
  display: grid;
  gap: 1rem;
}

.press-stack .press-quote p {
  font-size: 1.15rem;
}

/* —— Split layout —— */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }

  .split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split.reverse .split-media {
    order: -1;
  }
}

.split-media {
  position: relative;
}

.gilt-frame {
  outline: 1px solid #d4ae55;
  outline-offset: 3px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  box-shadow: var(--shadow);
}

.split-media.gilt-frame img,
.contact-photo.gilt-frame img {
  box-shadow: none;
}

.lesson-photos {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.lesson-photos img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  box-shadow: none;
}

.lesson-photos img.is-active {
  opacity: 1;
}

.split-media.portrait img {
  max-height: 520px;
  width: auto;
  margin: 0 auto;
  object-fit: cover;
}

.split-media.portrait::after,
.contact-photo::after {
  content: "";
  position: absolute;
  inset: auto -0.75rem -0.75rem auto;
  width: 42%;
  height: 42%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
  opacity: 0.55;
}

.contact-photo::after {
  width: 38%;
  height: 38%;
  opacity: 0.7;
}

.lesson-lists {
  display: grid;
  gap: 2rem;
}

@media (min-width: 600px) {
  .lesson-lists {
    grid-template-columns: 1fr 1fr;
  }
}

.lesson-lists h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}

.lesson-lists ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.lesson-lists li + li {
  margin-top: 0.35rem;
}

.areas {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.areas li {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184, 146, 58, 0.55);
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.lesson-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lesson-note + .btn-row {
  margin-top: 1.25rem;
}

/* —— Bio —— */
.bio {
  display: grid;
  gap: 1rem;
}

.bio-text {
  margin: 0;
  color: #5c534a;
}

.bio-more {
  margin: 0.35rem 0 0;
}

.bio-more a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 58, 0.45);
}

.bio-more a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* —— Testimonials / reviews —— */
.testimonials {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial {
  margin: 0;
  padding: 1.35rem 1.25rem 1.35rem 1.35rem;
  background: rgba(20, 17, 15, 0.03);
  border-left: 3px solid var(--gold);
}

.testimonial p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.testimonial footer {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.03em;
  color: #14110f;
}

.reviews-row-google {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 17, 15, 0.1);
}

.reviews-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.reviews-row-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-nav {
  display: flex;
  gap: 0.35rem;
}

.reviews-nav-btn {
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(184, 146, 58, 0.55);
  background: transparent;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.reviews-nav-btn:hover,
.reviews-nav-btn:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(20, 17, 15, 0.04);
}

.reviews-scroller {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0.1rem 0 0.35rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.reviews-scroller::-webkit-scrollbar {
  display: none;
}

.reviews-scroller-paged {
  gap: 1rem;
}

.review-card {
  margin: 0;
  padding: 0.55rem 0 0.55rem 0.9rem;
  border: 0;
  border-left: 1px solid rgba(184, 146, 58, 0.55);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
  box-sizing: border-box;
}

.review-card-page {
  flex: 0 0 calc((100% - 2rem) / 3);
  width: calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  min-width: 0;
}

.review-card p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
}

.review-card footer {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  font-style: normal;
}

@media (max-width: 700px) {
  .review-card-page {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

.reviews-more {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0.85rem 0 0;
  text-align: left;
}

.reviews-more a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 58, 0.45);
}

.reviews-more a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* —— Performances —— */
.venues {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .venues {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
}

.venue-block h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: #14110f;
  border-bottom: 1px solid rgba(184, 146, 58, 0.35);
  padding-bottom: 0.4rem;
}

.venue-block ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  color: #5c534a;
}

.venue-block li + li {
  margin-top: 0.3rem;
}

.venue-block li em {
  font-style: italic;
  color: #1c1814;
}

/* —— Media / YouTube (queued player + playlist) —— */
#media {
  overflow-x: clip;
}

.media-player {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 1080px) {
  .media-player {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 20rem);
    gap: 2.25rem;
  }
}

.media-stage,
.media-playlist {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0908;
  overflow: hidden;
  box-shadow: var(--shadow);
  /* Fallback when aspect-ratio is flaky during resize */
  height: auto;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
}

.media-now-playing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin: 0.75rem 0 0;
  min-width: 0;
  color: rgba(250, 248, 245, 0.88);
}

.media-now-label {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.media-now-title {
  flex: 1 1 12rem;
  min-width: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.media-playlist {
  list-style: none;
  margin: 0;
  padding: 0 0.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 15.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid rgba(250, 248, 245, 0.12);
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 174, 85, 0.45) transparent;
}

.media-playlist::-webkit-scrollbar {
  width: 6px;
}

.media-playlist::-webkit-scrollbar-track {
  background: transparent;
}

.media-playlist::-webkit-scrollbar-thumb {
  background: rgba(212, 174, 85, 0.4);
  border-radius: 999px;
}

@media (min-width: 1080px) {
  .media-playlist {
    max-height: min(28rem, calc(100dvh - 14rem));
  }
}

.media-track {
  display: grid;
  grid-template-columns: 1.75rem 3.5rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0.55rem 0.2rem 0.55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
  background: transparent;
  color: rgba(250, 248, 245, 0.78);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

@media (min-width: 600px) {
  .media-track {
    grid-template-columns: 2rem 4.25rem minmax(0, 1fr);
    gap: 0.75rem;
    padding: 0.65rem 0.35rem 0.65rem 0;
  }
}

.media-track:hover,
.media-track:focus-visible {
  color: var(--white);
  background: rgba(250, 248, 245, 0.04);
  outline: none;
}

.media-track.is-active {
  color: var(--white);
  background: linear-gradient(90deg, rgba(184, 146, 58, 0.16), transparent 70%);
}

.media-track-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 245, 0.4);
}

.media-track.is-active .media-track-num {
  color: var(--gold-bright);
}

.media-track-still {
  display: block;
  overflow: hidden;
  background: #0a0908;
  min-width: 0;
}

.media-track-still img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.media-track:hover .media-track-still img,
.media-track.is-active .media-track-still img {
  opacity: 1;
}

.media-track-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  overflow: hidden;
}

.media-track-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 3.2vw, 1.05rem);
  font-weight: 500;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.media-track-hint {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (hover: hover) and (pointer: fine) {
  .media-track:not(.is-active) .media-track-hint {
    opacity: 0;
    transition: opacity 0.2s ease, color 0.2s ease;
  }

  .media-track:hover:not(.is-active) .media-track-hint,
  .media-track:focus-visible:not(.is-active) .media-track-hint {
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .media-track:not(.is-active) .media-track-hint {
    display: none;
  }
}

.media-track.is-active .media-track-hint {
  opacity: 1;
  color: var(--gold-bright);
}

.press-grid-on-paper .press-quote {
  background: rgba(20, 17, 15, 0.04);
  border-left-color: var(--gold);
}

.press-grid-on-paper .press-quote cite {
  color: var(--gold);
}

.press-grid-on-paper .press-quote-featured {
  background: rgba(184, 146, 58, 0.1);
}

.press-grid-on-paper .press-stars {
  color: var(--gold);
}

/* —— Contact —— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }
}

.contact-photo {
  position: relative;
}

.contact-photo img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.contact-copy .section-lead {
  margin-bottom: 1.75rem;
}

.contact-details {
  display: grid;
  gap: 0;
  align-content: start;
}

.contact-details > div {
  padding: 1rem 0;
  border-top: 1px solid rgba(212, 174, 85, 0.28);
}

.contact-details > div:last-child {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(212, 174, 85, 0.28);
}

.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}

.contact-details a.contact-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  color: var(--white);
}

.contact-details a.contact-link-primary {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  font-variant-numeric: lining-nums;
}

.contact-details a.contact-link:hover {
  border-bottom-color: var(--gold-bright);
  color: var(--gold-bright);
}

.contact-address {
  font-style: normal;
  margin: 0;
}

.contact-address .contact-link {
  display: inline-block;
  line-height: 1.3;
}

.contact-location {
  margin: 0.5rem 0 0;
  color: rgba(250, 248, 245, 0.78);
  font-size: 1.05rem;
}

#inquire .contact-location {
  margin-bottom: 0.35rem;
}

#inquire .contact-link {
  font-size: 1.15rem;
}

.areas-on-ink {
  margin-top: 0.85rem;
}

.areas-on-ink li {
  background: transparent;
  border-color: rgba(212, 174, 85, 0.45);
  color: var(--gold-bright);
}

.contact-actions {
  margin-top: 1.75rem;
  gap: 0.85rem;
}

.contact-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: rgba(250, 248, 245, 0.5);
}

.contact-note a {
  color: rgba(212, 174, 85, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-note a:hover {
  color: var(--gold-bright);
  border-bottom-color: rgba(212, 174, 85, 0.55);
}

.section-contact {
  padding-bottom: 2.75rem;
}

/* —— Footer —— */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--ink);
  color: rgba(250, 248, 245, 0.55);
  padding: 2rem 1.25rem max(1.75rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 174, 85, 0.35);
}

.site-footer > p:first-of-type {
  margin: 0;
}

.site-footer a {
  color: var(--gold-bright);
}

.footer-seal {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: clamp(9.5rem, 28vw, 12.5rem);
  height: clamp(9.5rem, 28vw, 12.5rem);
  margin: 1.15rem auto 0.25rem;
  border-radius: 18%;
  overflow: hidden;
  background: #000;
}

.footer-seal img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  padding: 9%;
  box-sizing: border-box;
}

.footer-listings {
  margin: 0.45rem 0 0;
}

.footer-listings a {
  color: var(--gold-bright);
  text-decoration: none;
}

.footer-listings a:hover {
  text-decoration: underline;
}

.footer-address {
  font-style: normal;
  margin: 0.4rem 0 0;
}

.footer-address a {
  color: rgba(250, 248, 245, 0.7);
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--gold-bright);
}

/* —— Motion —— */
@keyframes hero-settle {
  from {
    transform: scale(1.06);
    opacity: 0.65;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-content,
  .reveal,
  .js .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }

  .hero-media img {
    transition: none;
  }

  .hero-media img:not(.is-active) {
    opacity: 0;
  }

  .btn:hover {
    transform: none;
  }

  .brand-seal {
    transition: none;
  }
}

.engage-grid {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

@media (min-width: 600px) {
  .engage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem 1.35rem;
  }
}

@media (min-width: 960px) {
  .engage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.engage-card {
  margin: 0;
  padding: 1.35rem 1.25rem 1.3rem;
  background: var(--paper-deep);
  border-top: 2px solid var(--gold);
}

.engage-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}

.engage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.engage-actions {
  margin-top: 0;
}

.engage-actions .btn-ghost {
  color: var(--ink);
}

.engage-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.engage-note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(20, 17, 15, 0.25);
}

.engage-note a:hover {
  color: var(--wine);
  border-bottom-color: var(--wine);
}

.avail {
  margin: 0 0 2.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.avail li {
  background: transparent;
  color: #14110f;
  border: 1px solid rgba(184, 146, 58, 0.55);
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.avail li span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.05rem;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .role-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
    margin-top: 2.5rem;
  }
}

@media (max-width: 699px) {
  .role-card img {
    aspect-ratio: 3 / 3.2;
  }

  .role-card figcaption {
    margin-top: 0.35rem;
    font-size: 0.78rem;
  }

  .role-card figcaption strong {
    font-size: 0.95rem;
  }
}

.role-card {
  margin: 0;
}

.role-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.role-card figcaption {
  margin-top: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.role-card figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.split-media.portrait img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center top;
}
