
:root {
  --forest: #1F3A2E;
  --forest-dark: #0F2018;
  --forest-mid: #2A4E3E;
  --gold: #B08D57;
  --gold-light: #D4B57F;
  --gold-dark: #8E6E3F;
  --cream: #F5F0E6;
  --cream-light: #FAF7F0;
  --paper: #FFFFFF;
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --ink-mute: #6b6b6b;
  --line: #e8e2d3;
  --line-soft: #f0ebde;
  --live: #4ade80;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --max: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream-light);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: var(--paper); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.015em;
  color: var(--forest-dark);
}
h1 { font-size: clamp(2.75rem, 7.5vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.35rem); }
h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); font-weight: 500; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content:''; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
p { margin-bottom: 1rem; color: var(--ink-soft); font-size: 1.02rem; }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink-soft); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

/* ============================================================
   TOP BAR — with live match indicator
   ============================================================ */
.top-bar {
  background: var(--forest-dark);
  color: var(--cream);
  font-size: .66rem;
  padding: .4rem 0;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  z-index: 101;
}
.top-bar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; }
.top-bar-left .sep { opacity: .3; }
.top-next {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  opacity: .95;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live);
  display: inline-block;
  position: relative;
  box-shadow: 0 0 0 0 var(--live);
}
.live-dot span {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--live);
  opacity: .5;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(2.8); opacity: 0; }
}
.top-bar a { color: var(--cream); opacity: .85; transition: opacity .2s, color .2s; }
.top-bar a:hover { color: var(--gold-light); opacity: 1; }

/* ============================================================
   HEADER — polished, iconic, phone pill
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: all .35s var(--ease);
}
/* Header + top-bar span FULL viewport width with symmetric padding — no cutoff on any screen */
.site-header .wrap, .top-bar .wrap {
  max-width: 100%;
  padding-left: clamp(1.5rem, 3vw, 4rem);
  padding-right: clamp(1.5rem, 3vw, 4rem);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 30px rgba(15,32,24,.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
  min-height: 64px;
}

/* Custom crest */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--forest-dark);
  flex-shrink: 0;
  position: relative;
}
.brand-mark {
  width: 38px; height: 38px;
  color: var(--gold);
  transition: transform .5s var(--ease-spring);
  flex-shrink: 0;
}
.brand:hover .brand-mark { transform: rotate(360deg) scale(1.05); }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 500;
  color: var(--forest-dark);
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s;
}
.brand:hover .brand-name { color: var(--gold-dark); }
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: .55rem;
  letter-spacing: .32em;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: 1.75rem; flex-wrap: nowrap; }
.nav-list { display: flex; list-style: none; gap: 1.75rem; align-items: center; }
.nav-list a {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: .5rem 0;
  transition: color .25s;
  white-space: nowrap;
}
.nav-list a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 50%;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .3s var(--ease);
  transform: translateX(-50%);
}
.nav-list a:hover::after, .nav-list a.active::after { width: 22px; }
.nav-list a:hover { color: var(--forest); }
.nav-list a.active { color: var(--gold); }

/* HEADER ACTION CLUSTER */
.header-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--forest-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .35s var(--ease-spring);
  background: transparent;
}
.icon-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--paper);
  transform: translateY(-2px) rotate(-6deg);
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .55rem 1rem .55rem .7rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--forest-dark);
  transition: all .4s var(--ease-spring);
  position: relative;
}
.phone-pill .phone-icon-wrap {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s var(--ease);
}
.phone-pill .phone-icon-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse {
  0% { transform: scale(.85); opacity: 0; }
  40% { opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.phone-pill:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
  transform: translateY(-2px);
}
.phone-pill:hover .phone-icon-wrap { background: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .9rem 1.75rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--cream) !important;
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.site-header .btn { padding: .7rem 1.35rem; font-size: .66rem; }
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--forest-dark);
  transition: left .4s var(--ease);
  z-index: 0;
}
.btn:hover::before { left: 0; }
.btn > * { position: relative; z-index: 1; display: inline-flex; align-items: center; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(15,32,24,.4); }
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--paper) !important; }
.btn-gold::before { background: var(--gold-dark); }
.btn-outline-light { background: transparent; border-color: rgba(245,240,230,.4); color: var(--cream) !important; }
.btn-outline-light::before { background: var(--cream); }
.btn-outline-light:hover { color: var(--forest-dark) !important; border-color: var(--cream); }
.btn-ghost { background: transparent; color: var(--forest) !important; border-color: var(--forest); }
.btn-ghost::before { background: var(--forest); }
.btn-ghost:hover { color: var(--cream) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--forest-dark); transition: all .3s; }

@media (max-width: 1400px) {
  .nav-list { gap: 1.35rem; }
  .nav-list a { font-size: .68rem; letter-spacing: .16em; }
}
@media (max-width: 1240px) {
  .nav-list { gap: 1.1rem; }
  .nav-list a { font-size: .66rem; letter-spacing: .14em; }
  .site-header .wrap { gap: 1rem; }
  .phone-pill { padding: .55rem .85rem .55rem .6rem; font-size: .88rem; }
  .site-header .btn { padding: .65rem 1.1rem; font-size: .64rem; }
}
@media (max-width: 1440px) {
  .site-header .btn { display: none; } /* hide Join btn early; phone pill is primary CTA */
}
@media (max-width: 1180px) {
  .header-actions { gap: .5rem; }
  .nav-list { gap: .95rem; }
  .phone-pill { padding: .5rem .8rem .5rem .55rem; font-size: .82rem; }
  .phone-pill .phone-icon-wrap { width: 20px; height: 20px; }
}
@media (max-width: 1020px) {
  .icon-btn { display: none; }
}
@media (max-width: 960px) {
  .site-header .wrap { min-height: 66px; gap: .75rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: .95rem; }
  .brand-sub { font-size: .52rem; }
  .top-bar-left .sep, .top-next { display: none; }
  .nav-list, .header-actions .btn { display: none; }
  .header-actions { gap: .5rem; }
  .phone-pill span:not(.phone-icon-wrap) { display: none; }
  .phone-pill { padding: .55rem; }
  .menu-toggle { display: flex; }
  .nav.open {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: 85%; max-width: 360px;
    background: var(--cream-light);
    flex-direction: column; align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -20px 0 60px rgba(15,32,24,.2);
    z-index: 200;
    overflow-y: auto;
  }
  .nav.open .nav-list { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; align-items: flex-start; }
  .nav.open .nav-list li { display: block !important; }
  .nav.open .btn { display: inline-flex; margin-top: 1.5rem; }
  .nav-backdrop.show { display: block; position: fixed; inset: 0; background: rgba(15,32,24,.6); z-index: 150; animation: fadeIn .3s; }
  .nav-backdrop { display: none; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 1.15rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(212,181,127,.15);
  border-bottom: 1px solid rgba(212,181,127,.15);
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--forest-dark), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--forest-dark), transparent); }
.marquee-track {
  display: flex; gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  opacity: .9;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  flex-shrink: 0;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   HERO — cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: min(82vh, 760px);
  display: flex;
  align-items: center;  /* center content vertically since meta is removed */
  color: var(--cream);
  overflow: hidden;
  background: var(--forest-dark);
  padding-bottom: 4rem;
  padding-top: 3rem;
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 35% 40%;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0% { transform: scale(1.05) translate(0,0); }
  100% { transform: scale(1.18) translate(-1.5%,-2%); }
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,32,24,.1) 0%, rgba(15,32,24,.3) 45%, rgba(15,32,24,.88) 100%),
    linear-gradient(90deg, rgba(15,32,24,.55) 0%, rgba(15,32,24,.15) 45%, transparent 65%);
}
/* Grain overlay */
.hero-media::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}

/* Floating mallet decoration */
.hero-ornament {
  position: absolute;
  top: 20%; right: -3rem;
  width: 320px; height: 320px;
  color: var(--gold-light);
  opacity: .07;
  z-index: 1;
  animation: floatSlow 12s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-ornament svg { width: 100%; height: 100%; }
@keyframes floatSlow {
  from { transform: translate(0, 0) rotate(-8deg); }
  to { transform: translate(-20px, 20px) rotate(2deg); }
}

.hero-inner { position: relative; z-index: 3; max-width: 950px; padding-bottom: 2rem; }
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.75rem, 7vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 1.75rem;
}
.hero h1 em { color: var(--gold-light); }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span {
  display: inline-block;
  transform: translateY(115%);
  animation: rise 1.2s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > span { animation-delay: .24s; }
@keyframes rise { to { transform: translateY(0); } }

.hero .eyebrow { color: var(--gold-light); opacity: 0; animation: fadeInUp .8s var(--ease-out) .1s forwards; }
.hero .eyebrow::before { background: var(--gold-light); }
.hero .lead {
  color: rgba(245,240,230,.92);
  max-width: 620px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.45;
  opacity: 0;
  animation: fadeInUp .8s var(--ease-out) .55s forwards;
}
.hero-cta {
  display: flex; gap: 1rem;
  margin-top: 2.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp .8s var(--ease-out) .75s forwards;
}
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Hero meta strip - with animated counters */
.hero-meta {
  position: absolute;
  bottom: 1.5rem; left: var(--gutter); right: var(--gutter);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  color: var(--cream);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,230,.18);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out) 1s forwards;
}
.hero-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-meta .num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold-light);
  font-style: italic;
  line-height: 1;
  font-weight: 400;
}
.hero-meta .num .plus { color: var(--gold-light); font-size: .6em; vertical-align: super; font-style: normal; }
.hero-meta .label {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,240,230,.75);
  font-weight: 500;
}
@media (max-width: 800px) {
  .hero-meta { grid-template-columns: 1fr; gap: 1rem; padding-top: 1.5rem; }
  .hero-meta .num { font-size: 1.75rem; }
  .hero { min-height: 92vh; padding-bottom: 3rem; }
  .hero-ornament { display: none; }
}

/* Hero scroll indicator */
.hero-scroll { display: none !important; }
/* scroll indicator removed */

/* Interior page hero */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center;
  color: var(--cream);
  background: var(--forest-dark);
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.page-hero .hero-media img { animation: none; object-position: center 40%; }
.page-hero .hero-media::after { background: linear-gradient(180deg, rgba(15,32,24,.6), rgba(15,32,24,.85)); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); font-size: clamp(2.75rem, 6vw, 4.75rem); }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .lead { color: rgba(245,240,230,.9); max-width: 720px; font-family: var(--serif); font-style: italic; font-size: 1.3rem; }
.page-hero .breadcrumb {
  position: relative; z-index: 2;
  margin-bottom: 2rem;
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-light); font-weight: 600;
}
.page-hero .breadcrumb a { color: var(--cream); opacity: .7; }
.page-hero .breadcrumb a:hover { color: var(--gold-light); opacity: 1; }
.page-hero .breadcrumb span.sep { margin: 0 1rem; opacity: .5; color: var(--gold-light); }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-cream { background: var(--cream); }
.section-cream + .feature-band { margin-top: 0; }

.section-forest { background: var(--forest-dark); color: var(--cream); position: relative; overflow: hidden; }
.section-forest::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(176,141,87,.1), transparent 40%), radial-gradient(circle at 80% 80%, rgba(176,141,87,.06), transparent 40%);
  pointer-events: none;
}
.section-forest > * { position: relative; }
.section-forest h1, .section-forest h2, .section-forest h3, .section-forest h4 { color: var(--cream); }
.section-forest p { color: rgba(245,240,230,.82); }
.section-forest .eyebrow { color: var(--gold-light); }
.section-forest .eyebrow::before { background: var(--gold-light); }

.section-head { text-align: center; max-width: 800px; margin: 0 auto 5rem; }
.section-head.left { text-align: left; margin-left: 0; }
.section-head p { font-size: 1.15rem; margin-top: 1.25rem; }

.rule { width: 60px; height: 1px; background: var(--gold); margin: 1.75rem auto; display: block; position: relative; }
.rule::before, .rule::after {
  content: ''; position: absolute; top: 50%;
  width: 5px; height: 5px;
  border: 1px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.rule::before { left: -12px; }
.rule::after { right: -12px; }
.rule.left { margin-left: 0; }

/* Ornamental divider */
.ornament {
  display: flex; justify-content: center;
  margin: 3rem 0 2rem;
  color: var(--gold);
}
.ornament-svg { width: 200px; height: 40px; }
.ornament-svg .light { color: var(--gold-light); }
.section-forest .ornament { color: var(--gold-light); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 4rem;
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--cream-light);
  border: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}
.stat { text-align: center; padding: 1rem; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.75rem);
  color: var(--forest-dark);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  font-style: italic;
  transition: color .3s;
}
.stat:hover .stat-num { color: var(--gold); }
.stat-num .plus { color: var(--gold); font-style: normal; font-size: .6em; vertical-align: super; margin-left: 4px; }
.stat-label {
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 1rem;
  font-weight: 600;
}

/* ============================================================
   SPLIT
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.split-media { position: relative; }
.split-media .frame { position: relative; overflow: hidden; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(1.05); transition: transform 1.4s var(--ease-out); }
.split-media:hover img { transform: scale(1.05); }
.split-media::before {
  content: ''; position: absolute;
  inset: -24px -24px 24px 24px;
  border: 1px solid var(--gold);
  z-index: -1;
  transition: inset .6s var(--ease);
}
.split-media:hover::before { inset: -14px -14px 14px 14px; }
.split-media .frame-label {
  position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  color: var(--cream);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: end;
}
.split-media .frame-label span:first-child { font-family: var(--serif); font-style: italic; font-size: 1rem; letter-spacing: 0; text-transform: none; }
.split-copy h2 { margin-bottom: 1.75rem; }
.split-copy p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.split-copy .cta-row { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-media::before { inset: 24px 24px -24px -24px; }
.split.reverse .split-media:hover::before { inset: 14px 14px -14px -14px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse .split-media { order: 0; }
  .split-media::before { display: none; }
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pillar {
  background: var(--paper);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 40px 70px -20px rgba(31,58,46,.18); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}
.pillar h3 { font-size: 1.65rem; margin-bottom: .75rem; }
.pillar p { font-size: .95rem; margin-bottom: 0; }
.pillar.left { text-align: left; }
.pillar.left .pillar-num { margin-left: 0; }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.event-card {
  position: relative;
  background: var(--paper);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .5s var(--ease);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.event-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(176,141,87,.08), transparent 55%);
  transition: opacity .5s;
}
.event-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 40px 70px -25px rgba(31,58,46,.22); }
.event-card > * { position: relative; z-index: 1; }
.event-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 12px;
}
.event-number::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.event-eyebrow {
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: .75rem;
}
.event-card h3 { font-size: 1.65rem; margin-bottom: 1rem; line-height: 1.1; }
.event-card p { font-size: .95rem; color: var(--ink-mute); margin-bottom: 1.5rem; }
.event-card .event-link {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .3s var(--ease), color .3s;
}
.event-card .event-link:hover { color: var(--gold); gap: 14px; }
.event-card .event-link::after { content: '→'; font-size: 1rem; }
.event-card.ornate { background: linear-gradient(160deg, var(--forest-dark), var(--forest)); color: var(--cream); border-color: var(--forest); }
.event-card.ornate::before { background: radial-gradient(circle at 100% 0%, rgba(176,141,87,.2), transparent 60%); }
.event-card.ornate h3 { color: var(--cream); }
.event-card.ornate p { color: rgba(245,240,230,.75); }
.event-card.ornate .event-eyebrow { color: var(--gold-light); }
.event-card.ornate .event-link { color: var(--gold-light); }

/* ============================================================
   FEATURE BAND
   ============================================================ */
.feature-band {
  position: relative;
  min-height: 65vh;
  overflow: hidden;
  display: flex; align-items: center;
  color: var(--cream);
  text-align: center;
}
.feature-band-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.feature-band-media img { width: 100%; height: 120%; object-fit: cover; object-position: center 35%; will-change: transform; }
.feature-band::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,32,24,.55), rgba(15,32,24,.8));
}
.feature-band .wrap { position: relative; z-index: 2; padding: 6rem 0; }
.feature-band h2 { color: var(--cream); max-width: 820px; margin: 0 auto 1.5rem; font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
.feature-band h2 em { color: var(--gold-light); }
.feature-band p { color: rgba(245,240,230,.9); max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.2rem; font-family: var(--serif); font-style: italic; }
.feature-band .eyebrow { color: var(--gold-light); justify-content: center; }
.feature-band .eyebrow::before { background: var(--gold-light); }

/* ============================================================
   SCHEDULE TABLE
   ============================================================ */
.schedule-table { width: 100%; border-collapse: collapse; background: var(--paper); margin: 2rem 0; border: 1px solid var(--line); table-layout: fixed; }
.schedule-table th, .schedule-table td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .95rem; word-wrap: break-word; overflow-wrap: break-word; }
.schedule-table th { background: var(--forest); color: var(--cream); font-family: var(--sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tbody tr { transition: background .2s; }
.schedule-table tbody tr:hover { background: var(--cream-light); }
.schedule-table .date-col { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--forest-dark); width: 30%; }
.schedule-table .event-col { font-weight: 500; color: var(--forest-dark); }
.schedule-table .highlight td { background: var(--cream); }
.schedule-table .highlight .event-col { color: var(--gold-dark); font-weight: 600; }
@media (max-width: 640px) {
  .schedule-table { table-layout: auto; }
  .schedule-table th, .schedule-table td { padding: 1rem .85rem; font-size: .88rem; }
  .schedule-table .date-col { width: auto; white-space: normal; font-size: 1.02rem; }
}
.notice { background: var(--cream); border-left: 3px solid var(--gold); padding: 1.5rem 2rem; margin: 2rem 0; color: var(--ink-soft); font-size: .98rem; }
.notice strong { color: var(--forest-dark); }

/* ============================================================
   GALLERY MOSAIC
   ============================================================ */
.gallery-mosaic { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.mosaic-item { overflow: hidden; position: relative; background: var(--forest); cursor: pointer; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.mosaic-item:hover img { transform: scale(1.08); }
.mosaic-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,32,24,.7)); opacity: 0; transition: opacity .3s; }
.mosaic-item:hover::after { opacity: 1; }
.mosaic-item .cap { position: absolute; bottom: 1rem; left: 1rem; color: var(--cream); font-family: var(--serif); font-style: italic; font-size: .95rem; opacity: 0; transform: translateY(8px); transition: all .4s var(--ease); z-index: 2; }
.mosaic-item:hover .cap { opacity: 1; transform: translateY(0); }
.m-2x2 { grid-column: span 2; grid-row: span 2; }
.m-2x1 { grid-column: span 2; }
.m-3x2 { grid-column: span 3; grid-row: span 2; }
.m-1x2 { grid-row: span 2; }
@media (max-width: 900px) { .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } .m-2x2, .m-3x2 { grid-column: span 2; grid-row: span 2; } .m-2x1 { grid-column: span 2; grid-row: span 1; } .m-1x2 { grid-column: span 2; grid-row: span 2; } }
.crop-tight { object-position: 30% center; }
.crop-wide { object-position: center 40%; }
.crop-left { object-position: 20% center; }
.crop-right { object-position: 80% center; }
.crop-close { object-position: 40% 30%; transform: scale(1.4); }
.crop-top { object-position: center 15%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.75rem 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; width: 100%; font-family: var(--serif); font-size: 1.4rem; color: var(--forest-dark); text-align: left; gap: 2rem; font-weight: 500; transition: color .3s; }
.faq-question:hover { color: var(--gold); }
.faq-question .icon { flex-shrink: 0; width: 18px; height: 18px; position: relative; }
.faq-question .icon::before, .faq-question .icon::after { content: ''; position: absolute; background: var(--gold); transition: transform .3s var(--ease); }
.faq-question .icon::before { top: 50%; left: 0; right: 0; height: 1px; }
.faq-question .icon::after { left: 50%; top: 0; bottom: 0; width: 1px; }
.faq-item.open .faq-question .icon::after { transform: scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-answer p { padding-top: 1rem; font-size: 1rem; margin-bottom: 0; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info h3 { margin-bottom: 2rem; font-size: 2rem; }
.contact-info .contact-item { display: flex; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.contact-info .contact-item:last-child { border-bottom: none; }
.contact-info .contact-item strong { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; font-weight: 600; }
.contact-info .contact-item a { color: var(--forest-dark); font-family: var(--serif); font-size: 1.35rem; font-style: italic; transition: color .3s; }
.contact-info .contact-item span { color: var(--forest-dark); font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.4; display: block; }
.contact-info .contact-item a:hover { color: var(--gold); }
.contact-form { background: var(--paper); padding: 3rem; border: 1px solid var(--line); }
.contact-form h3 { margin-bottom: 2rem; }
.form-row { margin-bottom: 1.5rem; }
.form-row label { display: block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .6rem; font-weight: 600; }
.form-row input, .form-row textarea, .form-row select { width: 100%; padding: .95rem 1.1rem; border: 1px solid var(--line); background: var(--cream-light); font-family: var(--sans); font-size: 1rem; color: var(--ink); transition: all .3s; }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--gold); background: var(--paper); }
.form-row textarea { resize: vertical; min-height: 140px; }

/* ============================================================
   FRIENDS
   ============================================================ */
.friends-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-top: 2rem; }
.friend { padding: 2rem 1.5rem; border: 1px solid var(--line); background: var(--paper); text-align: center; transition: all .4s var(--ease); display: flex; align-items: center; justify-content: center; min-height: 120px; font-family: var(--serif); color: var(--forest-dark); font-size: 1.05rem; font-style: italic; line-height: 1.3; }
.friend:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); background: var(--cream-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--forest-dark); color: var(--cream); padding: 6rem 0 2rem; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 4rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold-light); font-family: var(--sans); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 600; }
.site-footer .brand-block .brand-name { color: var(--cream); }
.site-footer .brand-block .brand-mark { color: var(--gold-light); }
.site-footer p { color: rgba(245,240,230,.7); font-size: .95rem; margin-top: 1.5rem; max-width: 380px; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .7rem; font-size: .95rem; color: rgba(245,240,230,.7); }
.site-footer a { color: rgba(245,240,230,.85); }
.site-footer a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(245,240,230,.12); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: rgba(245,240,230,.55); flex-wrap: wrap; gap: 1rem; letter-spacing: .1em; }
.footer-bottom .socials { display: flex; gap: 1.5rem; text-transform: uppercase; }
.footer-social {
  display: inline-flex; align-items: center; gap: 6px;
  padding: .5rem .9rem;
  border: 1px solid rgba(245,240,230,.2);
  border-radius: 100px;
  transition: all .3s;
}
.footer-social:hover { border-color: var(--gold-light); background: rgba(212,181,127,.1); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.reveal.pre-anim { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.pre-anim.in { opacity: 1; transform: none; }
.reveal-2 { transition-delay: .1s; }
.reveal-3 { transition-delay: .2s; }
.reveal-4 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-2, .reveal-3, .reveal-4 { opacity: 1; transform: none; transition: none; } * { animation: none !important; transition-duration: .01ms !important; } }

.text-center { text-align: center; }

/* ============================================================
   V4 POLISH ADDITIONS
   ============================================================ */

/* Page load overlay */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest-dark);
  display: flex; align-items: center; justify-content: center;
  animation: loaderOut .7s var(--ease) .4s forwards;
  pointer-events: none;
}
.page-loader svg {
  width: 90px; height: 90px;
  color: var(--gold);
  animation: loaderIn .6s var(--ease-out) forwards;
  opacity: 0;
}
@keyframes loaderIn {
  0% { opacity: 0; transform: scale(.7) rotate(-45deg); }
  50% { opacity: 1; transform: scale(1) rotate(0deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes loaderOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader { display: none; }
}

/* Scroll progress bar at top */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200;
  transition: width .1s linear;
  will-change: width;
}

/* Custom cursor removed per feedback */

/* 3D tilt cards */
.tilt-wrap { perspective: 1000px; }
.tilt-card {
  transition: transform .5s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Mobile sticky bottom CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--forest-dark);
  padding: .6rem;
  gap: .5rem;
  border-top: 1px solid var(--gold);
  box-shadow: 0 -12px 30px rgba(0,0,0,.25);
  animation: slideUp .5s var(--ease-out) .5s both;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@media (max-width: 760px) {
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; }
  body { padding-bottom: 4rem; }
  .site-footer { padding-bottom: 5rem; }
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: .95rem .5rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  transition: all .3s;
}
.mobile-cta .cta-call { background: var(--gold); color: var(--paper); }
.mobile-cta .cta-call:active { background: var(--gold-dark); }
.mobile-cta .cta-join { border: 1px solid rgba(245,240,230,.4); color: var(--cream); }
.mobile-cta .cta-join:active { background: rgba(245,240,230,.1); }
.mobile-cta svg { width: 14px; height: 14px; }

/* Improved mobile menu */
@media (max-width: 960px) {
  .nav.open {
    background: linear-gradient(160deg, var(--forest-dark), var(--forest));
    color: var(--cream);
    position: fixed;
    padding: 5.5rem 2rem 3rem;
  }
  .nav.open::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 90% 10%, rgba(176,141,87,.15), transparent 50%);
    pointer-events: none;
  }
  .nav.open .nav-list { position: relative; z-index: 1; }
  .nav.open .nav-list a {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 1.75rem;
    letter-spacing: -.01em;
    text-transform: none;
    font-weight: 400;
    padding: .35rem 0;
    display: block;
    width: 100%;
    position: relative;
    transition: color .3s, padding-left .3s var(--ease);
  }
  .nav.open .nav-list a:hover, .nav.open .nav-list a.active { color: var(--gold-light); padding-left: 1rem; }
  .nav.open .nav-list a.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 8px; height: 1px; background: var(--gold-light);
  }
  .nav.open .btn {
    display: inline-flex;
    margin-top: 2rem;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--paper) !important;
    position: relative;
    z-index: 1;
  }
  .menu-toggle {
    position: relative;
    z-index: 210;
  }
  .nav.open + .menu-toggle span,
  .site-header:has(.nav.open) .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--cream); }
  .site-header:has(.nav.open) .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header:has(.nav.open) .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--cream); }
}

/* Pull quote section */
.pull-quote {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: 2rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-size: 10rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
  font-weight: 500;
}
.pull-quote .wrap-narrow { position: relative; z-index: 1; }
.pull-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.35;
  color: var(--forest-dark);
  padding: 0 1rem;
  font-weight: 400;
  letter-spacing: -.01em;
}
.pull-quote blockquote em { color: var(--gold-dark); font-style: italic; }
.pull-quote cite {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.pull-quote cite::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 0 auto 1rem;
}

/* Split-text word reveal */
.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
}
.split-text .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.split-text.in .word > span { transform: translateY(0); }
.split-text .word:nth-child(2) > span { transition-delay: .08s; }
.split-text .word:nth-child(3) > span { transition-delay: .16s; }
.split-text .word:nth-child(4) > span { transition-delay: .24s; }
.split-text .word:nth-child(5) > span { transition-delay: .32s; }
.split-text .word:nth-child(6) > span { transition-delay: .40s; }
.split-text .word:nth-child(7) > span { transition-delay: .48s; }
.split-text .word:nth-child(8) > span { transition-delay: .56s; }

/* Enhanced event cards with tilt */
.event-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.event-card > * {
  transform: translateZ(20px);
}

/* Mobile hero tuning */
@media (max-width: 700px) {
  .hero { min-height: 88vh; padding: 5rem 0 3rem; }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); margin-bottom: 1.5rem; }
  .hero .lead { font-size: 1.15rem; }
  .hero-cta { margin-top: 2rem; gap: .75rem; }
  .hero-cta .btn { padding: .85rem 1.25rem; font-size: .65rem; }
  .hero-meta { position: static; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; padding-top: 1.5rem; }
  .hero-meta .meta-item { flex-direction: row; align-items: center; gap: 1rem; }
  .hero-meta .num { font-size: 2rem; }
  .hero-scroll { display: none; }
  .hero-ornament { display: none; }
  .page-hero { min-height: 45vh; padding: 4rem 0 3rem; }
  .page-hero h1 { font-size: clamp(2.25rem, 10vw, 3rem); }
  .page-hero .lead { font-size: 1.05rem; }
  .marquee-item { font-size: .95rem; }
  section { padding: 2.75rem 0; }
  .section-head { margin-bottom: 2.5rem; }
  .stats { padding: 3rem 0; gap: 1.5rem; margin-top: 3rem; }
  .stat-num { font-size: 2.75rem; }
  .stat-label { font-size: .65rem; }
  .pillar { padding: 2.25rem 1.5rem 2rem; }
  .event-card { padding: 2rem 1.5rem; min-height: 300px; }
  .split-media img { aspect-ratio: 5/4; }
  .feature-band { min-height: 55vh; }
  .feature-band .wrap { padding: 3rem 0; }
  .contact-form { padding: 2rem 1.5rem; }
  .pull-quote::before { font-size: 6rem; top: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Micro-interaction: link underline animation */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: gap .3s var(--ease);
}
.link-arrow::after { content: '→'; font-size: 1rem; transition: transform .3s var(--ease); }
.link-arrow:hover { gap: 14px; }
.link-arrow:hover::after { transform: translateX(4px); }

/* Elegant card hover glow */
.event-card:hover, .pillar:hover {
  box-shadow: 0 40px 80px -30px rgba(31,58,46,.25), 0 0 0 1px var(--gold);
}

/* ============================================================
   V5 REFINEMENTS — image reveal, better polish
   ============================================================ */

/* Elegant image shutter reveal on scroll */
.split-media .frame img,
.feature-band-media img {
  clip-path: inset(0 0 0 0);
}
.split-media.reveal .frame,
.split-media.reveal .frame-label {
  clip-path: inset(0 0 0 0);
}
.split-media.reveal.pre-anim .frame,
.split-media.reveal.pre-anim .frame-label {
  transition: clip-path 1.4s var(--ease-out), opacity 1s var(--ease-out);
  clip-path: inset(0 100% 0 0);
  overflow: hidden;
}
.split-media.reveal.pre-anim.in .frame {
  clip-path: inset(0 0 0 0);
}

/* Gold accent line that draws in on section reveals */
.section-head.reveal .rule {
  transform: scaleX(1);
  transform-origin: center;
}
.section-head.reveal.pre-anim .rule {
  transform: scaleX(0);
  transition: transform 1s var(--ease-out) .3s;
}
.section-head.reveal.pre-anim.in .rule {
  transform: scaleX(1);
}
.section-head.left.reveal .rule.left {
  transform-origin: left;
}

/* Enhanced hero content spacing */
.hero-inner {
  padding-bottom: 0;
}

/* Refined marquee - more subtle */
.marquee {
  padding: .9rem 0;
}
.marquee-item {
  font-size: 1.05rem;
}

/* Better section-head margins on mobile */
@media (max-width: 700px) {
  .site-header .wrap { min-height: 58px; padding-top: .5rem; padding-bottom: .5rem; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: .9rem; }
  .brand-sub { font-size: .5rem; }
}

/* Subtle scroll-driven hero fade */
.hero-inner {
  transition: transform .1s linear;
}

/* Better content visibility - the marquee should be immediately visible below hero */
.hero { padding-bottom: 4.5rem; }
@media (max-width: 700px) { .hero { padding-bottom: 3rem; } }

/* Refined footer */
.site-footer { padding: 5rem 0 2rem; }

/* Section head reveal - draw rule after content fades in */
.section-head.reveal { transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }

/* ============================================================
   V6 — Match card overlay, refined transitions, polish
   ============================================================ */

/* "This Weekend" match card — floats up from hero bottom, real content peek */
.match-card {
  position: relative;
  z-index: 10;
  margin-top: -3.5rem;
  margin-bottom: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2.5rem;
  max-width: calc(var(--max) - 2rem);
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 30px 80px -20px rgba(15,32,24,.25);
  animation: matchCardIn 1s var(--ease-out) 1.2s both;
}
@keyframes matchCardIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.match-card-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  padding: .75rem 1.25rem;
  background: var(--forest-dark);
  color: var(--gold-light);
  text-align: center;
  border-radius: 2px;
}
.match-card-badge .day {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  line-height: 1;
  color: var(--cream);
}
.match-card-badge .mo {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--gold-light);
  font-weight: 600;
}
.match-card-info h3 {
  font-size: 1.5rem;
  margin-bottom: .35rem;
  line-height: 1.15;
}
.match-card-info .meta {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.match-card-info .meta span:not(:last-child)::after {
  content: '·';
  color: var(--gold);
  margin-left: 1rem;
}
.match-card-price {
  text-align: right;
}
.match-card-price .amt {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--forest-dark);
  line-height: 1;
}
.match-card-price .amt-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 600;
}
.match-card-cta {
  padding: .95rem 1.75rem;
  background: var(--forest-dark);
  color: var(--cream) !important;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.match-card-cta:hover { background: var(--gold); }
@media (max-width: 900px) {
  .match-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    padding: 1.75rem;
    margin-top: -3rem;
    margin-bottom: 2rem;
  }
  .match-card-price { grid-column: 1 / -1; text-align: left; padding-top: 1rem; border-top: 1px solid var(--line); }
  .match-card-cta { grid-column: 1 / -1; text-align: center; justify-content: center; }
  
}
@media (max-width: 500px) {
  .match-card { grid-template-columns: 1fr; padding: 1.5rem; }
  .match-card-badge { flex-direction: row; gap: 1rem; padding: .5rem 1rem; justify-content: center; min-width: 0; }
  .match-card-badge .day { font-size: 1.5rem; }
}

/* Fine-tune spacing so match card feels intentional */


/* Enhanced pillar cards with numbered rules */
.pillar { padding: 3.5rem 2rem 2.5rem; }
.pillar-num {
  position: relative;
  display: inline-block;
}
.pillar-num::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 12px auto 0;
  transform: scaleX(0);
  transition: transform .5s var(--ease) .1s;
}
.pillar:hover .pillar-num::after { transform: scaleX(1); }
.pillar.left .pillar-num::after { margin-left: 0; }

/* Better event card interior spacing */
.event-card { padding: 2.75rem 2rem; min-height: 380px; }

/* Enhanced feature-band with better bottom gradient */
.feature-band::before {
  background: linear-gradient(180deg, rgba(15,32,24,.5) 0%, rgba(15,32,24,.65) 50%, rgba(15,32,24,.85) 100%);
}

/* Stat number underline animation */
.stat { position: relative; padding: 1.5rem 1rem; }
.stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .5s var(--ease);
}
.stat:hover::after { width: 32px; }

/* Better link-arrow polish */
.event-link {
  position: relative;
  padding-bottom: 4px;
}
.event-link::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.event-link:hover::before { width: calc(100% - 20px); }

/* Refined footer - add gold accent on hover for links */
.site-footer ul li a { position: relative; padding-left: 0; transition: padding-left .3s var(--ease), color .3s; }
.site-footer ul li a:hover { padding-left: 12px; }
.site-footer ul li a:hover::before {
  content: '→';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-light);
}


/* Year-suffix "s" — lowercase, natural-sized, tight against the year */
.yr-suffix {
  text-transform: lowercase;
  font-size: 0.92em;
  letter-spacing: 0;
  margin-left: -0.3em;
  font-weight: inherit;
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 18, 14, .96);
  display: none;
  align-items: center; justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox-overlay.active { display: flex; opacity: 1; }
.lightbox-figure {
  position: relative;
  max-width: 90vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
  transform: scale(.96);
  transition: transform .35s var(--ease);
}
.lightbox-overlay.active .lightbox-figure { transform: scale(1); }
.lightbox-figure img {
  max-width: 90vw; max-height: 78vh;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lightbox-cap {
  color: var(--cream);
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  margin-top: 1.1rem; text-align: center; letter-spacing: .01em;
}
.lightbox-count {
  color: var(--gold-light);
  font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  margin-top: .4rem;
}
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  border: 1px solid rgba(245,240,230,.35);
  border-radius: 50%;
  background: rgba(245,240,230,.06);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s var(--ease);
  z-index: 2;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-dark); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1px solid rgba(245,240,230,.35);
  border-radius: 50%;
  background: rgba(245,240,230,.06);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s var(--ease);
  z-index: 2;
}
.lightbox-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--forest-dark); }
.lightbox-prev { left: -8px; }
.lightbox-next { right: -8px; }
@media (max-width: 720px) {
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .lightbox-figure img { max-height: 70vh; }
}
.mosaic-item { position: relative; }
.mosaic-item::before {
  content: '';
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.mosaic-item .expand-icon {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,32,24,.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.8);
  transition: all .3s var(--ease);
  color: var(--cream);
  pointer-events: none;
}
.mosaic-item:hover .expand-icon { opacity: 1; transform: scale(1); }
