/* =========================================================
   Andrés David Arcila — Visual System
   ========================================================= */
:root {
  --walnut-dark: #1F120A;
  --walnut-mid:  #2C1A0E;
  --walnut-deep: #120904;
  --walnut-glow: #3D2512;
  --ivory:       #F5EDD8;
  --ivory-soft:  #FAF6EE;
  --ivory-warm:  #EFE4C8;
  --gold:        #C4892A;
  --gold-bright: #E0A840;
  --gold-soft:   #B8862E;
  --gold-pale:   #D4B16A;
  --terra:       #8B4513;
  --forest:      #2C4A2E;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;
  --script: 'Pinyon Script', 'Snell Roundhand', 'Apple Chancery', cursive;
  --display: 'Playfair Display', 'Cormorant Garamond', serif;

  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --easing-out: cubic-bezier(0.16, 1, 0.3, 1);
  --easing-in-out: cubic-bezier(0.83, 0, 0.17, 1);

  --paper-grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.45  0 0 0 0 0.30  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--walnut-dark);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .35s var(--easing-smooth), opacity .35s var(--easing-smooth); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -0.015em; }
h1 { font-size: clamp(3.4rem, 9vw, 7.2rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 2rem); }
h4 { font-size: 1.2rem; }
em, i { font-style: italic; }
strong { font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-soft);
  margin-bottom: 1.2rem;
}
.eyebrow.gold { color: var(--gold-bright); }
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: .8rem;
  margin-bottom: 3px;
  opacity: .7;
}

.on-dark { color: var(--ivory); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; position: relative; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: linear-gradient(180deg, rgba(28,16,8,0.85) 0%, rgba(28,16,8,0.4) 70%, transparent 100%);
  transition: background .5s var(--easing-smooth), backdrop-filter .5s var(--easing-smooth), padding .4s var(--easing-smooth), border-color .4s var(--easing-smooth);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18,9,4,0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(196,137,42,0.18);
  padding: .7rem 0;
}
.nav-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ivory);
  line-height: 1;
  gap: .1rem;
  transition: transform .4s var(--easing-smooth);
}
.brand:hover { transform: translateY(-1px); }
.brand-signature {
  font-family: var(--script);
  font-size: 2.2rem;
  color: var(--gold-bright);
  line-height: 1;
  padding-top: 4px;
  text-shadow: 0 1px 12px rgba(224,168,64,0.18);
}
.brand-tag {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding-left: 6px;
  opacity: .85;
}

.nav-links { display: flex; gap: 2.4rem; align-items: center; }
.nav-links a {
  color: var(--ivory);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: .6rem 0;
}
.nav-links a:not(.cta)::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-bright);
  transition: width .4s var(--easing-out), left .4s var(--easing-out);
}
.nav-links a:not(.cta):hover::after { width: 100%; left: 0; }
.nav-links a.cta {
  border: 1px solid var(--gold);
  padding: .75rem 1.4rem;
  color: var(--gold-bright);
  transition: background .35s var(--easing-smooth), color .35s var(--easing-smooth), box-shadow .35s var(--easing-smooth);
}
.nav-links a.cta:hover {
  background: var(--gold);
  color: var(--walnut-deep);
  box-shadow: 0 6px 22px rgba(224,168,64,0.28);
}

.lang-toggle {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--ivory);
  padding: .5rem .75rem;
  border: 1px solid rgba(196,137,42,.25);
  border-radius: 999px;
  display: flex;
  gap: .35rem;
  align-items: center;
  transition: border-color .35s, background .35s;
}
.lang-toggle:hover { border-color: var(--gold-bright); background: rgba(224,168,64,0.06); }
.lang-toggle .lang-sep { color: rgba(245,237,216,.4); }
.lang-toggle [data-active] { color: var(--gold-bright); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ivory); transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* =========================================================
   HERO — CINEMATIC FULL-BLEED
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 0 4rem;
  background: var(--walnut-deep);
  color: var(--ivory);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: saturate(0.85) brightness(0.6) contrast(1.05);
  transform: scale(1.05);
  z-index: 0;
  animation: heroKenBurns 22s var(--easing-smooth) infinite alternate;
}
@keyframes heroKenBurns {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(18,9,4,0.55) 0%, rgba(18,9,4,0.85) 70%, rgba(18,9,4,0.97) 100%),
    linear-gradient(180deg, rgba(18,9,4,0.55) 0%, rgba(18,9,4,0.4) 40%, rgba(18,9,4,0.95) 100%);
  z-index: 1;
}
.hero-grid {
  position: relative;
  z-index: 3;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}
.hero-text { max-width: 700px; }
.hero-eyebrow-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.hero-eyebrow-row .line {
  flex: 0 0 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--ivory);
  margin-bottom: 1.8rem;
}
.hero-title .line-1,
.hero-title .line-2,
.hero-title .line-3 { display: block; }
.hero-title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--gold-bright);
  font-size: 1.12em;
  letter-spacing: 0;
  display: inline-block;
  line-height: 0.9;
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-pale) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 18px rgba(224,168,64,0.22));
}

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.55;
  color: rgba(245,237,216,0.78);
  max-width: 540px;
  margin-bottom: 2.4rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid;
  transition: all .45s var(--easing-smooth);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '→';
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0;
  transition: transform .35s var(--easing-out);
}
.btn:hover::after { transform: translateX(5px); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--walnut-deep);
  box-shadow: 0 10px 30px -10px rgba(224,168,64,0.45);
}
.btn-gold:hover { background: var(--gold-bright); border-color: var(--gold-bright); box-shadow: 0 14px 40px -10px rgba(224,168,64,0.65); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(245,237,216,0.35);
  color: var(--ivory);
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }

.hero-marquee {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.55);
  padding-top: 2rem;
  border-top: 1px solid rgba(196,137,42,0.18);
}
.hero-marquee li { display: inline-block; }

/* Hero side label - vertical decorative */
.hero-side {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(196,137,42,0.55);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.hero-side::before {
  content: '';
  width: 1px; height: 90px;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
}

/* Featured visual right column */
.hero-feature {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}
.hero-feature-card {
  background: linear-gradient(135deg, rgba(45,26,14,0.5), rgba(28,16,8,0.7));
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(196,137,42,0.22);
  padding: 1.75rem 2rem;
  max-width: 360px;
  position: relative;
}
.hero-feature-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 18px; height: 18px;
  border-top: 1px solid var(--gold-bright);
  border-left: 1px solid var(--gold-bright);
}
.hero-feature-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 18px; height: 18px;
  border-bottom: 1px solid var(--gold-bright);
  border-right: 1px solid var(--gold-bright);
}
.hero-feature-tag {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: .8rem;
}
.hero-feature-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: .6rem;
}
.hero-feature-meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(245,237,216,0.6);
  letter-spacing: 0.05em;
}

.hero-vinyl {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--gold-bright) 0%, var(--gold) 12%, var(--walnut-deep) 13%, var(--walnut-deep) 18%, var(--walnut-mid) 19%, var(--walnut-deep) 100%);
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 0 40px rgba(0,0,0,0.4);
  animation: vinylSpin 28s linear infinite;
  margin-right: 2rem;
}
.hero-vinyl::before {
  content: '';
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(245,237,216,0.04);
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0px, transparent 2px, rgba(245,237,216,0.03) 2px, rgba(245,237,216,0.03) 3px);
}
.hero-vinyl::after {
  content: '';
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
  box-shadow: 0 0 0 4px var(--walnut-deep), inset 0 0 0 2px rgba(0,0,0,0.4);
}
@keyframes vinylSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  color: rgba(245,237,216,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  z-index: 4;
}
.scroll-cue .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: scrollPulse 2.4s var(--easing-in-out) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* =========================================================
   STRIP (marquee with composer names)
   ========================================================= */
.strip {
  background: var(--walnut-deep);
  border-top: 1px solid rgba(196,137,42,0.15);
  border-bottom: 1px solid rgba(196,137,42,0.15);
  overflow: hidden;
  padding: 1.6rem 0;
  position: relative;
}
.strip::before, .strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.strip::before { left: 0; background: linear-gradient(90deg, var(--walnut-deep), transparent); }
.strip::after  { right: 0; background: linear-gradient(-90deg, var(--walnut-deep), transparent); }
.strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: stripScroll 38s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.strip-track span:not([aria-hidden]) {
  font-style: italic;
}
.strip-track span[aria-hidden] {
  color: var(--gold-soft);
  opacity: 0.5;
  font-size: 0.8rem;
  align-self: center;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 9rem 0;
  position: relative;
}
.section-ivory {
  background: var(--ivory-soft);
  color: var(--walnut-dark);
}
.section-ivory::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--paper-grain);
  opacity: .35;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.section-walnut {
  background: var(--walnut-deep);
  color: var(--ivory);
}
.section-walnut::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(224,168,64,0.08), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(139,69,19,0.12), transparent 50%);
  pointer-events: none;
}
.section > .container { position: relative; z-index: 2; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}
.section-head .eyebrow { display: inline-block; }
.section-head .eyebrow::before { display: none; }
.section-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: rgba(245,237,216,0.7);
  margin-top: 1.2rem;
  line-height: 1.55;
}
.section-ivory .section-sub { color: rgba(31,18,10,0.65); }

/* Section ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 200px;
  opacity: 0.7;
}
.ornament .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament .diamond {
  width: 8px; height: 8px;
  background: var(--gold-bright);
  transform: rotate(45deg);
}

/* =========================================================
   ABOUT
   ========================================================= */
.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about-img {
  position: relative;
}
.photo-frame {
  position: relative;
  overflow: hidden;
  background: var(--walnut-dark);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--easing-smooth), filter 1.2s var(--easing-smooth);
  filter: saturate(0.92);
}
.photo-frame:hover img { transform: scale(1.04); filter: saturate(1.05); }
.photo-frame.tall { aspect-ratio: 4/5; }
.photo-frame .corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold-bright);
  border-style: solid;
  border-width: 0;
  z-index: 2;
  pointer-events: none;
}
.photo-frame .corner.tl { top: -1px; left: -1px; border-top-width: 1.5px; border-left-width: 1.5px; }
.photo-frame .corner.tr { top: -1px; right: -1px; border-top-width: 1.5px; border-right-width: 1.5px; }
.photo-frame .corner.bl { bottom: -1px; left: -1px; border-bottom-width: 1.5px; border-left-width: 1.5px; }
.photo-frame .corner.br { bottom: -1px; right: -1px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.stat-card {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  background: var(--walnut-deep);
  color: var(--ivory);
  padding: 2rem 2.4rem;
  z-index: 3;
  box-shadow: 0 24px 60px rgba(31,18,10,0.32);
  border: 1px solid rgba(196,137,42,0.2);
}
.stat-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 14px; height: 14px;
  border-top: 1.5px solid var(--gold-bright);
  border-left: 1.5px solid var(--gold-bright);
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 14px; height: 14px;
  border-bottom: 1.5px solid var(--gold-bright);
  border-right: 1.5px solid var(--gold-bright);
}
.stat-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--gold-bright);
}
.stat-num span { font-size: 2rem; vertical-align: super; }
.stat-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.7);
  margin-top: .5rem;
}

.about-text h2 {
  margin-bottom: 1.8rem;
  color: var(--walnut-dark);
}
.about-text h2 em {
  font-family: var(--script);
  color: var(--gold);
  font-style: normal;
  font-size: 1.15em;
}
.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.32rem;
  line-height: 1.5;
  color: var(--walnut-mid);
  margin-bottom: 1.6rem;
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}
.about-text p { margin-bottom: 1.2rem; color: rgba(31,18,10,0.78); }

.cred-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(196,137,42,0.25);
}
.cred-grid li {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.cred-grid span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--walnut-dark);
  letter-spacing: -0.01em;
}
.cred-grid small {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =========================================================
   GALLERY — Editorial Mosaic
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  grid-auto-rows: 180px;
}
.g {
  position: relative;
  overflow: hidden;
  background: var(--walnut-dark);
  cursor: pointer;
}
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--easing-smooth), filter 1.4s var(--easing-smooth);
  filter: saturate(0.85) brightness(0.92);
}
.g:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.g::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18,9,4,0.85) 100%);
  opacity: .7;
  transition: opacity .4s;
  pointer-events: none;
}
.g:hover::after { opacity: 1; }
.g figcaption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  right: 1.4rem;
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .5s var(--easing-out), opacity .5s var(--easing-out);
}
.g:hover figcaption { transform: translateY(0); opacity: 1; }
.g figcaption::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold-bright);
  margin-bottom: .5rem;
}

.g1 { grid-column: span 3; grid-row: span 2; }
.g2 { grid-column: span 3; grid-row: span 2; }
.g3 { grid-column: span 2; grid-row: span 2; }
.g4 { grid-column: span 2; grid-row: span 2; }
.g5 { grid-column: span 2; grid-row: span 2; }
.g6 { grid-column: span 6; grid-row: span 2; }

/* =========================================================
   PERFORMANCES — Editorial entries
   ========================================================= */
.perf-list {
  list-style: none;
  max-width: 960px;
  margin: 0 auto;
}
.perf-list > li {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: auto auto;
  column-gap: 3rem;
  row-gap: .9rem;
  padding: 2.8rem 0;
  border-top: 1px solid rgba(31,18,10,0.12);
  position: relative;
  transition: padding .5s var(--easing-smooth);
}
.perf-list > li > .perf-meta { grid-column: 1; grid-row: 1 / span 2; }
.perf-list > li > h3 { grid-column: 2; grid-row: 1; }
.perf-list > li > p { grid-column: 2; grid-row: 2; }
.perf-list > li:last-child { border-bottom: 1px solid rgba(31,18,10,0.12); }
.perf-list > li::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .8s var(--easing-out);
}
.perf-list > li:hover::before { width: 100%; }
.perf-list > li:hover { padding-left: 1.5rem; padding-right: 1.5rem; }
.perf-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.perf-type {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.perf-date {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--walnut-dark);
  letter-spacing: -0.01em;
}
.perf-list h3 {
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: .8rem;
  color: var(--walnut-dark);
}
.perf-list p {
  color: rgba(31,18,10,0.7);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   REPERTOIRE
   ========================================================= */
.program {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(45,26,14,0.4), rgba(28,16,8,0.6));
  padding: 4rem 4rem;
  border: 1px solid rgba(196,137,42,0.2);
  position: relative;
}
.program::before, .program::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold-bright);
  border-style: solid;
  border-width: 0;
}
.program::before { top: -1px; left: -1px; border-top-width: 1.5px; border-left-width: 1.5px; }
.program::after { bottom: -1px; right: -1px; border-bottom-width: 1.5px; border-right-width: 1.5px; }

.program li {
  display: flex;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(196,137,42,0.12);
  align-items: baseline;
}
.program li:last-child { border-bottom: none; }
.program .num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-bright);
  min-width: 40px;
  letter-spacing: 0.05em;
}
.program h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: .3rem;
  font-size: 1.4rem;
}
.program h3 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-pale);
  font-size: 0.85em;
}
.composer {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  color: var(--gold-pale);
  text-align: center;
  max-width: 800px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  position: relative;
}
.quote::before, .quote::after {
  content: '"';
  font-family: var(--display);
  font-size: 5rem;
  color: var(--gold);
  opacity: .4;
  position: absolute;
  line-height: 1;
}
.quote::before { top: -1.5rem; left: -1rem; }
.quote::after { bottom: -3rem; right: -1rem; transform: scaleX(-1); }

/* =========================================================
   PRESS
   ========================================================= */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.press-grid blockquote {
  background: var(--walnut-deep);
  color: var(--ivory);
  padding: 3rem 2.4rem;
  position: relative;
  border-top: 2px solid var(--gold);
  transition: transform .5s var(--easing-smooth), box-shadow .5s var(--easing-smooth);
}
.press-grid blockquote:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(31,18,10,0.2); }
.press-grid blockquote::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.4rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
}
.press-grid p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ivory);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.press-grid footer {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(196,137,42,0.2);
}

/* =========================================================
   CONTACT
   ========================================================= */
.section-contact {
  background: var(--walnut-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(224,168,64,0.1), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(139,69,19,0.18), transparent 50%);
  pointer-events: none;
}
.strings {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 6rem 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
}
.strings span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(196,137,42,0.2);
}
.ce-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: .5rem;
}
.ce-val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
a.ce-val:hover { color: var(--gold-bright); }

.contact-form {
  background: linear-gradient(180deg, rgba(45,26,14,0.55), rgba(28,16,8,0.7));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(196,137,42,0.22);
  padding: 3rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  position: relative;
}
.contact-form::before, .contact-form::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold-bright);
  border-style: solid;
  border-width: 0;
}
.contact-form::before { top: -1px; left: -1px; border-top-width: 1.5px; border-left-width: 1.5px; }
.contact-form::after { bottom: -1px; right: -1px; border-bottom-width: 1.5px; border-right-width: 1.5px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-bright);
  gap: .5rem;
  font-family: var(--sans);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(18,9,4,0.45);
  border: 1px solid rgba(196,137,42,0.2);
  color: var(--ivory);
  padding: .95rem 1rem;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  transition: border-color .3s, background .3s;
  font-style: normal;
}
.contact-form textarea { font-family: var(--serif); font-style: italic; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold-bright);
  background: rgba(18,9,4,0.7);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(245,237,216,0.4); }
.contact-form button { align-self: flex-start; margin-top: .5rem; }
.form-msg {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--walnut-deep);
  color: var(--ivory);
  padding: 5rem 0 2.5rem;
  border-top: 1px solid rgba(196,137,42,0.18);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem;
  align-items: center;
}
.footer-brand-block { display: flex; flex-direction: column; gap: .3rem; }
.footer-signature {
  font-family: var(--script);
  font-size: 3.2rem;
  color: var(--gold-bright);
  line-height: 1;
  margin: 0 0 .25rem;
  text-shadow: 0 1px 16px rgba(224,168,64,0.15);
}
.footer-tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.85;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.65);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold-bright); }
.copyright {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(245,237,216,0.45);
  text-align: right;
}

/* =========================================================
   ANIMATIONS / REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--easing-out), transform 1s var(--easing-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 4rem; }
  .hero-feature { align-items: flex-start; }
  .hero-side { display: none; }
  .hero-vinyl { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 4rem; }
  .stat-card { right: 1rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .g1, .g2 { grid-column: span 2; }
  .g3, .g4, .g5 { grid-column: span 2; }
  .g6 { grid-column: span 4; }
  .perf-list > li { grid-template-columns: 1fr; gap: 1rem; }
  .program { padding: 2.5rem 2rem; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 5.5rem 0; }
  .nav-links { display: none; position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px; background: var(--walnut-deep); flex-direction: column; align-items: flex-start; padding: 6rem 2rem 2rem; gap: 1.8rem; box-shadow: -20px 0 60px rgba(0,0,0,0.4); }
  .nav-links.open { display: flex; }
  .lang-toggle { align-self: flex-start; }
  .nav-toggle { display: flex; z-index: 110; }
  .brand-signature { font-size: 1.85rem; }
  .brand-tag { font-size: 0.5rem; letter-spacing: .38em; }
  .hero { padding-top: 7rem; min-height: 90vh; }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .stat-card { bottom: -1.5rem; right: 0.5rem; padding: 1.4rem 1.6rem; }
  .stat-num { font-size: 3rem; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery .g { grid-column: span 1 !important; grid-row: span 1 !important; }
  .perf-list > li:hover { padding-left: 0; padding-right: 0; }
  .program { padding: 2rem 1.4rem; }
  .program li { gap: 1rem; }
  .contact-extras { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-brand-block { align-items: center; }
  .footer-nav { justify-content: center; }
  .copyright { text-align: center; }
}

/* =========================================================
   MOBILE BUG FIXES — overflow, tap targets, menu
   ========================================================= */

/* Grid tracks must shrink below content min-width on mobile.
   Without min-width:0 or minmax(0,1fr), long inputs/text force
   the column to its min-content width and overflow the viewport. */
@media (max-width: 1024px) {
  .contact-inner,
  .contact-extras,
  .two-col,
  .hero-grid,
  .press-grid,
  .footer-inner,
  .perf-list > li {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-inner > *,
  .contact-form,
  .contact-form > *,
  .contact-form .row,
  .contact-form .row > * {
    min-width: 0;
    max-width: 100%;
  }
  .contact-form { padding: 2rem 1.4rem; }
  .contact-form input,
  .contact-form textarea,
  .contact-form select { width: 100%; max-width: 100%; }
  .contact-form .row { grid-template-columns: minmax(0, 1fr); }
}

/* Below 760: lock everything to a safe column, restore stacked rows
   for the two-column form fields. */
@media (max-width: 760px) {
  html, body { max-width: 100%; overflow-x: hidden; }

  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  .contact-extras { grid-template-columns: minmax(0, 1fr); gap: 1.4rem; }
  .ce-val { word-break: break-word; overflow-wrap: anywhere; }

  /* iOS form zoom prevention — inputs must be ≥16px */
  .contact-form input,
  .contact-form textarea,
  .contact-form select { font-size: 16px; }

  /* Tap targets — Apple HIG minimum 44px */
  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 10px 8px;
    justify-content: center;
    align-items: center;
  }
  .nav-toggle span { width: 24px; }

  .nav-links a {
    padding: 0.7rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1rem;
  }
  .nav-links a.cta { width: auto; padding: 0.9rem 1.6rem; min-height: 44px; }

  .lang-toggle { min-height: 44px; padding: 0.5rem 0.8rem; }

  .ce-val {
    display: inline-block;
    padding: 0.4rem 0;
    min-height: 44px;
    line-height: 1.5;
  }

  .footer-nav a { padding: 0.6rem 0.4rem; min-height: 44px; display: inline-flex; align-items: center; }

  /* Disable magnetic-hover transform on touch (the JS still runs on
     mousemove; some Android browsers emulate mouse events and leave
     the button shifted). */
  .btn { transition: transform .3s var(--easing-smooth), background .35s; }
}

/* Skip link — keep it 1×1 visually but make it focusable + reachable.
   Currently 1×1 is fine for screen readers; on focus, expose it as
   a 44px target. */
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0.75rem 1rem;
  background: var(--walnut-dark);
  color: var(--ivory);
  z-index: 9999;
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}

/* Prevent the magnetic-hover JS from leaving CTAs offset on touch screens */
@media (hover: none) {
  .btn { transform: none !important; }
}

/* Tablet — desktop nav still visible but make sure tap targets are comfy */
@media (min-width: 761px) and (max-width: 1024px) {
  .nav-links a { padding: 0.6rem 0; min-height: 44px; display: inline-flex; align-items: center; }
  .lang-toggle { min-height: 44px; }
}
