:root {
  --black: #0a0908;
  --charcoal: #161412;
  --charcoal-2: #1f1b17;
  --ivory: #f3ead8;
  --ivory-dim: #c9bda5;
  --gold: #d4a02a;
  --gold-light: #f6d77a;
  --gold-deep: #8a5a12;
  --gold-grad: linear-gradient(135deg, #8a5a12 0%, #d4a02a 28%, #f6d77a 50%, #d4a02a 70%, #b8860b 100%);
  --display: "Cinzel", "Trajan Pro", Georgia, serif;
  --body: "Cormorant Garamond", Garamond, Georgia, serif;
  --gutter: clamp(16px, 4vw, 40px);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font: 400 1.25rem/1.6 var(--body);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--gold-light); text-decoration-color: rgba(246, 215, 122, .4); text-underline-offset: 3px; }
a:hover { color: #fff; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 760px; text-align: center; }

/* ---------- Gold text + rules ---------- */
.heading {
  font: 700 clamp(1.9rem, 4.5vw, 3rem)/1.1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rule {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 18px auto 36px; max-width: 360px; color: var(--gold);
}
.rule::before, .rule::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, var(--gold-light));
}
.rule::after { transform: scaleX(-1); }
.rule span { font-size: 1.3rem; line-height: 1; }

/* ---------- Buttons ---------- */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 28px; border-radius: 999px;
  font: 700 .95rem/1 var(--display); letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: transform .15s ease, box-shadow .2s ease, background-position .4s ease;
}
.btn--gold {
  color: #1a1206;
  background: var(--gold-grad); background-size: 200% 100%;
  box-shadow: 0 0 0 1px rgba(246, 215, 122, .5) inset, 0 8px 30px -10px rgba(212, 160, 42, .6);
}
.btn--gold:hover { color: #000; background-position: 100% 0; transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255, 240, 190, .8) inset, 0 10px 36px -8px rgba(212, 160, 42, .8); }
.btn--ghost { color: var(--gold-light); border: 1px solid rgba(212, 160, 42, .7); }
.btn--ghost:hover { color: #fff; border-color: var(--gold-light); background: rgba(212, 160, 42, .08); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: clamp(28px, 6vh, 64px) var(--gutter) 40px;
  min-height: min(100svh, 980px);
  justify-content: center;
}
.hero__glow {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 38%, rgba(212, 160, 42, .16), transparent 70%),
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(138, 90, 18, .18), transparent 70%);
}
.hero__logo {
  width: min(460px, 80vw); height: auto;
  filter: drop-shadow(0 18px 50px rgba(212, 160, 42, .22));
}
.hero__tagline {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .2em .8em;
  margin: 18px 0 4px;
  font: 700 clamp(1.05rem, 2.4vw, 1.4rem)/1.2 var(--display); letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-light);
}
.hero__tagline i { font-style: normal; font-size: .55em; color: var(--gold); }
.hero__sub { margin: 0 0 28px; font-style: italic; font-size: clamp(1.2rem, 2.6vw, 1.55rem); color: var(--ivory-dim); }
.hero__scroll {
  margin-top: 36px; font: 500 .8rem/1 var(--display); letter-spacing: .25em; text-transform: uppercase;
  color: var(--ivory-dim); text-decoration: none;
}
.hero__scroll span { display: inline-block; margin-left: 6px; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(4px); } }

/* ---------- Video (full-bleed, up to 1920px so YouTube serves 1080p) ---------- */
.video-section {
  padding: 0 0 clamp(56px, 9vw, 110px);
  background: linear-gradient(180deg, transparent, var(--charcoal) 60%);
}
.video {
  position: relative;
  width: min(100vw, 1920px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-block: 1px solid rgba(212, 160, 42, .55);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .9), 0 0 60px -20px rgba(212, 160, 42, .25);
}
@media (min-width: 1921px) { .video { border-inline: 1px solid rgba(212, 160, 42, .55); } }
.video iframe, .video__facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video__facade { padding: 0; margin: 0; background: #000; cursor: pointer; color: inherit; font: inherit; }
.video__facade img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .3s ease; }
.video__facade:hover img, .video__facade:focus-visible img { opacity: 1; }
.video__play {
  position: absolute; left: 50%; top: 50%; width: clamp(64px, 9vw, 110px);
  transform: translate(-50%, -50%); transition: transform .2s ease;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .7));
}
.video__play circle { fill: rgba(10, 9, 8, .6); stroke: var(--gold-light); stroke-width: 2; }
.video__play path { fill: var(--gold-light); }
.video__facade:hover .video__play { transform: translate(-50%, -50%) scale(1.07); }
.video__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px var(--gutter) 18px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  font: 700 clamp(.7rem, 1.4vw, .95rem)/1 var(--display); letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-light); text-align: left;
}

/* ---------- Sections ---------- */
.about, .events, .trio, .book { padding: clamp(64px, 10vw, 120px) 0; }
.about { background: var(--charcoal); }
.about p { margin: 0 0 1.1em; color: var(--ivory-dim); }
.about .lede { font-size: clamp(1.35rem, 2.6vw, 1.65rem); line-height: 1.45; color: var(--ivory); }

.events { background: var(--black); }
.events__grid {
  list-style: none; margin: 0 auto; padding: 0; max-width: 900px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px;
}
.events__grid li {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 96px;
  padding: 22px 20px; text-align: center;
  font: 500 1rem/1.3 var(--display); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid rgba(212, 160, 42, .28);
}
.events__grid li::before {
  content: "◆"; display: block; margin-bottom: 8px; font-size: .7rem; color: var(--gold);
}

.trio { background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 160, 42, .08), transparent 70%), var(--charcoal); }
.trio__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.member {
  padding: 36px 28px 30px; text-align: center;
  background: var(--black);
  border: 1px solid transparent;
  border-image: linear-gradient(180deg, var(--gold-light), var(--gold-deep) 60%, rgba(138, 90, 18, .2)) 1;
}
.member__glyph {
  width: 84px; height: 84px; margin: 0 auto 20px; padding: 16px;
  border-radius: 50%; border: 1px solid rgba(212, 160, 42, .6);
  background: radial-gradient(circle, rgba(212, 160, 42, .14), transparent 70%);
}
.member__glyph svg { width: 100%; height: 100%; fill: none; stroke: var(--gold-light); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.member__glyph svg circle, .member__glyph svg .fill { fill: var(--gold-light); stroke: none; }
.member__photo { width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.member h3 { margin: 0; font: 700 1.3rem/1.2 var(--display); letter-spacing: .06em; color: var(--gold-light); }
.member__role { margin: 6px 0 16px; font-style: italic; color: var(--gold); }
.member p:last-child { margin: 0; color: var(--ivory-dim); font-size: 1.15rem; }

.book { background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(212, 160, 42, .12), transparent 70%), var(--black); }
.book p { margin: 0 0 12px; color: var(--ivory-dim); font-size: 1.35rem; }
.book__phone {
  display: inline-block; margin: 8px 0 28px;
  font: 900 clamp(2.4rem, 9vw, 4.6rem)/1 var(--display); letter-spacing: .04em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: none;
}
.book__phone:hover { filter: brightness(1.15); }
.book__email { margin-top: 24px !important; font-size: 1.15rem !important; }

/* ---------- Footer ---------- */
.footer {
  padding: 48px var(--gutter) 40px; text-align: center;
  border-top: 1px solid rgba(212, 160, 42, .3);
  background: var(--charcoal); color: var(--ivory-dim); font-size: 1.05rem;
}
.footer p { margin: 0 0 10px; }
.footer__social { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; font: 500 .85rem/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.footer__social a { text-decoration: none; }
.footer__social span { font-size: .5rem; color: var(--gold-deep); }
.footer__legal { font-size: .9rem; opacity: .7; }

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: 72px; }
  .callbar {
    position: fixed; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); z-index: 50;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 54px; border-radius: 999px;
    font: 700 .9rem/1 var(--display); letter-spacing: .1em; text-transform: uppercase;
    color: #1a1206; text-decoration: none;
    background: var(--gold-grad);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6), 0 0 0 1px rgba(246, 215, 122, .6) inset;
    transform: translateY(160%); transition: transform .3s ease;
  }
  .callbar.is-visible { transform: none; }
  .callbar svg { width: 18px; height: 18px; fill: currentColor; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
