/* ---------------------------------------------------------------------------
   Design tokens — 4-layer system
   Layer 1: neutral foundation (warm hue, never pure black/white)
   Layer 2: single functional accent (amber ramp; lighter step in dark mode)
   Elevation in dark mode = lighter surface, not shadow.
--------------------------------------------------------------------------- */
:root {
  color-scheme: dark;

  --bg-base: #141110;
  --bg-surface: #1d1916;
  --bg-raised: #282320;

  --border-subtle: rgba(238, 229, 216, 0.08);
  --border-default: rgba(238, 229, 216, 0.14);

  --text-primary: #ece6dc;
  --text-secondary: rgba(236, 230, 220, 0.64);
  --text-muted: rgba(236, 230, 220, 0.44);

  --accent: #d6a05e;
  --accent-hover: #e2b277;
  --accent-muted: rgba(214, 160, 94, 0.1);

  --btn-primary-bg: #ece6dc;
  --btn-primary-bg-hover: #fbf6ec;
  --btn-primary-fg: #141110;

  --shadow-card: none;
  --shadow-raised: none;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* 8px spacing grid */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;

  --radius-card: 12px;
  --radius-inner: 8px;
}

html[data-theme="light"] {
  color-scheme: light;

  --bg-base: #f6f1e8;
  --bg-surface: #fdfbf6;
  --bg-raised: #ffffff;

  --border-subtle: rgba(58, 47, 35, 0.08);
  --border-default: rgba(58, 47, 35, 0.16);

  --text-primary: #211c16;
  --text-secondary: rgba(33, 28, 22, 0.66);
  --text-muted: rgba(33, 28, 22, 0.45);

  --accent: #9a6628;
  --accent-hover: #7e5220;
  --accent-muted: rgba(154, 102, 40, 0.08);

  --btn-primary-bg: #211c16;
  --btn-primary-bg-hover: #383026;
  --btn-primary-fg: #f6f1e8;

  --shadow-card: 0 1px 2px rgba(33, 28, 22, 0.04), 0 8px 24px rgba(33, 28, 22, 0.06);
  --shadow-raised: 0 4px 12px rgba(33, 28, 22, 0.08), 0 16px 48px rgba(33, 28, 22, 0.1);
}

@media (prefers-color-scheme: light) {
  html:not([data-theme]) {
    color-scheme: light;

    --bg-base: #f6f1e8;
    --bg-surface: #fdfbf6;
    --bg-raised: #ffffff;

    --border-subtle: rgba(58, 47, 35, 0.08);
    --border-default: rgba(58, 47, 35, 0.16);

    --text-primary: #211c16;
    --text-secondary: rgba(33, 28, 22, 0.66);
    --text-muted: rgba(33, 28, 22, 0.45);

    --accent: #9a6628;
    --accent-hover: #7e5220;
    --accent-muted: rgba(154, 102, 40, 0.08);

    --btn-primary-bg: #211c16;
    --btn-primary-bg-hover: #383026;
    --btn-primary-fg: #f6f1e8;

    --shadow-card: 0 1px 2px rgba(33, 28, 22, 0.04), 0 8px 24px rgba(33, 28, 22, 0.06);
    --shadow-raised: 0 4px 12px rgba(33, 28, 22, 0.08), 0 16px 48px rgba(33, 28, 22, 0.1);
  }
}

/* ------------------------------------------------------------------------ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg-base);
  color: var(--text-secondary);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--accent-muted);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
  flex-shrink: 0;
}

/* --- Typography scale: display / heading / body / caption ----------------- */

h1,
h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h2 {
  max-width: 22ch;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3,
h4 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

p {
  margin: 0;
}

.kicker {
  margin: 0 0 var(--space-2);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  color: var(--text-primary);
  font-size: 1.125rem;
}

/* --- Utilities ------------------------------------------------------------ */

.skip-link {
  position: fixed;
  top: var(--space-2);
  left: var(--space-2);
  z-index: 100;
  transform: translateY(-200%);
  border-radius: var(--radius-inner);
  padding: var(--space-1) var(--space-2);
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  font-weight: 600;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: var(--space-12) 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: var(--space-6);
}

.section-heading p:not(.kicker) {
  margin-top: var(--space-2);
}

/* --- Buttons: hierarchy through contrast, not color ----------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-inner);
  padding: 0 var(--space-3);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--btn-primary-bg-hover);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--border-default);
  text-underline-offset: 4px;
  transition: text-decoration-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: var(--accent);
}

/* --- Header ---------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg-base) 80%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border-subtle);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 64px;
  gap: var(--space-3);
}

.brand strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--serif);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
}

.brand span {
  display: block;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-menu a {
  color: var(--text-secondary);
  transition: color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text-primary);
}

.nav-menu .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: var(--radius-inner);
  padding: 0 var(--space-2);
  background: var(--btn-primary-bg);
  color: var(--btn-primary-fg);
  font-weight: 600;
}

.nav-menu .nav-cta:hover,
.nav-menu .nav-cta:focus-visible {
  background: var(--btn-primary-bg-hover);
  color: var(--btn-primary-fg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  height: 40px;
  padding: 3px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-inner);
  background: transparent;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 100%;
  padding: 0 8px;
  border: none;
  border-radius: calc(var(--radius-inner) - 2px);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--text-primary);
}

.lang-btn.is-active {
  background: var(--accent-muted);
  color: var(--accent);
}

.theme-toggle,
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-inner);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-toggle {
  display: none;
}

/* --- Hero ------------------------------------------------------------------ */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: var(--space-8);
  align-items: center;
  padding-top: var(--space-8);
}

.hero-statement {
  max-width: 36rem;
  margin-top: var(--space-3);
  font-size: 1.125rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin: var(--space-8) 0 0;
}

.hero-facts dt {
  color: var(--text-muted);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--text-primary);
  font-weight: 500;
}

.hero-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  color: var(--text-muted);
}

.hero-photo .lucide {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.hero-photo figcaption {
  font-size: 0.8125rem;
}

/* --- About ------------------------------------------------------------------ */

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-8);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: var(--space-3);
}

/* --- Media composition ------------------------------------------------------ */

.media-copy {
  display: grid;
  gap: var(--space-3);
  max-width: 42rem;
  margin-bottom: var(--space-4);
}

.card-grid--media {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

/* --- Music cards ------------------------------------------------------------ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
}

.music-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  transition: border-color 160ms ease;
}

.music-card:hover {
  border-color: var(--border-default);
}

.card-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-meta .lucide {
  width: 16px;
  height: 16px;
}

.music-card p:not(.card-meta) {
  margin-top: var(--space-1);
  font-size: 0.9375rem;
}

.embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 240px;
  margin-top: var(--space-2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  background: var(--bg-surface);
  color: var(--text-muted);
  text-align: center;
}

.embed-placeholder .lucide {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.embed-placeholder p {
  max-width: 32rem;
  font-size: 0.9375rem;
}

/* --- Agenda: spacing instead of divider lines -------------------------------- */

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: var(--space-8);
  align-items: start;
}

.list-title {
  margin-bottom: var(--space-3);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: var(--space-4);
}

.event-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: var(--space-3);
  align-items: baseline;
}

.event-row.is-past {
  grid-template-columns: minmax(0, 1fr);
}

.event-row.is-past.has-date {
  grid-template-columns: 104px minmax(0, 1fr);
}

.event-when {
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-row p {
  margin-top: 4px;
  font-size: 0.9375rem;
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.event-link .lucide {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.event-link:hover,
.event-link:focus-visible {
  color: var(--accent);
}

.event-link:hover .lucide {
  transform: translateX(2px);
}

/* --- Services ----------------------------------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.service-card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  transition: border-color 160ms ease;
}

.service-card:hover {
  border-color: var(--border-default);
}

.service-card .lucide {
  width: 20px;
  height: 20px;
  margin-bottom: var(--space-2);
  color: var(--accent);
}

.service-card p {
  margin-top: var(--space-1);
  font-size: 0.9375rem;
}

/* --- EPK ------------------------------------------------------------------------ */

.epk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-2);
}

.epk-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  transition: border-color 160ms ease;
}

.epk-card:hover {
  border-color: var(--border-default);
}

.epk-card > .lucide {
  width: 20px;
  height: 20px;
  margin-bottom: var(--space-2);
  color: var(--accent);
}

.epk-card p {
  margin-top: var(--space-1);
  font-size: 0.9375rem;
}

.epk-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: var(--space-2);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.epk-card a .lucide {
  width: 14px;
  height: 14px;
}

.epk-card a:hover,
.epk-card a:focus-visible {
  color: var(--accent);
}

/* --- Gallery ---------------------------------------------------------------------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 240px;
  gap: var(--space-2);
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  background: var(--bg-surface);
  color: var(--text-muted);
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item .lucide {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
}

.gallery-item span {
  padding: 0 var(--space-2);
  font-size: 0.8125rem;
  text-align: center;
}

/* --- Contact ------------------------------------------------------------------------ */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: var(--space-8);
  align-items: start;
}

.contact-copy p:not(.kicker) {
  max-width: 36rem;
  margin-top: var(--space-3);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  margin-top: var(--space-4);
  color: var(--text-primary);
  font-size: 1.0625rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--accent);
}

.social-list {
  display: flex;
  gap: var(--space-1);
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-inner);
  color: var(--text-secondary);
  transition: border-color 160ms ease, color 160ms ease;
}

.social-list a:hover,
.social-list a:focus-visible {
  border-color: var(--border-default);
  color: var(--text-primary);
}

.contact-form {
  display: grid;
  gap: var(--space-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.contact-form label {
  display: grid;
  gap: var(--space-1);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-inner);
  padding: 12px var(--space-2);
  background: var(--bg-base);
  color: var(--text-primary);
  outline: none;
  transition: border-color 160ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* --- Footer --------------------------------------------------------------------------- */

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: var(--space-3);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: var(--space-6) 0;
  font-size: 0.875rem;
}

.site-footer strong {
  color: var(--text-primary);
  font-weight: 600;
}

.site-footer p {
  color: var(--text-muted);
}

.footer-nav {
  display: flex;
  gap: var(--space-3);
}

.footer-nav a {
  color: var(--text-secondary);
  transition: color 160ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text-primary);
}

.footer-copyright {
  color: var(--text-muted);
}

/* --- Responsive ------------------------------------------------------------------------- */

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

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    right: var(--space-2);
    left: var(--space-2);
    display: grid;
    gap: 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    padding: var(--space-1);
    background: var(--bg-raised);
    box-shadow: var(--shadow-raised);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    border-radius: var(--radius-inner);
    padding: 12px var(--space-2);
  }

  .nav-menu a:hover {
    background: var(--accent-muted);
  }

  .nav-actions {
    grid-column: 1 / -1;
    margin-top: var(--space-1);
  }

  .nav-menu .nav-cta {
    flex: 1;
    justify-content: center;
  }

  .hero,
  .agenda-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .hero-media {
    max-width: 480px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .section {
    width: calc(100% - 32px);
    padding: var(--space-8) 0;
  }

  .nav {
    width: calc(100% - 32px);
  }

  .card-grid,
  .service-grid,
  .epk-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-facts {
    gap: var(--space-3);
  }

  .site-footer {
    width: calc(100% - 32px);
  }
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   ART DECO ILLUSTRATIONS & ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* --- Illustration colour tokens -------------------------------------------- */
:root {
  --guitar-body:   #241c14;
  --guitar-neck:   #2e241a;
  --guitar-shadow: rgba(0, 0, 0, 0.5);
  --guitar-string: rgba(236, 230, 220, 0.45);
  --guitar-fret:   rgba(214, 160, 94, 0.35);
}

html[data-theme="light"] {
  --guitar-body:   #efe4d0;
  --guitar-neck:   #e3d4ba;
  --guitar-shadow: rgba(58, 47, 35, 0.18);
  --guitar-string: rgba(33, 28, 22, 0.4);
  --guitar-fret:   rgba(154, 102, 40, 0.4);
}

@media (prefers-color-scheme: light) {
  html:not([data-theme]) {
    --guitar-body:   #efe4d0;
    --guitar-neck:   #e3d4ba;
    --guitar-shadow: rgba(58, 47, 35, 0.18);
    --guitar-string: rgba(33, 28, 22, 0.4);
    --guitar-fret:   rgba(154, 102, 40, 0.4);
  }
}

/* --- Guitar container + perspective ----------------------------------------- */
.hero-media {
  position: relative;
  perspective: 1100px;
  perspective-origin: 50% 40%;
}

.guitar-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

@media (hover: none) {
  .guitar-tilt {
    animation: guitarFloat 7s ease-in-out infinite;
  }
}

.deco-guitar {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: visible;
}

/* --- Stroke roles ------------------------------------------------------------ */
.deco-guitar .s-outline {
  stroke: var(--accent);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.deco-guitar .s-binding {
  stroke: var(--accent);
  stroke-width: 1;
  stroke-opacity: 0.45;
  fill: none;
}

.deco-guitar .s-detail {
  stroke: var(--accent);
  stroke-width: 1.25;
  stroke-opacity: 0.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.deco-guitar .s-fret {
  stroke: var(--guitar-fret);
  stroke-width: 1;
  fill: none;
}

.deco-guitar .s-string {
  stroke: var(--guitar-string);
  stroke-width: 0.9;
  fill: none;
}

.deco-guitar .s-ray {
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.16;
  fill: none;
}

/* --- Fill roles ---------------------------------------------------------------- */
.deco-guitar .f-body   { fill: var(--guitar-body); }
.deco-guitar .f-neck   { fill: var(--guitar-neck); }
.deco-guitar .f-shadow { fill: var(--guitar-shadow); }
.deco-guitar .f-gold   { fill: var(--accent); fill-opacity: 0.85; }

/* --- Ambient motion --------------------------------------------------------------- */
.g-rays-spin {
  transform-origin: 200px 360px;
  animation: rayRotate 150s linear infinite;
}

.deco-guitar .halo {
  stroke: var(--accent);
  stroke-width: 56;
  fill: none;
}

@keyframes rayRotate {
  to { transform: rotate(360deg); }
}

@keyframes haloGlow {
  0%, 100% { opacity: 0; }
  50%      { opacity: 0.05; }
}

@keyframes guitarFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SELF-DRAWING — paths hidden via dashoffset; JS sets --path-len only.
   No inline dash styles, so the .is-drawing rules below always win.
   ═══════════════════════════════════════════════════════════════════════════ */

.deco-guitar .s-outline,
.deco-guitar .s-binding,
.deco-guitar .s-detail,
.deco-guitar .s-fret,
.deco-guitar .s-string {
  stroke-dasharray: var(--path-len, 1200);
  stroke-dashoffset: var(--path-len, 1200);
}

.deco-guitar .f-body,
.deco-guitar .f-neck,
.deco-guitar .f-shadow,
.deco-guitar .f-gold {
  opacity: 0;
}

.is-drawing .deco-guitar .s-outline {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.6s cubic-bezier(0.45, 0, 0.2, 1) 0.1s;
}

.is-drawing .deco-guitar .s-binding {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.45, 0, 0.2, 1) 0.5s;
}

.is-drawing .deco-guitar .s-detail {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.7s ease var(--draw-delay, 1s);
}

.is-drawing .deco-guitar .s-fret {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.4s ease var(--draw-delay, 1.3s);
}

.is-drawing .deco-guitar .s-string {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.6s ease var(--draw-delay, 1.6s);
}

.is-drawing .deco-guitar .f-body,
.is-drawing .deco-guitar .f-neck {
  opacity: 1;
  transition: opacity 0.9s ease 0.2s;
}

.is-drawing .deco-guitar .f-shadow {
  opacity: 1;
  transition: opacity 1.2s ease 0.6s;
}

.is-drawing .deco-guitar .f-gold {
  opacity: 1;
  transition: opacity 0.5s ease 1.7s;
}

/* Rays are not stroke-drawn — they fade in */
.deco-guitar .s-ray,
.deco-guitar .halo {
  opacity: 0;
  transition: opacity 1.2s ease 1.9s;
}

.is-drawing .deco-guitar .s-ray {
  opacity: 0.16;
}

.is-drawing .deco-guitar .s-ray[opacity] {
  opacity: 0.08;
}

.is-drawing .deco-guitar .halo {
  opacity: 1;
  animation: haloGlow 6s ease-in-out infinite 2s;
}

/* --- Contact deco motif ------------------------------------------------------ */
.contact-deco {
  margin: var(--space-4) 0 0;
}

.deco-contact {
  display: block;
  width: 240px;
  overflow: visible;
}

.deco-contact .dc-ray {
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.4;
}

.deco-contact .dc-arc {
  stroke: var(--accent);
  stroke-width: 1;
  fill: none;
  opacity: 0.35;
}

.deco-contact .dc-orn {
  stroke: var(--accent);
  stroke-width: 1;
  fill: none;
  opacity: 0.55;
}

.deco-contact .dc-fill {
  fill: var(--bg-base);
}

.deco-contact .dc-shape {
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Contact self-draw */
.deco-contact .dc-ray,
.deco-contact .dc-arc,
.deco-contact .dc-orn,
.deco-contact .dc-shape {
  stroke-dasharray: var(--path-len, 400);
  stroke-dashoffset: var(--path-len, 400);
}

.deco-contact .dc-fill {
  opacity: 0;
}

.is-drawing .deco-contact .dc-ray {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.7s ease var(--draw-delay, 0s);
}

.is-drawing .deco-contact .dc-arc {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.8s ease 0.5s;
}

.is-drawing .deco-contact .dc-fill {
  opacity: 1;
  transition: opacity 0.3s ease 0.7s;
}

.is-drawing .deco-contact .dc-shape {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.9s cubic-bezier(0.45, 0, 0.2, 1) 0.8s;
}

.is-drawing .deco-contact .dc-orn {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.5s ease 1.3s;
}

/* --- Footer deco sunburst ------------------------------------------------------ */
.footer-deco {
  width: 36px;
  height: 36px;
  opacity: 0.35;
}

.footer-deco line,
.footer-deco circle {
  stroke: var(--accent);
  stroke-width: 1;
  fill: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM (gated behind .js-reveals on <html>)
   ═══════════════════════════════════════════════════════════════════════════ */

.js-reveals [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease var(--reveal-delay, 0s),
    transform 0.55s ease var(--reveal-delay, 0s);
}

.js-reveals [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveals [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s ease var(--reveal-delay, 0s),
    transform 0.5s ease var(--reveal-delay, 0s);
}

.js-reveals [data-reveal-stagger].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MICROINTERACTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.button-primary .lucide {
  transition: transform 200ms ease;
}

.button-primary:hover .lucide,
.button-primary:focus-visible .lucide {
  transform: translateX(3px);
}

.music-card,
.service-card,
.epk-card {
  transition: border-color 160ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.music-card:hover,
.service-card:hover,
.epk-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-raised, 0 8px 24px rgba(0, 0, 0, 0.18));
}

.gallery-item .lucide {
  transition: transform 200ms ease;
}

.gallery-item:hover .lucide {
  transform: scale(1.2);
}

.nav-menu a:not(.nav-cta) {
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   KICKER DECO RULE — line + diamond after each section label
   ═══════════════════════════════════════════════════════════════════════════ */

.deco-rule {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.deco-rule::before {
  content: "";
  flex: 0 1 64px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
  transform: scaleX(1);
  transform-origin: left;
}

.deco-rule::after {
  content: "◆";
  font-size: 6px;
  color: var(--accent);
  opacity: 0.65;
  flex-shrink: 0;
  line-height: 1;
}

.js-reveals [data-reveal] .deco-rule::before {
  transform: scaleX(0);
  transition: transform 0.7s ease 0.25s;
}

.js-reveals [data-reveal].is-visible .deco-rule::before {
  transform: scaleX(1);
}
