/* ============================================================
   Casa de Selah — shared design system
   Used by: index.html, brands.html, creators.html
   ============================================================ */

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

:root {
  /* Burgundy is the brand's dark/highlight family — forest-* variable names are
     kept for backward compatibility across the stylesheet but now resolve to
     burgundy tones so every section, nav state, and CTA recolors together. */
  --burgundy:       #3d0f16;
  --burgundy-mid:   #591923;
  --burgundy-light: #8a3542;

  --forest:       var(--burgundy);
  --forest-mid:   var(--burgundy-mid);
  --forest-light: var(--burgundy-light);
  --cream:        #e7e3dd;
  --cream-light:  #f2efe9;
  --cream-warm:   #faf8f4;
  --gold:         #c5a46e;
  --gold-light:   #ddc592;
  --text-muted:   #6b6058;
  --dark:         #170809;
  --ink:          #2a1410;

  --font-display: 'Cormorant Garamond', serif;
}

/*
@font-face {
  font-family: 'Perandory Condensed';
  src: url('fonts/PerandoryCondensed.woff2') format('woff2'),
       url('fonts/PerandoryCondensed.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream-warm);
  color: var(--forest);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 3rem;
  transition: background 0.4s, backdrop-filter 0.4s, border 0.4s;
}
nav.scrolled {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 164, 110, 0.2);
}
nav.solid {
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 164, 110, 0.2);
}
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nav-logo-img { height: 34px; width: auto; display: block; }
.nav-logo .nl-casa,
.nav-logo .nl-selah {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.4s;
}
.nav-logo .nl-de {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin: 0.05rem 0;
  transition: color 0.4s;
}
nav.scrolled .nav-logo .nl-casa,
nav.scrolled .nav-logo .nl-selah,
nav.solid .nav-logo .nl-casa,
nav.solid .nav-logo .nl-selah { color: var(--forest); }
nav.scrolled .nav-logo .nl-de,
nav.solid .nav-logo .nl-de { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1.4rem; }
.nav-switch {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}
nav.scrolled .nav-switch,
nav.solid .nav-switch { color: var(--forest); }
.nav-switch:hover { opacity: 1; }

.nav-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(232, 224, 210, 0.5);
  padding: 0.55rem 1.4rem;
  border-radius: 1px;
  transition: all 0.3s;
}
nav.scrolled .nav-cta,
nav.solid .nav-cta { color: var(--forest); border-color: rgba(61,15,22,0.35); }
.nav-cta:hover { background: var(--forest-mid); border-color: var(--forest-mid); color: var(--cream) !important; }

/* ── HERO (shared) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(10,4,5,0.64) 0%,
      rgba(61,15,22,0.4) 45%,
      rgba(122,42,48,0.18) 100%),
    var(--hero-image, url('images/kitchen.jpg')) center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(10,4,5,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}
.home-hero .hero-bg {
  background: radial-gradient(ellipse at 50% 18%, rgba(122,42,48,0.4) 0%, transparent 62%), var(--burgundy);
}
.home-hero .hero-bg::after { content: none; }
.home-hero .hero-subtitle {
  font-weight: 400;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  letter-spacing: 0.04em;
  color: rgba(232, 224, 210, 0.8);
}
/* Lets the hero grow instead of clipping when the brand-gate form opens,
   so the section flows seamlessly into the footer instead of overlapping it. */
.home-hero.gate-open {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  padding: 8rem 0 5rem;
}
.hero-logo-sm {
  width: min(46vw, 190px);
  height: auto;
  margin: 0 auto 1.6rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-logo-lg {
  width: min(66vw, 640px);
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.3s forwards;
}
.hero-logo-mark {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-logo-mark .hl-casa,
.hero-logo-mark .hl-selah {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.95;
}
.hero-logo-mark .hl-de {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin: 0.3rem 0;
  line-height: 1;
}
.hero-next {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin: 0 auto 1.6rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-subtitle {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(232, 224, 210, 1);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.btn-primary {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--cream);
  color: var(--ink);
  padding: 1rem 2.4rem;
  border-radius: 1px;
  border: 1px solid var(--cream);
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-primary:hover { background: var(--burgundy-mid); border-color: var(--burgundy-mid); color: var(--cream); transform: translateY(-2px); }
.btn-ghost {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border: 1px solid rgba(232, 224, 210, 0.45);
  padding: 1rem 2.4rem;
  border-radius: 1px;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  font-family: 'Jost', sans-serif;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(232,224,210,0.08); }
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(232, 224, 210, 0.5);
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(232,224,210,0.55), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

/* ── VOGUE GATEWAY (homepage) ── */
.gateway {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
}
.gateway-nav {
  position: static;
  background: transparent;
  padding: 1.6rem 3rem;
}
.gateway-nav .nav-logo-img { filter: none; }
.gateway-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
}
.gw-logo {
  width: min(58vw, 340px);
  height: auto;
  margin: 0 auto 2.2rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.25s forwards;
}
.gw-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.gw-next {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.gw-next span { opacity: 0.55; }
.gw-subtitle {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(231, 227, 221, 0.68);
  max-width: 520px;
  margin: 1.8rem auto 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}
.gw-choices {
  position: relative;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}
.gw-choice {
  min-width: 220px;
  padding: 1.05rem 2.2rem;
  border: 1px solid rgba(231, 227, 221, 0.4);
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.35s ease;
}
.gw-choice:hover, .gw-choice.active {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}

/* ── BRAND GATE PANEL (flat, no-photo variant) ── */
.brand-gate {
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 100%;
  margin: 1.8rem auto 0;
  background: rgba(231, 227, 221, 0.04);
  border: 1px solid rgba(231, 227, 221, 0.28);
  padding: 2rem 1.8rem;
  text-align: left;
  display: none;
}
.brand-gate.open { display: block; animation: fadeUp 0.5s ease forwards; }
.brand-gate p.gate-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 1.1rem;
  text-align: center;
}
.gate-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: rgba(231,227,221,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.gate-close:hover { color: var(--cream); }
.gateway-footer {
  padding: 2.2rem;
  text-align: center;
}
.gateway-footer img { height: 24px; width: auto; opacity: 0.5; margin-bottom: 0.9rem; }
.gateway-footer-links { display: flex; gap: 1.6rem; justify-content: center; margin-bottom: 0.8rem; }
.gateway-footer-links a {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(231,227,221,0.4);
  transition: color 0.2s;
}
.gateway-footer-links a:hover { color: var(--cream); }
.gateway-footer-copy { font-size: 0.68rem; font-weight: 300; color: rgba(231,227,221,0.25); letter-spacing: 0.06em; }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--forest);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 2.2rem;
  opacity: 0.85;
}
.marquee-inner span.dot { color: var(--gold); padding: 0; font-size: 0.5rem; opacity: 0.6; }

/* ── SHARED SECTION ── */
section { padding: 6rem 2rem; }
.container { max-width: 1120px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--forest);
  margin-bottom: 1.6rem;
}
.section-title em { font-style: italic; color: var(--forest-light); }
.section-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-muted);
}

/* ── ABOUT / SPLIT LAYOUT ── */
.about { background: var(--cream-light); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  width: 54%;
  aspect-ratio: 1/1;
  object-fit: cover;
  bottom: -2.8rem;
  right: -2.2rem;
  border: 6px solid var(--cream-light);
  box-shadow: 0 16px 48px rgba(61,15,22,0.16);
}
.about-text { max-width: 540px; }
.about-divider { width: 40px; height: 1px; background: var(--gold); margin: 2rem 0; }
.about-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(197, 164, 110, 0.3);
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--forest-mid);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* ── GALLERY ── */
.gallery { background: var(--cream-warm); padding: 5rem 2rem; }
.gallery-header { text-align: center; margin-bottom: 3rem; }
.gallery-location {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  max-width: 1120px;
  margin: 0 auto;
}
.g-item { overflow: hidden; position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-item .g-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(10,4,5,0.65), transparent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 224, 210, 0.85);
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-label { opacity: 1; }
.g-item:nth-child(1) { grid-column: 1 / 6;  grid-row: 1; }
.g-item:nth-child(2) { grid-column: 6 / 9;  grid-row: 1; }
.g-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.g-item:nth-child(4) { grid-column: 1 / 5;  grid-row: 2; }
.g-item:nth-child(5) { grid-column: 5 / 9;  grid-row: 2; }
.g-item:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }

/* ── PILLARS / FEATURE GRID (3-up) ── */
.pillars { background: var(--forest); }
.pillars .section-label { color: var(--gold); }
.pillars .section-title { color: var(--cream); }
.pillars .section-title em { color: var(--gold-light); }
.pillars-header { margin-bottom: 3.5rem; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,224,210,0.07);
}
.pillar-card {
  background: var(--forest);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pillar-card:hover { background: var(--forest-mid); }
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(197, 164, 110, 0.1);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.pillar-text { font-size: 0.88rem; font-weight: 300; line-height: 2; color: rgba(232, 224, 210, 0.55); }

/* ── MOMENTS / EVENTS BAND ── */
.moments {
  background: var(--forest);
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.moments::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 180%;
  background: radial-gradient(ellipse, rgba(197,164,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.moments .section-label { color: rgba(232,224,210,0.6); }
.moments .section-title { color: var(--cream); max-width: 680px; margin: 0 auto 1.5rem; }
.moments .section-title em { color: var(--gold-light); }
.moments .section-body { color: rgba(232,224,210,0.7); max-width: 560px; margin: 0 auto 3rem; text-align: center; }
.moments-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 3.5rem; }
.moments-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(232, 224, 210, 0.3);
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  background: rgba(232,224,210,0.06);
}

/* ── EVENT / ELIGIBILITY CARDS ── */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
  text-align: left;
}
.event-card {
  background: rgba(232,224,210,0.05);
  border: 1px solid rgba(232, 224, 210, 0.14);
  padding: 2rem 1.8rem;
}
.event-card .event-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
a.event-tag:hover { background: var(--cream); }
.event-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.event-card p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(232,224,210,0.6);
}

.btn-cream {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--cream);
  color: var(--forest);
  padding: 1rem 2.6rem;
  border-radius: 1px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Jost', sans-serif;
}
.btn-cream { color: var(--ink); }
.btn-cream:hover { background: var(--burgundy-mid); color: var(--cream); transform: translateY(-2px); }

/* ── PRICING / SPONSORSHIP TIERS ── */
.tiers { background: var(--cream-light); }
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}
.tier-card {
  background: var(--cream-warm);
  border: 1px solid rgba(197,164,110,0.25);
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier-card.featured {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(61,15,22,0.1);
  transform: translateY(-8px);
}
.tier-featured-tag {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 0.35rem 1rem;
  border-radius: 100px;
}
.tier-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.tier-availability {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 0.5rem;
}
.tier-price {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--forest-light);
  margin-bottom: 1.4rem;
}
.tier-list { list-style: none; margin: 0 0 1.8rem; flex-grow: 1; }
.tier-list li {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.tier-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.tier-cta {
  display: block;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest);
  border: 1px solid var(--forest);
  padding: 0.9rem;
  transition: all 0.3s;
}
.tier-cta:hover { background: var(--forest); color: var(--cream); }
.tier-card.featured .tier-cta { background: var(--forest); color: var(--cream); }
.tier-card.featured .tier-cta:hover { background: var(--forest-mid); }
.tier-note {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-top: 2.4rem;
}
.ideal-sponsor {
  max-width: 720px;
  margin: 2.4rem auto 0;
  padding: 1.6rem 1.9rem;
  border-left: 3px solid var(--gold);
  background: rgba(197,164,110,0.08);
  text-align: left;
}
.ideal-sponsor p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--forest-mid);
  font-weight: 300;
}
.ideal-sponsor strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
}

/* ── CASE STUDY ── */
.case-study { background: var(--dark); }
.case-study .section-label { color: var(--gold); }
.case-study .section-title { color: var(--cream); }
.case-study .section-title em { color: var(--gold-light); }
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}
.case-copy p { color: rgba(232,224,210,0.6); }
.case-copy .about-divider { background: var(--gold); }
.case-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2rem;
  margin-top: 2rem;
}
.case-stats .stat-num { color: var(--gold-light); }
.case-stats .stat-label { color: rgba(232,224,210,0.45); }
.case-tag {
  display: inline-block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--gold-light);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

/* ── INQUIRE / FORM SECTION ── */
.inquire { background: var(--dark); }
.inquire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.inquire .section-label { color: var(--gold); }
.inquire .section-title { color: var(--cream); }
.inquire .section-body { color: rgba(232, 224, 210, 0.55); }
.inquire-detail { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(232,224,210,0.08); }
.inquire-detail a {
  display: block;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 0.4rem;
}
.inquire-detail a:hover { color: var(--cream); }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232,224,210,0.38);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(232,224,210,0.05);
  border: 1px solid rgba(232,224,210,0.1);
  border-radius: 1px;
  padding: 0.85rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border 0.3s, background 0.3s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(232,224,210,0.22); }
.form-group select option { background: #1f0a0d; color: var(--cream); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(197,164,110,0.5); background: rgba(232,224,210,0.08); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-honey { display: none !important; }
.form-submit {
  width: 100%;
  margin-top: 0.6rem;
  padding: 1rem;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--cream);
  border-radius: 1px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover:not(:disabled) { background: var(--burgundy-mid); color: var(--cream); border-color: var(--burgundy-mid); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: default; }
.form-success { display: none; text-align: center; padding: 3rem 1rem; }
.form-success .check { font-size: 2rem; margin-bottom: 1rem; }
.form-success p { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--cream); }
.form-success small { display: block; margin-top: 0.5rem; font-size: 0.82rem; font-weight: 300; color: rgba(232,224,210,0.45); }

/* ── COMING SOON PANEL ── */
.coming-soon {
  text-align: center;
  padding: 3.4rem 1.8rem;
  border: 1px solid rgba(232,224,210,0.16);
  background: rgba(232,224,210,0.03);
}
.coming-soon .check { font-size: 1.6rem; color: var(--gold-light); margin-bottom: 1.2rem; }
.coming-soon p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.coming-soon small { display: block; font-size: 0.85rem; font-weight: 300; color: rgba(232,224,210,0.5); line-height: 1.7; }

/* ── NEWSLETTER (compact inline form) ── */
.newsletter { background: var(--forest-mid); text-align: center; }
.newsletter .section-label { color: rgba(232,224,210,0.6); }
.newsletter .section-title { color: var(--cream); }
.newsletter .section-body { color: rgba(232,224,210,0.6); max-width: 480px; margin: 0 auto 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(232,224,210,0.08);
  border: 1px solid rgba(232,224,210,0.2);
  border-radius: 1px;
  padding: 0.9rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(232,224,210,0.35); }
.newsletter-form input[type="email"]:focus { border-color: var(--gold-light); }
.newsletter-form button {
  white-space: nowrap;
}
.newsletter-success {
  display: none;
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* ── FOOTER ── */
footer {
  background: #140607;
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(232,224,210,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.7rem; font-weight: 300; color: rgba(232,224,210,0.2); letter-spacing: 0.06em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.6rem; }
  .about-grid, .inquire-grid, .case-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .pillars-grid, .tier-grid, .event-grid { grid-template-columns: 1fr; gap: 1px; }
  .tier-grid { gap: 1.2rem; }
  .event-grid { gap: 1.2rem; }
  .tier-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item:nth-child(n) { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; max-width: 340px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .nav-right { gap: 0.8rem; }
  .nav-switch { display: none; }
}
