/* ZORS — shared design system (used by press.html and contact.html).
   index.html keeps its inline CSS for performance; this file is for secondary pages. */

:root {
  --bg: #ece6d9;
  --bg-warm: #ebe0c9;
  --bg-soft: #ddd4bf;
  --bg-dark: #14110d;
  --text: #14110d;
  --text-dim: #6b645c;
  --text-mute: #a39a8c;
  --accent: #c89547;
  --accent-warm: #dcb372;
  --accent-deep: #a37633;
  --accent-glow: rgba(200,149,71,0.35);
  --line: rgba(20,17,13,0.12);
  --line-dark: rgba(255,255,255,0.1);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--bg); }

.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 40px; position: relative; }
@media (max-width: 640px) { .container-wide { padding: 0 24px; } }

.caps {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 400;
  font-size: 11px;
  color: var(--text-dim);
}

.glow {
  position: absolute; pointer-events: none; z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
}

/* NAV */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: rgba(236,230,217,0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(20,17,13,0.06);
  transition: background .3s, padding .3s, border-color .3s;
}
nav.top.scrolled {
  background: rgba(236,230,217,0.95);
  border-bottom-color: var(--line);
  padding: 12px 40px;
}
nav.top .brand {
  font-family: var(--sans); font-weight: 500; letter-spacing: 0.36em; font-size: 14px;
  color: var(--text);
}
.nav-center { display: flex; gap: 28px; align-items: center; }
.nav-center a {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text); font-weight: 500;
  transition: color .25s;
}
.nav-center a:hover { color: var(--accent); }
.nav-right { display: flex; gap: 20px; align-items: center; }
.nav-socials { display: flex; gap: 20px; align-items: center; padding-right: 22px; border-right: 1px solid var(--line); }
.nav-socials a { color: var(--text); display: inline-flex; align-items: center; transition: color .25s, transform .25s; }
.nav-socials a:hover { color: var(--accent); transform: translateY(-1px); }
.nav-socials svg { width: 24px; height: 24px; }
nav.top .cta {
  color: #fff; padding: 9px 18px;
  background: var(--accent);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
  transition: background .25s, transform .2s;
}
nav.top .cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

/* Mobile nav — hamburger + full-screen menu, replaces nav-center/nav-right below 1100px */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0; cursor: pointer;
  z-index: 210;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 250;
  background: var(--bg-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 44px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.show { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-links { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu-links a {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(30px, 8vw, 46px);
  color: var(--bg);
  transition: color .25s;
}
.mobile-menu-links a:hover { color: var(--accent-warm); }
.mobile-menu-socials { display: flex; gap: 26px; align-items: center; }
.mobile-menu-socials a { color: rgba(244,239,233,0.9); display: inline-flex; align-items: center; transition: color .25s; }
.mobile-menu-socials a:hover { color: var(--accent-warm); }
.mobile-menu-socials svg { width: 28px; height: 28px; }
.mobile-menu .cta {
  color: var(--bg-dark); background: var(--accent);
  padding: 12px 28px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
  transition: background .25s, transform .2s;
}
.mobile-menu .cta:hover { background: var(--accent-warm); transform: translateY(-1px); }
body.menu-open { overflow: hidden; }

@media (max-width: 1100px) {
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 720px) {
  nav.top { padding: 14px 20px; gap: 12px; }
}

/* SHARED BUTTONS */
.link-btn {
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 6px;
  transition: color .25s, border-color .25s, gap .25s;
  display: inline-flex; align-items: center; gap: 12px;
}
.link-btn:hover { color: var(--accent); border-color: var(--accent); }
.link-btn .arrow { transition: transform .25s; display: inline-block; }
.link-btn:hover .arrow { transform: translateX(4px); }

.btn-big {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 22px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px; border: 0; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 20px 50px rgba(200,149,71,0.35);
  font-family: inherit;
}
.btn-big:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: 0 28px 60px rgba(200,149,71,0.5); }
.btn-big .arrow { transition: transform .25s; display: inline-block; }
.btn-big:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 32px;
  background: transparent; color: var(--text);
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 500;
  border: 1px solid var(--text); border-radius: 999px; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  font-family: inherit;
}
.btn-ghost:hover { background: var(--text); color: var(--bg); }

/* SECTIONS */
section { padding: 140px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.sec-header {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  align-items: end; margin-bottom: 64px;
  position: relative; z-index: 2;
}
@media (max-width: 720px) { .sec-header { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; } }
.sec-header .num { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-deep); }
.sec-header h2 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 1; letter-spacing: -0.015em;
}
.sec-header h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; color: var(--accent); }

/* FOOTER */
footer.site {
  padding: 120px 0 50px;
  background: var(--bg-dark);
  color: var(--bg);
  position: relative; overflow: hidden;
}
footer.site .glow-f { width: 700px; height: 700px; background: rgba(200,149,71,0.18); top: -200px; right: -200px; filter: blur(130px); }
footer.site .container-wide { position: relative; z-index: 2; }

.footer-mark {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(80px, 16vw, 220px); letter-spacing: 0.2em; line-height: 1;
  color: var(--bg); padding-bottom: 24px; user-select: none;
}
.footer-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.2vw, 28px);
  color: rgba(244,239,233,0.75);
  padding-bottom: 24px;
}
.footer-tagline em { color: var(--accent-warm); font-style: italic; }
.footer-labels {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(244,239,233,0.5);
  padding-bottom: 44px; margin-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-labels span { color: var(--accent-warm); margin: 0 10px; opacity: 0.8; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
  margin-bottom: 80px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
.footer-grid h4 {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent-warm); margin-bottom: 20px; font-weight: 400;
}
.contact-email {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--bg);
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 6px;
  transition: color .25s, border-color .25s;
  display: inline-block;
}
.contact-email:hover { color: var(--accent-warm); border-color: var(--accent-warm); }
.footer-grid .col a:not(.contact-email) {
  display: block;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,239,233,0.6); padding: 6px 0;
  transition: color .25s, padding-left .25s;
}
.footer-grid .col a:not(.contact-email):hover { color: var(--bg); padding-left: 6px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line-dark);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text-mute);
}
.socials { display: flex; gap: 18px; }
.socials a { color: rgba(244,239,233,0.55); transition: color .25s, transform .25s; }
.socials a:hover { color: var(--accent-warm); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s ease, transform 1.1s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Below-the-fold sections skip rendering work until near-viewport */
.photos, .refs, .booking, footer.site,
.music-block, .form-section, .reasons { content-visibility: auto; contain-intrinsic-size: 1px 900px; }

/* Cookie consent banner — lightweight, matches brand.
   Shared here so every page (not just index.html) gets identical styling
   for the consent-gated GA4 + Meta Pixel loader. See site build notes. */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--bg-dark); color: var(--bg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  font-size: 13px; line-height: 1.5;
  max-width: 640px; margin: 0 auto;
  transform: translateY(120%); transition: transform .5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; color: rgba(244,239,233,0.85); }
.cookie-banner p a { color: var(--accent-warm); border-bottom: 1px solid var(--accent-warm); padding-bottom: 1px; }
.cookie-banner .actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.cookie-banner button {
  font: inherit; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.cookie-banner .decline { background: transparent; color: rgba(244,239,233,0.7); }
.cookie-banner .decline:hover { color: var(--bg); }
.cookie-banner .accept { background: var(--accent); color: var(--bg-dark); }
.cookie-banner .accept:hover { background: var(--accent-warm); }
