/* ==========================================
   ANAHIT MUSIC - main.css
   Vanilla CSS, custom property tokens
   Day mode default, dark via prefers-color-scheme
   ========================================== */

@font-face {
  font-family: 'NalikaSignature';
  src: url('../fonts/NalikaSignature-solid.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
html { -webkit-text-size-adjust: 100%; }

/* ---- Tokens ---- */
:root {
  --ink:         #1A1812;
  --ink-2:       #5A5248;
  --ink-muted:   #8A8070;
  --accent:      #C9A96E;
  --accent-2:    #E0C080;
  --bg:          #FAFAF8;
  --bg-2:        #F3EDE4;
  --surface:     #EEEAE0;
  --line:        rgba(26,24,18,0.10);
  --line-strong: rgba(26,24,18,0.20);

  /* Hero (always dark) */
  --hero-bg:    #0D0B09;
  --hero-ink:   #F0EBE0;
  --hero-muted: rgba(240,235,224,0.50);

  /* Type */
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'NalikaSignature', cursive;

  /* Layout */
  --nav-h:   72px;
  --max-w:   1200px;
  --pad-x:   clamp(1.5rem, 5vw, 3rem);
  --section: clamp(5rem, 10vw, 8rem);
  --r:       6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-family: var(--font-body); font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--ink-2); }

.logo-script {
  font-family: var(--font-script);
  font-weight: normal;
  line-height: 1;
  color: var(--ink);
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--section); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0D0B09;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-hero-primary {
  background: var(--accent);
  color: #0D0B09;
  border-color: var(--accent);
}
.btn-hero-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.btn-hero-ghost {
  background: transparent;
  color: var(--hero-ink);
  border-color: rgba(240,235,224,0.30);
}
.btn-hero-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

/* ==========================================
   NAV
   ========================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(250,250,248,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo .logo-script {
  font-size: 2.75rem;
  color: var(--hero-ink);
  transition: color 0.3s;
}
.site-header.scrolled .nav-logo .logo-script { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.75);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent); }
.site-header.scrolled .nav-links a { color: var(--ink-2); }
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a[aria-current="page"] { color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-actions .btn-sm {
  color: rgba(240,235,224,0.80);
  border-color: rgba(240,235,224,0.25);
}
.nav-actions .btn-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.site-header.scrolled .nav-actions .btn-sm {
  color: var(--ink-2);
  border-color: var(--line-strong);
}
.site-header.scrolled .nav-actions .btn-sm:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: var(--hero-ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.site-header.scrolled .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #0D0B09;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu nav a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--hero-ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(240,235,224,0.07);
  transition: color 0.2s, padding-left 0.25s;
  display: block;
}
.mobile-menu nav a:first-child { border-top: 1px solid rgba(240,235,224,0.07); }
.mobile-menu nav a:hover { color: var(--accent); padding-left: 0.5rem; }
.mobile-social {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
.mobile-social a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.4);
  transition: color 0.2s;
}
.mobile-social a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ==========================================
   HERO (always dark section)
   ========================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
  overflow: hidden;
}
.hero-notes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.music-note {
  position: absolute;
  bottom: -3rem;
  color: var(--accent);
  animation: floatNote linear forwards;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  font-style: normal;
  line-height: 1;
}
@keyframes floatNote {
  0%   { transform: translateY(0) rotate(0deg) scale(0.85); opacity: 0; }
  8%   { opacity: 1; }
  80%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) rotate(28deg) scale(1.05); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-h) + 1rem);
  padding-bottom: 5rem;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-fullname {
  font-family: var(--font-script);
  font-size: clamp(4.5rem, 10.5vw, 9rem);
  color: var(--hero-ink);
  font-weight: normal;
  line-height: 1.0;
  margin-bottom: 2.5rem;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  color: var(--hero-ink);
  font-style: italic;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.45;
  margin-bottom: 3rem;
  margin-inline: auto;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--hero-muted);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBob 2.2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  background: var(--hero-bg);
  padding: calc(var(--nav-h) + 4.5rem) 0 4.5rem;
  text-align: center;
}
.page-hero h1 {
  color: var(--hero-ink);
  margin-bottom: 1rem;
  font-family: var(--font-head);
}
.page-hero .lead {
  color: var(--hero-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.6;
}
.page-hero .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ==========================================
   UTILITY
   ========================================== */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-head .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-head h2 { margin-bottom: 0.75rem; font-weight: 600; }
.section-head p { max-width: 580px; font-size: 1.05rem; font-weight: 500; }
.text-center { text-align: center; }
.section-head.text-center p { margin-inline: auto; }
.divider {
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  margin: 1.25rem 0;
  border: none;
}
.text-center .divider { margin-inline: auto; }

/* ==========================================
   HOME - THREE PILLARS
   ========================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  transition: background 0.2s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--bg-2); }
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.pillar h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); margin-bottom: 0.75rem; }
.pillar p { font-size: 0.9375rem; }
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}
.pillar-link:hover { gap: 0.7rem; }
@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--line); }
  .pillar:last-child { border-bottom: none; }
}

/* ==========================================
   HOME - ABOUT SNIPPET
   ========================================== */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about-snippet .eyebrow { display: block; margin-bottom: 0.75rem; }
.about-snippet h2 { margin-bottom: 1.5rem; }
.about-snippet p { margin-bottom: 1rem; }
.about-snippet .btn { margin-top: 1.5rem; }
.about-photo {
  aspect-ratio: 4/5;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--ink-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-photo-placeholder .note-icon {
  font-size: 3rem;
  color: var(--line-strong);
}
@media (max-width: 768px) {
  .about-snippet { grid-template-columns: 1fr; }
  .about-photo { aspect-ratio: 3/2; }
}

/* ==========================================
   QUOTE SECTION
   ========================================== */
.quote-section {
  background: var(--bg-2);
  padding: var(--section);
  text-align: center;
}
.quote-section blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--ink);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.45;
}
.quote-section cite {
  display: block;
  margin-top: 1.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* ==========================================
   PACKAGES / PRICING GRID
   ========================================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.package-card {
  background: var(--bg);
  padding: clamp(2rem, 3vw, 2.75rem);
  transition: background 0.2s;
}
.package-card:hover { background: var(--bg-2); }
.package-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.package-card h3 { margin-bottom: 0.5rem; font-size: 1.35rem; min-height: 2.3em; }
.package-card .package-desc { font-size: 0.875rem; margin-bottom: 1.25rem; min-height: 4.95em; }
@media (max-width: 560px) {
  .package-card h3, .package-card .package-desc { min-height: 0; }
}
.package-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.package-card ul li {
  font-size: 0.875rem;
  color: var(--ink-2);
  padding-left: 1.1rem;
  position: relative;
}
.package-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ==========================================
   SERVICES CARDS
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.service-card {
  padding: 2rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  background: var(--bg-2);
}
.service-card .svc-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; }

/* ==========================================
   TRACKS (Piano / Theory / Vocal)
   ========================================== */
.tracks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.track {
  background: var(--bg);
  padding: clamp(2.25rem, 3.5vw, 3rem) clamp(1.75rem, 2.5vw, 2.5rem);
  text-align: left;
  transition: background 0.2s;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}
.track:hover { background: var(--bg-2); }
.track-icon {
  font-size: 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: block;
  color: var(--accent);
  stroke-width: 1.5;
}
.track h3 { margin-bottom: 0.6rem; font-size: 1.35rem; }
.track p { font-size: 0.9375rem; }
@media (max-width: 640px) { .track { padding: clamp(1.75rem,6vw,2.5rem); } }
@media (max-width: 640px) { .tracks { grid-template-columns: 1fr; } }

/* ==========================================
   FEATURES LIST
   ========================================== */
.feature-split-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
}
.feature-split-media {
  min-height: 100%;
  border-radius: var(--r);
  overflow: hidden;
}
.feature-split-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
.feature-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-split-content .section-head { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
@media (max-width: 860px) {
  .feature-split-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split-media { max-width: 420px; margin-inline: auto; }
  .feature-split-media img { height: auto; min-height: 0; aspect-ratio: auto; object-position: center; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-icon { font-size: 1.4rem; color: var(--accent); }
.feature-item h4 { font-size: 1rem; }
.feature-item p  { font-size: 0.875rem; }

/* ==========================================
   PROGRAM LEVELS (CMP)
   ========================================== */
.levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.level-card { background: var(--bg); padding: 2rem 2rem 2.25rem; }
.level-card:hover { background: var(--bg-2); }
.level-number {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.level-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.level-sub {
  font-size: 0.875rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.level-card p { font-size: 0.875rem; }
.level-cert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--accent);
  border-radius: 100px;
}

/* ==========================================
   HUMANITARIAN TIMELINE
   ========================================== */
.timeline {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid var(--line-strong);
  margin-left: 1.5rem;
}
.timeline-item {
  position: relative;
  padding: 0 0 3.5rem 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.timeline-year {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}
.timeline-item h3 { margin-bottom: 0.65rem; font-size: 1.4rem; }
.timeline-item p  { font-size: 0.9375rem; max-width: 600px; }
.timeline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.timeline-link:hover { gap: 0.7rem; }

/* ==========================================
   CONTACT FORM
   ========================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field.full { grid-column: 1/-1; }
.form-field label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--accent); }
.form-field textarea { min-height: 140px; resize: vertical; }
.honeypot { display: none; }
.form-submit { margin-top: 0.5rem; }
.form-status {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--ink-2);
  min-height: 1.4em;
}
.form-status.success { color: #4A9E6B; }
.form-status.error   { color: #C94040; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* ==========================================
   CONTACT INFO BLOCK
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-info h2  { margin-bottom: 0.75rem; }
.contact-info .lead { font-size: 1.05rem; margin-bottom: 2.5rem; color: var(--ink-2); }
.contact-detail { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-detail-item { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.contact-detail-value { font-size: 1rem; color: var(--ink); }
.contact-detail-value a:hover { color: var(--accent); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 1rem;
  border: 1.5px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================
   FEATURE BANNER (full-bleed image)
   ========================================== */
.feature-banner {
  position: relative;
  min-height: clamp(420px, 48vw, 640px);
  display: flex;
  align-items: flex-end;
  background-image: url('../img/events-banner.webp');
  background-size: cover;
  background-position: 18% 18%;
  overflow: hidden;
}
.feature-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(13,11,9,0.72) 0%, rgba(13,11,9,0.20) 38%, rgba(13,11,9,0) 70%),
    linear-gradient(to right, rgba(13,11,9,0) 38%, rgba(13,11,9,0.45) 78%, rgba(13,11,9,0.72) 100%);
}
.feature-banner .container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.75rem);
}
.feature-banner .banner-text {
  margin-left: auto;
  max-width: 440px;
  text-align: right;
}
.feature-banner .eyebrow { color: var(--accent-2); display: block; margin-bottom: 0.85rem; }
.feature-banner h2 {
  color: #F0EBE0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
}
.feature-banner .btn-hero-primary { color: #0D0B09; }
@media (max-width: 760px) {
  .feature-banner {
    align-items: flex-end;
    background-position: 64% center;
  }
  .feature-banner::after {
    background: linear-gradient(to top, rgba(13,11,9,0.85) 0%, rgba(13,11,9,0.35) 45%, rgba(13,11,9,0.08) 100%);
  }
  .feature-banner .container { padding-bottom: clamp(2.25rem, 6vw, 3rem); padding-top: 4rem; }
  .feature-banner .banner-text { margin-left: 0; max-width: 100%; text-align: left; }
}

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
  background: var(--accent);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  text-align: center;
}
.cta-strip h2 { color: #0D0B09; margin-bottom: 0.75rem; }
.cta-strip p  { color: rgba(13,11,9,0.65); margin-bottom: 2rem; font-size: 1.0625rem; }
.cta-strip .btn {
  background: #0D0B09;
  color: var(--accent);
  border-color: #0D0B09;
}
.cta-strip .btn:hover {
  background: transparent;
  color: #0D0B09;
  border-color: #0D0B09;
  transform: translateY(-1px);
}

/* ==========================================
   DROSH PAGE
   ========================================== */
.slides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--line);
}
.slide-img {
  aspect-ratio: 4/3;
  background: var(--surface);
  overflow: hidden;
}
.slide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.slide-img:hover img { transform: scale(1.04); }
.org-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.org-card {
  padding: 1.75rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r);
  transition: border-color 0.2s;
}
.org-card:hover { border-color: var(--accent); }
.org-card h4  { margin-bottom: 0.5rem; }
.org-card p   { font-size: 0.875rem; margin-bottom: 1rem; }
.org-card a   { font-size: 0.8125rem; font-weight: 500; color: var(--accent); }

/* ==========================================
   PROSE (update page)
   ========================================== */
.prose {
  max-width: 720px;
  line-height: 1.8;
}
.prose h3 { margin: 2.25rem 0 0.75rem; font-size: 1.5rem; }
.prose h4 { margin: 1.75rem 0 0.6rem; }
.prose p  { margin-bottom: 1rem; }
.prose img { width: 100%; border-radius: var(--r); margin: 1.75rem 0; }
.prose .update-date {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
  display: block;
}
.prose ul { padding-left: 1.25rem; list-style: disc; margin-bottom: 1rem; }
.prose ul li { font-size: 0.9375rem; color: var(--ink-2); margin-bottom: 0.4rem; }

/* ==========================================
   CLASS PHOTO GALLERY
   ========================================== */
.class-gallery-wrap {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.class-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
}
.class-gallery img {
  width: calc((100% - 40px) / 6);
  height: auto;
  display: block;
  transition: opacity 0.25s;
}
.class-gallery img:hover { opacity: 0.82; }
@media (max-width: 900px) {
  .class-gallery img { width: calc((100% - 16px) / 3); }
}
@media (max-width: 520px) {
  .class-gallery img { width: calc((100% - 8px) / 2); }
}

/* ==========================================
   FAQ
   ========================================== */
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  margin: 0;
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 680px;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  left: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 300;
  width: min(420px, calc(100% - 2rem));
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(13,11,9,0.16);
  padding: 1.4rem 1.5rem;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 1.1rem;
}
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.6rem; justify-content: flex-end; }
.cookie-accept {
  background: var(--accent);
  color: #0D0B09;
  border-color: var(--accent);
}
.cookie-accept:hover { background: var(--accent-2); border-color: var(--accent-2); color: #0D0B09; }
@media (max-width: 480px) {
  .cookie-banner { left: 1rem; right: 1rem; width: auto; }
  .cookie-actions .btn { flex: 1; }
}

/* Light, non-blocking cookie notice (non-strict regions) */
.cookie-notice {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: var(--bg);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -8px 30px rgba(13,11,9,0.08);
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { font-size: 0.8rem; color: var(--ink-2); margin: 0; }
.cookie-notice p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.cookie-notice-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
@media (max-width: 560px) {
  .cookie-notice { justify-content: space-between; gap: 0.75rem; }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: #0D0B09;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid rgba(240,235,224,0.07);
}
.footer-brand .logo-script {
  font-size: 2.5rem;
  color: var(--hero-ink);
  margin-bottom: 0.85rem;
  display: block;
}
.footer-brand p { color: rgba(240,235,224,0.38); font-size: 0.875rem; line-height: 1.75; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.35);
  margin-bottom: 1.5rem;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-nav-links a {
  font-size: 0.9375rem;
  color: rgba(240,235,224,0.60);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--accent); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}
.footer-contact-list a {
  font-size: 0.875rem;
  color: rgba(240,235,224,0.60);
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 1.25rem;
}
.footer-social a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,235,224,0.35);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(240,235,224,0.20); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rv.on { opacity: 1; transform: none; }
.rv-d1 { transition-delay: 0.1s; }
.rv-d2 { transition-delay: 0.2s; }
.rv-d3 { transition-delay: 0.3s; }
.rv-d4 { transition-delay: 0.4s; }

/* ==========================================
   BIO
   ========================================== */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.bio-photo {
  aspect-ratio: 3/4;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  font-size: 3rem;
}
.bio-text .eyebrow { display: block; margin-bottom: 0.75rem; }
.bio-text h2 { margin-bottom: 1.5rem; }
.bio-text p  { margin-bottom: 1rem; }
.bio-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.bio-cred {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--ink-2);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { aspect-ratio: 16/9; }
}

/* ==========================================
   INFO STRIP
   ========================================== */
.info-strip {
  background: var(--bg-2);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}
.info-item { text-align: center; }
.info-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.3rem;
}
.info-value {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

/* ==========================================
   CONCERTS (PRIVATE)
   ========================================== */
.concerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.concert-item {
  aspect-ratio: 16/9;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.concert-item iframe { width: 100%; height: 100%; border: none; }
.concert-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--ink-muted);
}

/* ── YouTube video cards ─────────────────────────────────── */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .yt-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
.yt-card { display: flex; flex-direction: column; gap: 0.625rem; }
.yt-thumb {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: #000;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s, transform 0.35s;
}
.yt-thumb:hover img { opacity: 0.75; transform: scale(1.03); }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.yt-play svg {
  width: 52px;
  height: 52px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
  transition: transform 0.2s, opacity 0.2s;
}
.yt-thumb:hover .yt-play svg { transform: scale(1.1); opacity: 1; }
@media (max-width: 600px) { .yt-play svg { width: 42px; height: 42px; } }
.yt-label {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  padding: 0.125rem 0;
}
.yt-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--r);
  display: block;
}

/* Video modal lightbox */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(13,11,9,0.88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.video-modal.open { display: flex; animation: vmFade 0.2s ease; }
@keyframes vmFade { from { opacity: 0; } to { opacity: 1; } }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 980px;
}
.video-modal-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.55);
}
.video-modal-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: #F0EBE0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.video-modal-close:hover { color: var(--accent); transform: scale(1.1); }
@media (max-width: 600px) {
  .video-modal-close { top: -2.5rem; right: 0; }
}

/* ── Events photo gallery ────────────────────────────────── */
.ev-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 210px;
  grid-auto-flow: dense;
  gap: 6px;
}
.ev-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--r) / 2);
  display: block;
  transition: transform 0.35s, opacity 0.25s;
}
.ev-gallery img:hover { opacity: 0.88; transform: scale(1.02); }
.ev-gallery .sp2 { grid-column: span 2; }
.ev-gallery .tall { grid-row: span 2; }
@media (max-width: 680px) {
  .ev-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .ev-gallery .sp2 { grid-column: span 1; }
  .ev-gallery .tall { grid-row: span 1; }
}

/* ==========================================
   REVIEWS CAROUSEL
   ========================================== */
.reviews-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.reviews-strip-controls {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.reviews-track { overflow: hidden; width: 100%; }
.reviews-inner {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 900px) { .review-card { flex-basis: calc(50% - 0.75rem); } }
@media (max-width: 560px) { .review-card { flex-basis: 100%; } }

.review-stars {
  color: var(--accent);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  line-height: 1;
}
.review-card > p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid var(--line);
}
.reviewer-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-head);
  font-style: normal;
}
.reviewer-date { font-size: 0.8125rem; color: var(--ink-2); }

.rv-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--ink-2);
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.rv-btn:hover { background: var(--bg-2); border-color: var(--accent); color: var(--ink); }

.rv-dots { display: flex; gap: 0.4rem; align-items: center; }
.rv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.rv-dot.active { background: var(--accent); transform: scale(1.5); }

.btn-write-review {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  background: transparent;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.btn-write-review:hover { background: var(--accent); color: var(--bg); }

.review-form-wrap {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.75rem;
}
.review-form-wrap.open { max-height: 520px; }
.review-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem;
}
.rv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 520px) { .rv-form-row { grid-template-columns: 1fr; } }

/* ==========================================
   GALLERY FULL-BLEED
   ========================================== */
.gallery-bleed {
  padding: 0 var(--pad-x) var(--section);
}
.gallery-bleed .ev-gallery {
  display: block;
  column-count: 4;
  column-gap: 6px;
}
.gallery-bleed .ev-gallery img {
  width: 100%;
  height: auto;
  object-fit: unset;
  margin-bottom: 6px;
  break-inside: avoid;
}
.gallery-bleed .ev-gallery .sp2,
.gallery-bleed .ev-gallery .tall {
  grid-column: unset;
  grid-row: unset;
}
@media (max-width: 900px) { .gallery-bleed .ev-gallery { column-count: 3; } }
@media (max-width: 560px) { .gallery-bleed .ev-gallery { column-count: 2; } }

/* ==========================================
   LUCIDE ICON SIZING
   ========================================== */
.svc-icon svg   { width: 2rem;    height: 2rem;    stroke: currentColor; fill: none; }
.track-icon svg { width: 2.5rem;  height: 2.5rem;  stroke: currentColor; fill: none; }
.feature-icon svg { width: 1.75rem; height: 1.75rem; stroke: currentColor; fill: none; }
.pillar-icon svg  { width: 1.875rem; height: 1.875rem; stroke: currentColor; fill: none; }
.svc-icon i, .track-icon i, .feature-icon i, .pillar-icon i { display: flex; }

/* ==========================================
   ABOUT PAGE
   ========================================== */
.langs-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.langs-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 0.875rem;
}
@media (max-width: 560px) { .langs-section { grid-template-columns: 1fr; } }

.discography-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .discography-grid { grid-template-columns: 1fr; } }
.album-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.album-card-award { border-color: var(--accent); }
.album-icon {
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}
.album-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}
.album-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.album-award {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==========================================
   FLOATING BOOK CTA
   ========================================== */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 98;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.24);
  background: var(--accent);
  color: #0D0B09 !important;
  border-color: var(--accent);
}
.float-cta.visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--accent-2) !important;
  border-color: var(--accent-2) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  transform: translateY(-2px) !important;
}
@media (max-width: 640px) {
  .float-cta {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
  }
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s ease, visibility 0.55s ease;
  visibility: visible;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
}
.preloader-name {
  font-family: var(--font-script);
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--hero-ink);
  font-weight: normal;
  opacity: 0;
  animation: plFade 0.9s ease forwards 0.2s;
}
@keyframes plFade {
  0%   { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: none; }
}

/* ==========================================
   ENHANCED HOVER STATES
   ========================================== */
.pillar {
  transition: background 0.2s, box-shadow 0.25s;
}
.pillar:hover {
  background: var(--bg-2);
  box-shadow: inset 3px 0 0 var(--accent);
}
.service-card {
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  background: var(--bg-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
