/* ============================================================
   EXPRESSIVE SINGING — GLOBAL STYLESHEET
   Aesthetic: Editorial · Organic · Refined
   ============================================================ */

:root {
  --cream:    #f8f4ee;
  --cream-dk: #ede6d8;
  --forest:   #1e3a2f;
  --forest-lt:#2d5243;
  --gold:     #c9a84c;
  --gold-lt:  #e6c97a;
  --charcoal: #2c2c2c;
  --muted:    #7a7264;
  --white:    #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --nav-h: 72px;
  --radius: 12px;
  --max-w: 1200px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  background: rgba(248, 244, 238, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
  z-index: 1000;
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
}
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--forest);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--forest); }

.lang-btn {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--forest); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.25s ease;
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?w=1800&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 40, 30, 0.75) 0%,
    rgba(20, 40, 30, 0.55) 60%,
    rgba(201, 168, 76, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 8vw, 120px);
  max-width: 860px;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-line {
  display: block;
  animation: fadeUp 0.8s ease both;
}
.hero-title-line:nth-child(2) { animation-delay: 0.1s; }
.hero-title-line:nth-child(3) { animation-delay: 0.2s; }
.hero-title .italic { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  font-size: 1rem;
  padding: 16px 40px;
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
}
.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-lt);
  transform: translateY(-2px);
}
.text-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
.text-link:hover { color: var(--forest); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 60px); }
.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 48px;
}

/* ============================================================
   ENTITIES (Two-card split)
   ============================================================ */
.entities {
  background: var(--white);
  text-align: center;
}
.entities-intro { margin-bottom: 56px; }
.entities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.entity-card {
  position: relative;
  padding: 52px 44px;
  border-radius: var(--radius);
  text-align: left;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.entity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.entity-card--association {
  background: var(--forest);
  color: var(--white);
}
.entity-card--company {
  background: var(--cream-dk);
  color: var(--charcoal);
}
.entity-card-icon { font-size: 2rem; }
.entity-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
}
.entity-card--association .entity-card-title { color: var(--gold-lt); }
.entity-card--company .entity-card-title { color: var(--forest); }
.entity-card-desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 380px;
}
.entity-card-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.entity-card-tags span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 600;
}
.entity-card--association .entity-card-tags span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}
.entity-card--company .entity-card-tags span {
  background: rgba(30,58,47,0.1);
  color: var(--forest);
}
.entity-card-cta {
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.entity-card--association .entity-card-cta { color: var(--gold-lt); }
.entity-card--company .entity-card-cta { color: var(--forest); }

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: var(--forest);
  padding: clamp(80px, 12vw, 140px) clamp(20px, 8vw, 120px);
  text-align: center;
}
.big-quote {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 8px;
}
.big-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================================
   ACTIVITIES
   ============================================================ */
.activities {
  background: var(--cream);
  text-align: center;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.activity-icon { font-size: 2rem; }
.activity-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  font-weight: 700;
}
.activity-card p {
  font-size: 0.95rem;
  color: var(--muted);
  flex: 1;
}

/* ============================================================
   NEXT EVENT BANNER
   ============================================================ */
.next-event {
  background: linear-gradient(135deg, var(--gold) 0%, #a87d30 100%);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  text-align: center;
}
.next-event-content { max-width: 640px; margin: 0 auto; }
.next-event .section-eyebrow { color: rgba(30,58,47,0.7); }
.next-event h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--forest);
  margin-bottom: 16px;
}
.next-event p { color: rgba(30,58,47,0.8); margin-bottom: 32px; font-size: 1.05rem; }
.next-event .btn-primary {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.next-event .btn-primary:hover { background: var(--forest-lt); border-color: var(--forest-lt); }

/* ============================================================
   MEMBER CTA
   ============================================================ */
.member-cta {
  background: var(--white);
}
.member-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.member-cta .section-title { margin-bottom: 12px; }
.member-cta p:last-of-type {
  color: var(--muted);
  max-width: 500px;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-group-title {
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-links-group, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-group a, .footer-social-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links-group a:hover, .footer-social-links a:hover { color: var(--gold); }
.footer-social-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 5vw, 60px) 60px;
  position: relative;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,30,0.9) 0%, rgba(20,40,30,0.4) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 16px;
}

/* ============================================================
   CONTENT SECTIONS (inner pages)
   ============================================================ */
.content-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
}
.content-section--alt { background: var(--white); }
.content-section--forest { background: var(--forest); color: var(--white); }
.content-section--forest .section-title { color: var(--gold-lt); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col--reverse .two-col-img { order: 2; }
.two-col--reverse .two-col-text { order: 1; }
.two-col-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.two-col-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--forest);
  font-weight: 400;
  margin-bottom: 20px;
}
.two-col-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 30px 28px;
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 10px;
  min-height: 2.6em;
}
.value-card p { font-size: 0.92rem; color: var(--muted); }

/* TEAM GRID */
/* WHO WE ARE — intro + family collage */
.who-we-are-text {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: left;
}
.who-we-are-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 20px;
}
.who-we-are-text p:last-child { margin-bottom: 0; }

.family-collage {
  column-count: 3;
  column-gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.family-collage img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
  border-radius: 12px;
  break-inside: avoid;
  transition: transform var(--transition), box-shadow var(--transition);
}
.family-collage img:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* INSTAGRAM FEED */
.ig-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}
.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.ig-tile:hover img { transform: scale(1.05); }
.ig-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-size: 0.78rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0) 55%);
  opacity: 0;
  transition: opacity var(--transition);
}
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
@media (max-width: 680px) {
  .ig-feed { grid-template-columns: repeat(2, 1fr); }
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.profile-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
}
.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.profile-card:hover .profile-img-wrap img { transform: scale(1.04); }
.profile-info { padding: 24px; }
.profile-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.profile-role {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.profile-bio { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* MEMBERSHIP CARDS */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.membership-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.membership-card.featured { border-color: var(--gold); }
.membership-card .btn { margin-top: auto; align-self: center; }
.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.membership-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.membership-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 20px 0 8px;
}
.membership-price span { font-size: 1rem; font-weight: 400; color: var(--muted); }
.membership-card ul {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.membership-card li {
  font-size: 0.92rem;
  color: var(--muted);
}
.membership-card li::before { content: '✓  '; color: var(--forest); font-weight: 700; }

/* FREE DONATION */
.donation-callout {
  max-width: 660px;
  margin: 52px auto 0;
  text-align: center;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}
.donation-callout-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-lt);
  font-weight: 600;
  margin-bottom: 8px;
}
.donation-callout-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.donation-callout-text {
  color: rgba(255,255,255,0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* PAYMENT METHODS */
.payment-methods { margin-top: 52px; }
.payment-methods-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-lt);
  text-align: center;
  margin-bottom: 8px;
}
.payment-methods-sub {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
}
.payment-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.payment-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 22px;
}
.twint-qr {
  width: 190px;
  height: auto;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.bank-details {
  width: 100%;
  margin: 0;
  text-align: left;
}
.bank-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bank-row:last-child { border-bottom: none; }
.bank-row dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-lt);
  margin-bottom: 4px;
}
.bank-row dd {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
}
.payment-note {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.6;
  margin-top: auto;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .payment-grid { grid-template-columns: 1fr; }
}

/* CLASSES GRID */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: stretch;
}
.class-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.class-card-header {
  background: var(--forest);
  padding: 26px 26px;
  color: var(--white);
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.class-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold-lt);
  line-height: 1.15;
}
.class-card-tag {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}
.class-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.class-facts { list-style: none; margin: 0 0 22px; }
.class-facts li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--cream-dk);
  font-size: 0.9rem;
}
.class-facts li:first-child { padding-top: 0; }
.fact-k { color: var(--muted); white-space: nowrap; }
.fact-v { color: var(--forest); font-weight: 500; text-align: right; }
.class-price {
  margin-top: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.class-price-amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.class-price-sub { font-size: 0.9rem; color: var(--muted); min-height: 1.2em; }
.class-card-body .btn {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

/* EVENTS */
.events-list {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.event-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.event-date {
  align-self: flex-start;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-align: center;
  background: var(--forest);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 14px;
}
.event-date .day { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.event-date .month { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); }
.event-info { display: flex; flex-direction: column; gap: 6px; }
.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  min-height: 2.6em;
}
.event-info p { font-size: 0.9rem; color: var(--muted); }
.event-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}
.event-price { font-weight: 700; color: var(--forest); font-size: 1.05rem; }
.event-status { font-size: 0.85rem; color: var(--muted); }
.event-link { font-size: 0.85rem; color: var(--gold); font-weight: 600; white-space: nowrap; }
.event-link:hover { color: var(--forest); }
.event-buy-btn { padding: 8px 20px; font-size: 0.82rem; min-height: 0; letter-spacing: 0.06em; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 28px; }
.blog-tag {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-body p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--forest);
  margin-bottom: 16px;
}

/* CONTACT ACTION BUTTONS (primary) */
.contact-actions-lead {
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.contact-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-action {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 18px 24px;
  background: var(--white);
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.contact-action-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-action-value { font-size: 1.08rem; color: var(--forest); font-weight: 500; word-break: break-word; }
.contact-action--wa { background: var(--forest); border-color: var(--forest); }
.contact-action--wa:hover { background: var(--forest-lt); border-color: var(--forest-lt); }
.contact-action--wa .contact-action-label { color: var(--gold-lt); }
.contact-action--wa .contact-action-value { color: var(--white); }

/* FORM (secondary) */
.contact-form-wrap { padding-top: 8px; }
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--forest);
  margin: 4px 0 24px;
}
.contact-detail {
  margin-bottom: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-detail p { font-size: 0.95rem; color: var(--muted); }
.contact-detail strong { color: var(--charcoal); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dk);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--forest); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.fade-in {
  opacity: 1;
  transform: none;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .entities-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reverse .two-col-img,
  .two-col--reverse .two-col-text { order: unset; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .member-cta-inner { flex-direction: column; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(20px, 5vw, 40px) 32px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { color: var(--forest); font-size: 1rem; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .family-collage { column-count: 2; }
  .classes-grid { grid-template-columns: 1fr; }
}
