/* ══════════════════════════════════════════════════════
   Spring Recital 2026 — The World of Music School
   ══════════════════════════════════════════════════════ */

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --black: #080810;
  --deep: #0C0C18;
  --midnight: #06060F;
  --cream: #FAF8F3;
  --ivory: #F4F0E6;
  --sage: #6B8C6B;
  --sage-light: #A0BFA0;
  --text-dark: #181818;
  --text-mid: #555;
  --radius-img: 4px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s ease;
}

nav.scrolled {
  background: rgba(6, 6, 15, .96);
  backdrop-filter: blur(16px);
  padding: 10px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, .12);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  opacity: .88;
  transition: opacity .2s;
}

.nav-logo:hover img {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 24px;
  border: 1px solid rgba(201, 168, 76, .6);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255, 255, 255, .6);
  transition: all .3s;
}

/* ── MOBILE MENU ── */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 15, .97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu img {
  height: 36px;
  opacity: .7;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.mobile-menu a {
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
}

/* ── HERO ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px 80px;
  background: var(--midnight);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-image: url('assets/Recital/1-1-416.jpg');
  filter: brightness(.32) saturate(.8);
  transform: scale(1.06);
  animation: slowZoom 22s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.13); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 15, .5) 0%,
    rgba(6, 6, 15, .1) 35%,
    rgba(6, 6, 15, .6) 75%,
    rgba(6, 6, 15, .98) 100%
  );
}

.sp-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 65%;
  pointer-events: none;
  overflow: hidden;
}

.sp {
  position: absolute;
  top: -20px;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .055), transparent);
}

.sp1 { left: 25%; animation: sw1 9s ease-in-out infinite; }
.sp2 { left: 50%; animation: sw2 11s ease-in-out infinite; }
.sp3 { left: 75%; animation: sw1 8s ease-in-out infinite reverse; }

@keyframes sw1 {
  0%, 100% { transform: rotate(-10deg); }
  50% { transform: rotate(-4deg); }
}

@keyframes sw2 {
  0%, 100% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
}

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

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--d) ease-in-out infinite var(--delay);
  opacity: 0;
}

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--op); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.hero-recital-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 3 / 2;
  filter: drop-shadow(0 0 50px rgba(201, 168, 76, .2));
  animation: fadeUp 1.1s ease .3s both;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 2.4vw, 21px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, .5);
  margin-top: 6px;
  margin-bottom: 36px;
  animation: fadeUp 1s ease .6s both;
}

.hero-desc {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.7vw, 18px);
  color: rgba(255, 255, 255, .5);
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto 44px;
  animation: fadeUp 1s ease .75s both;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 1s ease .9s both;
}

.btn-gold {
  display: inline-block;
  padding: 18px 56px;
  background: linear-gradient(135deg, #D4AF55, #A8872E);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 40px rgba(201, 168, 76, .3);
  transition: all .3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 50px rgba(201, 168, 76, .5);
  filter: brightness(1.08);
}

.btn-ghost {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  background: none;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.opens-note {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
}

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

.scroll-hint {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .18);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .2), transparent);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ── MARQUEE ── */

.banner-strip {
  background: linear-gradient(90deg, var(--black), #101020, var(--black));
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, .08);
  border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.marquee-track {
  display: flex;
  animation: marquee 34s linear infinite;
  width: max-content;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.marquee-item {
  white-space: nowrap;
  padding: 16px 36px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .25);
  border-right: 1px solid rgba(255, 255, 255, .05);
}

.marquee-item.gold {
  color: var(--gold);
  opacity: .6;
}

/* ── HERITAGE ── */

.heritage-section {
  padding: 90px 60px;
  background: linear-gradient(135deg, #0A0F0A, #0C0C1A, #0A0F0A);
  text-align: center;
}

.heritage-inner {
  max-width: 660px;
  margin: 0 auto;
}

.heritage-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 7px 22px;
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.heritage-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  font-style: italic;
  color: white;
  margin-bottom: 20px;
  line-height: 1.25;
}

.heritage-body {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, .5);
  line-height: 1.9;
}

/* ── GALLERY ── */

.gallery-section {
  padding: 90px 40px;
  background: var(--cream);
}

.gallery-header {
  max-width: 1280px;
  margin: 0 auto 52px;
}

.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 10px;
}

.gi {
  overflow: hidden;
  border-radius: var(--radius-img);
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94), filter .5s;
  filter: brightness(.9) saturate(.9);
}

.gi:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1.1);
}

.ga, .ge, .gl, .go { grid-column: span 2; }
.go img { object-position: center top; }
.gp img { object-position: center 20%; }

/* ── HOW IT WORKS ── */

.steps-section {
  padding: 90px 60px;
  background: var(--cream);
  text-align: center;
}
.steps-inner { max-width: 960px; margin: 0 auto; }
.steps-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.steps-divider {
  width: 40px; height: 3px;
  background: var(--gold);
  margin: 0 auto 48px;
  border-radius: 2px;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-card {
  flex: 1;
  max-width: 280px;
  padding: 0 24px;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: 16px;
}
.step-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: rgba(28, 28, 28, .6);
  line-height: 1.7;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin-top: 32px;
  flex-shrink: 0;
}

/* ── FEATURES ── */

.features-section {
  padding: 90px 48px;
  background: var(--deep);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-img);
  cursor: default;
}

.feat-card-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94), filter .5s;
  filter: brightness(.9) saturate(.9) contrast(1.03);
}

.feat-card:hover .feat-card-photo {
  transform: scale(1.05);
  filter: brightness(.72) saturate(.8);
}

.feat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, .72) 100%);
  transition: background .4s;
}

.feat-card:hover .feat-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .88) 100%);
}

.feat-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}

.feat-number {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .8;
  margin-bottom: 8px;
  display: block;
}

.feat-card-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width .4s ease;
}

.feat-card:hover .feat-card-line {
  width: 36px;
}

.feat-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.feat-desc {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s;
  opacity: 0;
}

.feat-card:hover .feat-desc {
  max-height: 120px;
  opacity: 1;
}

/* ── PRICING ── */

.pricing-section {
  padding: 90px 48px;
  background: var(--ivory);
}

.pricing-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 14px;
}

.pricing-note {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 56px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.p-card {
  padding: 48px 36px;
  background: white;
  border: 1px solid rgba(0, 0, 0, .06);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.p-card:hover:not(.p-featured) {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.p-card.p-featured {
  background: var(--deep);
  border: none;
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  z-index: 2;
}

.p-tag {
  display: inline-block;
  margin-bottom: 28px;
  padding: 5px 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.p-tag.ret { background: rgba(107, 140, 107, .1); color: var(--sage); }
.p-tag.eb-dark { background: rgba(201, 168, 76, .18); color: var(--gold); }
.p-tag.reg { background: rgba(0, 0, 0, .05); color: #888; }

.p-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.p-card.p-featured .p-name { color: white; }

.p-window {
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.p-card.p-featured .p-window { color: rgba(255, 255, 255, .4); }

.p-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 10px;
}

.p-dollar {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 10px;
}

.p-card.p-featured .p-dollar { color: var(--gold); }

.p-num {
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.p-card.p-featured .p-num { color: var(--gold); }

.p-save {
  font-size: 11px;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.p-card.p-featured .p-save { color: var(--sage-light); }

.p-list {
  list-style: none;
  margin-bottom: 36px;
}

.p-list li {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--text-mid);
  padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-card.p-featured .p-list li {
  color: rgba(255, 255, 255, .65);
  border-bottom-color: rgba(255, 255, 255, .06);
}

.p-list li::before {
  content: '\2726';
  color: var(--gold);
  font-size: 9px;
  flex-shrink: 0;
}

.p-addon {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, .07);
  padding-top: 14px;
  margin-bottom: 36px;
}

.p-card.p-featured .p-addon { border-top-color: rgba(255, 255, 255, .08); }

.p-addon li {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: italic;
}

.p-card.p-featured .p-addon li { color: rgba(255, 255, 255, .38); }

.p-addon-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 6px;
  display: block;
}

.p-card.p-featured .p-addon-label { color: var(--sage-light); }

.p-note {
  font-size: 11px;
  color: var(--text-mid);
  line-height: 1.7;
}

.p-card.p-featured .p-note { color: rgba(255, 255, 255, .3); }

/* ── TIMELINE ── */

.dates-section {
  padding: 90px 60px;
  background: white;
}

.dates-inner {
  max-width: 800px;
  margin: 0 auto;
}

.dates-header {
  margin-bottom: 56px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 168, 76, .05));
}

.tl-item {
  position: relative;
  padding: 0 0 52px 48px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .6s ease, transform .6s ease;
}

.tl-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.tl-item::before {
  content: '';
  position: absolute;
  left: -4.5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, .15);
}

.tl-item.big::before {
  width: 14px;
  height: 14px;
  left: -6px;
  top: 5px;
  box-shadow: 0 0 0 6px rgba(201, 168, 76, .2), 0 0 24px rgba(201, 168, 76, .3);
}

.tl-month {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}

.tl-day {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.tl-item.big .tl-day { color: var(--gold); }

.tl-event {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.tl-item.big .tl-event { color: var(--gold); }

.tl-desc {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── DIRECTOR ── */

.director-section {
  padding: 90px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.director-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dir-portrait {
  position: relative;
}

.dir-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  border-radius: var(--radius-img);
}

.dir-portrait::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid rgba(201, 168, 76, .3);
  z-index: -1;
}

.dir-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
  display: block;
  margin-bottom: -16px;
  font-style: normal;
  user-select: none;
}

.dir-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 32px;
}

.dir-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.dir-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
}

.dir-video { margin-top: 32px; }
.dir-video-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-img);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── SCHEDULE ── */

.schedule-section {
  padding: 90px 60px;
  background: var(--deep);
}

.schedule-inner {
  max-width: 700px;
  margin: 0 auto;
}

.schedule-header {
  text-align: center;
  margin-bottom: 56px;
}

.schedule-date {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.5;
}

.sessions {
  display: grid;
  gap: 2px;
}

.sess {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .04);
  transition: all .3s;
}

.sess:hover {
  background: rgba(201, 168, 76, .06);
  border-color: rgba(201, 168, 76, .18);
}

.sess-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .6;
}

.sess-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-align: center;
}

.sess-time {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  text-align: right;
}

.schedule-foot {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .3);
  margin-top: 32px;
  line-height: 1.7;
}

/* ── FAQ ── */

.faq-section {
  padding: 90px 60px;
  background: var(--ivory);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 56px;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 20px;
}

.faq-qt {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.faq-ic {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  font-weight: 300;
  transition: transform .3s;
}

.faq-item.open .faq-ic {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, .08);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-ans-inner {
  padding: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
}

.faq-item.open .faq-ans {
  max-height: 400px;
}

/* ── CTA ── */

.cta-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--midnight);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('assets/cta-bg.png');
  filter: brightness(.17) saturate(.5);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 15, .7),
    rgba(6, 6, 15, .45) 40%,
    rgba(6, 6, 15, .88) 100%
  );
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, .07), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 18px;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 6vw, 62px);
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  line-height: 1.1;
}

.cta-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-style: italic;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 52px;
  line-height: 1.8;
}

.cta-opens {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .2);
  margin-top: 16px;
  display: block;
}

/* ── COMMONS ── */

.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-eyebrow.light { color: var(--sage-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 50px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-title.light { color: white; }

.gold-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

.gold-line.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── LANGUAGE TOGGLE ── */

.lang-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 12, 24, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, .45);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 13px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 168, 76, .1);
  transition: all .3s;
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(201, 168, 76, .15);
  border-color: var(--gold);
  box-shadow: 0 6px 32px rgba(0, 0, 0, .5), 0 0 20px rgba(201, 168, 76, .15);
  transform: translateY(-2px);
}

/* ── FOOTER ── */

footer {
  padding: 32px 48px;
  background: #040408;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .04);
}

footer p {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .18);
}

footer a {
  color: rgba(201, 168, 76, .4);
  text-decoration: none;
}

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

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    min-height: 280px;
  }

  .feat-card-photo {
    position: relative;
    inset: auto;
    height: 160px;
    flex-shrink: 0;
    filter: brightness(.88) saturate(.9) contrast(1.03) !important;
  }

  .feat-card-overlay { display: none; }

  .feat-card-content {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    padding: 18px 16px 20px;
    background: #111827;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .feat-number { margin-bottom: 4px; }
  .feat-card-line { width: 28px !important; margin-bottom: 8px; }
  .feat-title { font-size: 15px; margin-bottom: 6px; }

  .feat-desc {
    max-height: none !important;
    opacity: 1 !important;
    font-size: 12px;
    line-height: 1.6;
  }

  .feat-card:hover .feat-card-photo {
    transform: none;
    filter: brightness(.88) saturate(.9) contrast(1.03) !important;
  }
}

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-logo img { height: 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 80px 16px 70px; }

  .gallery-section { padding: 60px 12px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 8px; }
  .ga, .gb, .gc, .gd, .ge, .gf, .gg2, .gh, .gi2, .gj, .gk, .gl, .gm, .gn, .go, .gp {
    grid-column: auto;
  }

  .heritage-section, .features-section, .pricing-section,
  .dates-section, .director-section, .schedule-section, .faq-section,
  .steps-section {
    padding: 60px 20px;
  }

  .steps-grid { flex-direction: column; align-items: center; gap: 36px; }
  .step-connector { width: 1px; height: 30px; }

  .feat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .feat-card { min-height: 240px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 0; }
  .p-card.p-featured { transform: none; margin: -1px 0; }
  .p-card { padding: 36px 24px; }

  .tl-item { grid-template-columns: 80px 1fr; gap: 16px; padding: 0 0 40px 36px; }
  .tl-day { font-size: 32px; }

  .director-inner { grid-template-columns: 1fr; gap: 32px; }
  .dir-portrait { max-width: 190px; margin: 0 auto; }

  .sess { grid-template-columns: 1fr; text-align: center; gap: 4px; padding: 16px; }
  .sess-time { text-align: center; }

  .cta-section { padding: 80px 24px; }
  .lang-btn { bottom: 20px; right: 16px; padding: 11px 16px; font-size: 10px; }
  footer { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat-card { min-height: 220px; }
  .feat-card-photo { height: 120px; }
  .feat-title { font-size: 15px; }
  .tl-item { grid-template-columns: 1fr; gap: 6px; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   COUNTDOWN TIMER
   ══════════════════════════════════════════════════════ */

.countdown {
  margin-top: 8px;
  margin-bottom: 12px;
  animation: fadeUp 1s ease .85s both;
}

.countdown-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  margin-bottom: 8px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.cd-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.cd-unit {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-top: 4px;
}

.cd-sep {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  opacity: .4;
  margin-top: -10px;
}

.countdown-expired {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  opacity: .8;
}

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */

.testimonials-section {
  padding: 90px 48px;
  background: linear-gradient(135deg, #0A0F0A, #0C0C1A, #0A0F0A);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-header {
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.test-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-img);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .3);
}

.test-img-wrap {
  height: 200px;
  overflow: hidden;
}

.test-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.85) saturate(.9);
  transition: transform .6s ease;
}

.test-card:hover .test-img-wrap img {
  transform: scale(1.05);
}

.test-content {
  padding: 28px 24px;
  position: relative;
}

.test-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  position: absolute;
  top: 12px;
  left: 20px;
}

.test-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  margin-bottom: 20px;
  margin-top: 8px;
}

.test-author {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 14px;
}

.test-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.test-detail {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-light);
  opacity: .7;
}

@media (max-width: 768px) {
  .testimonials-section { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════
   GALLERY LIGHTBOX
   ══════════════════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(20px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-img);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .5);
  transition: opacity .2s;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 36px;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}

.lightbox-close:hover { color: white; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .6);
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  line-height: 1;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(201, 168, 76, .15);
  border-color: var(--gold);
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   SCROLL TO TOP
   ══════════════════════════════════════════════════════ */

.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 12, 24, .92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, .35);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.scroll-top:hover {
  background: rgba(201, 168, 76, .15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-top { bottom: 80px; left: 16px; width: 38px; height: 38px; font-size: 16px; }
}

/* ══════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ══════════════════════════════════════════════════════ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 12px 20px;
  background: rgba(6, 6, 15, .97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 168, 76, .2);
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s ease;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-link {
  display: block;
  padding: 14px 24px;
  background: linear-gradient(135deg, #D4AF55, #A8872E);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(201, 168, 76, .3);
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  .lang-btn { bottom: 68px; }
  footer { padding-bottom: 80px; }
}

/* ══════════════════════════════════════════════════════
   ACTIVE NAV LINK
   ══════════════════════════════════════════════════════ */

.nav-links a.active {
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════
   PRICE COUNTER ANIMATION
   ══════════════════════════════════════════════════════ */

.p-num.counting {
  transition: none;
}

/* ══════════════════════════════════════════════════════
   INTEREST FORM MODAL
   ══════════════════════════════════════════════════════ */

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.form-modal.open {
  opacity: 1;
  pointer-events: all;
}

.form-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(20px);
}

.form-modal-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #111318;
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: 12px;
  padding: 40px 36px;
}

.form-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .4);
  font-size: 28px;
  cursor: pointer;
  transition: color .2s;
  line-height: 1;
}
.form-modal-close:hover { color: white; }

.form-modal-header { text-align: center; margin-bottom: 28px; }

.form-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.form-modal-sub {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, .4);
}

.form-group {
  margin-bottom: 18px;
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 6px;
}

.form-group .req { color: var(--gold); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 6px;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color .2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, .25);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-group select option {
  background: #1a1d24;
  color: white;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-radio-group {
  display: flex;
  gap: 24px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-radio input[type="radio"] {
  width: auto;
  accent-color: var(--gold);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

/* Form success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.form-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.form-success-msg {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-width: 380px;
}

.form-success .form-submit {
  margin-top: 12px;
  width: auto;
  padding: 12px 48px;
}

@media (max-width: 768px) {
  .form-modal-content { padding: 28px 20px; }
  .form-row { flex-direction: column; gap: 0; }
  .form-modal-title { font-size: 24px; }
}

/* ══════════════════════════════════════════════════════
   PRINT STYLESHEET
   ══════════════════════════════════════════════════════ */

@media print {
  * { background: white !important; color: black !important; box-shadow: none !important; text-shadow: none !important; }
  nav, .nav-hamburger, .mobile-menu, .lang-btn, .scroll-top, .mobile-cta-bar,
  .hero-bg, .hero-overlay, .hero-stars, .sp-wrap, .scroll-hint, .banner-strip,
  .cta-bg, .cta-overlay, .cta-glow, .lightbox, .countdown { display: none !important; }
  body { font-size: 12pt; }
  .hero { min-height: auto; padding: 40px 20px; }
  .hero-content { max-width: 100%; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .gi img { filter: none; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-desc { max-height: none !important; opacity: 1 !important; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .p-card.p-featured { transform: none; background: #f0f0f0 !important; }
  .p-card.p-featured .p-name, .p-card.p-featured .p-num, .p-card.p-featured .p-dollar { color: black !important; }
  section { break-inside: avoid; }
  a { text-decoration: underline; }
  a[href^="#"] { text-decoration: none; }
}
