/* Novar — elegant serif by Marco Ballarè (self-hosted, original .ttf, unmodified).
   Commercial license: pay-what-you-want donation at marcoballare.com/font-license */
@font-face {
  font-family: "Novar";
  src: url("../fonts/Novar.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =====================================================================
   Sara Gouzy — Mezzo-soprano & voice teacher
   Design system: warm charcoal ground, editorial serif, single
   restrained champagne accent, airy spacing, one cinematic motion.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:        #1d1a20;   /* soft warm charcoal — gentler than near-black */
  --bg-elev:   #272329;   /* slightly raised surfaces */
  --bg-elev-2: #302b32;
  --text:      #f1eee8;   /* warm off-white */
  --text-dim:  #aaa39b;   /* muted warm grey, passes AA on dark */
  --text-faint:#7a736c;
  --line:      rgba(241, 238, 232, 0.13);
  --line-soft: rgba(241, 238, 232, 0.07);
  --accent:    #c2a878;   /* muted champagne — used sparingly */
  --accent-hi: #d8c197;
  --accent-bg: rgba(194, 168, 120, 0.10);

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(5rem, 11vh, 9rem);
  --radius: 4px;        /* one corner-radius system: near-sharp, refined */
  --radius-lg: 8px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  --font-title: "Novar", "Cormorant Garamond", Georgia, serif;  /* elegant serif titles */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif; /* editorial serif accents */
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 350;
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: clip;
}

img, video { display: block; max-width: 100%; height: auto; }

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

::selection { background: var(--accent); color: var(--bg); }

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

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--section-y); }

/* inner-page first section clears the fixed header */
.page-top { padding-top: calc(72px + clamp(2.5rem, 7vh, 5rem)); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-title);
  font-weight: 400;          /* Novar ships a single regular weight */
  line-height: 1.05;
  letter-spacing: -0.005em;
}

.h-xl { font-size: clamp(3rem, 9vw, 6.75rem); }
.h-lg { font-size: clamp(2.25rem, 6vw, 4rem); }
.h-md { font-size: clamp(1.9rem, 4vw, 3rem); }
.h-sm { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.6;
  color: var(--text);
  font-weight: 350;
  max-width: 40ch;
}

.prose { max-width: 64ch; color: var(--text-dim); }
.prose p { margin-block: 1.1em; }
.prose strong, .prose b { color: var(--text); font-weight: 500; }
.prose em { font-family: var(--font-display); font-style: italic; font-size: 1.08em; color: var(--text); }

.muted { color: var(--text-dim); }
.serif-em { font-family: var(--font-display); font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--btn-pad-y) 1.6rem;
  border-radius: 999px;          /* pills for interactive, documented system */
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--primary { background: var(--text); color: #15130f; }
.btn--primary:hover { background: var(--accent-hi); color: #15130f; }

.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-hi); }

/* text link with animated underline */
.link-u {
  position: relative;
  color: var(--text);
  padding-bottom: 2px;
}
.link-u::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.link-u:hover::after { transform: scaleX(1); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 72px;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(29, 26, 32, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.nav {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand .brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

/* language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.lang button {
  background: none; border: none; cursor: pointer;
  color: var(--text-faint);
  padding: 0.25rem 0.4rem;
  font: inherit;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.lang button:hover { color: var(--text-dim); }
.lang button.active { color: var(--accent); }
.lang .sep { color: var(--line); }

/* mobile menu button */
.burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative;
}
.burger span {
  position: absolute; left: 0; height: 1.5px; width: 100%;
  background: var(--text); transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 18px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}
.hero-copy { max-width: 36ch; }
.hero-name {
  font-size: clamp(3.4rem, 9.5vw, 7.5rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-name .ital { font-style: normal; font-weight: 400; }
.hero-role {
  margin-top: 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-tag {
  margin-top: 1.6rem;
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 34ch;
}
.hero-cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* video card (the cinematic reveal trigger) */
.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  isolation: isolate;
}
.video-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: brightness(0.82) saturate(0.95);
}
.video-card:hover img { transform: scale(1.04); filter: brightness(0.7); }
.video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,13,0.55) 100%);
  pointer-events: none;
}
.video-card .play {
  position: absolute; inset: 0; margin: auto;
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(11, 11, 13, 0.35);
  border: 1px solid rgba(242,239,233,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.video-card:hover .play { transform: scale(1.08); border-color: var(--accent); background: rgba(11,11,13,0.2); }
.video-card .play svg { width: 26px; height: 26px; margin-left: 4px; fill: var(--text); }
.video-card:hover .play svg { fill: var(--accent-hi); }
.video-card .vcap {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2;
  font-size: 0.72rem; letter-spacing: 0.04em; color: var(--text);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.video-card .vcap b { font-weight: 600; display: block; }
.video-card .vcap span { color: var(--text-dim); font-size: 0.68rem; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-faint);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.scroll-hint .bar { width: 1px; height: 38px; background: linear-gradient(var(--text-faint), transparent); }

/* ---------- Hero static photo (home, no video) ---------- */
.hero-photo {
  width: 100%; aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-elev);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92) saturate(0.96); }

/* ---------- Hero with full-bleed background image ---------- */
.hero--bg { position: relative; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(29,26,32,0.5) 0%, transparent 15%),
    linear-gradient(90deg, rgba(29,26,32,0.92) 0%, rgba(29,26,32,0.62) 38%, rgba(29,26,32,0.12) 68%, rgba(29,26,32,0.42) 100%),
    linear-gradient(0deg, rgba(29,26,32,0.78) 0%, rgba(29,26,32,0.04) 46%);
}
.hero--bg > .container { position: relative; z-index: 2; }
.hero--bg .hero-copy { max-width: 40ch; }
@media (max-width: 940px) {
  .hero-bg { object-position: center 16%; }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(29,26,32,0.55) 0%, transparent 14%),
      linear-gradient(0deg, rgba(29,26,32,0.94) 0%, rgba(29,26,32,0.45) 42%, rgba(29,26,32,0.22) 72%);
  }
  .hero--bg .hero-copy { max-width: none; }
}

/* ---------- Intro overlay (home entrance: full photo + symbol, lifts like a curtain) ---------- */
.intro {
  position: fixed; inset: 0; z-index: 200;
  background: #0c0a0d; overflow: hidden;
  transition: transform 1s var(--ease);
  will-change: transform;
}
.intro.revealed { transform: translateY(-100%); }   /* the photo lifts to reveal the home page */
.intro-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top; filter: brightness(0.86) saturate(0.96);
}
.intro::after {                                      /* soft vignette so the symbol reads */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 108%, rgba(0,0,0,0.55), transparent 55%);
}
.intro-enter {
  position: absolute; left: 50%; bottom: clamp(2.5rem, 8vh, 5rem);
  transform: translateX(-50%); z-index: 2;
  background: none; border: none; cursor: pointer; padding: 1rem;
  display: grid; justify-items: center; gap: 0.95rem; color: var(--text);
}
.intro-arrow {
  width: 66px; height: 66px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(242, 239, 233, 0.5); background: rgba(8, 8, 9, 0.18);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease), color 0.5s var(--ease);
  animation: enterFloat 2.6s ease-in-out infinite;
}
.intro-enter:hover .intro-arrow,
.intro-enter:focus-visible .intro-arrow {
  animation: none;
  transform: scale(1.1);
  border-color: var(--accent); background: rgba(8, 8, 9, 0.04); color: var(--accent-hi);
}
.intro-arrow svg { width: 22px; height: 22px; }
.intro-enter-label {
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
@keyframes enterFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (prefers-reduced-motion: reduce) {
  .intro { transition: transform 0.35s ease; }
  .intro-arrow { animation: none; }
}

/* ---------- Video lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background: rgba(6, 6, 7, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
  padding: var(--pad);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  transform: scale(0.94);
  transition: transform 0.6s var(--ease);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-inner iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute; top: clamp(1rem, 3vw, 2rem); right: clamp(1rem, 3vw, 2rem);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  color: var(--text); cursor: pointer; font-size: 1.1rem;
  display: grid; place-items: center;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); border-color: var(--accent); transform: rotate(90deg); }

/* ---------- Pull-quote (reviews as emphasis) ---------- */
.quote-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pullquote {
  text-align: center;
  max-width: 56ch;
  margin-inline: auto;
}
.pullquote .mark {
  font-family: var(--font-display);
  font-size: 4rem; line-height: 0.5; color: var(--accent);
  display: block; margin-bottom: 1.2rem; height: 2rem;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.28;
  font-weight: 500;
  font-style: italic;
  color: var(--text);
}
.pullquote cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pullquote cite b { color: var(--accent); font-weight: 600; }

/* review grid (compact, for biography page emphasis) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.review {
  border-left: 1px solid var(--line);
  padding-left: 1.6rem;
}
.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--text);
}
.review footer {
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.review footer b { color: var(--accent); font-weight: 600; }

/* ---------- Section header ---------- */
.sec-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 52ch; }
.sec-head .h-lg { margin-top: 0.8rem; }

/* ---------- Split (bio / generic) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.split .portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: sticky; top: 100px;
}
.split .portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.figcap {
  margin-top: 0.9rem;
  font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--text-faint);
}

/* fact list (career highlights) */
.facts { list-style: none; padding: 0; margin-top: 2.5rem; display: grid; gap: 0; }
.facts li {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.facts li:first-child { border-top: 1px solid var(--line-soft); }
.facts .f-role { font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--text); }
.facts .f-where { color: var(--text-dim); font-size: 0.9rem; text-align: right; }

/* ---------- Concerts / agenda ---------- */
.agenda { display: grid; gap: 0; }
.agenda-item {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.agenda-item:first-child { border-top: 1px solid var(--line); }
.agenda-date { line-height: 1.1; }
.agenda-date .d { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; display: block; }
.agenda-date .m { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.agenda-date .y { font-size: 0.72rem; color: var(--text-faint); }
.agenda-main .prog { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--text); line-height: 1.2; }
.agenda-main .role { color: var(--text-dim); font-size: 0.95rem; margin-top: 0.25rem; }
.agenda-main .venue { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.5rem; letter-spacing: 0.02em; }
.agenda-main .venue .city { color: var(--text); }
.agenda-cta { text-align: right; }
.agenda-empty {
  padding: 3rem 0; color: var(--text-dim);
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem;
}
.tag-pill {
  display: inline-block;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint); border: 1px solid var(--line);
  padding: 0.3rem 0.7rem; border-radius: 999px;
}

/* sub-tabs (upcoming / past) */
.subtabs { display: inline-flex; gap: 0.4rem; border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem; margin-bottom: 2.5rem; }
.subtabs button {
  background: none; border: none; cursor: pointer; font: inherit;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--text-dim); padding: 0.55rem 1.3rem; border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.subtabs button.active { background: var(--text); color: var(--bg); }

/* ---------- Coaching offers ---------- */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 1rem;
}
.offer {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 120%);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.offer:hover { border-color: var(--accent); transform: translateY(-4px); }
.offer .num { font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 1.1rem; }
.offer h3 { margin-top: 0.6rem; font-size: 1.7rem; }
.offer p { margin-top: 0.8rem; color: var(--text-dim); font-size: 0.95rem; }

.coach-bullets { list-style: none; padding: 0; margin-top: 1.5rem; display: grid; gap: 0.9rem; }
.coach-bullets li { display: flex; gap: 1rem; color: var(--text-dim); align-items: flex-start; }
.coach-bullets li::before { content: ""; width: 20px; height: 1px; background: var(--accent); flex: none; margin-top: 0.75em; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.5rem; max-width: 560px; }
.field { display: grid; gap: 0.5rem; }
.field label {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 600;
}
.field input, .field select, .field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: var(--bg-elev-2);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a39e95' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-note { font-size: 0.8rem; color: var(--text-faint); }
.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: var(--accent-hi); }
.form-status.err { color: #e0917f; }

/* contact details */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.8rem; }
.contact-list .k { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
.contact-list .v { font-family: var(--font-display); font-size: 1.5rem; margin-top: 0.3rem; }
.contact-list a.v:hover { color: var(--accent-hi); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .h-lg { max-width: 18ch; margin-inline: auto; }
.cta-band p { color: var(--text-dim); margin-top: 1.2rem; max-width: 44ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; margin-top: 2.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand { font-family: var(--font-title); font-size: 2.2rem; }
.footer-brand .brand-sub { font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-dim); margin-top: 0.4rem; display: block; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); font-family: var(--font-sans); font-weight: 600; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.78rem; color: var(--text-faint);
}

/* ---------- Mobile nav panel ---------- */
.mobile-panel {
  position: fixed; inset: 0; z-index: 55;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
body.menu-open .mobile-panel { transform: translateY(0); }
.mobile-panel nav { display: grid; gap: 1.2rem; }
.mobile-panel a {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--text-dim);
  transition: color 0.25s var(--ease);
}
.mobile-panel a:hover { color: var(--text); }
.mobile-panel .lang { margin-top: 2.5rem; font-size: 0.9rem; }

/* ---------- Feature images & media splits ---------- */
.feature-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--bg-elev); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.4s var(--ease); }
.feature-img:hover img { transform: scale(1.03); }
.aspect-wide { aspect-ratio: 16 / 9; }
.aspect-portrait { aspect-ratio: 3 / 4; }
.aspect-stage { aspect-ratio: 3 / 2; }

.media-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.media-split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.media-split .m-text { max-width: 40ch; }
@media (max-width: 940px) {
  .media-split, .media-split.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .media-split .feature-img { order: -1; }
}

/* ---------- Video gallery ---------- */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3.5vw, 3rem); }
.video-tile { cursor: pointer; }
.vthumb {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-elev); isolation: isolate;
}
.vthumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.84); transition: transform 1.2s var(--ease), filter 0.5s var(--ease); }
.video-tile:hover .vthumb img { transform: scale(1.04); filter: brightness(0.62); }
.vthumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,9,0.45)); pointer-events: none; }
.vthumb .play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(8,8,9,0.35); border: 1px solid rgba(242,239,233,0.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 2;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.video-tile:hover .vthumb .play { transform: scale(1.08); border-color: var(--accent); background: rgba(8,8,9,0.2); }
.vthumb .play svg { width: 22px; height: 22px; margin-left: 3px; fill: var(--text); }
.video-tile:hover .vthumb .play svg { fill: var(--accent-hi); }
.vmeta { margin-top: 1rem; }
.vmeta .vt { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--text); line-height: 1.25; }
.vmeta .vs { color: var(--text-dim); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.55rem; }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }

/* tactile press feedback on click */
.vthumb, .video-card { transition: transform 0.35s var(--ease); }
.video-tile:active .vthumb, .video-card:active { transform: scale(0.985); }

/* ---------- Motion: page transitions + image parallax ---------- */
@media (prefers-reduced-motion: no-preference) {
  body { transition: opacity 0.35s var(--ease); }
  body.leaving { opacity: 0; }

  /* Gentle parallax on large editorial images (progressive enhancement). */
  @supports (animation-timeline: view()) {
    .feature-img img {
      animation: imgParallax linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
      will-change: transform;
    }
    @keyframes imgParallax {
      from { transform: translateY(-5%) scale(1.1); }
      to   { transform: translateY(5%)  scale(1.1); }
    }
    .feature-img:hover img { transform: none; }  /* parallax owns the transform */
  }
}

/* ---------- Reveal animation ----------
   Hiding is gated behind html.js so that, if JavaScript ever fails to
   load, all content stays fully visible. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-copy { max-width: none; order: 2; }
  .video-card, .hero-photo { order: 1; aspect-ratio: 1 / 1; max-height: 70vh; }
  .scroll-hint { display: none; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split .portrait { position: static; max-width: 420px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-right .lang { display: none; }   /* lang lives in mobile panel on small screens */
  .agenda-item { grid-template-columns: 84px 1fr; }
  .agenda-cta { grid-column: 2; text-align: left; margin-top: 0.4rem; }
  .agenda-date .d { font-size: 1.9rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .facts li { grid-template-columns: 1fr; gap: 0.2rem; }
  .facts .f-where { text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .video-card img, .video-card:hover img { transition: none; transform: none; }
  .btn, .link-u::after, .offer, .lightbox, .lightbox-inner { transition: none; }
}
