:root {
  --blue-950: #061d37;
  --blue-900: #082d54;
  --blue-800: #0b3f78;
  --blue-700: #11579b;
  --blue-500: #2e8dd5;
  --sky-200: #bfe7ff;
  --sky-100: #eaf7ff;
  --gold-500: #d9a52a;
  --gold-400: #f0c958;
  --gold-300: #ffe18a;
  --cream: #fffaf0;
  --white: #ffffff;
  --ink: #102130;
  --muted: #5f7080;
  --shadow: 0 22px 55px rgba(6, 29, 55, .15);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg { max-width: 100%; }

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 999;
  background-image: radial-gradient(circle at center, #000 0.6px, transparent 0.7px);
  background-size: 5px 5px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.section-pad { padding: 100px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(6, 29, 55, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.16);
}
.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,225,138,.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font-size: 24px;
  flex: 0 0 auto;
}
.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: .01em;
  white-space: nowrap;
}
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a {
  color: rgba(255,255,255,.9);
  font-size: .93rem;
  font-weight: 700;
  position: relative;
  padding: 8px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: white;
  margin: 5px 0;
  transition: .25s ease;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding-top: 150px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)),
    radial-gradient(circle at 15% 15%, rgba(191,231,255,.7), transparent 34%),
    linear-gradient(135deg, #70bde9 0%, #cceeff 42%, #0b3f78 43%, #061d37 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(to top, rgba(6,29,55,.26), transparent);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .55;
  border: 1px solid rgba(255,255,255,.35);
}
.hero-orb-one { width: 320px; height: 320px; left: -110px; bottom: 30px; background: rgba(255,255,255,.15); }
.hero-orb-two { width: 170px; height: 170px; right: 7%; top: 14%; background: rgba(240,201,88,.18); }
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-800);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .76rem;
}
.eyebrow.light { color: var(--gold-300); }
.hero h1,
.section-heading h2,
.members h2,
.contact h2,
.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
}
.hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--blue-950);
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: .86;
  letter-spacing: -.045em;
  text-shadow: 0 2px 0 rgba(255,255,255,.28);
}
.hero h1 span {
  display: block;
  color: var(--gold-500);
  font-style: italic;
  text-shadow: 0 2px 0 #fff6d5, 0 7px 20px rgba(6,29,55,.16);
}
.hero-lead {
  max-width: 660px;
  margin: 28px 0 22px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #153856;
  font-weight: 650;
}
.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 690px;
}
.event-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(11,63,120,.12);
  color: var(--blue-900);
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(6,29,55,.07);
  backdrop-filter: blur(8px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: white;
  background: var(--blue-900);
  box-shadow: 0 16px 30px rgba(6,29,55,.22);
}
.btn-primary:hover { background: var(--blue-800); box-shadow: 0 20px 34px rgba(6,29,55,.28); }
.btn-secondary {
  color: var(--blue-900);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(11,63,120,.15);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--blue-950);
  box-shadow: 0 14px 30px rgba(217,165,42,.2);
}

.hero-art { min-height: 500px; display: grid; place-items: center; }
.instrument-card {
  width: min(100%, 470px);
  aspect-ratio: .86;
  position: relative;
  border-radius: 44px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.02)),
    linear-gradient(145deg, #0b4b8f, #061d37);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 35px 70px rgba(6,29,55,.35);
  overflow: hidden;
}
.instrument-card::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  right: -60px;
  top: -60px;
  background: radial-gradient(circle, rgba(240,201,88,.24), transparent 66%);
}
.gold-staff { position: absolute; inset: 12% 8% auto 12%; height: 220px; transform: rotate(-9deg); }
.gold-staff i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
}
.gold-staff i:nth-child(1){ top: 20px; }
.gold-staff i:nth-child(2){ top: 48px; }
.gold-staff i:nth-child(3){ top: 76px; }
.gold-staff i:nth-child(4){ top: 104px; }
.gold-staff i:nth-child(5){ top: 132px; }
.note { position: absolute; color: var(--gold-300); font-family: Georgia, serif; text-shadow: 0 8px 18px rgba(0,0,0,.25); }
.n1 { font-size: 66px; right: 18%; top: 5px; }
.n2 { font-size: 94px; left: 15%; top: 45px; }
.n3 { font-size: 74px; right: 32%; top: 110px; }
.hero-badge {
  position: absolute;
  left: 9%;
  bottom: 15%;
  color: white;
}
.hero-badge strong { display: block; font-family: Georgia, serif; font-size: clamp(3.7rem, 8vw, 6.6rem); line-height: .86; color: var(--gold-300); }
.hero-badge span { text-transform: uppercase; letter-spacing: .17em; font-size: .72rem; font-weight: 900; }
.location-card {
  position: absolute;
  right: 7%;
  bottom: 7%;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: white;
  backdrop-filter: blur(10px);
}
.location-card small { display: block; opacity: .68; margin-bottom: 3px; }
.pin { color: var(--gold-300); }
.music-notes span {
  position: absolute;
  color: rgba(255,255,255,.4);
  font-family: Georgia, serif;
  animation: floatNote 7s ease-in-out infinite;
}
.music-notes span:nth-child(1){ left: 7%; top: 18%; font-size: 44px; }
.music-notes span:nth-child(2){ left: 25%; bottom: 10%; font-size: 56px; animation-delay: 1s; }
.music-notes span:nth-child(3){ right: 4%; top: 33%; font-size: 38px; animation-delay: 2.2s; }
.music-notes span:nth-child(4){ right: 23%; bottom: 8%; font-size: 42px; animation-delay: .6s; }
.music-notes span:nth-child(5){ left: 48%; top: 11%; font-size: 30px; animation-delay: 3s; }
@keyframes floatNote { 0%,100%{ transform: translateY(0) rotate(0); } 50%{ transform: translateY(-18px) rotate(7deg); } }

.ticker { overflow: hidden; background: var(--blue-950); color: white; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: tickerMove 26s linear infinite;
  font-weight: 900;
  letter-spacing: .13em;
  font-size: .78rem;
}
.ticker-track b { color: var(--gold-400); font-size: 1.1rem; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

.about { background: #fffdf8; }
.split-grid { display: grid; grid-template-columns: 1fr .82fr; align-items: center; gap: 70px; }
.section-heading h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .98;
  letter-spacing: -.035em;
}
.section-heading p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.section-heading.centered { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.repertoire-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  position: relative;
}
.vinyl {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #061d37 0 7px, #0c3459 8px 11px),
    #061d37;
  box-shadow: 0 28px 60px rgba(6,29,55,.25);
  display: grid;
  place-items: center;
  animation: slowSpin 15s linear infinite;
}
.vinyl-ring {
  position: absolute;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.vinyl-center {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: Georgia, serif;
  font-weight: 900;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  line-height: .9;
  font-size: 1.45rem;
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
.floating-note { position: absolute; font-family: Georgia, serif; color: var(--gold-500); font-weight: 900; }
.floating-note.one { left: 9%; top: 15%; font-size: 62px; }
.floating-note.two { right: 8%; top: 21%; font-size: 82px; }
.floating-note.three { right: 15%; bottom: 10%; font-size: 54px; }

.events {
  background:
    linear-gradient(rgba(234,247,255,.93), rgba(234,247,255,.93)),
    radial-gradient(circle at 20% 30%, #fff 0 2px, transparent 2px);
  background-size: auto, 26px 26px;
}
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(11,63,120,.1);
  box-shadow: 0 12px 30px rgba(6,29,55,.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: .25s ease;
}
.event-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -55px;
  bottom: -55px;
  background: rgba(240,201,88,.2);
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(217,165,42,.4); }
.event-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-weight: 900;
  font-family: Georgia, serif;
}
.event-card h3 { margin: 42px 0 0; font-size: 1.35rem; color: var(--blue-950); }

.members {
  color: white;
  background:
    radial-gradient(circle at 80% 30%, rgba(240,201,88,.15), transparent 32%),
    linear-gradient(135deg, var(--blue-900), var(--blue-950));
}
.members-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.members h2 { margin: 0; font-size: clamp(2.8rem, 5vw, 5.2rem); line-height: .96; letter-spacing: -.035em; }
.members h2 span { color: var(--gold-300); }
.members p:not(.eyebrow) { color: rgba(255,255,255,.72); font-size: 1.05rem; }
.members-visual { min-height: 360px; position: relative; display: grid; align-items: end; }
.people-row { display: flex; align-items: end; justify-content: center; gap: clamp(8px, 1vw, 14px); padding-bottom: 62px; }
.person {
  display: block;
  width: 58px;
  height: 180px;
  border-radius: 32px 32px 16px 16px;
  background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
  position: relative;
  box-shadow: inset 0 -40px 0 rgba(6,29,55,.18), 0 18px 34px rgba(0,0,0,.18);
}
.person::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-300);
  box-shadow: 0 8px 16px rgba(0,0,0,.15);
}
.person.featured { height: 220px; width: 68px; }
.person.p1, .person.p5 { height: 150px; opacity: .72; }
.person.p2, .person.p4 { height: 175px; opacity: .88; }
.person.optional { opacity: .3; border: 1px dashed rgba(255,255,255,.7); background: transparent; box-shadow: none; }
.person.optional::before { background: rgba(255,255,255,.08); border: 1px dashed rgba(255,255,255,.6); box-shadow: none; }
.members-label {
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255,255,255,.08);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 900;
  line-height: .7;
}

.contact { background: #fff; }
.contact-panel {
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 64px);
  background: linear-gradient(140deg, #f0f9ff, #fffaf0);
  border: 1px solid rgba(11,63,120,.1);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 50px;
  align-items: center;
}
.contact h2 { margin: 0 0 32px; color: var(--blue-950); font-size: clamp(2.5rem, 5vw, 4.6rem); line-height: .95; }
.contact-list { display: grid; gap: 14px; }
.contact-item {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,63,120,.09);
}
a.contact-item { transition: .2s ease; }
a.contact-item:hover { transform: translateX(5px); border-color: rgba(217,165,42,.45); }
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-900);
  color: var(--gold-300);
  font-size: 1.3rem;
  flex: 0 0 auto;
}
.contact-item small { display: block; color: var(--muted); margin-bottom: 2px; }
.contact-item strong { color: var(--blue-950); font-size: 1.05rem; }
.call-card {
  min-height: 300px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 50% 30%, rgba(240,201,88,.18), transparent 24%),
    linear-gradient(145deg, var(--blue-800), var(--blue-950));
  box-shadow: 0 25px 55px rgba(6,29,55,.25);
  transition: .25s ease;
}
.call-card:hover { transform: translateY(-6px) rotate(-.5deg); }
.call-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(255,255,255,.06);
}
.call-card small { color: rgba(255,255,255,.62); text-transform: uppercase; letter-spacing: .16em; }
.call-card strong { margin-top: 8px; font-size: clamp(1.25rem, 3vw, 2rem); }

.social { background: var(--sky-100); }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.social-card {
  min-height: 180px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(11,63,120,.1);
  box-shadow: 0 12px 28px rgba(6,29,55,.07);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  color: var(--blue-950);
  font-weight: 900;
  transition: .25s ease;
}
.social-card:hover { transform: translateY(-7px) scale(1.01); box-shadow: var(--shadow); }
.social-card svg { width: 54px; height: 54px; fill: currentColor; }
.social-card.facebook:hover { color: #1877f2; }
.social-card.tiktok:hover { color: #111; }
.social-card.instagram:hover { color: #b83280; }
.social-card.linkedin:hover { color: #0a66c2; }

.final-cta {
  background: linear-gradient(135deg, #0d4c8d, #061d37);
  color: white;
}
.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  position: relative;
  overflow: hidden;
}
.final-card::after {
  content: "♪";
  position: absolute;
  right: 28%;
  top: -55px;
  color: rgba(255,255,255,.05);
  font-family: Georgia, serif;
  font-size: 220px;
  transform: rotate(10deg);
}
.final-card h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 4.2rem); line-height: 1; }
.final-card p:not(.eyebrow) { margin: 14px 0 0; color: rgba(255,255,255,.72); }

.site-footer { background: #031423; color: rgba(255,255,255,.72); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.footer-inner > div:first-child { display: grid; gap: 5px; }
.footer-inner strong { color: white; }
.footer-inner a { color: var(--gold-300); font-weight: 900; }
.footer-social { display: flex; gap: 8px; }
.footer-social span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  color: white;
  font-weight: 800;
  font-size: .8rem;
}

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 16px 30px rgba(6,29,55,.32);
  font-size: 1.45rem;
  animation: pulseCall 2.2s ease-in-out infinite;
}
@keyframes pulseCall {
  0%,100% { box-shadow: 0 16px 30px rgba(6,29,55,.32), 0 0 0 0 rgba(240,201,88,.45); }
  50% { box-shadow: 0 16px 30px rgba(6,29,55,.32), 0 0 0 12px rgba(240,201,88,0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 96px;
    padding: 20px;
    border-radius: 22px;
    display: grid;
    gap: 4px;
    background: rgba(6,29,55,.98);
    box-shadow: 0 22px 55px rgba(0,0,0,.3);
    transform: translateY(-18px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
  }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: 13px 12px; border-radius: 12px; }
  .main-nav a:hover { background: rgba(255,255,255,.07); }
  .hero { min-height: auto; }
  .hero-grid, .split-grid, .members-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .hero-art { min-height: 420px; }
  .instrument-card { max-width: 430px; }
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .members-copy { max-width: 720px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 72px 0; }
  .header-inner { height: 74px; }
  .brand-text { max-width: 210px; white-space: normal; line-height: 1.03; }
  .hero { padding-top: 118px; background: linear-gradient(150deg, #bfe7ff 0%, #dff4ff 51%, #0b3f78 52%, #061d37 100%); }
  .hero h1 { font-size: clamp(3rem, 16vw, 5.1rem); }
  .hero-lead { font-size: 1.03rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-art { min-height: 360px; }
  .instrument-card { border-radius: 30px; }
  .location-card { left: 7%; right: 7%; justify-content: center; }
  .hero-badge { bottom: 25%; }
  .section-heading h2, .members h2, .contact h2 { font-size: clamp(2.4rem, 11vw, 3.7rem); }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 165px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-card { min-height: 150px; }
  .members-visual { min-height: 300px; overflow: hidden; }
  .people-row { transform: scale(.78); transform-origin: bottom center; width: 128%; margin-left: -14%; }
  .members-label { font-size: 7rem; }
  .contact-panel { padding: 28px 20px; }
  .call-card { min-height: 240px; }
  .final-card { flex-direction: column; align-items: flex-start; padding: 30px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .floating-call { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Cloudflare-safe progressive enhancement: content stays visible if JavaScript is unavailable. */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

.header-social {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}
.header-social-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.header-social-icon:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(240,201,88,.18);
  border-color: rgba(255,225,138,.7);
}
.header-social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (max-width: 1120px) {
  .header-social { display: none; }
}
