/* ── VARIABLES ──────────────────────────────────────────────────── */
:root {
  --ink:          #0f0e0d;
  --ink-2:        #1c1a18;
  --ink-3:        #2a2724;
  --cream:        #f8f3ea;
  --cream-2:      #ede6d5;
  --gold:         #c9a056;
  --gold-light:   #ddb96e;
  --gold-dim:     rgba(201, 160, 86, 0.15);
  --forest:       #3d5a40;
  --text:         #2a2520;
  --text-muted:   #7a6e62;
  --text-light:   #f0ebe0;
  --text-dim:     rgba(240, 235, 224, 0.65);

  --header-h:     72px;
  --section-y:    96px;
  --max-w:        1240px;
  --narrow-w:     760px;
  --radius:       4px;
  --radius-lg:    10px;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast:       160ms;
  --t-base:       280ms;
  --t-slow:       480ms;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
address { font-style: normal; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }
h4 { font-size: 1.1rem; font-family: 'Jost', sans-serif; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

p { max-width: 68ch; }
p + p { margin-top: 1.2em; }

strong { font-weight: 500; }

/* ── LAYOUT ─────────────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.container--narrow {
  max-width: var(--narrow-w);
}
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }
.text-gold { color: var(--gold); }

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--dark  { background: var(--ink);  color: var(--text-light); }
.section--cream { background: var(--cream); color: var(--text); }
.section--forest { background: var(--forest); color: var(--text-light); }
.section--cta   { background: var(--ink-2); color: var(--text-light); padding-block: 7rem; }
.section--intro { padding-block: 6rem; }

.section__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1.5rem;
}
.section__title--large {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.section--cream .section__lead { color: var(--text-muted); }
.section__sub {
  max-width: 56ch;
  margin-inline: auto;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1.5rem;
}
.section__header.text-center { justify-content: center; flex-direction: column; align-items: center; }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.75em;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(201, 160, 86, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(240, 235, 224, 0.45);
}
.btn--outline:hover {
  border-color: var(--text-light);
  background: rgba(240, 235, 224, 0.08);
}
.section--cream .btn--outline {
  color: var(--text);
  border-color: rgba(42, 37, 32, 0.35);
}
.section--cream .btn--outline:hover {
  border-color: var(--text);
  background: rgba(42, 37, 32, 0.05);
}
.btn--lg { padding: 0.9em 2.2em; font-size: 0.9rem; }
.btn--sm { padding: 0.55em 1.2em; font-size: 0.8rem; }

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--ink);
  border-bottom: 1px solid rgba(240, 235, 224, 0.08);
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.site-header--transparent {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-scrolled {
  background: rgba(15, 14, 13, 0.96);
  border-bottom-color: rgba(240, 235, 224, 0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
  width: 92%;
  max-width: var(--max-w);
  margin-inline: auto;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
  color: var(--text-light);
  transition: opacity var(--t-fast);
}
.site-logo:hover { opacity: 0.8; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav */
.site-nav { margin-left: auto; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  display: block;
  padding: 0.45em 0.8em;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color var(--t-fast);
  border-radius: var(--radius);
}
.nav-link:hover, .nav-link.is-active { color: var(--text-light); }
.nav-link.is-active { font-weight: 500; }

/* Dropdown */
.nav-item--has-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.35em;
  padding: 0.45em 0.8em;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border-radius: var(--radius);
  transition: color var(--t-fast);
}
.nav-dropdown-btn:hover { color: var(--text-light); }
.dropdown-caret {
  transition: transform var(--t-fast) var(--ease);
  flex-shrink: 0;
}
.nav-item--has-dropdown.is-open .dropdown-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--ink-2);
  border: 1px solid rgba(240, 235, 224, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-fast) var(--ease),
              visibility var(--t-fast),
              transform var(--t-fast) var(--ease);
  z-index: 10;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-item--has-dropdown:hover .nav-dropdown,
.nav-item--has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-link {
  display: block;
  padding: 0.55em 1em;
  font-family: 'Jost', sans-serif;
  font-size: 0.83rem;
  color: var(--text-dim);
  border-radius: var(--radius);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-dropdown-link:hover {
  color: var(--text-light);
  background: rgba(240, 235, 224, 0.07);
}

/* CTA + Toggle */
.nav-cta { margin-left: 1rem; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-fast),
              width var(--t-base) var(--ease);
  transform-origin: center;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 800;
  opacity: 0;
  transition: opacity var(--t-base);
}
.nav-overlay.is-visible { opacity: 1; }

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink-2);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  color: var(--text-light);
}
.hero--home {
  min-height: 100vh;
  background-attachment: fixed;
}
.hero--page {
  min-height: 52vh;
  padding-top: var(--header-h);
}
.hero--short { min-height: 38vh; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 14, 13, 0.55) 0%,
    rgba(15, 14, 13, 0.72) 60%,
    rgba(15, 14, 13, 0.88) 100%
  );
}
.hero--page .hero__overlay {
  background: rgba(15, 14, 13, 0.65);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--header-h) + 3rem) 5% 4rem;
  max-width: var(--max-w);
  width: 100%;
}
.hero__content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
  margin-bottom: 1.25rem;
}
.hero--page .hero__title { font-size: clamp(2.2rem, 5vw, 4.5rem); }
.hero__sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__content--center .hero__actions { justify-content: center; }

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-dim);
  opacity: 0.6;
  transition: opacity var(--t-fast);
  z-index: 1;
}
.hero__scroll-cue:hover { opacity: 1; }
.scroll-dot {
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ── EVENT GRID ─────────────────────────────────────────────────── */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--cream-2);
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.event-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--cream);
  transition: background var(--t-base) var(--ease);
  cursor: pointer;
}
.event-card:hover { background: #fff; }
.event-card__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.event-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.event-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: auto;
  padding-bottom: 1.25rem;
}
.event-card__link {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing var(--t-base) var(--ease);
}
.event-card:hover .event-card__link { letter-spacing: 0.16em; }

/* ── FEATURE SPLIT ──────────────────────────────────────────────── */
.feature-split { overflow: hidden; }
.feature-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-split__inner--reversed { direction: rtl; }
.feature-split__inner--reversed > * { direction: ltr; }
.feature-split__text { padding-block: 1rem; }
.feature-split__text p { color: var(--text-dim); margin-bottom: 1.25rem; max-width: 52ch; }
.feature-split__text a.text-gold { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.feature-split__text .section__title { margin-bottom: 1.5rem; }
.feature-split__text .btn { margin-top: 1rem; }
.feature-split__media { position: relative; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; }
.feature-split__img { width: 100%; height: 100%; object-fit: cover; }
.feature-split__placeholder {
  width: 100%;
  height: 100%;
  background: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-dim);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

/* ── STATS BAR ──────────────────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding-block: 3.5rem;
  color: var(--ink);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* ── PARTNER CARDS ──────────────────────────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}
.partner-card {
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.partner-card__icon { color: var(--gold); }
.partner-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--text);
}
.partner-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  flex-grow: 1;
}
.partner-card .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ── BLOG CARDS ─────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-grid--full { grid-template-columns: repeat(3, 1fr); }
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.section--cream .blog-card { background: #fff; border: 1.5px solid var(--cream-2); }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.blog-card__img {
  height: 220px;
  background: var(--ink-3) center/cover no-repeat;
  flex-shrink: 0;
}
.blog-card__img--placeholder { background: linear-gradient(135deg, var(--ink-3), var(--ink-2)); }
.blog-card__body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card__date {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.25;
}
.section--cream .blog-card__title { color: var(--text); }
.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  flex-grow: 1;
}
.section--cream .blog-card__excerpt { color: var(--text-muted); }
.blog-card__more {
  font-family: 'Jost', sans-serif;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}
.blog-preview .section__header { margin-bottom: 2.5rem; }

/* ── PAGE CONTENT ───────────────────────────────────────────────── */
.page-content {
  padding-block: var(--section-y);
  background: var(--cream);
}
.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.page-content p { color: var(--text-muted); margin-bottom: 1.2em; }
.page-content p:last-child { margin-bottom: 0; }
.page-content ul, .page-content ol {
  list-style: none;
  margin: 1.2em 0 1.5em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-content li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.97rem;
}
.page-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.page-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--gold-light); }
.page-content .btn { text-decoration: none; margin-top: 1.5rem; display: inline-flex; }
.page-content .partner-callout {
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--cream-2);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.page-content .partner-callout p { color: var(--text); }
.page-content .partner-callout strong { color: var(--text); }

/* ── PHOTO GALLERY ──────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-2);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-2);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── FORM ───────────────────────────────────────────────────────── */
.request-form {
  max-width: 760px;
  margin: 0 auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75em 1em;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--cream-2);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a6e62' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 2rem; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* ── PAGINATION ─────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pagination__btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pagination__info {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--text-dim);
  border-top: 1px solid rgba(240, 235, 224, 0.07);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 5%;
  max-width: var(--max-w);
  margin-inline: auto;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.6rem;
  letter-spacing: 0.03em;
}
.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-address { font-size: 0.88rem; line-height: 1.8; margin-bottom: 0.75rem; }
.footer-phone, .footer-email {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: color var(--t-fast);
  margin-bottom: 0.25rem;
}
.footer-phone:hover, .footer-email:hover { color: var(--gold); }
.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  font-size: 0.87rem;
  color: var(--text-dim);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.footer-nav a:hover { color: var(--text-light); }
.ext-icon { opacity: 0.5; flex-shrink: 0; }
.footer-cta { margin-top: 1.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 5%;
  max-width: var(--max-w);
  margin-inline: auto;
  border-top: 1px solid rgba(240, 235, 224, 0.07);
  font-size: 0.78rem;
  color: rgba(240, 235, 224, 0.3);
}
.footer-loc { letter-spacing: 0.06em; }

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 80ms; }
.fade-up:nth-child(3) { transition-delay: 160ms; }
.fade-up:nth-child(4) { transition-delay: 240ms; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  :root { --section-y: 64px; --header-h: 62px; }
  .site-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Full-screen mobile menu */
  .site-nav.is-open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--ink-2);
    flex-direction: column;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    z-index: 850;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  .nav-overlay { display: block; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-link, .nav-dropdown-btn { padding: 0.8em 0.5em; font-size: 1rem; width: 100%; text-align: left; color: var(--text-light); }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 0 0 0 1rem; box-shadow: none; display: none; }
  .nav-item--has-dropdown.is-open .nav-dropdown { display: block; }
  .nav-dropdown-link { padding: 0.6em 0.5em; color: var(--text-dim); }
  .site-nav.is-open .nav-cta { display: inline-flex; margin-top: auto; }

  .event-grid { grid-template-columns: 1fr; gap: 0; }
  .feature-split__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-split__inner--reversed { direction: ltr; }
  .feature-split__media { aspect-ratio: 16/9; }
  .partner-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .hero__title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__content--center .hero__actions { align-items: center; }
  .section__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero--home { background-attachment: scroll; }
}
