:root {
  --ink: #17130f;
  --ink-2: #221c17;
  --cream: #efece2;
  --cream-2: #ddd9cd;
  --gold: #c9a227;
  --magenta: #d6316e;
  --magenta-600: #b8265b;
  --olive: #55603f;
  --sage: #7d8a5c;
  --cream-70: rgba(239, 236, 226, 0.7);
  --cream-62: rgba(239, 236, 226, 0.62);
  --cream-50: rgba(239, 236, 226, 0.5);
  --cream-45: rgba(239, 236, 226, 0.45);
  --cream-14: rgba(239, 236, 226, 0.14);
  --cream-12: rgba(239, 236, 226, 0.12);
  --cream-10: rgba(239, 236, 226, 0.1);
  --cream-08: rgba(239, 236, 226, 0.08);
  --cream-035: rgba(239, 236, 226, 0.035);
  --ink-75: rgba(23, 19, 15, 0.75);
  --ink-72: rgba(23, 19, 15, 0.72);
  --ink-65: rgba(23, 19, 15, 0.65);
  --ink-25: rgba(23, 19, 15, 0.25);
  --ink-22: rgba(23, 19, 15, 0.22);
  --ink-20: rgba(23, 19, 15, 0.2);
  --ff: Archivo, "Helvetica Neue", Helvetica, sans-serif;
  --ff-black: "Archivo Black", Archivo, sans-serif;
  --ff-serif: "Instrument Serif", Georgia, serif;
  --wrap: 1240px;
  --pad: clamp(20px, 4vw, 40px);
  --radius: 12px;
  --radius-lg: 14px;
  --header: 68px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--magenta);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.skip-link:focus { top: 12px; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--ff);
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

body.nav-open { overflow: hidden; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--magenta); }
button, input, select { font: inherit; }
::placeholder { color: rgba(239, 236, 226, 0.35); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 17px 34px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--magenta-600); color: #fff; }
.btn-sm { font-size: 14px; padding: 12px 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 19, 15, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-12);
}
.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header);
}
.brand {
  font-family: var(--ff-black);
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--cream);
  white-space: nowrap;
}
.brand:hover { color: var(--cream); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--cream-14);
  border-radius: 999px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--ink);
  border-bottom: 1px solid var(--cream-12);
  padding: 12px var(--pad) 20px;
}
.nav-menu.is-open { display: flex; }
.nav-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream-70);
}
.nav-menu a:hover { color: var(--gold); }
.nav-menu a[aria-current="page"] { color: #fff; }
.nav-menu a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold);
  margin-top: 3px;
  border-radius: 2px;
}
.nav-cta a {
  margin-top: 8px;
  background: var(--magenta);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 24px;
  border-radius: 999px;
}
.nav-cta a:hover { background: var(--magenta-600); color: #fff; }

@media (min-width: 861px) {
  :root { --header: 76px; }
  .brand { font-size: 17px; }
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 8px 4px;
    background: transparent;
    border: 0;
    padding: 0;
    margin-left: auto;
  }
  .nav-menu a { padding: 10px 12px; font-size: 14px; white-space: nowrap; }
  .nav-cta { margin-left: 12px; }
  .nav-cta a { margin-top: 0; }
  .nav-cta a[aria-current="page"]::after { display: none; }
  .nav-cta a[aria-current="page"] { box-shadow: 0 0 0 2px var(--gold); }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 640px);
  display: flex;
  align-items: flex-end;
  background: var(--ink-2);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 15, 0.62) 0%, rgba(23, 19, 15, 0.42) 38%, rgba(23, 19, 15, 0.95) 100%);
}
.hero-inner {
  position: relative;
  padding: 0 var(--pad) 64px;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
}
.hero .eyebrow { color: var(--gold); }
.hero h1 {
  font-family: var(--ff-black);
  font-size: clamp(44px, 10vw, 116px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  max-width: 15ch;
  color: #fff;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(239, 236, 226, 0.82);
  max-width: 46ch;
  margin: 26px 0 0;
}
.hero .btn { margin-top: 34px; }

@media (min-width: 861px) {
  .hero { min-height: 720px; }
  .hero-inner { padding-bottom: 96px; }
  .hero .lede { font-size: 19px; }
}

/* Cream band */
.band-cream { background: var(--cream); color: var(--ink); }
.band-cream a:hover { color: var(--magenta); }

.pillars {
  display: grid;
  gap: 40px;
  padding: 64px 0;
}
.pillar { border-top: 1px solid var(--ink-25); padding-top: 22px; }
.pillar-num {
  font-family: var(--ff-black);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.pillar-num.is-accent { color: var(--magenta); }
.pillar h2 {
  font-family: var(--ff-black);
  font-size: clamp(24px, 4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0 14px;
}
.pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-72);
  margin: 0;
  text-wrap: pretty;
}

@media (min-width: 800px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
    padding: 96px 0;
  }
}

.city-grid {
  display: grid;
  gap: 20px;
  padding: 0 0 64px;
}
.city-grid figure { margin: 0; }
.frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
}
.frame-3x2 { aspect-ratio: 3 / 2; }
.frame-4x5 { aspect-ratio: 4 / 5; }
.frame-16x10 { aspect-ratio: 16 / 10; }
.frame-21x9 { aspect-ratio: 21 / 9; }
.frame img,
.frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 14px;
}
.caption-olive { color: var(--olive); }
.caption-mute { color: var(--cream-45); }

@media (min-width: 700px) {
  .city-grid { grid-template-columns: 1fr 1fr; padding-bottom: 96px; }
}

.about { padding: 48px 0 80px; max-width: 900px; }
.about .eyebrow { color: var(--olive); }
.about h1,
.about h2 {
  font-family: var(--ff-black);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 26px 0 34px;
  text-wrap: pretty;
}
.about p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-75);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.about .mission {
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  border-top: 1px solid var(--ink-20);
  padding-top: 28px;
}

@media (min-width: 800px) { .about { padding-bottom: 110px; } }

/* Dark sections */
.band-dark { background: var(--ink); color: var(--cream); }
.section-pad { padding: 72px 0; }
@media (min-width: 800px) { .section-pad { padding: 110px 0; } }

.display {
  font-family: var(--ff-black);
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 22ch;
  color: #fff;
}

.committee-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.committee {
  border: 1px solid var(--cream-14);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  background: var(--cream-035);
}
.committee:hover { border-color: rgba(214, 49, 110, 0.55); }
.committee .eyebrow { color: var(--gold); font-size: 11px; letter-spacing: 0.2em; }
.committee h2,
.committee h3 {
  font-family: var(--ff-black);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 14px 0 12px;
  color: #fff;
}
.committee p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-62);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.committee .credit {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
}

@media (min-width: 700px) {
  .committee-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
  .committee { padding: 30px; }
  .committee h2,
  .committee h3 { font-size: 24px; }
}

.events-head { margin-top: 64px; }
.events-head .display { max-width: 26ch; }
.events-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-70);
  max-width: 58ch;
  margin: 22px 0 0;
  text-wrap: pretty;
}
.events-media {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 700px) {
  .events-head { margin-top: 96px; }
  .events-media { grid-template-columns: 1fr 1fr; }
}

.cultura { border-top: 1px solid var(--cream-10); }
.cultura .lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream-70);
  max-width: 58ch;
  margin: 34px 0 0;
  text-wrap: pretty;
}
@media (min-width: 800px) {
  .cultura .lede { margin-left: clamp(0px, 8vw, 140px); }
}
.pull {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.1;
  color: var(--gold);
  margin: 48px 0;
  max-width: 24ch;
}
.cultura .body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-70);
  max-width: 62ch;
  margin: 0;
  text-wrap: pretty;
}
.wide-shot { margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden; background: #2a231c; }
.culture-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.shot { position: relative; background: #2a231c; }
.shot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(214, 49, 110, 0.28), rgba(23, 19, 15, 0.55));
  pointer-events: none;
}
.food-grid { display: grid; gap: 20px; margin-top: 20px; }
@media (min-width: 800px) {
  .culture-grid { grid-template-columns: repeat(3, 1fr); margin-top: 64px; }
  .food-grid { grid-template-columns: 1fr 1fr; }
}

/* FAQ */
.faq-wrap { max-width: 900px; margin: 0 auto; padding: 72px var(--pad); }
.faq-wrap h1,
.faq-wrap h2 {
  font-family: var(--ff-black);
  font-size: clamp(36px, 8vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--ink);
}
.faq-lede {
  font-size: 18px;
  color: var(--ink-65);
  margin: 18px 0 48px;
}
.faq-list { border-top: 1px solid var(--ink-22); }
.faq-list details { border-bottom: 1px solid var(--ink-22); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  font-family: var(--ff-black);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 26px;
  line-height: 1;
  color: var(--magenta);
  font-weight: 400;
  font-family: var(--ff);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(23, 19, 15, 0.7);
  margin: 0 0 26px;
  max-width: 60ch;
  text-wrap: pretty;
}

/* Join */
.join { max-width: 900px; margin: 0 auto; }
.join .display { margin-bottom: 40px; }
.form-card {
  border: 1px solid var(--cream-14);
  border-radius: 18px;
  background: var(--cream-035);
  padding: 28px 22px;
}
@media (min-width: 700px) { .form-card { padding: 40px; } }

.form { display: grid; gap: 18px; }
.form-row { display: grid; gap: 18px; }
@media (min-width: 560px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 9px;
}
.field input,
.field select {
  width: 100%;
  background: rgba(23, 19, 15, 0.6);
  border: 1px solid rgba(239, 236, 226, 0.18);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--cream);
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A227' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field input:focus-visible,
.field select:focus-visible {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 2px rgba(214, 49, 110, 0.35);
}
.consent {
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream-62);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.consent input { margin-top: 3px; accent-color: var(--magenta); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.form .btn { width: 100%; padding: 18px; font-size: 16px; margin-top: 10px; }
.form-status {
  display: none;
  background: rgba(85, 96, 63, 0.25);
  border: 1px solid var(--sage);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-direct {
  margin-top: 18px;
  font-size: 14px;
  color: var(--cream-50);
}
.form-direct a { color: var(--cream-70); text-decoration: underline; text-underline-offset: 2px; }

/* Closing band */
.close {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  text-align: center;
}
.close-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.close-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 19, 15, 0.84), rgba(23, 19, 15, 0.92));
}
.close-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 88px var(--pad);
}
.close .eyebrow { color: var(--cream-70); }
.close h2 {
  font-family: var(--ff-black);
  font-size: clamp(32px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 24px auto 0;
  max-width: 20ch;
  color: #fff;
}
.close p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(239, 236, 226, 0.74);
  max-width: 62ch;
  margin: 28px auto 0;
  text-wrap: pretty;
}
.close .btn { margin-top: 36px; }
@media (min-width: 800px) { .close-inner { padding: 130px 40px; } }

/* Footer */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--cream-12);
}
.footer-grid {
  display: grid;
  gap: 40px;
  padding: 56px 0 32px;
}
.footer-brand {
  font-family: var(--ff-black);
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
.footer-brand:hover { color: #fff; }
.footer-contact {
  font-size: 15px;
  color: var(--cream-62);
  margin-top: 18px;
  line-height: 1.7;
}
.footer-contact a { color: var(--cream-62); }
.footer-contact a:hover { color: var(--magenta); }
.footer-col .eyebrow { color: var(--gold); font-size: 11px; letter-spacing: 0.2em; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 20px;
  font-size: 15px;
  color: rgba(239, 236, 226, 0.72);
  list-style: none;
  padding: 0;
  margin-left: 0;
}
@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1.4fr 0.8fr;
    gap: 56px;
    padding: 80px 0 40px;
  }
}
.footer-bottom {
  border-top: 1px solid var(--cream-12);
  padding: 26px 0 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  font-size: 13px;
  color: var(--cream-45);
}

/* Inner pages */
.page-main { background: var(--cream); color: var(--ink); min-height: 60vh; }
.prose {
  max-width: 72ch;
  padding: 48px 0 96px;
}
.prose h1 {
  font-family: var(--ff-black);
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 12px 0 28px;
}
.prose .eyebrow { color: var(--olive); }
.prose p, .prose li { font-size: 17px; line-height: 1.7; color: var(--ink-75); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose .btn { text-decoration: none; color: #fff; margin-top: 12px; }
.crumbs {
  font-size: 13px;
  color: var(--ink-65);
  padding-top: 28px;
}
.crumbs a { color: var(--olive); font-weight: 600; }
.not-found { text-align: left; }
