/* ============================================================
   BHAKTI MARGA NYC — Global Stylesheet
   Brand: Navy #17254D · Gold #D6BF90 · Teal #2B8A8A
   ============================================================ */

/* === TOKENS === */
:root {
  --bg:           #FFFFFF;
  --bg-warm:      #F8F5F0;
  --bg-warm-2:    #F0EBE3;
  --navy:         #17254D;
  --gold:         #D6BF90;
  --gold-dark:    #C9A876;
  --gold-deep:    #B8923B;
  --teal:         #2B8A8A;
  --teal-light:   #3BA8A8;
  --teal-pale:    #E8F5F5;
  --gray-text:    #666666;
  --muted:        #999999;
  --border:       #E6E6E6;
  --white:        #FFFFFF;

  --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:    'Noto Sans', system-ui, -apple-system, sans-serif;

  --nav-h:        72px;
  --max-w:        1200px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);
  --radius:       6px;
  --radius-lg:    12px;

  --ease:         cubic-bezier(.4, 0, .2, 1);
  --transition:   .25s var(--ease);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  color: var(--navy);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: .01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p  { max-width: 68ch; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: var(--gray-text);
  max-width: 60ch;
}

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

section { padding-block: clamp(3rem, 8vw, 6rem); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
}

/* Gold pill — primary action */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Navy outline — secondary action */
.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* Ghost — on dark backgrounds */
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.7);
  color: var(--white);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* Hero — white pill on dark/video hero */
.btn-hero {
  background: var(--white);
  color: var(--navy);
  border: none;
}
.btn-hero:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
}

.btn-sm { padding: .55rem 1.4rem; font-size: .75rem; }
.btn-lg { padding: 1rem 2.8rem; font-size: .85rem; }

/* === DIVIDER === */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-block: 1.25rem;
}
.divider-center { margin-inline: auto; }

/* === NAVIGATION === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}
.site-header.hero-page { background: transparent; }
.site-header.hero-page.scrolled { background: var(--white); }
.site-header:not(.hero-page) { background: var(--white); border-bottom: 1px solid var(--border); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-logo img { height: 38px; width: auto; transition: filter var(--transition); }
.site-header.hero-page:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.nav-logo-sub {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-sans);
}
.site-header.hero-page:not(.scrolled) .nav-logo-sub { color: rgba(255,255,255,.6); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color var(--transition);
  position: relative;
}
.site-header.hero-page:not(.scrolled) .nav-links a { color: rgba(255,255,255,.9); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 1rem; }

/* Nav Book Now button: gold pill */
.nav-cta.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.site-header.hero-page:not(.scrolled) .nav-cta.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}
.site-header.hero-page:not(.scrolled) .nav-toggle span { background: var(--white); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 300;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .btn { margin-top: 1rem; }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem; right: var(--gutter);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(214,191,144,.08) 0%, transparent 60%);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; position: relative; }
.page-hero .lead { color: rgba(255,255,255,.75); margin-inline: auto; position: relative; }
.page-hero .eyebrow { color: var(--gold-deep); position: relative; }

/* === HOME HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image: url('https://bhaktimarga.nyc/cdn/shop/files/Main_shala.jpg');
  background-size: cover;
  background-position: center top;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.2) 60%,
    rgba(0,0,0,0) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 4rem;
}
.hero h1 {
  color: var(--white);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 1.75rem;
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
}
.hero h1 em { font-style: italic; }
.hero .lead {
  color: rgba(255,255,255,.85);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === FEATURES GRID === */
.features { background: var(--bg); }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(23,37,77,.08);
  transform: translateY(-3px);
}
.feature-icon { font-size: 2rem; margin-bottom: 1rem; color: var(--teal); }
.feature-card h3 { margin-bottom: .5rem; }
.feature-card p { font-size: .95rem; color: var(--gray-text); }
.feature-card .btn { margin-top: 1.5rem; }

/* === SECTION HEADERS === */
.section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-header h2 { margin-top: .5rem; }
.section-header .lead { margin-top: .75rem; }

/* === SCHEDULE / EVENTS === */
.schedule-section { background: var(--bg); }
.schedule-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.schedule-tab {
  padding: .6rem 1.25rem;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.schedule-tab.active { color: var(--navy); border-bottom-color: var(--gold-deep); }
.schedule-tab:hover { color: var(--navy); }

.events-list { display: flex; flex-direction: column; gap: 1px; }

.event-card {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: .75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.event-card:hover {
  box-shadow: 0 4px 24px rgba(23,37,77,.08);
  border-color: var(--gold);
}

.event-date {
  text-align: center;
  padding: .75rem .5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
}
.event-date-day {
  font-size: 1.6rem;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
  color: var(--navy);
}
.event-date-mon {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: .75;
  margin-top: .25rem;
}

.event-body h4 { margin-bottom: .2rem; }
.event-body .event-meta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  font-size: .78rem; color: var(--muted); margin-top: .25rem;
}
.event-meta-item { display: flex; align-items: center; gap: .3rem; }

.event-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  text-align: right;
  white-space: nowrap;
}
.event-price small {
  display: block;
  font-size: .65rem;
  color: var(--muted);
  font-family: var(--font-sans);
  letter-spacing: .05em;
  margin-top: .25rem;
}

.event-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 99px;
  background: var(--bg-warm);
  color: var(--gold-deep);
  border: 1px solid var(--gold);
}
.event-tag.free    { background: #E8F4E8; color: #2E7D32; border-color: #b8ddb8; }
.event-tag.retreat { background: #EDE8F4; color: #5B4A8A; border-color: #cdc5e0; }
.event-tag.course  { background: var(--teal-pale); color: var(--teal); border-color: var(--teal-light); }

/* Loading states */
.schedule-loading, .schedule-error, .schedule-empty {
  text-align: center; padding: 4rem 2rem; color: var(--muted);
}
.schedule-loading { animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.schedule-error { color: #c0392b; }

/* === QUOTE === */
.quote-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(214,191,144,.06) 0%, transparent 60%);
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  max-width: 780px;
  margin-inline: auto;
  line-height: 1.4;
  position: relative;
  color: var(--white);
}
.quote-section blockquote::before { content: '\201C'; color: var(--gold); }
.quote-section blockquote::after  { content: '\201D'; color: var(--gold); }
.quote-attr {
  margin-top: 1.5rem;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

/* === ABOUT TEASER === */
.about-teaser { background: var(--bg-warm); }
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-teaser-img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-warm-2);
}
.about-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser-img .img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem;
}
.about-teaser-text h2 { margin-block: .5rem 1rem; }
.about-teaser-text p { margin-bottom: 1rem; color: var(--gray-text); }

/* === CLASS TYPE CARDS === */
.class-type-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.class-type-card:hover { box-shadow: 0 8px 32px rgba(23,37,77,.08); }
.class-type-img {
  aspect-ratio: 16/9;
  background: var(--bg-warm-2);
  position: relative;
  overflow: hidden;
}
.class-type-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.class-type-card:hover .class-type-img img { transform: scale(1.04); }
.class-type-body { padding: 1.75rem; }
.class-type-body h3 { margin-bottom: .5rem; }
.class-type-body p { font-size: .9rem; color: var(--gray-text); }

/* === MEMBERSHIP CARDS === */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.membership-card {
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  padding: 0;
}
.membership-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(23,37,77,.3);
}
.membership-card.featured { border-color: var(--gold); }
.membership-badge {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}
/* navy top section */
.membership-card-top {
  padding: 2.5rem 2rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  background: var(--navy);
}
.membership-tier {
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}
.membership-price-line {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-top: .5rem;
}
.membership-note {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-style: italic;
}
.membership-emblem {
  width: 40px;
  height: 40px;
  margin-top: 1.25rem;
  opacity: .45;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
/* white bottom section */
.membership-card-bottom {
  background: var(--white);
  padding: 1.5rem 2rem 2rem;
}
.membership-card-bottom p {
  font-size: .875rem;
  color: var(--gray-text);
  margin-bottom: 1.25rem;
  max-width: none;
}
.membership-card-bottom .btn-shop {
  display: block;
  width: 100%;
  text-align: center;
  padding: .85rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.membership-card-bottom .btn-shop:hover {
  background: #0f1a3a;
  transform: translateY(-1px);
}

/* === RENTALS === */
.rental-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.rental-img { aspect-ratio: 16/9; background: var(--bg-warm-2); position: relative; overflow: hidden; }
.rental-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.rental-card:hover .rental-img img { transform: scale(1.04); }
.rental-body { padding: 2rem; }
.rental-body h3 { margin-bottom: .5rem; }
.rental-body .rental-rate {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-bottom: .75rem;
}
.rental-body p { font-size: .9rem; color: var(--gray-text); margin-bottom: 1rem; }
.rental-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem; }
.rental-tag {
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  background: var(--bg-warm);
  border-radius: 99px;
  color: var(--muted);
}

.rental-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; counter-reset: steps; }
.rental-step { counter-increment: steps; position: relative; padding-top: 2rem; }
.rental-step::before {
  content: counter(steps);
  position: absolute;
  top: 0;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.rental-step h4 { margin-bottom: .4rem; }
.rental-step p { font-size: .9rem; color: var(--gray-text); }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.25rem; font-size: .95rem; color: var(--gray-text); }
.contact-detail-icon { color: var(--gold-deep); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.contact-detail a:hover { color: var(--gold-deep); }
.social-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 2rem; }
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--navy);
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold-deep);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.form-success { display: none; text-align: center; padding: 2rem; color: #2E7D32; }
.form-success.show { display: block; }

.map-embed { margin-top: 2.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 320px; display: block; border: none; }

/* === ABOUT PAGE === */
.founder-section { background: var(--bg-warm); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.founder-img { aspect-ratio: 3/4; background: var(--bg-warm-2); border-radius: var(--radius-lg); overflow: hidden; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.value-card { padding: 2rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.value-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--gray-text); }

/* === COMMUNITY BANNER === */
.community-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.community-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(214,191,144,.05) 0%, transparent 60%);
}
.community-banner > * { position: relative; }
.community-banner h2 { color: var(--white); margin-bottom: .75rem; }
.community-banner .eyebrow { color: var(--gold-deep); }
.community-banner .lead { color: rgba(255,255,255,.75); margin-inline: auto; margin-bottom: 2rem; }
.community-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding-block: 4rem 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo-name { color: var(--white); font-size: 1.1rem; }
.footer-brand p { font-size: .875rem; margin-top: 1rem; max-width: 28ch; line-height: 1.6; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
}

/* === UTILITY === */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-sm { margin-top: .75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.gap-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-warm) 25%, var(--bg-warm-2) 50%, var(--bg-warm) 75%);
  background-size: 200% 100%;
  animation: skeleton-wave 1.4s ease infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-wave { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-teaser-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-teaser-img, .founder-img { aspect-ratio: 16/9; order: -1; }
  .event-card { grid-template-columns: 64px 1fr; }
  .event-card .event-price { grid-column: 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 56px 1fr; }
}
