/* ============================================================
   ANGRY MONKEY BAR — site styles
   Editorial mixology magazine meets Italian heritage.
   ============================================================ */

/* ---------- Tokens ---------- */
:root{
  /* Color */
  --ink:        oklch(0.16 0.020 60);   /* deep warm near-black */
  --ink-2:      oklch(0.22 0.022 65);   /* panel */
  --ink-3:      oklch(0.32 0.024 65);   /* line/rule */
  --smoke:      oklch(0.62 0.020 60);   /* secondary text on dark - improved contrast */
  --bone:       oklch(0.95 0.020 80);   /* aged cream paper */
  --bone-2:     oklch(0.86 0.025 75);   /* secondary cream */
  --bone-3:     oklch(0.78 0.030 70);   /* tertiary, dividers on light */
  --brass:      oklch(0.78 0.115 80);   /* brighter antique brass for better contrast */
  --brass-deep: oklch(0.58 0.115 70);   /* deeper gold */
  --brass-soft: oklch(0.85 0.085 82);   /* hover/active highlight */
  --claret:     oklch(0.36 0.10 25);    /* wine accent */
  --moss:       oklch(0.45 0.07 130);   /* botanical green */

  /* Type */
  --f-display: "Italiana", "Cormorant Garamond", serif;
  --f-serif:   "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-sans:    "DM Sans", system-ui, sans-serif;
  --f-mono:    "DM Mono", ui-monospace, monospace;

  /* Scale */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 10px;
  --r-pill: 999px;

  --shadow-soft: 0 24px 60px -28px oklch(0 0 0 / 0.55);
  --shadow-deep: 0 36px 80px -32px oklch(0 0 0 / 0.7);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body{
  font-family: var(--f-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout primitives ---------- */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* ---------- Type ---------- */
.eyebrow{
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow.with-rule::after{
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow.start::before { display: none; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.02; margin: 0; letter-spacing: -0.005em; }
.h-display { font-family: var(--f-display); font-size: clamp(64px, 10vw, 168px); line-height: 0.92; letter-spacing: -0.015em; }
.h1 { font-family: var(--f-display); font-size: clamp(48px, 6.4vw, 104px); line-height: 0.96; }
.h2 { font-family: var(--f-display); font-size: clamp(36px, 4.5vw, 72px); line-height: 1.02; }
.h3 { font-family: var(--f-serif); font-style: italic; font-weight: 500; font-size: clamp(22px, 2.2vw, 32px); }
.lede { font-family: var(--f-serif); font-style: italic; font-size: clamp(20px, 1.8vw, 26px); line-height: 1.45; color: var(--bone); opacity: 0.92; }
.copy { font-family: var(--f-serif); font-size: 18px; line-height: 1.65; color: var(--bone-2); }
.copy p { margin: 0 0 1em; }
.small { font-family: var(--f-sans); font-size: 13px; letter-spacing: 0.02em; color: var(--smoke); }
.cap { font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--smoke); }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid currentColor;
  color: var(--brass);
  background: transparent;
  border-radius: var(--r-sm);
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn--solid { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn--solid:hover { background: var(--brass-soft); border-color: var(--brass-soft); }
.btn--ghost { color: var(--bone); border-color: oklch(1 0 0 / 0.35); }
.btn--ghost:hover { color: var(--ink); background: var(--bone); border-color: var(--bone); }
.btn--lg { padding: 20px 36px; font-size: 13px; }
.btn .arrow { width: 16px; height: 1px; background: currentColor; position: relative; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ---------- Nav ---------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(to bottom, oklch(0.12 0.018 60 / 0.92), oklch(0.12 0.018 60 / 0.65) 70%, transparent);
  backdrop-filter: blur(10px);
  transition: background .3s;
}
.nav.is-solid {
  background: oklch(0.14 0.018 60 / 0.96);
  border-bottom: 1px solid oklch(1 0 0 / 0.06);
}
.nav__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__brand img { height: 44px; width: auto; }
.nav__brand .wordmark{
  display: flex; flex-direction: column; line-height: 1;
}
.nav__brand .wordmark b { font-family: var(--f-display); font-weight: 400; color: var(--brass); font-size: 22px; letter-spacing: 0.04em; }
.nav__brand .wordmark span { font-family: var(--f-sans); font-size: 9px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--smoke); margin-top: 4px; }
.nav__links{
  display: flex; align-items: center; gap: 36px;
  justify-self: center;
  font-family: var(--f-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a{
  color: var(--bone);
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.nav__links a:hover, .nav__links a[aria-current="page"]{ color: var(--brass); }
.nav__links a[aria-current="page"]::after{
  content: ""; position: absolute;
  left: 50%; bottom: 0;
  width: 4px; height: 4px;
  background: var(--brass);
  border-radius: 50%;
  transform: translateX(-50%);
}
.nav__links a .ext { font-size: 9px; vertical-align: super; opacity: 0.7; margin-left: 2px; }
.nav__cta { justify-self: end; display: flex; gap: 12px; align-items: center; }
.nav__call { font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.18em; color: var(--bone-2); white-space: nowrap; }
.nav__call b { color: var(--brass); font-weight: 500; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  color: var(--bone);
  padding-top: 120px; /* safe area for fixed nav */
}
.hero__bg{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(1.05);
}
.hero__bg::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, oklch(0.08 0.018 60 / 0.96) 0%, oklch(0.10 0.02 60 / 0.7) 35%, oklch(0.10 0.02 60 / 0.25) 65%, oklch(0.10 0.02 60 / 0.5) 100%),
    radial-gradient(70% 80% at 30% 60%, transparent 0%, oklch(0.10 0.02 60 / 0.4) 100%);
}
.hero__inner{
  position: relative;
  width: 100%;
  padding: 0 0 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
}
.hero__title{
  font-family: var(--f-display);
  font-size: clamp(52px, 6.6vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  max-width: 16ch;
}
.hero__title em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brass);
}
.hero__sub{
  margin-top: 28px;
  max-width: 48ch;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--bone-2);
}
.hero__actions{ margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero__meta{
  align-self: end; text-align: right;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-2);
  border-left: 1px solid oklch(1 0 0 / 0.18);
  padding: 8px 0 8px 24px;
}
.hero__meta b { color: var(--brass); font-weight: 500; display: block; font-size: 14px; margin-top: 4px; letter-spacing: 0.18em; }

/* Slider dots */
.hero__dots{ position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 4; }
.hero__dots button{ all: unset; width: 28px; height: 2px; background: oklch(1 0 0 / 0.3); cursor: pointer; transition: all .25s; }
.hero__dots button.is-active{ background: var(--brass); width: 56px; }
.hero__counter{ position: absolute; right: 32px; bottom: 32px; font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.22em; color: var(--bone-2); z-index: 4; }
.hero__counter b{ color: var(--brass); font-weight: 500; }

/* ---------- Section base ---------- */
section { position: relative; }
.section { padding: 120px 0; }
.section--tight { padding: 80px 0; }
.section--bone { background: var(--bone); color: var(--ink); }
.section--bone .copy { color: oklch(0.28 0.015 60); }
.section--bone .small { color: oklch(0.42 0.015 60); }
.section--bone .eyebrow { color: var(--brass-deep); }
.section--ink2 { background: var(--ink-2); }
.section__head{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; align-items: end; }
.section__head .h2 { max-width: 16ch; }
.section__head--center { grid-template-columns: 1fr; text-align: center; max-width: 880px; margin-left: auto; margin-right: auto; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .h2 { margin: 24px auto 20px; }

/* ---------- Number / stat strip ---------- */
.stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
}
.stat{
  padding: 56px 32px;
  border-right: 1px solid var(--ink-3);
  display: flex; flex-direction: column; gap: 14px;
}
.stat:last-child { border-right: none; }
.stat__num{
  font-family: var(--f-display);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.9;
  color: var(--brass);
}
.stat__num sup { font-size: 0.35em; vertical-align: top; margin-left: 4px; color: var(--bone-2); letter-spacing: 0.1em; }
.stat__label{
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-2);
}
.stat__cap{ font-family: var(--f-serif); font-style: italic; color: var(--smoke); font-size: 15px; margin-top: auto; }

/* ---------- Story / manifesto ---------- */
.story{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story__media{ position: relative; }
.story__media img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-sm); }
.story__media .tag{
  position: absolute; bottom: 24px; left: 24px;
  background: var(--ink); color: var(--brass);
  font-family: var(--f-sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 10px 14px; border: 1px solid var(--brass);
}
.story__text .h2 { margin: 24px 0 32px; }
.story__quote{
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: var(--brass);
  margin: 40px 0;
  padding-left: 24px;
  border-left: 1px solid var(--brass);
}
.story__sig{
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
  font-family: var(--f-serif); font-style: italic;
  color: var(--bone-2);
}
.story__sig svg{ color: var(--brass); }

/* ---------- Gallery ---------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-sm); background: var(--ink-2); }
.gallery figure img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure::after{
  content: ""; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to top, oklch(0 0 0 / 0.5), transparent);
  opacity: 0; transition: opacity .3s;
}
.gallery figure:hover::after { opacity: 1; }
.gallery figure figcaption{
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--bone);
  opacity: 0; transition: opacity .3s;
  z-index: 2;
}
.gallery figure:hover figcaption { opacity: 1; }

/* Specific spans */
.g-tall { grid-column: span 4; aspect-ratio: 3/4; }
.g-wide { grid-column: span 6; aspect-ratio: 3/2; }
.g-square { grid-column: span 3; aspect-ratio: 1; }
.g-portrait { grid-column: span 3; aspect-ratio: 3/4; }
.g-pano { grid-column: span 8; aspect-ratio: 16/7; }

/* ---------- Feature card (Gin Finder teaser) ---------- */
.feature{
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--ink-2);
  overflow: hidden;
  border: 1px solid var(--ink-3);
}
.feature__body{ padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.feature__media{ position: relative; overflow: hidden; }
.feature__media img{ width: 100%; height: 100%; object-fit: cover; }
.feature__media::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, oklch(0.22 0.022 65 / 0.5), transparent 30%);
}
.feature .badge {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  padding: 8px 14px;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 28px;
}
.feature .badge::before{ content: "★"; font-size: 11px; }
.feature__title { margin: 0 0 24px; }
.feature__list{ list-style: none; padding: 0; margin: 28px 0 36px; display: grid; gap: 12px; }
.feature__list li{ display: flex; gap: 14px; font-family: var(--f-serif); color: var(--bone-2); font-size: 17px; align-items: baseline; }
.feature__list li::before{ content: "→"; color: var(--brass); font-family: var(--f-sans); }

/* ---------- Split / food + mixology ---------- */
.split{ display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split > div { padding: 96px 60px; }
.split__left { background: var(--ink-2); border-right: 1px solid var(--ink-3); }
.split__right { background: var(--ink); }
.split img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 32px; border-radius: var(--r-sm); }

/* ---------- Mascot / Vedo Sento Parlo ---------- */
.mascot{ padding: 140px 0 120px; text-align: center; }
.mascot__line{
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.96;
  color: var(--bone);
  display: flex; gap: clamp(20px, 4vw, 80px);
  justify-content: center; flex-wrap: wrap;
  margin: 60px 0;
}
.mascot__line span{ display: inline-flex; flex-direction: column; align-items: center; gap: 16px; }
.mascot__line span img{ width: clamp(120px, 14vw, 220px); height: clamp(120px, 14vw, 220px); object-fit: cover; border-radius: 50%; filter: grayscale(0.4) brightness(0.95) sepia(0.15); }
.mascot__line span i{ font-family: var(--f-serif); font-style: italic; color: var(--brass); }
.mascot__last{ color: var(--brass); font-family: var(--f-display); font-size: clamp(56px, 8vw, 128px); }

/* ---------- Events ---------- */
.event-card{
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 0;
  background: var(--ink-2); border: 1px solid var(--ink-3);
  overflow: hidden;
}
.event-card__media{ background: var(--ink-3); overflow: hidden; }
.event-card__media img{ width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.event-card__body{ padding: 56px; display: flex; flex-direction: column; }
.event-card__date{
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px;
  font-family: var(--f-sans); letter-spacing: 0.18em; text-transform: uppercase; font-size: 11px; color: var(--smoke);
}
.event-card__date b { font-family: var(--f-display); font-size: 56px; color: var(--brass); letter-spacing: 0; line-height: 1; }
.event-card__title { font-family: var(--f-display); font-size: clamp(36px, 3.6vw, 56px); margin: 0 0 20px; line-height: 1; }
.event-card__cta { margin-top: auto; padding-top: 36px; display: flex; gap: 16px; }

/* ---------- Press ---------- */
.press{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.press__item{
  padding: 48px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 280px;
  transition: border .3s;
}
.press__item:hover { border-color: var(--brass); }
.press__logo { height: 36px; display: flex; align-items: center; }
.press__logo img { max-height: 100%; width: auto; filter: brightness(0.95) saturate(0.9); opacity: 0.85; }
.press__quote{
  font-family: var(--f-serif); font-style: italic;
  font-size: 19px; line-height: 1.4; color: var(--bone);
}
.press__quote::before { content: "“"; color: var(--brass); font-size: 32px; margin-right: 4px; }
.press__meta{ margin-top: auto; font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--smoke); display: flex; justify-content: space-between; align-items: center; }

/* ---------- Hours / info card ---------- */
.info-grid{ display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.info-card{ background: var(--ink-2); border: 1px solid var(--ink-3); padding: 64px; }
.info-card .h2 { margin: 16px 0 24px; }
.info-list{ list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 16px; }
.info-list li{
  display: grid; grid-template-columns: 1fr auto;
  align-items: baseline; gap: 12px;
  padding: 12px 0; border-bottom: 1px dashed var(--ink-3);
  font-family: var(--f-sans); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
}
.info-list li b { font-family: var(--f-display); font-size: 20px; color: var(--brass); letter-spacing: 0; text-transform: none; }
.info-note{
  margin-top: 24px; padding: 16px 20px;
  border-left: 2px solid var(--claret);
  font-family: var(--f-serif); font-style: italic; color: var(--bone-2);
}

/* ---------- Newsletter ---------- */
.newsletter{
  text-align: center;
  padding: 96px 32px;
  background: var(--bone);
  color: var(--ink);
  border-top: 1px solid var(--bone-3);
  border-bottom: 1px solid var(--bone-3);
}
.newsletter form{
  display: flex; gap: 0; max-width: 540px; margin: 32px auto 0;
  border-bottom: 1px solid var(--ink);
}
.newsletter input{
  flex: 1; border: none; background: transparent;
  padding: 16px 0;
  font-family: var(--f-serif); font-size: 18px;
  color: var(--ink); outline: none;
}
.newsletter input::placeholder { color: oklch(0.45 0.01 60); font-style: italic; }
.newsletter button{
  border: none; background: transparent;
  padding: 16px 4px;
  font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
}
.newsletter button:hover { color: var(--brass-deep); }

/* ---------- Footer ---------- */
.footer{
  background: oklch(0.10 0.018 60);
  color: var(--bone-2);
  padding: 80px 0 32px;
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-3);
}
.footer__brand img { height: 56px; margin-bottom: 24px; }
.footer__brand p { font-family: var(--f-serif); font-style: italic; color: var(--bone-2); line-height: 1.5; }
.footer__col h4 { font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); margin-bottom: 20px; font-weight: 500; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__col a { color: var(--bone); font-family: var(--f-serif); font-size: 17px; transition: color .2s; }
.footer__col a:hover { color: var(--brass); }
.footer__bottom{
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-family: var(--f-sans); font-size: 11px; letter-spacing: 0.18em; color: var(--smoke);
}
.footer__social{ display: flex; gap: 16px; }
.footer__social a{
  width: 36px; height: 36px;
  border: 1px solid var(--ink-3); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bone);
  transition: all .2s;
}
.footer__social a:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- WhatsApp floating ---------- */
.fab{
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  background: var(--brass);
  color: var(--ink);
  padding: 14px 22px 14px 18px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-deep);
  transition: transform .2s;
}
.fab:hover { transform: translateY(-2px); }

/* ---------- Decorative monogram ---------- */
.monogram{
  font-family: var(--f-display);
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brass);
}
.rule{ height: 1px; background: var(--ink-3); width: 100%; }
.rule--brass{ background: var(--brass); }

/* ---------- Mobile nav ---------- */
.nav__burger{
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--bone);
  transition: all .2s;
}
.nav__burger:hover, .nav__burger[aria-expanded="true"]{ border-color: var(--brass); color: var(--brass); }
.nav__burger svg{ display: block; }
.nav__burger .ic-close{ display: none; }
.nav__burger[aria-expanded="true"] .ic-open{ display: none; }
.nav__burger[aria-expanded="true"] .ic-close{ display: block; }

.nav__drawer{
  position: fixed; inset: 0; top: 0;
  z-index: 99;
  background: oklch(0.10 0.018 60 / 0.98);
  backdrop-filter: blur(12px);
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 96px 32px 48px;
  text-align: center;
  gap: 8px;
  font-family: var(--f-display);
  animation: drawerIn .25s ease;
}
@keyframes drawerIn { from { opacity: 0; } to { opacity: 1; } }
.nav__drawer.is-open{ display: flex; }
.nav__drawer a{
  font-size: 36px;
  color: var(--bone);
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-3);
  transition: color .2s;
}
.nav__drawer a:last-of-type{ border-bottom: none; }
.nav__drawer a:hover, .nav__drawer a[aria-current="page"]{ color: var(--brass); }
.nav__drawer .btn{ margin-top: 24px; align-self: center; }
.nav__drawer .call{
  font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--smoke);
  margin-top: 8px;
}
.nav__drawer .call a{ display: inline; font-size: 12px; padding: 0; border: none; color: var(--brass); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .nav__links { gap: 20px; font-size: 11px; }
  .nav__call { display: none; }
  .section { padding: 80px 0; }
  .section__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .story { grid-template-columns: 1fr; gap: 48px; }
  .feature { grid-template-columns: 1fr; }
  .feature__body { padding: 56px 32px; }
  .split { grid-template-columns: 1fr; }
  .split > div { padding: 64px 32px; }
  .event-card { grid-template-columns: 1fr; }
  .event-card__media img { min-height: 240px; }
  .event-card__body { padding: 32px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--ink-3); }
  .stat:nth-child(odd) { border-right: 1px solid var(--ink-3); }
  .press { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .g-tall, .g-wide, .g-pano { grid-column: span 6; }
  .g-square, .g-portrait { grid-column: span 3; }
}
@media (max-width: 820px){
  /* Switch to mobile nav layout */
  .nav { padding: 12px 0; }
  .nav__inner{ grid-template-columns: 1fr auto; gap: 16px; }
  .nav__links{ display: none; }
  .nav__cta{ display: none; }
  .nav__burger{ display: inline-flex; }
  .nav__brand img{ height: 36px; }
  .nav__brand .wordmark b{ font-size: 18px; }
  .nav__brand .wordmark span{ display: none; }
}
@media (max-width: 640px){
  .wrap, .wrap-narrow { padding: 0 20px; }
  .hero{ padding-top: 80px; min-height: 92vh; }
  .hero__inner { grid-template-columns: 1fr; padding-bottom: 100px; gap: 16px; }
  .hero__title{ font-size: clamp(40px, 11vw, 64px) !important; }
  .hero__sub{ font-size: 16px; margin-top: 20px; }
  .hero__actions{ margin-top: 24px; gap: 12px; flex-direction: column; align-items: stretch; }
  .hero__actions .btn{ justify-content: center; width: 100%; }
  .hero__meta { text-align: left; border-left: none; border-top: 1px solid oklch(1 0 0 / 0.18); padding: 16px 0 0; font-size: 10px; }
  .hero__counter{ font-size: 10px; right: 20px; bottom: 20px; }
  .hero__dots{ bottom: 20px; }

  /* Lighter FAB on mobile — icon only, smaller */
  .fab{
    right: 16px; bottom: 16px;
    padding: 14px;
    border-radius: 50%;
    font-size: 0;
    gap: 0;
    width: 52px; height: 52px;
    box-shadow: 0 12px 30px -8px oklch(0 0 0 / 0.6);
  }
  .fab svg{ width: 22px; height: 22px; }

  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; padding: 40px 24px; }
  .stat__num{ font-size: 64px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .mascot__line { gap: 24px; }
  .mascot{ padding: 80px 0 60px; }

  /* Sections tighter */
  .section { padding: 60px 0; }
  .section__head { margin-bottom: 32px; }

  /* Drawer fills better */
  .nav__drawer a{ font-size: 28px; padding: 12px 0; }
}
