/* =========================================================================
   Stefano Manfredini — Portfolio
   Built on the CiaoCliente design system (Shadcn / Zinc structure),
   shifted to a warm "stone + terracotta" material palette.
   ========================================================================= */

:root {
  /* --- Inherited structural tokens from CiaoCliente -------------------- */
  --radius:    0.5rem;      /* 8px cards */
  --radius-sm: 6px;         /* buttons, badges */
  --radius-full: 9999px;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  --duration-fast: 0.15s;
  --duration-base: 0.2s;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-rest:  0 1px 2px 0 rgba(40, 28, 18, 0.05);
  --shadow-card:  0 4px 6px -1px rgba(40, 28, 18, 0.05),
                  0 2px 4px -1px rgba(40, 28, 18, 0.03);
  --shadow-lift:  0 14px 28px -10px rgba(40, 28, 18, 0.18),
                  0 6px 10px -6px rgba(40, 28, 18, 0.08);

  /* --- Warm material palette (this site) ------------------------------ */
  --paper:    #fdfcfa;   /* light, airy canvas */
  --paper-2:  #f6f2ec;   /* soft muted surface */
  --card:     #ffffff;   /* card surface */

  --ink:      #2a241e;   /* warm near-black, primary text */
  --ink-2:    #4a4036;   /* secondary heading ink */
  --muted:    #807464;   /* muted body / meta */
  --muted-2:  #a89b8a;   /* faint meta */

  --line:     #ebe4d7;   /* hairline border */
  --line-soft:#f2ece1;   /* softer hairline */

  --accent:       #7c2d12;  /* terracotta / burnt sienna */
  --accent-deep:  #5e2010;  /* darker on hover */
  --accent-soft:  #f0e2d8;  /* tinted background chip */
  --accent-ink:   #8f3a1d;  /* accent text on paper */

  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
}

* { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.015em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Eyebrow / small caps label ------------------------------------- */
.eyebrow {
  font-size: 12px;
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-ink);
  margin: 0 0 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.9);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: saturate(1.1) blur(8px);
  backdrop-filter: saturate(1.1) blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand .name {
  font-size: 19px;
  font-weight: var(--weight-bold);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .role {
  font-size: 11px;
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 14px;
  font-weight: var(--weight-medium);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--duration-base) ease, background var(--duration-base) ease;
}
.main-nav a:hover { color: var(--ink); background: var(--paper-2); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 6px;
}

.header-right { display: flex; align-items: center; gap: 18px; }

/* Language switch */
.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--card);
}
.lang-switch button {
  font-family: inherit;
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  padding: 6px 11px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--duration-base) ease, color var(--duration-base) ease;
}
.lang-switch button.active { background: var(--ink); color: #fff; }

.nav-toggle { display: none; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--weight-medium);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-card); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-2); border-color: var(--muted-2); }

/* =========================================================================
   SECTIONS
   ========================================================================= */
section { position: relative; }
.section-pad { padding: 104px 0; }
.section-pad-sm { padding: 80px 0; }
.bg-muted { background: var(--paper-2); }
.bg-ink { background: var(--ink); color: #f4efe8; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
}
.section-head p { margin-top: 18px; color: var(--muted); font-size: 17px; line-height: 1.7; }

/* =========================================================================
   PLACEHOLDER MEDIA
   ========================================================================= */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(124,45,18,0.02) 0 2px, transparent 2px 24px),
    linear-gradient(160deg, #f3eee4 0%, #e6dccc 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #8a7a64;
  overflow: hidden;
}
.ph::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(124, 45, 18, 0.14);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}
.ph svg { width: 34px; height: 34px; stroke-width: 1.4; opacity: 0.75; }
.ph .ph-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: var(--weight-semibold);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer {
  background: var(--paper-2);
  color: var(--muted);
  padding: 72px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.site-footer .f-name { color: var(--ink); font-size: 20px; font-weight: var(--weight-bold); }
.site-footer .f-role { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; margin-top: 6px; }
.site-footer h4 { color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 18px; font-weight: var(--weight-semibold); }
.f-links { display: flex; flex-direction: column; gap: 11px; }
.f-links a, .site-footer p { color: var(--muted); font-size: 14px; }
.f-links a { transition: color var(--duration-base) ease; }
.f-links a:hover { color: var(--accent-ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: var(--muted-2);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent-ink); }

/* Social icon buttons */
.social-row { display: flex; gap: 10px; margin-top: 4px; }
.social-row a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: var(--card);
  transition: all var(--duration-base) ease;
}
.social-row a:hover { background: var(--paper); color: var(--accent-ink); border-color: var(--accent); }
.social-row svg { width: 18px; height: 18px; }
.brand-ic { display: inline-flex; align-items: center; justify-content: center; }
.brand-ic svg { width: 18px; height: 18px; }

/* =========================================================================
   UTIL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-standard), transform 0.7s var(--ease-standard); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   SHARED PIECES
   ========================================================================= */
.section-h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: var(--weight-bold);
  line-height: 1.1;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--accent-ink);
  transition: gap var(--duration-base) ease, color var(--duration-base) ease;
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { gap: 12px; color: var(--accent-deep); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: var(--weight-bold);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 30em;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-portrait { aspect-ratio: 4 / 5; width: 100%; }
.hero-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(34, 28, 22, 0.86);
  color: #f4efe8;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
  -webkit-backdrop-filter: blur(2px);
}
.hero-caption-k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; color: #c6a88f; font-weight: var(--weight-semibold); }
.hero-caption-v { font-size: 14px; font-weight: var(--weight-medium); }

/* =========================================================================
   BIO
   ========================================================================= */
.bio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.bio-title {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  margin-bottom: 26px;
  max-width: 14em;
}
.bio-text { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 20px; }
.bio-copy .link-arrow { margin-top: 8px; }
.bio-facts { padding-top: 6px; }
.facts { list-style: none; margin: 0; padding: 0; }
.facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.facts li:first-child { padding-top: 0; }
.facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.facts-k { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: var(--weight-semibold); color: var(--accent-ink); }
.facts-v { font-size: 15px; color: var(--ink-2); font-weight: var(--weight-medium); }

/* =========================================================================
   ORGAN BAND
   ========================================================================= */
.organ-band { background: var(--paper-2); padding: 104px 0; }
.organ-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.organ-ph { aspect-ratio: 3 / 4; width: 100%; }
.organ-title { font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: var(--weight-bold); line-height: 1.05; }
.organ-sub { color: var(--muted); font-size: 16px; margin: 12px 0 32px; }
.organ-stats { display: flex; gap: 40px; margin-bottom: 36px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-n { font-size: 40px; font-weight: var(--weight-bold); line-height: 1; color: var(--accent-ink); letter-spacing: -0.02em; }
.stat-l { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: var(--weight-semibold); }
.organ-btn { margin-top: 4px; }

/* =========================================================================
   CONCERTI
   ========================================================================= */
.concerti-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}
.concert-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.concert {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: background var(--duration-base) ease, padding-left var(--duration-base) ease;
}
.concert:hover { background: var(--card); padding-left: 18px; }
.concert-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.c-day { font-size: 26px; font-weight: var(--weight-bold); line-height: 1; color: var(--ink); }
.c-mon { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-ink); font-weight: var(--weight-semibold); margin-top: 4px; }
.concert-venue { font-size: 19px; font-weight: var(--weight-semibold); color: var(--ink); }
.concert-fest { font-size: 14px; color: var(--muted); margin-top: 4px; }
.concert-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; text-align: right; }
.c-place { font-size: 14px; color: var(--ink-2); font-weight: var(--weight-medium); }
.c-time { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.c-time svg { width: 14px; height: 14px; }

/* =========================================================================
   PRESS QUOTE
   ========================================================================= */
.quote-band { background: var(--paper-2); padding: 110px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-mark { width: 40px !important; height: 40px !important; color: var(--accent); opacity: 0.9; margin: 0 auto 24px; stroke-width: 1.5; }
.press-quote {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.4;
  font-weight: var(--weight-medium);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 28px;
}
.press-cite {
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: var(--weight-semibold);
  color: var(--accent-ink);
}

/* =========================================================================
   CONTATTI
   ========================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 72px;
  align-items: center;
}
.contact-copy .section-h2 { max-width: 12em; }
.contact-text { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 22px 0 28px; max-width: 32em; }
.contact-social a { border-color: var(--line); color: var(--muted); }
.contact-social a:hover { background: var(--paper-2); color: var(--accent-ink); border-color: var(--accent); }
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-soft);
  transition: background var(--duration-base) ease;
}
.contact-item:last-child { border-bottom: 0; }
.contact-item:not(.static):hover { background: var(--paper); }
.ci-ic {
  width: 42px; height: 42px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-ink);
  border-radius: var(--radius-sm);
}
.ci-ic svg { width: 19px; height: 19px; }
.ci-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.ci-k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); font-weight: var(--weight-semibold); }
.ci-v { font-size: 15px; font-weight: var(--weight-medium); color: var(--ink); overflow: hidden; text-overflow: ellipsis; }
.ci-arr { width: 18px; height: 18px; color: var(--muted-2); flex: none; }
.contact-item:hover .ci-arr { color: var(--accent-ink); }

/* =========================================================================
   INNER PAGES
   ========================================================================= */
.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.page-hero.bg-muted { background: var(--paper-2); }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: var(--weight-bold);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 16em;
}
.page-hero .page-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 40em;
  margin-top: 22px;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent-ink); }
.breadcrumb svg { width: 14px; height: 14px; }

/* Prose */
.prose-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.prose { max-width: 44em; }
.prose p { font-size: 17px; line-height: 1.8; color: var(--ink-2); margin-bottom: 22px; }
.prose p.lead { font-size: 20px; line-height: 1.7; color: var(--ink); font-weight: var(--weight-medium); }
.prose h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-ink); margin: 44px 0 16px; font-weight: var(--weight-semibold); }
.prose strong { color: var(--ink); font-weight: var(--weight-semibold); }

.side-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); position: sticky; top: 100px; }
.side-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 18px; font-weight: var(--weight-semibold); }
.side-list { list-style: none; margin: 0; padding: 0; }
.side-list li { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.side-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-list li:first-child { padding-top: 0; }
.side-k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-ink); font-weight: var(--weight-semibold); }
.side-v { font-size: 15px; color: var(--ink-2); font-weight: var(--weight-medium); }
.side-portrait { aspect-ratio: 4/5; margin-bottom: 22px; }

/* Timeline */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { position: relative; padding: 0 0 30px 30px; border-left: 1px solid var(--line); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: -5px; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.timeline .tl-year { font-size: 13px; font-weight: var(--weight-semibold); color: var(--accent-ink); letter-spacing: 0.04em; }
.timeline .tl-body { font-size: 16px; color: var(--ink-2); line-height: 1.6; margin-top: 4px; }

/* News cards */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 28px; }
.news-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard); }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.news-thumb { aspect-ratio: 16/10; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); }
.news-thumb::after { inset: 12px; }
.news-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-tag { display: inline-flex; align-self: flex-start; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: var(--weight-semibold); color: var(--accent-ink); background: var(--accent-soft); padding: 5px 10px; border-radius: var(--radius-sm); }
.news-card h3 { font-size: 18px; font-weight: var(--weight-semibold); line-height: 1.3; color: var(--ink); }
.news-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--muted); margin-top: 2px; }
.news-meta span { display: inline-flex; align-items: center; gap: 6px; }
.news-meta svg { width: 14px; height: 14px; }
.news-note { font-size: 14px; color: var(--muted); line-height: 1.6; }
.news-foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); }

/* Contact / form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: var(--weight-semibold); color: var(--ink-2); }
.field input, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 12px 14px; width: 100%;
  transition: border-color var(--duration-base) ease, box-shadow var(--duration-base) ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,45,18,0.1); }
.field textarea { resize: vertical; min-height: 130px; }

/* Generic media gallery */
.media-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.media-row .ph { aspect-ratio: 4/3; }

/* CTA strip */
.cta-strip { background: var(--accent-soft); color: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 48px 52px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip h2 { color: var(--ink); font-size: clamp(1.5rem,2.6vw,2rem); font-weight: var(--weight-bold); max-width: 16em; }
.cta-strip p { color: var(--muted); margin-top: 10px; font-size: 16px; }

@media (max-width: 920px) {
  .prose-grid { grid-template-columns: 1fr; gap: 40px; }
  .side-card { position: static; }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
  .media-row { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 36px 28px; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 460px; }
  .bio-grid, .organ-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .organ-media { max-width: 440px; }
  .organ-band { padding: 80px 0; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 56px 0; }
  .quote-band { padding: 80px 0; }

  .main-nav {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    box-shadow: var(--shadow-card);
  }
  body.nav-open .main-nav { display: flex; }
  .main-nav a { padding: 12px 8px; border-radius: var(--radius-sm); }
  .main-nav a.active::after { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: var(--card); cursor: pointer;
  }
  .nav-toggle svg { width: 20px; height: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 560px) {
  .concert { grid-template-columns: 64px 1fr; gap: 18px; }
  .concert-date { width: 64px; height: 64px; }
  .concert-meta { grid-column: 2; align-items: flex-start; text-align: left; flex-direction: row; gap: 14px; margin-top: 4px; }
  .concerti-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .organ-stats { gap: 28px; }
  .stat-n { font-size: 34px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
}
