/* ── FUENTES PERSONALIZADAS ── */
@font-face {
  font-family: "Biro Script Plus";
  src: url("fonts/Biro_Script_reduced.ttf") format("truetype"),
       url("fonts/Biro_Script_reduced.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Extenda 50 Mega";
  src: url("fonts/Extenda-80-Peta-trial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #050505;
  --text: #ece9e0;
  --muted: #a29d8d;
  --gold: #c48a5a;
  --gold-light: #ffa857;
  --red: #c3010d;
  --camel: #c48a5a;
  --orange: #ffa857;
  --white: #ffffff;
  --border: rgba(255,255,255,0.1);
}
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: "Source Sans 3", Arial, sans-serif; font-size: 17px; line-height: 1.65; }

/* ── CLASES TIPOGRÁFICAS REUTILIZABLES ── */
.t-heading {
  font-family: "Chau Philomene One", "Libre Baskerville", Georgia, serif;
  font-size: 32px; font-weight: 700; line-height: 1.1;
}
.t-script {
  font-family: "Biro Script Plus", "Brush Script MT", cursive;
  font-size: 36px; font-weight: 700; line-height: 1.2;
}
.t-display {
  font-family: "Extenda 50 Mega", "Montserrat", Arial, sans-serif;
  font-size: 42px; font-weight: normal; line-height: 1; letter-spacing: -0.01em;
}
.t-accent { color: var(--camel); }
.t-red { color: var(--red); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 108px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 0 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
.site-nav.scrolled {
  background: rgba(38,38,41,0.96);
  border-bottom-color: var(--border);
  backdrop-filter: blur(18px);
}
.page-hero { margin-top: 0; }
.site-nav > a img { height: 70px; }
.site-nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.site-nav-links > li > a {
  font-family: "Source Sans 3", Arial, sans-serif;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.site-nav-links > li > a:hover { color: var(--gold-light); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " ▾"; font-size: 10px; opacity: 0.6; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 8px); left: -16px;
  background: rgba(5,5,5,0.98);
  border: 1px solid var(--border);
  min-width: 220px; padding: 8px 0; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block; padding: 11px 20px;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  border-left: 2px solid transparent;
  transition: all 0.2s;
  letter-spacing: 0;
}
.nav-dropdown-menu a:hover { color: var(--gold); border-left-color: var(--gold); background: rgba(196,138,90,0.05); }
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: scale(1.03) !important; color: #111 !important; }

/* ── HERO ── */
.page-hero {
  position: relative; min-height: 60vh;
  display: grid; place-items: end start;
  padding: 148px 48px 78px; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.3)),
    linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.88)),
    url("instagram/entrada.jpg") center / cover;
}
.page-hero-inner { position: relative; max-width: 860px; }
.page-hero p:not(.eyebrow) { color: var(--muted); max-width: 680px; font-size: 19px; }

/* Hero variants */
.hero-jazz::before { background:
  linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.3)),
  linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.88)),
  url("instagram/musica.jpg") center / cover; }
.hero-flamenco::before { background:
  linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.3)),
  linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.88)),
  url("flamenco-lunch-noma.png") center / cover; }
.hero-sobre::before { background:
  linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.3)),
  linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.88)),
  url("instagram/post-3.jpg") center / cover; }
.hero-carta::before { background:
  linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.3)),
  linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.88)),
  url("instagram/post-5.jpg") center / cover; }
.hero-actuar::before { background:
  linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.3)),
  linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.88)),
  url("instagram/post-2.jpg") center / cover; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px;
}
h1, h2, h3 { font-family: "Chau Philomene One", "Libre Baskerville", Georgia, serif; font-weight: 400; line-height: 1.04; }
h1 { font-size: clamp(32px, 4.8vw, 62px); margin-bottom: 20px; letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 4.2vw, 54px); margin-bottom: 16px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.section-copy { color: var(--muted); max-width: 720px; font-size: 18px; line-height: 1.75; }
.gold-rule { width: 44px; height: 1px; background: var(--gold); margin: 0 0 24px; }

/* ── LAYOUT ── */
.section { padding: 86px 48px; background: var(--black); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-img { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }

/* ── BUTTONS ── */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 12px 24px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.22s;
}
.button.primary { background: var(--camel); color: #fff; border-color: var(--camel); }
.button.primary:hover { background: var(--orange); color: #111; transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--text); }
.button.secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.button.large { padding: 16px 36px; font-size: 13px; }
.card-actions, .event-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── FILTERS ── */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 36px; }
.filter {
  border: 1px solid var(--border); color: var(--muted);
  background: transparent; padding: 9px 18px; cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.2s;
}
.filter:hover, .filter.is-active { border-color: var(--gold); color: var(--gold); background: rgba(196,138,90,0.08); }

/* ── EVENTS GRID ── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1px; background: var(--border); }
.event-card { display: grid; gap: 16px; padding: 0 0 28px; background: var(--black); border-bottom: 3px solid transparent; transition: background 0.25s, border-color 0.25s; overflow: hidden; }
.event-card:hover { background: #0e0d0b; border-color: var(--gold); }
.event-card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; filter: brightness(0.9) saturate(0.92); transition: filter 0.35s, transform 0.5s; }
.event-card:hover .event-card-img { filter: brightness(1) saturate(1.05); transform: scale(1.02); }
.event-card .event-date, .event-card > div, .event-card > p, .event-card .event-meta, .event-card .card-actions { padding: 0 28px; }
.event-date { display: flex; justify-content: space-between; gap: 16px; color: var(--gold-light); font-family: Montserrat, Arial, sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.event-card p { color: var(--muted); font-size: 15px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { border: 1px solid rgba(196,138,90,0.3); color: var(--gold-light); padding: 5px 10px; font-size: 12px; }

/* ── EVENT DETAIL ── */
.event-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: start; }
.event-panel { background: #0a0a08; border: 1px solid var(--border); padding: 30px; }
.event-facts { display: grid; gap: 1px; background: var(--border); margin-top: 24px; }
.event-facts div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 14px 16px; background: var(--black); }
.event-facts dt { color: var(--gold); font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.event-facts dd { color: var(--text); margin: 0; font-size: 14px; }
.back-link { display: inline-flex; margin-bottom: 28px; color: var(--gold); font-family: Montserrat, Arial, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.back-link:hover { color: var(--gold-light); }
.image-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.image-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

/* ── SOBRE ── */
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sobre-img-wrap { position: relative; }
.sobre-img-main { width: 100%; height: 540px; object-fit: cover; }
.sobre-img-over { position: absolute; bottom: -28px; right: -24px; width: 52%; height: 260px; object-fit: cover; border: 4px solid var(--black); }
.sobre-text p { color: var(--muted); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.sobre-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.sobre-pill { border: 1px solid rgba(196,138,90,0.25); color: var(--gold); padding: 6px 14px; font-size: 12px; letter-spacing: 0.04em; }
.hours-grid { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 8px; }
.hours-grid h5 { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.h-row { display: flex; justify-content: space-between; font-size: 14px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.h-row:last-child { border: none; }
.h-row span:first-child { color: var(--muted); }
.loc-row { display: flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 14px; color: var(--muted); }
.loc-row svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.local-gallery-section { padding-top: 24px; }
.local-gallery-head { max-width: 620px; margin-bottom: 30px; }
.local-gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.local-gallery-item {
  appearance: none;
  border: 0;
  padding: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.local-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.9);
  transition: transform 0.45s ease, filter 0.3s ease;
}
.local-gallery-item:hover img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
#local-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0,0,0,0.9);
}
#local-gallery-lightbox.open { display: flex; }
#local-gallery-large {
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}
.local-gallery-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.55);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

/* ── CARTA PAGE ── */
.carta-intro { max-width: 620px; margin-bottom: 52px; }
.carta-intro p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-top: 12px; }
.carta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.carta-card {
  background: #0a0a08;
  border: 1px solid var(--border);
  padding: 38px 34px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s, background 0.25s;
}
.carta-card:hover { border-color: var(--gold); background: rgba(196,138,90,0.04); }
.carta-card-flag { font-size: 36px; line-height: 1; }
.carta-card-eyebrow { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.carta-card-title { font-family: "Chau Philomene One", "Libre Baskerville", serif; font-size: 22px; font-weight: 400; }
.carta-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.carta-qr-note { margin-top: 36px; padding: 18px 22px; border: 1px solid rgba(196,138,90,0.18); background: rgba(196,138,90,0.04); display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--muted); }
.carta-qr-note svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ── EXPERIENCIAS HUB ── */
.exp-hub-intro { max-width: 640px; margin-bottom: 56px; }
.exp-hub-intro p { color: var(--muted); font-size: 17px; margin-top: 12px; line-height: 1.75; }
.exp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.exp-card { background: var(--black); overflow: hidden; display: flex; flex-direction: column; transition: background 0.25s; }
.exp-card:hover { background: #0e0d0b; }
.exp-card-img { width: 100%; height: 240px; object-fit: cover; filter: brightness(0.8) saturate(0.9); transition: filter 0.35s, transform 0.5s; }
.exp-card:hover .exp-card-img { filter: brightness(0.96) saturate(1.05); transform: scale(1.03); }
.exp-card-body { padding: 28px 26px; display: flex; flex-direction: column; flex: 1; }
.exp-card-tag { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.exp-card-title { font-family: "Chau Philomene One", "Libre Baskerville", serif; font-size: 20px; font-weight: 400; margin-bottom: 10px; }
.exp-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.exp-card-price { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 18px; }

/* ── EXPERIENCE DETAIL ── */
.exp-detail-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 72px; align-items: start; }
.exp-detail-img { width: 100%; height: 500px; object-fit: cover; filter: brightness(0.88) saturate(0.92); }
.exp-detail-tag { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.exp-detail-body { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.exp-facts { margin: 28px 0; border-top: 1px solid var(--border); }
.exp-fact { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 14px; gap: 16px; }
.exp-fact dt { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.exp-fact dd { color: var(--text); margin: 0; text-align: right; }
.exp-detail-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.exp-more { margin-top: 72px; padding-top: 52px; border-top: 1px solid var(--border); }
.exp-more-title { font-family: "Chau Philomene One", "Libre Baskerville", serif; font-size: 28px; font-weight: 400; margin-bottom: 28px; }

/* ── ACTUAR / ARTIST FORM ── */
.actuar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.actuar-info p { color: var(--muted); font-size: 16px; line-height: 1.85; margin-bottom: 18px; }
.actuar-why { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.actuar-why-item { display: flex; gap: 14px; align-items: flex-start; }
.actuar-why-icon { width: 36px; height: 36px; background: rgba(196,138,90,0.08); border: 1px solid rgba(196,138,90,0.18); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.actuar-why-ttl { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.actuar-why-txt { font-size: 13px; color: var(--muted); line-height: 1.5; }
.artist-form { display: flex; flex-direction: column; gap: 14px; }
.fgrp { display: flex; flex-direction: column; gap: 6px; }
.fgrp label { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.fi, .fs, .ft { background: rgba(255,255,255,0.04); border: 1px solid var(--border); padding: 12px 15px; color: var(--text); font-family: "Source Sans 3", Arial, sans-serif; font-size: 14px; outline: none; transition: border-color 0.2s; width: 100%; }
.fi:focus, .fs:focus, .ft:focus { border-color: var(--gold); }
.ft { resize: vertical; min-height: 100px; }
.frow2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; text-align: center; }
.form-note-inline { font-size: 11px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--muted); }
input[type="file"].fi { padding: 10px 12px; cursor: pointer; }
input[type="file"].fi::file-selector-button { background: rgba(196,138,90,0.15); border: 1px solid var(--gold); color: var(--gold); font-family: Montserrat, Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; cursor: pointer; margin-right: 12px; transition: background 0.2s; }
input[type="file"].fi::file-selector-button:hover { background: rgba(196,138,90,0.28); }

/* ── QUOTE SECTION ── */
.quote-section { position: relative; padding: 100px 48px; overflow: hidden; text-align: center; }
.quote-bg { position: absolute; inset: 0; background: url("instagram/entrada.jpg") center / cover; }
.quote-overlay { position: absolute; inset: 0; background: rgba(5,5,5,0.84); }
.quote-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.quote-text { font-family: "Biro Script Plus", "Brush Script MT", cursive; font-size: clamp(24px, 3.2vw, 42px); font-style: normal; font-weight: normal; line-height: 1.4; color: var(--text); margin-bottom: 16px; }
.quote-attr { font-family: Montserrat, Arial, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 36px; }

/* ── FOOTER ── */
.site-footer { padding: 56px 48px 36px; border-top: 1px solid var(--border); background: var(--black); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 52px; max-width: 1180px; margin: 0 auto 40px; }
.footer-logo { height: 26px; opacity: 0.55; margin-bottom: 14px; transition: opacity 0.2s; }
.footer-logo:hover { opacity: 1; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 300px; }
.footer-col h5 { font-family: Montserrat, Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: 14px; color: var(--muted); line-height: 1.8; }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .site-nav { height: auto; padding: 16px 24px; flex-wrap: wrap; gap: 16px; }
  .site-nav > a img { height: 58px; }
  .site-nav-links { display: none; }
  .page-hero, .section, .quote-section { padding-left: 24px; padding-right: 24px; }
  .sobre-grid, .two-col, .two-col-img, .actuar-grid, .exp-detail-grid { grid-template-columns: 1fr; }
  .sobre-img-over { display: none; }
  .local-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-cards { grid-template-columns: 1fr; background: none; gap: 1px; }
  .carta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .event-layout { grid-template-columns: 1fr; }
  .event-facts div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 600px) {
  h1 { font-size: clamp(30px, 9vw, 52px); }
  .site-nav > a img { height: 52px; }
  .local-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 42px 24px 28px; }
}

/* ── MOBILE NAV ── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: 0.3s; }
#mob-nav { display: none; position: fixed; inset: 0; background: rgba(8,8,6,0.97); z-index: 99; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 8px; padding: 96px 28px 34px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
#mob-nav.open { display: flex; }
#mob-nav a { font-family: 'Source Sans 3', sans-serif; font-size: 18px; font-weight: 600; line-height: 1.2; color: var(--text); transition: color 0.2s; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
#mob-nav a.mob-sub { font-size: 15px; font-weight: 500; color: rgba(236,233,224,0.68); padding-left: 18px; }
#mob-nav a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 26px; right: 26px; width: 42px; height: 42px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14); color: var(--text); font-size: 22px; cursor: pointer; line-height: 1; }
@media (max-width: 960px) { .site-nav-links { display: none; } .hamburger { display: flex; } }
