/* =============================================
   STYLES.CSS — Anotimpuri / Vivaldi
   Romanian Guitar Quartet — National Tour
   Watercolor on aged plaster aesthetic
   ============================================= */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Archivo+Black&family=Montserrat:wght@400;500;600;700;800&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

/* --- CSS VARIABLES --- */
:root {
  /* Paper & plaster background tones */
  --paper:        #f4ead8;
  --paper-warm:   #ede0c8;
  --paper-deep:   #e3d4b8;
  --plaster:      #d8c7a8;

  /* Watercolor seasonal accents (from poster) */
  --spring:       #9bb39a;   /* sage / olive green */
  --spring-deep:  #6f8a72;
  --summer:       #d66a3f;   /* intense terracotta / burnt orange */
  --summer-deep:  #9b4521;   /* deep burnt sienna */
  --autumn:       #c98a85;   /* dusty rose */
  --autumn-deep:  #a36560;

  /* Blue range — pulled from the poster's central slate panel */
  --winter:       #8aa3b8;   /* dusty periwinkle (main blue) */
  --winter-deep:  #5a7891;   /* deeper slate */
  --winter-soft:  #b8c7d4;   /* washed pale blue */
  --winter-mist:  #d8e0e8;   /* very pale, for tints */

  /* Neutrals */
  --ink:          #1a1612;
  --ink-soft:     #2e2820;
  --charcoal:     #1d1813;
  --warm-grey:    #7a6f5e;
  --mist:         #a89b86;
  --cream:        #faf3e3;

  /* Functional */
  --line:         rgba(74, 63, 51, 0.18);
  --line-strong:  rgba(74, 63, 51, 0.35);

  /* Free-font mapping aligned to designer's spec (Fonturi.docx).
     Replacements where the original (paid/restricted) font isn't available free:
       Quentin       → Italianno         (script display)
       Utendo Bold   → Archivo Black     (bold geometric display title)
       Montserrat    → Montserrat        (exact match)
       TT Rounds Neue→ Nunito            (closest free rounded geometric sans)
       Coolvetica    → Montserrat 600    (no good free match; same family for now) */
  --font-display:  'Italianno', cursive;                       /* script — Vivaldi */
  --font-title:    'Archivo Black', 'Montserrat', sans-serif;  /* ANOTIMPURI display title */
  --font-brand:    'Montserrat', sans-serif;                   /* brand, artist names */
  --font-heading:  'Nunito', 'Montserrat', sans-serif;         /* section headings, eyebrows fallback */
  --font-names:    'Nunito', 'Montserrat', sans-serif;         /* composer/location names */
  --font-eyebrow:  'Montserrat', sans-serif;                   /* eyebrow labels */
  --font-body:     'Nunito', sans-serif;                       /* body */

  --transition:   0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft:  0 4px 30px rgba(74, 63, 51, 0.08);
  --shadow-warm:  0 8px 40px rgba(155, 69, 33, 0.22);
  --shadow-cool:  0 8px 40px rgba(90, 120, 145, 0.18);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Watercolor wash background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 25%, rgba(138, 163, 184, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 35%, rgba(214, 106, 63, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 50% 60%, rgba(90, 120, 145, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 65% 45% at 20% 85%, rgba(184, 199, 212, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 90%, rgba(214, 106, 63, 0.16) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Paper grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.15 0 0 0 0 0.08 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
h4 { font-size: 1.05rem; letter-spacing: 0.05em; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--summer-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--autumn-deep); }

strong { color: var(--ink); font-weight: 600; }
em { font-style: italic; color: var(--charcoal); }

.script {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: italic;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-eyebrow);
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--summer-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--line-strong);
  margin: 1.5rem auto;
}

.divider-ornament {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}
.divider-ornament span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--summer);
  display: inline-block;
  padding: 0 1.5rem;
  background: var(--paper);
  position: relative;
  z-index: 1;
}
.divider-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* --- LAYOUT --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 820px; }
.container--wide   { max-width: 1080px; }
.section { padding: 5.5rem 0; position: relative; }
.section--cream { background: linear-gradient(180deg, transparent, rgba(250, 243, 227, 0.5), transparent); }
.section--warm  { background: linear-gradient(180deg, transparent, rgba(214, 106, 63, 0.10), transparent); }
.section--cool  { background: linear-gradient(180deg, transparent, rgba(184, 199, 212, 0.28), transparent); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.2rem; }
  .section { padding: 3.5rem 0; }
}

/* --- HEADER / NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 234, 216, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 120, 145, 0.22);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.site-logo {
  font-family: var(--font-brand);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.1;
}
.site-logo .script-mark {
  /* Brushy "Vivaldi" PNG — text stays in DOM for SEO/a11y, image displays visually */
  display: block;
  background-image: url('vivaldi-mark.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: clamp(48px, 5.5vw, 72px);
  aspect-ratio: 360 / 148;
  color: transparent;
  font-size: 0;
  line-height: 0;
  margin-bottom: -0.1rem;
  user-select: none;
}

.site-nav ul { list-style: none; display: flex; gap: 0.25rem; }
.site-nav a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--summer-deep);
  background: rgba(214, 106, 63, 0.14);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(26, 22, 18, 0.15);
  transition: var(--transition);
}
.header-social a:hover {
  color: var(--summer-deep);
  border-color: var(--summer-deep);
  background: rgba(214, 106, 63, 0.08);
}
.header-social svg { display: block; }

@media (max-width: 640px) {
  .header-social { margin-left: 0.5rem; gap: 0.35rem; }
  .header-social a { width: 30px; height: 30px; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav a { display: block; padding: 0.9rem 2rem; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 1.5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-poster.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
/* Semi-transparent warm wash over the poster to keep text legible */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(214, 234, 216, 0.55) 0%,
    rgba(244, 234, 216, 0.40) 40%,
    rgba(90, 120, 216, 0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: fadeUp 1.2s ease both;
}
.hero-script {
  /* The text "Vivaldi" remains in the DOM for SEO/accessibility,
     but visually replaced by the hand-painted PNG */
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: 0.85;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  /* Hide the text, replace with image */
  color: transparent;
  background-image: url('vivaldi-title.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Image is ~2.44:1 (1400×575). Width-driven; height follows aspect-ratio. */
  width: clamp(280px, 50vw, 700px);
  aspect-ratio: 1400 / 575;
  height: auto;
  user-select: none;
}
.hero-script::after {
  display: none;
}
.hero h1 {
  font-family: var(--font-title);
  font-weight: 200; /* Archivo Black is only weight 200 (it's already very heavy) */
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--ink);
  margin: 1rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-meta {
  font-family: var(--font-eyebrow);
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  letter-spacing: 0.28em;
  color: var(--summer-deep);
  text-transform: uppercase;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
.hero-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 200;
  color: var(--charcoal);
  max-width: 640px;
  margin: 1.5rem auto 2.5rem;
}
/* Larger eyebrow only inside the hero */
.hero .eyebrow {
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: all var(--transition);
  cursor: pointer;
  background: transparent;
}
.btn:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}
.btn--filled {
  background: var(--ink);
  color: var(--cream);
}
.btn--filled:hover {
  background: var(--summer-deep);
  border-color: var(--summer-deep);
  color: var(--cream);
}
.btn--coral {
  border-color: var(--summer-deep);
  color: var(--summer-deep);
}
.btn--coral:hover {
  background: var(--summer-deep);
  color: var(--cream);
}
.btn--small {
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow { margin-bottom: 0.6rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--charcoal); max-width: 620px; margin: 0 auto; font-style: italic; }
.section-header .script {
  font-size: 3rem;
  color: var(--summer);
  line-height: 0.8;
  display: block;
  margin-bottom: 0.5rem;
}

/* --- CARDS --- */
.card {
  background: rgba(250, 243, 227, 0.6);
  border: 1px solid var(--line);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--spring), var(--summer), var(--autumn), var(--winter));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  border-color: var(--summer);
  box-shadow: var(--shadow-warm);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 1rem; color: var(--charcoal); }

/* --- CONCERT / EVENT LIST --- */
.event-list { display: flex; flex-direction: column; }
.event-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  transition: all var(--transition);
}
.event-item:hover {
  background: rgba(214, 106, 63, 0.12);
  padding-left: 1rem;
}
.event-date {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.event-date .time {
  display: block;
  color: var(--summer-deep);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
}
.event-city {
  font-family: var(--font-names);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--summer-deep);
  margin-bottom: 0.3rem;
}
.event-venue {
  font-family: var(--font-names);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  font-family: var(--font-heading);
}
@media (max-width: 700px) {
  .event-item { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.2rem 0; }
  .event-item:hover { padding-left: 0; }
}

/* --- MUSICIAN CARDS --- */
.musician-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 700px) { .musician-grid { grid-template-columns: 1fr; } }

.musician-card {
  display: block;
  background: rgba(250, 243, 227, 0.7);
  border: 1px solid var(--line);
  padding: 2.2rem;
  transition: all var(--transition);
  position: relative;
  color: inherit;
  text-decoration: none;
}
.musician-card:hover {
  border-color: var(--autumn);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.musician-name {
  font-family: var(--font-brand);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.musician-role {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--summer-deep);
  background: rgba(214, 106, 63, 0.18);
  padding: 0.25rem 0.7rem;
  margin-bottom: 1rem;
  border-radius: 2px;
}
.musician-bio {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.65;
  text-align: justify;
  text-justify: auto;
}

/* --- COMPOSERS / SMALL CARDS --- */
.composer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .composer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .composer-grid { grid-template-columns: 1fr; } }

.composer-card {
  display: block;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(250, 243, 227, 0.5);
  border: 1px solid var(--line);
  transition: all var(--transition);
  color: inherit;
  text-decoration: none;
}
.composer-card:hover {
  border-color: var(--winter-deep);
  background: rgba(138, 163, 184, 0.14);
  text-decoration: none;
}
.composer-card h3 {
  font-family: var(--font-names);
  font-weight: 500;
}
.composer-card .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

/* --- ABOUT / TEXT BLOCKS --- */
.about-text { 
  font-size: 1.15rem; 
  line-height: 1.85; 
  color: var(--ink-soft);
  text-align: justify;
 }

.quote-block {
  border-left: 3px solid var(--winter-deep);
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
  font-family: var(--font-body);
}

/* --- SEASONS SECTION --- */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .seasons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .seasons-grid { grid-template-columns: 1fr; } }

.season-card {
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(250, 243, 227, 0.5);
  transition: all var(--transition);
  position: relative;
}
.season-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transition: opacity var(--transition);
}
.season-card.spring::before { background: var(--spring); }
.season-card.summer::before { background: var(--summer); }
.season-card.autumn::before { background: var(--autumn); }
.season-card.winter::before { background: var(--winter); }
.season-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.season-script {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.season-card.spring .season-script { color: var(--spring-deep); }
.season-card.summer .season-script { color: var(--summer-deep); }
.season-card.autumn .season-script { color: var(--autumn-deep); }
.season-card.winter .season-script { color: var(--winter-deep); }

.season-card h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.season-card p { font-size: 0.95rem; color: var(--charcoal); }

/* --- CONTACT FORM --- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(250, 243, 227, 0.7);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--winter-deep);
  background: var(--cream);
  box-shadow: 0 0 0 3px rgba(138, 163, 184, 0.18);
}
.form-group textarea { min-height: 160px; resize: vertical; }

/* --- PAGE HERO (sub-pages) --- */
.page-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 50%, rgba(120, 157, 187, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 75% 50%, rgba(90, 120, 145, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 50% 80%, rgba(214, 106, 63, 0.35) 0%, transparent 60%);
}
.page-hero .script {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--summer);
  line-height: 0.85;
  margin-bottom: 0.5rem;
}
.page-hero h1 { font-family: var(--font-title); font-weight: 200; font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero .subtitle { font-style: italic; color: var(--charcoal); margin-top: 1rem; font-size: 1.15rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* --- VENUE LIST WITH PHOTOS PLACEHOLDER --- */
.venue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 700px) { .venue-list { grid-template-columns: 1fr; } }
.venue-item {
  padding: 1.2rem 1.5rem;
  background: rgba(250, 243, 227, 0.6);
  border: 1px solid var(--line);
  border-left: 3px solid var(--winter);
  transition: all var(--transition);
}
.venue-item:hover {
  border-left-color: var(--winter-deep);
  background: rgba(184, 199, 212, 0.18);
}
.venue-item .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.venue-item .loc { font-size: 0.92rem; color: var(--warm-grey); }

/* --- PROGRAM LIST (compact, About page) --- */
.program-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.program-list li {
  display: grid;
  grid-template-columns: 130px 160px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}
.program-list li:hover {
  background: rgba(214, 106, 63, 0.05);
}
.program-date {
  font-family: var(--font-eyebrow);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--summer-deep);
}
.program-city {
  font-family: var(--font-names);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.program-venue {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
}
@media (max-width: 600px) {
  .program-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 1rem 0.25rem;
  }
}

/* --- PROFILE PAGES (musicians, composers) --- */
.profile-layout {
  display: block;
  margin-bottom: 3rem;
}
.profile-photo {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 2.5rem;
  aspect-ratio: 2 / 3;
  background: rgba(250, 243, 227, 0.7);
  border: 1px solid var(--line);
  overflow: hidden;
}
.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.profile-photo-placeholder {
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-eyebrow);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm-grey);
  background: rgba(244, 234, 216, 0.7);
}
.profile-bio {
  max-width: 760px;
  margin: 0 auto;
}
.profile-bio p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
  text-align: justify;
}
.profile-bio p:first-of-type {
    margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}

.back-link {
  margin-top: 2rem;
}

@media (max-width: 700px) {
  .profile-photo {
    max-width: 260px;
  }
}

/* --- PARTNERS --- */
.partners {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}
.partners h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--summer-deep);
  margin-bottom: 1rem;
  text-align: center;
}
.partners p {
  text-align: center;
  color: var(--charcoal);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 920px;
  margin: 0 auto 2rem;
}

.partner-logos {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 1.5rem auto 0;
  opacity: 0.95;
  transition: opacity var(--transition);
  /* Logos use real PNG transparency, no blend mode needed */
}
.partner-logos:hover { opacity: 1; }

.partner-logos--narrow { max-width: 720px; }

/* Single standalone logo (e.g. Kitharalogos) — smaller than partner strips */
.partner-logos--logo {
  max-width: 220px;
  margin: 1rem auto 0;   /* centered */
}

/* Small badge for self-contained logos (e.g. AFCN, which carries its own background) */
.logo-badge {
  display: block;
  margin: 1rem auto 0;   /* centered */
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid rgba(26, 22, 18, 0.08);
  width: fit-content;
}
.logo-badge img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
}
.logo-badge--dark { background: var(--ink); }
.logo-badge--light { background: #ffffff; }

/* --- FOOTER --- */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(184, 199, 212, 0.18) 30%, var(--paper-deep));
  border-top: 1px solid rgba(90, 120, 145, 0.22);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-brand .logo .script-mark {
  /* Brushy "Vivaldi" PNG — text stays in DOM for SEO/a11y */
  display: block;
  background-image: url('vivaldi-mark.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  width: clamp(56px, 6vw, 84px);
  aspect-ratio: 360 / 148;
  color: transparent;
  font-size: 0;
  line-height: 0;
  margin-bottom: -0.1rem;
  user-select: none;
}
.footer-brand p { font-size: 0.92rem; color: var(--charcoal); line-height: 1.65; margin-top: 0.8rem; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--summer-deep);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-family: var(--font-body);
}
.footer-col a:hover { color: var(--summer-deep); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  border-radius: 50%;
}
.footer-social a:hover {
  border-color: var(--summer);
  color: var(--summer-deep);
  background: rgba(214, 106, 63, 0.14);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--warm-grey);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s ease both; }
.fade-up-delay-1 { animation-delay: 0.15s; }
.fade-up-delay-2 { animation-delay: 0.3s; }
.fade-up-delay-3 { animation-delay: 0.45s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* --- UTILITY --- */
.text-center { text-align: center; }
.text-muted { color: var(--warm-grey); font-size: 0.88rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }