/* ============================================================
   LIVE AT THE PINES — Global Stylesheet
   Brand: Warm, Raw, Intimate, Cinematic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bungee+Inline&family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Core Brand Colors */
  --bg-warm:          #F2EDE3;
  --bg-warm-alt:      #EAE4D7;
  --bg-dark:          #2B3A28;
  --text-main:        #1A1A18;
  --text-muted:       #5C5848;
  --text-light:       #F2EDE3;

  /* Brand Greens */
  --brand-green:      #3B4B35;
  --brand-green-dark: #2B3A28;
  --brand-green-mid:  #546649;

  /* Accents */
  --accent-orange:    #C96427;
  --accent-yellow:    #DDA73B;
  --accent-terra:     #A85535;
  --accent-olive:     #7A7A3C;
  --accent-choc:      #7A5030;

  /* UI */
  --border:           rgba(26,26,24,0.12);
  --border-light:     rgba(242,237,227,0.15);
  --shadow-warm:      0 8px 40px rgba(26,26,24,0.12);
  --shadow-card:      0 4px 24px rgba(26,26,24,0.10);

  /* Typography */
  --font-display:     'DM Serif Display', Georgia, serif;
  --font-body:        'Space Grotesk', 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:      clamp(4rem, 8vw, 8rem);
  --container:        1280px;
  --gutter:           clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease-cinematic:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-slow:    0.7s;
  --duration-med:     0.4s;
}

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 90%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* ─── FILM GRAIN OVERLAY ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 65ch;
}

a {
  color: inherit;
  text-decoration: none;
}

img { display: block; max-width: 100%; }

/* ─── CSS LOGO / WORDMARK ───────────────────────────────────── */
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  font-family: 'Bungee Inline', var(--font-body);
  letter-spacing: 0.05em;
  user-select: none;
}

.logo-wordmark span {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

.logo-wordmark .line-live,
.logo-wordmark .line-at {
  color: var(--bg-warm);
}

.logo-wordmark .line-the,
.logo-wordmark .line-pines {
  color: var(--accent-yellow);
}

/* Stair-step layout matching PNG */
.logo-wordmark .line-live  { margin-left: 0; }
.logo-wordmark .line-at    { margin-left: 1.8em; }
.logo-wordmark .line-the   { margin-left: 2.8em; }
.logo-wordmark .line-pines { margin-left: 0.6em; }

/* Responsive adjustments for Nav / Footer */
.nav__logo .logo-wordmark span { font-size: 1.3rem; }
.footer__brand .logo-wordmark span { font-size: 1.5rem; }

/* Large display variant for hero */
.logo-wordmark--hero span {
  font-size: clamp(3.5rem, 11vw, 9rem);
}

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-pad);
}

.section--dark {
  background-color: var(--brand-green-dark);
  color: var(--text-light);
}

.section--dark p {
  color: rgba(242,237,227,0.7);
}

.section--dark h2,
.section--dark h3 {
  color: var(--bg-warm);
}

.section--green {
  background-color: var(--brand-green);
  color: var(--text-light);
}

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  transition: background var(--duration-med) var(--ease-cinematic),
              backdrop-filter var(--duration-med) var(--ease-cinematic),
              box-shadow var(--duration-med) var(--ease-cinematic);
}

.nav > * {
  pointer-events: auto;
}

.nav.scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nav.scrolled .nav__logo {
  background: rgba(43, 58, 40, 0.7);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-color: rgba(242, 237, 227, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav.scrolled .nav__links {
  background: rgba(43, 58, 40, 0.7);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 1px solid rgba(242, 237, 227, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}

.nav__logo {
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: all var(--duration-med) var(--ease-cinematic);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 0.5rem 0;
  margin-left: auto;
  transition: all var(--duration-med) var(--ease-cinematic);
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-warm);
  opacity: 0.8;
  transition: opacity var(--duration-med);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-yellow);
  transition: width var(--duration-med) var(--ease-cinematic);
}

.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { opacity: 1; }
.nav__links a.active::after { width: 100%; }

.nav__cta {
  background: var(--accent-orange);
  color: var(--bg-warm) !important;
  opacity: 1 !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  transition: background var(--duration-med), transform 0.2s !important;
}

.nav__cta:hover {
  background: var(--accent-terra) !important;
  transform: translateY(-1px);
}

.nav__cta::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bg-warm);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--brand-green-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-green-dark);
  background-image: linear-gradient(to bottom, rgba(15,24,13,0.4) 0%, rgba(15,24,13,0.6) 100%), url('assets/bos-web.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Pine silhouette via SVG background */
.hero__pines {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 300' preserveAspectRatio='none'%3E%3Cpath d='M0,300 L0,180 L50,180 L30,140 L60,140 L35,100 L65,100 L40,60 L70,60 L55,30 L80,30 L65,5 L95,30 L110,5 L125,30 L140,30 L125,60 L155,60 L130,100 L160,100 L135,140 L165,140 L145,180 L195,180 L195,300 Z M180,300 L180,200 L220,200 L195,165 L230,165 L205,130 L240,130 L215,95 L250,95 L225,60 L255,60 L240,35 L265,35 L250,10 L275,35 L290,10 L305,35 L320,35 L305,60 L335,60 L310,95 L345,95 L320,130 L355,130 L330,165 L365,165 L340,200 L390,200 L390,300 Z M370,300 L370,210 L400,210 L380,175 L410,175 L388,140 L418,140 L395,105 L430,105 L408,68 L440,68 L420,42 L445,20 L470,42 L450,68 L482,68 L460,105 L495,105 L472,140 L502,140 L480,175 L510,175 L490,210 L530,210 L530,300 Z M550,300 L550,190 L575,190 L555,155 L590,155 L568,118 L600,118 L575,82 L612,82 L590,50 L620,25 L650,50 L628,82 L665,82 L640,118 L672,118 L648,155 L683,155 L661,190 L700,190 L700,300 Z M720,300 L720,195 L748,195 L728,162 L762,162 L740,128 L775,128 L752,93 L787,93 L764,62 L793,38 L822,62 L799,93 L834,93 L811,128 L846,128 L823,162 L857,162 L837,195 L875,195 L875,300 Z M900,300 L900,185 L925,185 L905,150 L940,150 L918,115 L953,115 L930,80 L965,80 L943,52 L970,28 L997,52 L975,80 L1010,80 L988,115 L1023,115 L1000,150 L1035,150 L1013,185 L1048,185 L1048,300 Z M1080,300 L1080,200 L1105,200 L1085,165 L1118,165 L1096,130 L1130,130 L1108,95 L1142,95 L1120,65 L1145,42 L1170,65 L1148,95 L1182,95 L1160,130 L1194,130 L1172,165 L1205,165 L1185,200 L1220,200 L1220,300 Z M1240,300 L1240,188 L1262,188 L1245,155 L1278,155 L1258,120 L1290,120 L1268,85 L1302,85 L1282,55 L1305,32 L1328,55 L1308,85 L1342,85 L1322,120 L1354,120 L1332,155 L1365,155 L1348,188 L1380,188 L1380,300 Z M1360,300 L1360,205 L1390,205 L1375,175 L1405,175 L1388,145 L1420,145 L1400,112 L1430,112 L1415,90 L1440,90 L1440,300 Z' fill='%231A2318' opacity='0.9'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 8rem 4rem;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent-yellow);
}

.hero__sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(242,237,227,0.65);
  max-width: 55ch;
  line-height: 1.7;
  font-family: var(--font-body);
  font-weight: 300;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(242,237,227,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(242,237,227,0.4), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all var(--duration-med) var(--ease-cinematic);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent-orange);
  color: var(--bg-warm);
}
.btn--primary:hover {
  background: var(--accent-terra);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,100,39,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--bg-warm);
  border: 1.5px solid rgba(242,237,227,0.35);
}
.btn--outline:hover {
  border-color: var(--bg-warm);
  background: rgba(242,237,227,0.08);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1.5px solid var(--border);
  padding: 0.7rem 1.5rem;
}
.btn--ghost:hover {
  border-color: var(--text-main);
  background: var(--text-main);
  color: var(--bg-warm);
}

/* Play button icon */
.btn svg { width: 1em; height: 1em; }

/* ─── 4:3 ASPECT RATIO CARD ─────────────────────────────────── */
.card-4-3 {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background: var(--brand-green-dark);
}

.card-4-3 img,
.card-4-3 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-cinematic);
}

.card-4-3:hover img,
.card-4-3:hover video {
  transform: scale(1.04);
}

/* ─── SESSION CARDS ─────────────────────────────────────────── */
.session-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.session-card__thumb {
  position: relative;
}

.session-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--duration-med) var(--ease-cinematic);
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-card:hover .session-card__overlay {
  opacity: 1;
}

.session-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(242,237,227,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(242,237,227,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-warm);
  transition: transform 0.2s, background 0.2s;
}

.session-card:hover .session-card__play {
  transform: scale(1.1);
  background: rgba(221,167,59,0.3);
  border-color: var(--accent-yellow);
}

.session-card__info {
  padding: 1.2rem 0 0.5rem;
}

.session-card__ep {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
}

.session-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-main);
  line-height: 1.15;
}

.session-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}

/* Dark context overrides */
.section--dark .session-card__title { color: var(--bg-warm); }
.section--dark .session-card__meta { color: rgba(242,237,227,0.5); }

/* ─── GRID SYSTEMS ──────────────────────────────────────────── */
.grid-sessions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-sessions--featured {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.grid-sessions--featured .session-card:first-child {
  grid-column: 1 / -1;
}

/* ─── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.section-header__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-header__label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--accent-orange);
}

/* ─── CONCEPT / ABOUT SECTION ───────────────────────────────── */
.concept-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.concept-block--reverse {
  direction: rtl;
}

.concept-block--reverse > * {
  direction: ltr;
}

.concept-text p + p {
  margin-top: 1.2rem;
}

.concept-visual {
  position: relative;
}

/* ─── QUOTE BLOCK ───────────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--accent-yellow);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--bg-warm);
  line-height: 1.4;
  max-width: none;
}

.quote-block__attr {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-top: 0.8rem;
  font-family: var(--font-body);
}

/* ─── TAGS ──────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-family: var(--font-body);
}

.tag--green  { background: rgba(59,75,53,0.12); color: var(--brand-green); }
.tag--orange { background: rgba(201,100,39,0.12); color: var(--accent-orange); }
.tag--yellow { background: rgba(221,167,59,0.15); color: var(--accent-choc); }

/* ─── FILTER BAR ─────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-body);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(201,100,39,0.06);
}

/* ─── MODAL VIDEO PLAYER ────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15,24,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-med) var(--ease-cinematic),
              visibility var(--duration-med);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--bg-warm);
  cursor: pointer;
  font-size: 1.5rem;
  font-family: var(--font-body);
  opacity: 0.7;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.modal-close:hover { opacity: 1; }

.modal-video-wrap {
  aspect-ratio: 4 / 3;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.modal-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-info {
  padding: 1.2rem 0 0;
  color: var(--bg-warm);
}

.modal-info h3 {
  font-size: 1.4rem;
  color: var(--bg-warm);
}

.modal-info p {
  font-size: 0.9rem;
  color: rgba(242,237,227,0.6);
  margin-top: 0.3rem;
}

/* ─── BTS GALLERY ───────────────────────────────────────────── */
.bts-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.bts-item {
  overflow: hidden;
  border-radius: 3px;
  cursor: zoom-in;
}

.bts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-cinematic);
}

.bts-item:hover img { transform: scale(1.06); }

.bts-item--wide  { grid-column: span 8; aspect-ratio: 4/3; }
.bts-item--tall  { grid-column: span 4; aspect-ratio: 3/4; }
.bts-item--half  { grid-column: span 6; aspect-ratio: 4/3; }
.bts-item--third { grid-column: span 4; aspect-ratio: 4/3; }

/* ─── CONTACT FORM ──────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.6);
  font-family: var(--font-body);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(242,237,227,0.06);
  border: 1.5px solid rgba(242,237,227,0.12);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--bg-warm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-yellow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(242,237,227,0.3);
}

.form-textarea { min-height: 140px; resize: vertical; }
.form-select option { background: var(--brand-green-dark); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--brand-green-dark);
  padding: 4rem var(--gutter) 2rem;
  border-top: 1px solid rgba(242,237,227,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,237,227,0.08);
}

.footer__brand p {
  font-size: 0.9rem;
  color: rgba(242,237,227,0.5);
  margin-top: 1rem;
  max-width: 28ch;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 1.2rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(242,237,227,0.6);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--bg-warm); }

.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer__social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(242,237,227,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242,237,227,0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer__social-link:hover {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  transform: translateY(-2px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(242,237,227,0.35);
  font-family: var(--font-body);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--brand-green-dark);
  padding: 10rem var(--gutter) 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--brand-green-dark);
  background-image: linear-gradient(to bottom, rgba(15,24,13,0.5) 0%, rgba(15,24,13,0.6) 100%), url('assets/bos-web.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.page-hero__pines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath d='M0,200 L0,130 L40,130 L20,95 L50,95 L28,60 L58,60 L35,30 L60,10 L85,30 L62,60 L92,60 L70,95 L100,95 L80,130 L130,130 L130,200 Z M150,200 L150,125 L185,125 L165,92 L198,92 L175,58 L208,58 L185,28 L208,8 L231,28 L208,58 L241,58 L218,92 L251,92 L231,125 L275,125 L275,200 Z M300,200 L300,120 L330,120 L312,88 L345,88 L325,55 L360,55 L340,25 L362,5 L384,25 L364,55 L399,55 L379,88 L412,88 L394,120 L435,120 L435,200 Z M480,200 L480,130 L508,130 L490,98 L522,98 L502,65 L535,65 L515,35 L535,15 L555,35 L535,65 L568,65 L548,98 L580,98 L562,130 L600,130 L600,200 Z M640,200 L640,118 L665,118 L648,87 L680,87 L660,55 L695,55 L675,28 L695,10 L715,28 L695,55 L730,55 L710,87 L742,87 L724,118 L760,118 L760,200 Z M800,200 L800,125 L825,125 L808,95 L840,95 L820,63 L855,63 L835,35 L855,15 L875,35 L855,63 L890,63 L870,95 L902,95 L884,125 L920,125 L920,200 Z M960,200 L960,130 L988,130 L970,100 L1002,100 L982,68 L1015,68 L995,40 L1015,20 L1035,40 L1015,68 L1048,68 L1028,100 L1060,100 L1042,130 L1080,130 L1080,200 Z M1120,200 L1120,122 L1145,122 L1128,92 L1160,92 L1140,62 L1173,62 L1153,35 L1173,18 L1193,35 L1173,62 L1206,62 L1186,92 L1218,92 L1200,122 L1235,122 L1235,200 Z M1280,200 L1280,128 L1305,128 L1290,100 L1320,100 L1300,70 L1330,70 L1315,45 L1335,28 L1355,45 L1335,70 L1365,70 L1345,100 L1375,100 L1360,128 L1390,128 L1390,200 Z M1400,200 L1400,135 L1425,135 L1410,110 L1440,110 L1440,200 Z' fill='%231A2318' opacity='0.8'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
}

.page-hero__eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--accent-yellow);
  display: block;
}

.page-hero h1 { color: var(--bg-warm); }

.page-hero__desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(242,237,227,0.6);
  margin-top: 1.2rem;
  max-width: 60ch;
  font-family: var(--font-body);
  font-weight: 300;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-cinematic) forwards;
}


/* ─── DIVIDER ────────────────────────────────────────────────── */
.divider {
  width: 3rem;
  height: 2px;
  background: var(--accent-orange);
  margin: 1.5rem 0;
}

/* ─── STAT COUNTER ──────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
  margin-top: 3rem;
}

.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent-yellow);
  line-height: 1;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.5);
  margin-top: 0.3rem;
  font-family: var(--font-body);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .concept-block {
    grid-template-columns: 1fr;
  }
  .concept-block--reverse { direction: ltr; }

  .grid-sessions--featured {
    grid-template-columns: 1fr;
  }
  .grid-sessions--featured .session-card:first-child {
    grid-column: auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bts-item--wide  { grid-column: span 12; }
  .bts-item--tall  { grid-column: span 6; }
  .bts-item--half  { grid-column: span 6; }
  .bts-item--third { grid-column: span 6; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--brand-green-dark);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav__links.open a { font-size: 1.2rem; }
  .nav__hamburger { display: flex; z-index: 1001; }
  .nav__cta-desktop { display: none; }

  .footer__grid { grid-template-columns: 1fr; }

  .bts-item--wide  { grid-column: span 12; }
  .bts-item--tall  { grid-column: span 12; aspect-ratio: 4/3; }
  .bts-item--half  { grid-column: span 12; }
  .bts-item--third { grid-column: span 12; }

  .stats-row { flex-direction: column; gap: 1.5rem; }
}

/* ─── UTILITY ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-yellow { color: var(--accent-yellow); }
.text-orange { color: var(--accent-orange); }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 3rem; }
