/* ============================================================
   NEXA PRODUCCIONS — Main Stylesheet
   Corporate · Professional · Production-ready
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Palette */
  --ink:        #0c0c0e;
  --ink2:       #131316;
  --ink3:       #1a1a1e;
  --ink4:       #222226;
  --rule:       rgba(255,255,255,0.06);
  --rule2:      rgba(255,255,255,0.11);
  --rule3:      rgba(255,255,255,0.18);
  --white:      #f4f4f0;
  --mid:        rgba(244,244,240,0.45);
  --faint:      rgba(244,244,240,0.18);
  --gold:       #c9a84c;
  --gold-l:     #dfc070;
  --gold-faint: rgba(201,168,76,0.12);

  /* Typography */
  --ff-display: 'Barlow Condensed', sans-serif;
  --ff-body:    'Barlow', sans-serif;

  /* Spacing scale */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 48px; --s6: 64px; --s7: 96px; --s8: 128px;

  /* Layout */
  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 60px);

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-io:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; text-size-adjust: 100%; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ── Scrollbar ───────────────────────────────────────────  */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink4); border-radius: 2px; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--s7) 0;
  border-bottom: 1px solid var(--rule);
}
.section--alt { background: var(--ink2); }
.section--dark { background: var(--ink); }

/* ── Reveal animations ───────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.rv.visible { opacity: 1; transform: none; }
.rv-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.rv-left.visible { opacity: 1; transform: none; }
.rv-right { opacity: 0; transform: translateX(28px); transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out); }
.rv-right.visible { opacity: 1; transform: none; }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }
.d7 { transition-delay: 0.56s; }
.d8 { transition-delay: 0.64s; }

/* ── Typography ──────────────────────────────────────────── */
.eyebrow {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}

.display {
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.display .ghost {
  color: transparent;
  -webkit-text-stroke: 1px var(--rule3);
}
.display .accent { color: var(--gold); }

.title-xl { font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 0.94; }
.title-lg { font-size: clamp(1.8rem, 3.5vw, 3.2rem); line-height: 1; }
.title-md { font-size: clamp(1.3rem, 2vw, 1.9rem); line-height: 1.1; }
.title-sm { font-size: 1.05rem; line-height: 1.2; }

.body-lg { font-size: 1.05rem; color: var(--mid); line-height: 1.8; font-weight: 300; }
.body-md { font-size: 0.9rem; color: var(--mid); line-height: 1.75; font-weight: 300; }
.body-sm { font-size: 0.8rem; color: var(--faint); line-height: 1.6; }

.label-text {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.18s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.8rem;
}
.btn--primary:hover { background: var(--gold-l); }

.btn--outline {
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--rule2);
  font-size: 0.8rem;
}
.btn--outline:hover { border-color: var(--rule3); color: var(--white); background: rgba(255,255,255,0.04); }

.btn--ghost {
  padding: 0;
  background: transparent;
  color: var(--mid);
  font-size: 0.75rem;
  gap: 6px;
}
.btn--ghost:hover { color: var(--white); transform: none; }
.btn--ghost:hover .btn-arrow { transform: translateX(4px); }
.btn-arrow { transition: transform 0.2s var(--ease-out); display: inline-flex; align-items: center; }

/* ── Header ──────────────────────────────────────────────── */
#site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 800;
  height: 68px;
  border-bottom: 1px solid var(--rule);
  background: rgba(12,12,14,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.3s, border-color 0.3s;
}
#site-header.scrolled {
  background: rgba(12,12,14,0.98);
  border-color: var(--rule2);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.site-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.site-logo__mark {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.site-logo__dot { color: var(--gold); }
.site-logo__sub {
  font-family: var(--ff-body);
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-left: 6px;
  align-self: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--s2); }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--rule);
  padding: 4px 10px;
  border-radius: 2px;
}
.lang-switch button {
  background: none;
  border: none;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 3px 5px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.lang-switch button:hover { color: var(--white); }
.lang-switch button.active { color: var(--gold); background: var(--gold-faint); }
.lang-switch .sep { color: var(--rule2); font-size: 0.6rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--mid);
  transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--white); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--white); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--ink);
  z-index: 790;
  flex-direction: column;
  padding: var(--s5) var(--gutter);
  gap: 0;
  border-top: 1px solid var(--rule);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
}
.mobile-nav.open { transform: none; opacity: 1; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover { color: var(--white); padding-left: 8px; }
.mobile-nav .mobile-cta { margin-top: var(--s4); }

/* ── Hero ────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Architectural ruled lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--rule) 1px, transparent 1px),
    linear-gradient(90deg, var(--rule) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
/* Subtle warm glow top-right */
.hero-bg::after {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 65%);
  top: -10%; right: -10%;
  animation: glow-drift 14s ease-in-out infinite alternate;
}
@keyframes glow-drift {
  from { transform: translate(0,0); }
  to   { transform: translate(-40px, 40px); }
}

.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s8) 0 var(--s6);
  position: relative;
  z-index: 2;
}

.hero-intro {
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.2s forwards;
}
.hero-heading {
  margin: var(--s3) 0 var(--s4);
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.38s forwards;
}
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.54s forwards;
}
.hero-desc { max-width: 440px; }
.hero-actions { display: flex; gap: var(--s2); flex-wrap: wrap; align-items: center; }

/* Hero stat bar */
.hero-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fade-in 0.8s var(--ease-out) 0.9s forwards;
}
.hero-bar-cell {
  padding: 20px var(--gutter);
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-bar-cell:last-child { border-right: none; }
.hbc-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--rule2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.hbc-text strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 2px;
}
.hbc-text span { font-size: 0.72rem; color: var(--mid); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: var(--ink2);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0 2.5rem;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.marquee-item .sep {
  width: 3px; height: 3px;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section header component ────────────────────────────── */
.sec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s6);
  margin-bottom: var(--s6);
  flex-wrap: wrap;
}
.sec-head__left {}
.sec-head__right {
  max-width: 380px;
  padding-top: 6px;
}

/* ── Qui som ─────────────────────────────────────────────── */
.qs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.qs-text > p { margin-bottom: var(--s3); }
.qs-text > p:last-child { margin-bottom: 0; }

.values-list {
  border-top: 1px solid var(--rule);
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.2s var(--ease-out);
}
.value-item:hover { padding-left: 8px; }
.value-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--rule2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.2s;
}
.value-item:hover .value-icon { background: var(--gold-faint); }
.value-name {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 4px;
}
.value-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.6; }

/* ── Services grid ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
}
.service-card {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:nth-child(4n) { border-right: none; }
.service-card:nth-last-child(-n+4) { border-bottom: none; }
.service-card:hover { background: var(--ink3); }
.service-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.service-card:hover::after { width: 100%; }

.sc-num {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--faint);
  margin-bottom: 20px;
}
.sc-icon {
  color: var(--gold);
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease-out);
}
.service-card:hover .sc-icon { transform: scale(1.08); }
.sc-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 8px;
}
.sc-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.65; }

/* ── Events / projects ──────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.event-card {
  background: var(--ink2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.event-card:hover { background: var(--ink3); }
.event-card--featured {
  grid-column: span 2;
}

.ec-tag {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ec-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--rule2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.25s;
  flex-shrink: 0;
}
.event-card:hover .ec-icon { background: var(--gold-faint); }
.ec-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.ec-desc { font-size: 0.82rem; color: var(--mid); line-height: 1.65; flex-grow: 1; }
.ec-arrow {
  color: var(--faint);
  margin-top: auto;
  align-self: flex-start;
  transition: color 0.2s, transform 0.2s var(--ease-out);
  display: flex;
}
.event-card:hover .ec-arrow { color: var(--gold); transform: translate(4px, -4px); }

/* Featured layout */
.event-card--featured { flex-direction: row; align-items: flex-start; gap: 36px; }
.event-card--featured .ec-body { display: flex; flex-direction: column; gap: var(--s2); }

/* ── Process / How we work ───────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
}
.process-step {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.process-step:last-child { border-right: none; }
.ps-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--rule2);
  margin-bottom: var(--s2);
  line-height: 1;
}
.ps-title {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ps-desc { font-size: 0.8rem; color: var(--mid); line-height: 1.65; }
/* Connector line between steps */
.process-step::after {
  content: '';
  position: absolute;
  top: 44px; right: -1px;
  width: 1px; height: 20px;
  background: var(--gold);
  opacity: 0.5;
}
.process-step:last-child::after { display: none; }

/* ── Zone ────────────────────────────────────────────────── */
.zone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.zone-visual {
  border: 1px solid var(--rule);
  background: var(--ink2);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zone-visual svg.grid-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.08;
}
.zone-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.zone-pulse {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}
.zone-pulse::before, .zone-pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-ring 2.8s ease-out infinite;
}
.zone-pulse::after { animation-delay: 1.4s; }
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(5); opacity: 0; }
}
.zone-label {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  background: var(--ink2);
  padding: 5px 12px;
  border: 1px solid var(--rule2);
}
.zone-marker {
  position: absolute;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 5px;
}
.zone-marker::before {
  content: '';
  width: 5px; height: 5px;
  border: 1px solid var(--faint);
  border-radius: 50%;
  flex-shrink: 0;
}

.zone-list { border-top: 1px solid var(--rule); }
.zone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left 0.2s var(--ease-out);
}
.zone-row:hover { padding-left: 8px; }
.zone-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}
.zone-badge {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.3);
}
.zone-note {
  margin-top: var(--s4);
  padding: 22px 24px;
  border: 1px solid var(--rule2);
  background: var(--ink3);
}
.zone-note p { font-size: 0.85rem; color: var(--mid); line-height: 1.7; }
.zone-note em { color: var(--white); font-style: normal; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-panel {
  border: 1px solid var(--rule);
  background: var(--ink2);
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--rule);
}
.contact-row {
  background: var(--ink2);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.25s;
}
.contact-row:hover { background: var(--ink3); }
.cr-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--rule2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cr-label {
  font-family: var(--ff-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  display: block;
  margin-bottom: 4px;
}
.cr-value {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
}
.cr-value a { transition: color 0.2s; }
.cr-value a:hover { color: var(--gold); }

.social-row {
  background: var(--ink2);
  padding: 22px 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.soc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border: 1px solid var(--rule2);
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.soc-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-faint); }

/* ── Cookie banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--ink2);
  border-top: 1px solid var(--rule2);
  padding: var(--s3) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}
#cookie-banner.visible { transform: none; }
.cookie-text { font-size: 0.82rem; color: var(--mid); max-width: 700px; line-height: 1.6; }
.cookie-text a { color: var(--gold); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color 0.2s; }
.cookie-text a:hover { text-decoration-color: var(--gold); }
.cookie-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
.cookie-accept { padding: 10px 22px; background: var(--gold); color: var(--ink); font-family: var(--ff-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: var(--gold-l); }
.cookie-reject { padding: 10px 22px; background: transparent; color: var(--mid); font-family: var(--ff-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid var(--rule2); cursor: pointer; transition: border-color 0.2s, color 0.2s; }
.cookie-reject:hover { border-color: var(--rule3); color: var(--white); }

/* ── Footer ──────────────────────────────────────────────── */
#site-footer { background: var(--ink); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--s6);
  padding: var(--s7) 0;
  border-bottom: 1px solid var(--rule);
}
.footer-brand .site-logo { margin-bottom: var(--s3); }
.footer-brand p { font-size: 0.82rem; color: var(--faint); line-height: 1.7; max-width: 240px; }

.footer-col-title {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s3);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: var(--mid); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.fc-item .lbl { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 2px; font-family: var(--ff-display); font-weight: 600; }
.fc-item .val { font-size: 0.85rem; color: var(--mid); }
.fc-item .val a { transition: color 0.2s; }
.fc-item .val a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) 0;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-copy { font-size: 0.72rem; color: var(--faint); }
.footer-legal { display: flex; gap: var(--s3); }
.footer-legal a { font-size: 0.72rem; color: var(--faint); transition: color 0.2s; }
.footer-legal a:hover { color: var(--mid); }

/* ── Privacy / Legal pages ───────────────────────────────── */
.legal-page {
  min-height: 100vh;
  padding-top: 68px;
}
.legal-header {
  padding: var(--s7) 0 var(--s5);
  border-bottom: 1px solid var(--rule);
}
.legal-body {
  padding: var(--s6) 0 var(--s7);
  max-width: 800px;
}
.legal-body h2 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: var(--s5) 0 var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--rule);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 0.88rem; color: var(--mid); line-height: 1.8; margin-bottom: var(--s2); }
.legal-body ul { margin: var(--s2) 0 var(--s2) var(--s3); }
.legal-body ul li { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal-body a { color: var(--gold); }
.legal-body strong { color: var(--white); font-weight: 500; }
.legal-meta { font-size: 0.75rem; color: var(--faint); margin-top: var(--s5); padding-top: var(--s3); border-top: 1px solid var(--rule); }

/* ── 404 page ────────────────────────────────────────────── */
.notfound-page {
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
}
.notfound-inner {
  padding: var(--s7) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.notfound-code {
  font-family: var(--ff-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule3);
  user-select: none;
}
.notfound-code span { -webkit-text-stroke-color: rgba(201,168,76,0.3); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(4n) { border-right: 1px solid var(--rule); }
  .services-grid .service-card:nth-child(2n) { border-right: none; }
  .services-grid .service-card:nth-last-child(-n+4) { border-bottom: 1px solid var(--rule); }
  .services-grid .service-card:nth-last-child(-n+2) { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-right: 1px solid var(--rule); border-top: 1px solid var(--rule); }
  .process-step:nth-child(4) { border-top: 1px solid var(--rule); border-right: none; }
}

@media (max-width: 900px) {
  .main-nav, .header-actions .btn--primary { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .qs-layout, .zone-layout, .contact-layout { grid-template-columns: 1fr; gap: var(--s5); }
  .events-grid { grid-template-columns: 1fr; }
  .event-card--featured { grid-column: span 1; flex-direction: column; }
  .hero-bar { grid-template-columns: 1fr 1fr; }
  .hero-bar-cell:nth-child(3) { border-top: 1px solid var(--rule); }
  .hero-bar-cell:nth-child(4) { border-top: 1px solid var(--rule); border-right: none; }
  .hero-bar-cell:nth-child(2) { border-right: none; }
}

@media (max-width: 640px) {
  :root { --s7: 64px; --s8: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card { border-right: none !important; }
  .services-grid .service-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .services-grid .service-card:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-top: 1px solid var(--rule); }
  .process-step:first-child { border-top: none; }
  .hero-bar { grid-template-columns: 1fr; }
  .hero-bar-cell { border-right: none !important; border-top: 1px solid var(--rule); }
  .hero-bar-cell:first-child { border-top: none; }
  .sec-head { flex-direction: column; gap: var(--s3); }
  .cookie-actions { width: 100%; }
}
