/* ==========================================================================
   RALLE MOVEMENTS — Main Stylesheet
   Brand: Questrial (Google Fonts), Barlow
   Colors: Navy #0a0e16, Blue #253a73, Gray-blue #5c6774, Off-white #f4f4f0
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0a0e16;
  --blue: #253a73;
  --gray-blue: #5c6774;
  --off-white: #f4f4f0;
  --white: #ffffff;
  --black: #191919;
  --font-primary: 'Questrial', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-secondary: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  /* Sticky-header offset for scroll-margin-top on deep-link anchor targets. */
  --nav-height: 96px;
}

/* Anchor targets reached via dropdown sub-items: keep section headings clear
   of the fixed site-header after smooth-scroll lands. */
[id^="connect-"],
[id^="about-"],
[id^="partners-"] {
  scroll-margin-top: var(--nav-height);
}

html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--black);
  background-color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

::selection {
  background-color: var(--navy);
  color: var(--off-white);
}

@media (min-width: 800px) {
  body { font-size: 1.6rem; }
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(10, 14, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-img {
  height: 3.6rem;
  width: auto;
  filter: brightness(0) invert(1);
  /* Optical nudge: the PNG has more whitespace below the wordmark than above,
     so it sits visually high relative to the nav pills. Drop it ~5px to align. */
  transform: translateY(5px);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--font-secondary);
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  background: var(--white);
  color: var(--navy);
}

.nav__link:hover .nav__dot,
.nav__link.active .nav__dot {
  background: var(--navy);
}

.nav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  transition: background 0.2s;
}

.nav__divider {
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  user-select: none;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 0.8rem;
}

@media (min-width: 900px) {
  .nav__actions { display: flex; }
}

.nav__action-btn {
  display: inline-block;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: var(--font-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  transition: all 0.2s;
  text-transform: uppercase;
}

.nav__action-btn:hover {
  background: var(--white);
  color: var(--navy);
}

.nav__action-btn--cart {
  background: var(--white);
  color: var(--navy);
}

/* Mobile Toggle */
.nav__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.nav__mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav__mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

@media (min-width: 900px) {
  .nav__mobile-toggle { display: none; }
}

/* --- Mega Dropdown --- */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 14, 22, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-dropdown.open {
  max-height: 80vh;
}

.mega-dropdown__inner {
  display: flex;
  padding: 3rem 4rem 4rem;
  gap: 4rem;
}

.mega-dropdown__categories {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mega-cat {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  transition: opacity 0.2s;
  font-family: var(--font-primary);
}

.mega-cat:hover {
  opacity: 0.6;
}

.mega-cat sup {
  font-size: 1.2rem;
  vertical-align: super;
  opacity: 0.5;
  font-family: var(--font-secondary);
}

.mega-dropdown__featured {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  max-height: 60vh;
}

.mega-featured-card__img {
  width: 100%;
  height: 18rem;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.mega-featured-card__img--product {
  background-size: contain;
  background-repeat: no-repeat;
}

.mega-featured-card__meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mega-featured-card__tag {
  background: var(--blue);
  color: var(--white);
  padding: 0.2rem 0.8rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2px;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu__link {
  font-size: 4rem;
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.mobile-menu__link:hover {
  opacity: 0.6;
}

.mobile-menu__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.mobile-menu__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-menu__link--toggle {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.mobile-menu__chev {
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
}
.mobile-menu__link--toggle[aria-expanded="true"] .mobile-menu__chev {
  transform: rotate(45deg);
}
.mobile-menu__sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 0.25rem;
}
.mobile-menu__sub[hidden] { display: none; }
.mobile-menu__sublink {
  font-size: 1.6rem;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.mobile-menu__sublink:hover { opacity: 1; }

@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* --- Hero --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,22,0.25) 0%,
    rgba(10,14,22,0.1) 40%,
    rgba(10,14,22,0.55) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tagline {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  font-weight: 300;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .hero__tagline {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    max-width: 88%;
    margin: 0 auto;
    text-align: center;
    /* Offset the trailing letter-spacing so the text appears optically centered */
    padding-left: 0.18em;
  }
}

.hero__bottom-left {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 1.1rem;
  color: var(--white);
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.4;
}

.hero__time {
  font-variant-numeric: tabular-nums;
}

.hero__pause-btn {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.hero__pause-btn:hover {
  opacity: 1;
}

/* --- Pages --- */
.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

/* Page header video backgrounds */
.page__header {
  padding: 12rem 4rem 4rem;
}

.page__header--video {
  position: relative;
  overflow: hidden;
}

.page__header-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.page__header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,14,22,0.55) 0%,
    rgba(10,14,22,0.4) 50%,
    rgba(10,14,22,0.7) 100%
  );
  z-index: 1;
}

.page__header-overlay--light {
  background: linear-gradient(
    to bottom,
    rgba(244,244,240,0.6) 0%,
    rgba(244,244,240,0.45) 50%,
    rgba(244,244,240,0.75) 100%
  );
}

.page__header--video .page__title {
  position: relative;
  z-index: 2;
}

.page__header--dark {
  background: var(--navy);
}

.page__header--light {
  background: var(--off-white);
}

.page__header--blue {
  background: var(--blue);
}

.page__header--navy {
  background: var(--navy);
}

.page__header--gray {
  background: var(--gray-blue);
}

.page__title {
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 400;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-family: var(--font-primary);
}

.page__title--dark {
  color: var(--black);
}

/* --- Events Page --- */
.page--events {
  background: var(--navy);
  color: var(--white);
}

.events-layout {
  display: flex;
  min-height: 80vh;
}

/* Sweatpals widget host: full-width container, single column, room to render */
.events-layout--sweatpals {
  display: block;
  padding: 2rem clamp(1rem, 4vw, 4rem) 4rem;
  background: #ffffff;
  min-height: 80vh;
}
.events-layout--sweatpals > div,
.events-layout--sweatpals iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.events-views {
  display: block;
  background: #ffffff;
}

.events-view {
  display: none;
}

.events-view.events-view--active {
  display: block;
}

.events-view__placeholder {
  padding: 6rem clamp(1rem, 4vw, 4rem);
  font-size: 1.5rem;
  color: #555;
  text-align: center;
  background: #ffffff;
  border: 1px dashed rgba(0,0,0,0.2);
  margin: 2rem clamp(1rem, 4vw, 4rem);
  border-radius: 4px;
}

.page--events .events-intro {
  background: #ffffff;
  color: #111;
  padding: 3rem clamp(1rem, 4vw, 4rem) 2rem;
}

.page--events .events-intro__title {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 8px;
  max-width: 80rem;
}

.page--events .events-intro__sub {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 80rem;
}

.page--events .events-disclaimer {
  background: #ffffff;
  color: #444;
  padding: 2rem clamp(1rem, 4vw, 4rem) 4rem;
  border-top: 1px solid rgba(0,0,0,0.15);
}

.page--events .events-disclaimer p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 90rem;
}

.page--events .events-disclaimer strong {
  color: #111;
}

/* ==========================================================================
   Good Saturdays — Marquee experience
   ========================================================================== */

/* Hide the generic events-intro when the Good Saturdays view is active —
   the GS hero replaces it. */
.page--events:has(.events-view--gs.events-view--active) .events-intro { display: none; }

/* Override .events-layout--sweatpals padding/background for the GS view so
   the hero can go edge-to-edge on a dark canvas. */
.events-view--gs.events-layout--sweatpals {
  background: #0a0a0a;
  color: #FFFFF7;
  padding: 0 0 6rem;
}

/* --- USAL-style moment hero ---
   Single immersive video moment on a dark, full-bleed canvas. Sparse
   small-caps chrome in the corners (top-left/right meta, bottom-left
   meta, bottom-right CTA). No panels, no rounded gaps, no grid. The
   video is centered, sized to the canvas height — the whole canvas IS
   the hero. Title and tagline sit beneath the video for context. */

.gs-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  min-height: 80vh;
  padding: 6rem clamp(2rem, 4vw, 4rem) 5rem;
  background: #050505;
}

/* Sparse small-caps chrome — USAL trick: meta info anchored to corners. */
.gs-hero__chrome {
  position: absolute;
  left: clamp(2rem, 4vw, 4rem);
  right: clamp(2rem, 4vw, 4rem);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 247, 0.55);
}

.gs-hero__chrome--top { top: 2rem; }
.gs-hero__chrome--bottom { bottom: 2rem; align-items: center; }

.gs-hero__chrome a { color: rgba(255, 255, 247, 0.85); text-decoration: none; }
.gs-hero__chrome a:hover { color: #FFFFF7; }

@media (max-width: 600px) {
  .gs-hero__chrome { font-size: 1rem; letter-spacing: 0.12em; }
  .gs-hero__chrome span:nth-child(1) { max-width: 60%; }
}

.gs-hero__media {
  /* Portrait video sized to the canvas — letterboxed against the dark
     background rather than cropped. Keeps the full clip visible. */
  height: clamp(38rem, 60vh, 56rem);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #000;
}

.gs-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gs-hero__title {
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #FFFFF7;
  text-align: center;
}

.gs-hero__tagline {
  font-family: var(--font-primary, 'Questrial', sans-serif);
  font-size: clamp(1.5rem, 1.8vw, 1.9rem);
  font-style: italic;
  line-height: 1.3;
  margin: -0.4rem 0 0;
  color: rgba(255, 255, 247, 0.7);
  text-align: center;
}

/* CTA in the bottom-right chrome — keep it sparse, no pill button. */
.gs-hero__cta {
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 247, 0.85);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 247, 0.4);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.gs-hero__cta:hover {
  color: #FFFFF7;
  border-bottom-color: #FFFFF7;
}

/* --- Photo moment: single full-bleed image, crossfade through the day --- */

.gs-moment {
  position: relative;
  width: 100%;
  height: clamp(50rem, 80vh, 72rem);
  background: #050505;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 247, 0.06);
}

.gs-moment__chrome {
  position: absolute;
  top: 2rem;
  left: clamp(2rem, 4vw, 4rem);
  right: clamp(2rem, 4vw, 4rem);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 247, 0.85);
  pointer-events: none;
}

.gs-moment__index { color: rgba(255, 255, 247, 0.55); }

.gs-moment__stack {
  position: absolute;
  inset: 0;
}

.gs-moment__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  /* New source photos are 16:9 landscape with subjects mid-frame;
     default center crops cleanly without losing heads. */
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

.gs-moment__slide.gs-moment__slide--active { opacity: 1; }

/* Tighten vertical rhythm on the events page when GS is active so the
   user lands on title + video together. NYC/TC retain their spacing. */
#page-events .page__header {
  padding-block: 40px 20px;
}

/* --- Format strip --- */

/* ==========================================================================
   Good Saturdays — editorial sections
   Shared chrome, then per-section blocks: Day, Workout (formats),
   Social, Includes, Dates. USAL-style: sparse small-caps labels,
   generous whitespace, photos as the heavy lifters.
   ========================================================================== */

.gs-section__chrome,
.gs-section__label {
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 247, 0.55);
}

.gs-section__chrome {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 247, 0.08);
  margin-bottom: 4rem;
}

@media (max-width: 600px) {
  .gs-section__chrome { font-size: 1rem; flex-direction: column; gap: 0.4rem; }
}

/* Generic h3 treatment for the editorial section leads. */
.gs-day h3,
.gs-formats__lead h3,
.gs-social__lead h3,
.gs-dates__heading {
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #FFFFF7;
  margin: 0 0 1.6rem;
}

.gs-day__lead p,
.gs-formats__lead p,
.gs-social__lead p {
  font-size: clamp(1.5rem, 1.7vw, 1.8rem);
  line-height: 1.55;
  color: rgba(255, 255, 247, 0.7);
  max-width: 64rem;
  margin: 0;
}

/* --- The Day · itinerary (condensed: tighter padding, smaller type) --- */

.gs-day {
  padding: clamp(4rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid rgba(255, 255, 247, 0.08);
}

.gs-day__lead { margin-bottom: 3rem; max-width: 80rem; }

.gs-day__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.gs-day__item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: clamp(1.6rem, 3vw, 4rem);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255, 255, 247, 0.08);
  align-items: baseline;
}

.gs-day__item:last-child { border-bottom: 1px solid rgba(255, 255, 247, 0.08); }

@media (max-width: 600px) {
  .gs-day__item { grid-template-columns: 1fr; gap: 0.3rem; padding: 1.2rem 0; }
}

.gs-day__time {
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 247, 0.55);
}

.gs-day__detail h4 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 0.3rem;
  color: #FFFFF7;
}

.gs-day__detail p {
  font-size: 1.3rem;
  line-height: 1.5;
  color: rgba(255, 255, 247, 0.55);
  margin: 0;
  max-width: 56rem;
}

/* --- The Workout · pick two of three --- */

.gs-formats {
  padding: clamp(6rem, 9vw, 10rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid rgba(255, 255, 247, 0.08);
}

.gs-formats__lead { margin-bottom: 5rem; max-width: 80rem; }

.gs-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
}

@media (max-width: 900px) {
  .gs-formats__grid { grid-template-columns: 1fr; gap: 4rem; }
}

.gs-format-card {
  display: flex;
  flex-direction: column;
}

.gs-format-card__img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.8rem;
}

.gs-format-card__num {
  display: block;
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 247, 0.5);
  margin-bottom: 0.8rem;
}

.gs-format-card h4 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.8rem;
  color: #FFFFF7;
}

.gs-format-card p {
  font-size: 1.4rem;
  line-height: 1.55;
  color: rgba(255, 255, 247, 0.65);
  margin: 0;
}

/* --- The Social · afternoon party --- */

.gs-social {
  padding: clamp(6rem, 9vw, 10rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid rgba(255, 255, 247, 0.08);
}

.gs-social__lead { margin-bottom: 5rem; max-width: 80rem; }

.gs-social__photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.4rem, 2vw, 2rem);
}

@media (max-width: 768px) {
  .gs-social__photos { grid-template-columns: 1fr; }
}

.gs-social__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}

.gs-social__photo--wide {
  aspect-ratio: 16 / 11;
}

@media (max-width: 768px) {
  .gs-social__photo--wide { aspect-ratio: 4 / 5; }
}

/* --- Included · Bring --- */

.gs-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 8rem);
  padding: clamp(6rem, 9vw, 10rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid rgba(255, 255, 247, 0.08);
}

@media (max-width: 768px) {
  .gs-includes { grid-template-columns: 1fr; gap: 4rem; }
}

.gs-includes__col .gs-section__label {
  display: block;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 247, 0.08);
}

.gs-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gs-includes li {
  font-size: clamp(1.5rem, 1.7vw, 1.8rem);
  line-height: 1.5;
  color: rgba(255, 255, 247, 0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 247, 0.06);
}

.gs-includes li:last-child { border-bottom: none; }

/* --- Upcoming dates list --- */

.gs-dates {
  padding: clamp(6rem, 9vw, 10rem) clamp(2rem, 5vw, 6rem);
  border-top: 1px solid rgba(255, 255, 247, 0.08);
}

.gs-dates__heading { margin-bottom: 4rem; }

.gs-dates__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gs-dates__row {
  display: grid;
  grid-template-columns: 14rem 1fr auto;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: baseline;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 247, 0.08);
}

.gs-dates__row:last-child { border-bottom: 1px solid rgba(255, 255, 247, 0.08); }

@media (max-width: 600px) {
  .gs-dates__row {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 1.4rem;
  }
  .gs-dates__title { grid-column: 1 / -1; order: 3; opacity: 0.7; font-size: 1.3rem; }
}

.gs-dates__date {
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFF7;
}

.gs-dates__title {
  font-size: 1.4rem;
  color: rgba(255, 255, 247, 0.6);
}

.gs-dates__cta {
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFF7;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 247, 0.4);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.gs-dates__cta:hover { border-bottom-color: #FFFFF7; }

.gs-dates__cta--soon {
  color: rgba(255, 255, 247, 0.4);
  border-bottom: none;
  cursor: default;
}

.gs-dates__row--active .gs-dates__date { color: var(--blue); }

/* --- RSVP / widget host --- */

.gs-rsvp {
  background: #ffffff;
  color: #111;
  margin: clamp(4rem, 6vw, 7rem) 0 0;
  padding: clamp(4rem, 6vw, 7rem) clamp(2rem, 5vw, 6rem) 4rem;
}

.gs-rsvp__heading {
  max-width: 80rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.gs-rsvp__eyebrow {
  display: block;
  font-family: var(--font-secondary, 'Barlow', sans-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.gs-rsvp__heading h3 {
  font-size: clamp(3.6rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #111;
}

.gs-rsvp__heading p {
  font-size: 1.5rem;
  color: #666;
  margin: 0;
}

.events-layout__list {
  flex: 1;
  padding: 0 2rem 4rem 4rem;
}

.events-layout__images {
  display: none;
  width: 35%;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem;
  padding: 0 2rem 4rem 0;
}

@media (min-width: 1000px) {
  .events-layout__images { display: flex; }
}

.events-filters {
  margin-bottom: 2rem;
}

.events-filters__toggle {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-size: 1.2rem;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  transition: all 0.2s;
}

.events-filters__toggle:hover {
  background: rgba(255,255,255,0.1);
}

.events-filters__panel {
  display: none;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 2rem;
}

.events-filters__panel.open {
  display: flex;
  flex-wrap: wrap;
}

.events-filters__group h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.8rem;
  font-family: var(--font-secondary);
  font-weight: 600;
}

.events-filters__group a {
  display: block;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0;
  transition: color 0.2s;
  font-family: var(--font-secondary);
}

.events-filters__group a:hover,
.events-filters__group a.active {
  color: var(--white);
}

.events-filters__group a.active::before {
  content: '● ';
  color: var(--white);
}

/* Event Rows */
.event-row {
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
  cursor: pointer;
}

.event-row:hover {
  background: rgba(255,255,255,0.04);
  padding-left: 1rem;
  padding-right: 1rem;
}

.event-row__date {
  opacity: 0.6;
}

.event-row__title {
  font-weight: 500;
}

.event-row__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  opacity: 0.7;
  white-space: nowrap;
}

.event-row__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  display: inline-block;
}

/* Events Image Cards */
.events-img-card {
  position: relative;
}

.events-img-card__img {
  width: 100%;
  height: 22rem;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.events-img-card__meta {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.events-img-card__dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
}

/* Events video card */
.events-img-card--video {
  border-radius: 4px;
  overflow: hidden;
}

.events-img-card__video {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* --- Shop Page --- */
.page--shop {
  background: var(--white);
}

.shop-layout {
  padding: 0 4rem 6rem;
}

.shop-filters {
  display: flex;
  gap: 0.8rem;
  padding: 2rem 0 3rem;
  flex-wrap: wrap;
}

.shop-filters__btn {
  font-size: 1.1rem;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.6rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50px;
  color: var(--black);
  transition: all 0.2s;
  font-weight: 500;
}

.shop-filters__btn:hover,
.shop-filters__btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  gap: 3rem 2rem;
}

.product-card {
  cursor: pointer;
}

.product-card__img {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--off-white);
  border-radius: 4px;
  transition: transform 0.3s;
}

.product-card:hover .product-card__img {
  transform: scale(1.02);
}

.product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__name {
  font-weight: 500;
}

.product-card__price {
  font-weight: 600;
  white-space: nowrap;
}

.shop-coming-soon {
  text-align: center;
  padding: 5rem 2rem;
  font-size: 1.6rem;
  font-family: var(--font-secondary);
  color: var(--gray-blue);
  letter-spacing: 0.04em;
  font-style: italic;
}

.shop-empty {
  text-align: center;
  padding: 5rem 2rem;
  font-size: 1.4rem;
  font-family: var(--font-secondary);
  color: var(--gray-blue);
  letter-spacing: 0.04em;
}

.product-card__add {
  width: 100%;
  margin-top: 0.6rem;
  padding: 0.9rem 1.2rem;
  font-size: 1.05rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy, #0a0e16);
  border: 1px solid var(--navy, #0a0e16);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.product-card__add:hover {
  background: var(--white);
  color: var(--navy, #0a0e16);
}
.product-card__add:active {
  transform: scale(0.98);
}
.product-card__add.is-added {
  background: #1f6f3b;
  border-color: #1f6f3b;
  color: var(--white);
}

/* --- Cart Drawer --- */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  visibility: hidden;
}
.cart-drawer.open {
  pointer-events: auto;
  visibility: visible;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cart-drawer.open .cart-drawer__backdrop { opacity: 1; }

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--white, #fff);
  color: var(--navy, #0a0e16);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.2);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-drawer__title {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 0;
}
.cart-drawer__close {
  background: none;
  border: 0;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--navy, #0a0e16);
  cursor: pointer;
  padding: 0 0.4rem;
}

.cart-drawer__items {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  overflow-y: auto;
  flex: 1;
}
.cart-drawer__empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-secondary);
  color: var(--gray-blue, #656565);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 2rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 1rem;
  padding: 1rem 1.8rem;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.cart-item__img {
  width: 70px;
  height: 70px;
  background-size: cover;
  background-position: center;
  background-color: var(--off-white, #f4f4f0);
  border-radius: 4px;
}
.cart-item__name {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}
.cart-item__price {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--gray-blue, #656565);
  letter-spacing: 0.04em;
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  padding: 0.15rem 0.4rem;
  width: fit-content;
}
.cart-item__qty button {
  background: none;
  border: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--navy, #0a0e16);
}
.cart-item__qty span {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  min-width: 1.2rem;
  text-align: center;
}
.cart-item__remove {
  align-self: start;
  background: none;
  border: 0;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-blue, #656565);
  padding: 0;
}
.cart-item__remove:hover { color: var(--navy, #0a0e16); }

.cart-drawer__footer {
  padding: 1.4rem 1.8rem 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: var(--white, #fff);
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-secondary);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cart-drawer__note {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  color: var(--gray-blue, #656565);
  margin: 0 0 1rem;
}
.cart-drawer__checkout {
  width: 100%;
  padding: 1rem;
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white, #fff);
  background: var(--navy, #0a0e16);
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cart-drawer__checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart-drawer__checkout.is-loading { opacity: 0.6; cursor: wait; }
.cart-drawer__error {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  color: #b3261e;
  font-family: var(--font-secondary);
  text-align: center;
}

.checkout-toast[hidden] {
  display: none;
}
.checkout-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  background: var(--navy, #0a0e16);
  color: var(--white, #fff);
  padding: 1rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  max-width: calc(100% - 2rem);
}
.checkout-toast__close {
  background: none;
  border: 0;
  color: var(--white, #fff);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cart-drawer__panel { width: 100%; }
}

/* --- Product Quick-View Modal --- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.product-modal.open {
  display: flex;
}
.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.product-modal__panel {
  position: relative;
  background: var(--white, #fff);
  color: var(--navy, #0a0e16);
  width: 100%;
  max-width: 1080px;
  max-height: 92vh;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: productModalIn 0.25s ease-out;
}
@keyframes productModalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy, #0a0e16);
  transition: background 0.2s ease;
}
.product-modal__close:hover {
  background: #fff;
}
.product-modal__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  overflow-y: auto;
}
.product-modal__gallery {
  position: relative;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.product-modal__main-img {
  flex: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 380px;
  transition: background-image 0.2s ease;
}
.product-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy, #0a0e16);
  transition: background 0.2s ease;
  z-index: 1;
}
.product-modal__nav:hover {
  background: #fff;
}
.product-modal__nav--prev { left: 1rem; }
.product-modal__nav--next { right: 1rem; }
.product-modal__nav[hidden] { display: none; }
.product-modal__thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  background: #ececec;
}
.product-modal__thumbs[hidden] { display: none; }
.product-modal__thumb {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}
.product-modal__thumb.active {
  border-color: var(--navy, #0a0e16);
}
.product-modal__info {
  padding: 3rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-modal__name {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 0;
}
.product-modal__price {
  font-family: var(--font-secondary);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.product-modal__desc {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0.5rem 0 1.5rem;
}
.product-modal__sizes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.25rem 0 0.5rem;
}
.product-modal__sizes[hidden] { display: none; }
.product-modal__sizes-label {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #4a4a4a;
}
.product-modal__sizes-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-modal__size {
  min-width: 48px;
  padding: 0.55rem 0.9rem;
  background: #fff;
  color: var(--navy, #0a0e16);
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.product-modal__size:hover {
  border-color: var(--navy, #0a0e16);
}
.product-modal__size.selected {
  background: var(--navy, #0a0e16);
  color: var(--white, #fff);
  border-color: var(--navy, #0a0e16);
}
.product-modal__add[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.cart-item__size {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #6b6b6b;
  display: block;
  margin-top: 0.15rem;
}

.product-modal__add {
  background: var(--navy, #0a0e16);
  color: var(--white, #fff);
  border: 0;
  padding: 1rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 1rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}
.product-modal__add:hover {
  background: #1a2235;
}
.product-modal__add.is-added {
  background: #2e7d32;
}

/* Make product cards clearly clickable */
.product-card { cursor: pointer; }

@media (max-width: 760px) {
  .product-modal { padding: 0; }
  .product-modal__panel {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .product-modal__body {
    grid-template-columns: 1fr;
  }
  .product-modal__gallery {
    min-height: 320px;
  }
  .product-modal__main-img {
    min-height: 300px;
  }
  .product-modal__info {
    padding: 2rem 1.5rem 2rem;
  }
  .product-modal__name {
    font-size: 1.5rem;
  }
}

/* --- Connect Page --- */
.page--connect {
  background: var(--blue);
  color: var(--white);
}

.connect-layout {
  padding: 0 4rem 6rem;
}

.connect-section {
  padding: 4rem 0;
}

.connect-section__lead {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.connect-section__text p {
  font-size: 1.6rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 70rem;
}

.connect-cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 1.3rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--white);
  padding-bottom: 0.3rem;
  transition: opacity 0.2s;
}

.connect-cta:hover { opacity: 0.7; }

/* Connect Video Banner */
.connect-video-banner {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.connect-video-banner__video {
  width: 100%;
  height: 36rem;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .connect-video-banner__video { height: 24rem; }
}

/* Connect Photos */
.connect-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 4rem;
}

.connect-photo {
  height: 28rem;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Press */
.connect-section--press {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.connect-section__heading {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.connect-press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 2rem;
}

.press-card {
  transition: opacity 0.2s;
}

.press-card:hover { opacity: 0.8; }

.press-card__img {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.press-card__title {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.press-card__source {
  font-size: 1.2rem;
  opacity: 0.6;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero (intro) section: 2-col copy + photo split on desktop. */
.connect-section--hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 960px) {
  .connect-section--hero { grid-template-columns: 1fr; }
}

.connect-hero__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Community Values: 3-up photo tiles matching the .press-card aesthetic. */
.connect-section--values {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.connect-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media (max-width: 768px) {
  .connect-values { grid-template-columns: 1fr; }
}

.connect-value__photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  margin-bottom: 1.4rem;
}

.connect-value h4 {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
}

.connect-value p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.8;
}

/* Become a Ralle Lead: 60/40 photo + text split. */
.connect-section--lead {
  border-top: 1px solid rgba(255,255,255,0.2);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 960px) {
  .connect-section--lead { grid-template-columns: 1fr; }
}

.connect-lead__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.connect-lead {
  max-width: 70rem;
}

.connect-lead h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.connect-lead p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2rem;
}

/* Contact subtitle */
.connect-section__sub {
  font-size: 1.4rem;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.connect-section__sub a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}

.faq-item__a a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}

/* Contact Form */
.connect-section--contact {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.connect-contact__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 960px) {
  .connect-contact__split { grid-template-columns: 1fr; }
}

.connect-contact__photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* Thin photo divider before FAQ */
.connect-faq-divider {
  height: 18rem;
  background-size: cover;
  background-position: center;
  margin: 4rem 0 0;
  border-radius: 4px;
}

.connect-form {
  max-width: 60rem;
}

.connect-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
  .connect-form__row { grid-template-columns: 1fr; }
}

.connect-form__input,
.connect-form__textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.4rem;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  transition: border-color 0.2s;
}

.connect-form__input::placeholder,
.connect-form__textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.connect-form__input:focus,
.connect-form__textarea:focus {
  border-color: var(--white);
}

.connect-form__textarea {
  height: 14rem;
  resize: vertical;
  margin-bottom: 1.5rem;
}

.connect-form__submit {
  font-size: 1.3rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  transition: all 0.2s;
}

.connect-form__submit:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

/* FAQ */
.connect-section--faq {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.faq-list {
  max-width: 70rem;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 500;
  text-align: left;
}

.faq-item__q span {
  font-size: 2rem;
  opacity: 0.6;
  transition: transform 0.3s;
}

.faq-item.open .faq-item__q span {
  transform: rotate(45deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.8;
  transition: max-height 0.3s, padding 0.3s;
  padding: 0 0 0 0;
}

.faq-item.open .faq-item__a {
  max-height: 120rem;
  padding-bottom: 1.8rem;
}

.faq-item__a p {
  margin: 0 0 1rem;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

/* --- About Page --- */
.page--about {
  background: var(--navy);
  color: var(--white);
}

.about-layout {
  padding: 0 4rem 6rem;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 800px) {
  .about-intro { grid-template-columns: 1fr; }
}

.about-intro__lead {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.35;
  font-weight: 400;
}

.about-intro__story h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-intro__story p {
  font-size: 1.4rem;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

/* Vision & Mission */
.about-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 4rem 0;
  min-height: 50rem;
}

@media (max-width: 800px) {
  .about-vm { grid-template-columns: 1fr; }
}

.about-vm__img {
  background-size: cover;
  background-position: center;
  min-height: 40rem;
}

.about-vm__content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-vm__content h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.about-vm__block {
  margin-bottom: 2rem;
}

.about-vm__block h3 {
  font-size: 1.4rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.about-vm__block p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Movement Pillars */
.about-pillars {
  padding: 4rem 0;
}

.about-pillars__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
}

.about-pillar {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 4px;
}

.about-pillar__img {
  width: 100%;
  height: 50rem;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.about-pillar:hover .about-pillar__img {
  transform: scale(1.03);
}

/* About pillar with video */
.about-pillar--video {
  position: relative;
}

.about-pillar__video {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .about-pillar__video { height: 35rem; }
}

.about-pillar__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,22,0.85) 0%, rgba(10,14,22,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
}

.about-pillar__overlay h3 {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.about-pillar__overlay p {
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.8;
  max-width: 50rem;
}

/* Brand Values */
.about-values {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-values h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 3rem;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 3rem;
}

.about-value h4 {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: var(--font-secondary);
  margin-bottom: 0.8rem;
}

.about-value p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.75;
}

.about-team {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-team__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.about-team__lede {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 80rem;
  margin-bottom: 3rem;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media (max-width: 1023px) {
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .about-team__grid { grid-template-columns: 1fr; }
}

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card__photo {
  width: 100%;
  margin-bottom: 1.4rem;
}

.team-card__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
}

.team-card__header {
  margin-bottom: 1rem;
}

.team-card__name {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.team-card__role {
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  opacity: 0.7;
  font-family: var(--font-secondary);
}

.team-card__bio {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-card__bio li {
  font-size: 1.4rem;
  line-height: 1.55;
  opacity: 0.8;
  padding-left: 1.4rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.team-card__bio li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.team-card__bio a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-numbers {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-numbers__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 3rem;
}

.about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media (max-width: 1023px) {
  .about-numbers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .about-numbers__grid { grid-template-columns: 1fr; }
}

.about-numbers__stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.6rem 0;
}

.stat__value {
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 400;
  line-height: 1;
}

.stat__label {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  font-family: var(--font-secondary);
}

.about-move-together {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 4rem 0;
  min-height: 50rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 1023px) {
  .about-move-together { grid-template-columns: 1fr; min-height: 0; }
}

.move-together__media {
  min-height: 40rem;
  overflow: hidden;
}

.move-together__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.move-together__body {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.move-together__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  font-family: var(--font-secondary);
  margin-bottom: 1.2rem;
}

.move-together__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.move-together__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2.4rem;
  max-width: 60rem;
}

.move-together__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  opacity: 0.85;
}

.move-together__stats strong {
  font-weight: 500;
  font-family: var(--font-primary, inherit);
  font-size: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
  margin-right: 0.4rem;
}

.about-beginning {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.about-beginning h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 2rem;
}

.about-beginning > p {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 80rem;
  margin-bottom: 3rem;
}

.about-beginning__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.about-beginning__block h3 {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
}

.about-beginning__block p {
  font-size: 1.4rem;
  line-height: 1.6;
  opacity: 0.75;
}

/* --- Partners Page --- */
.page--partners {
  background: var(--gray-blue);
  color: var(--white);
}

.partners-layout {
  padding: 0 4rem 6rem;
  overflow-x: clip;
}

/* Partners: Hero / value-prop lead */
.partners-lead {
  padding: 4rem 0;
  max-width: 80rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 3rem;
}

.partners-lead__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  font-family: var(--font-secondary);
  margin-bottom: 1.4rem;
}

.partners-lead__title {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.partners-lead__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.4rem;
}

/* Partners: What We Offer */
.partners-services {
  padding: 2rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 4rem;
}

.partners-services__title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.partners-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

@media (max-width: 1023px) {
  .partners-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .partners-services__grid { grid-template-columns: 1fr; }
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 0 1rem;
}

.service-card__num {
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  opacity: 0.55;
  font-family: var(--font-secondary);
  margin-bottom: 0.8rem;
}

.service-card__title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.service-card__copy {
  font-size: 1.4rem;
  line-height: 1.55;
  opacity: 0.8;
}

/* Partners: brand on each activation card (above the headline) */
.partner-card__brand {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
  font-family: var(--font-secondary);
  margin-bottom: 0.4rem;
}

/* Partners: Brand strip */
.partners-brands {
  background: var(--off-white);
  color: var(--navy);
  margin: 4rem -4rem 4rem;
  padding: 4rem;
}

.partners-brands__title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.partners-brands__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2.4rem;
  align-items: center;
}

@media (max-width: 767px) {
  .partners-brands__grid { grid-template-columns: repeat(2, 1fr); }
}

.partners-brands__grid li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-brands__grid img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.partners-brands__grid img:hover { opacity: 1; }

/* Partners: Contact CTA */
.partners-contact {
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.partners-contact__title {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.partners-contact__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 60rem;
  margin: 0 auto 1.2rem;
}

.partners-contact__cta {
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1.4rem 2.8rem;
  background: var(--white);
  color: var(--navy);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.partners-contact__cta:hover { opacity: 0.85; }

.partners-grid__title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
}

/* Single-row horizontal carousel with scroll-snap. Replaces the 4-col
   grid that was wrapping 6 cards into 4+2. */
.partners-grid-wrap {
  position: relative;
}

.partners-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(30rem, 34rem);
  gap: 2.4rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4rem;
  padding: 0.8rem 4rem 3.2rem;
  margin-inline: -4rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}

.partners-grid::-webkit-scrollbar {
  height: 6px;
}

.partners-grid::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}

.partners-grid::-webkit-scrollbar-track {
  background: transparent;
}

.partner-card {
  cursor: pointer;
  transition: transform 0.3s;
  scroll-snap-align: start;
}

.partner-card:hover {
  transform: translateY(-4px);
}

.partner-card__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 4px;
}

.partner-card__info {
  padding: 1.5rem 0;
}

.partner-card__info h3 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.partner-card__info p {
  font-size: 1.3rem;
  opacity: 0.7;
  font-family: var(--font-secondary);
}

/* --- Footer --- */
.site-footer {
  background: var(--off-white);
  padding: 6rem 4rem;
  display: none;
}

.site-footer.visible {
  display: block;
}

.footer__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.footer__logo {
  margin-bottom: 4rem;
}

.footer__logo-text {
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  line-height: 0.85;
  letter-spacing: -0.03em;
  font-family: var(--font-primary);
}

.footer__tagline {
  font-size: 1.6rem;
  font-family: var(--font-secondary);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-blue);
  margin-bottom: 4rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  font-size: 1.2rem;
  font-family: var(--font-secondary);
  flex-wrap: wrap;
}

.footer__links a {
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer__links a:hover { opacity: 1; }

.footer__social {
  display: flex;
  gap: 1.5rem;
  font-size: 1.3rem;
  font-family: var(--font-secondary);
  font-weight: 600;
}

.footer__social a {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
}

.footer__social a:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.footer__social a img {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

/* --- Utility & Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page.active {
  animation: fadeIn 0.4s ease-out;
}

/* Smooth transitions for nav active states */
.nav__link.active {
  background: var(--white);
  color: var(--navy);
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for grid items */
.partner-card.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.partner-card.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.partner-card.reveal-on-scroll:nth-child(4) { transition-delay: 0.15s; }
.partner-card.reveal-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.partner-card.reveal-on-scroll:nth-child(6) { transition-delay: 0.2s; }

.connect-photo.reveal-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.connect-photo.reveal-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.connect-photo.reveal-on-scroll:nth-child(4) { transition-delay: 0.3s; }

.about-value.reveal-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.about-value.reveal-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.about-value.reveal-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.about-value.reveal-on-scroll:nth-child(5) { transition-delay: 0.32s; }

/* Responsive adjustments */
@media (max-width: 600px) {
  .page__header { padding: 10rem 2rem 3rem; }
  .events-layout__list { padding: 0 2rem 4rem; }
  .shop-layout { padding: 0 2rem 4rem; }
  .connect-layout { padding: 0 2rem 4rem; }
  .about-layout { padding: 0 2rem 4rem; }
  .partners-layout { padding: 0 2rem 4rem; }
  .site-footer { padding: 4rem 2rem; }

  .event-row {
    grid-template-columns: 5rem 1fr;
    font-size: 1.1rem;
  }
  .event-row__location { display: none; }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .connect-photos {
    grid-template-columns: 1fr;
  }

  .connect-photo { height: 22rem; }

  .about-pillar__img { height: 35rem; }
}

/* --- Home feature card (Good Saturdays teaser, below hero) --- */
.home-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
  color: var(--off-white);
}

@media (max-width: 1023px) {
  .home-feature { grid-template-columns: 1fr; }
}

.home-feature__media {
  overflow: hidden;
  min-height: 40rem;
}

.home-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-feature__body {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-feature__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  font-family: var(--font-secondary);
  margin-bottom: 1.2rem;
}

.home-feature__title {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  margin-bottom: 1.8rem;
}

.home-feature__copy {
  font-size: 1.5rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 2.4rem;
  max-width: 56rem;
}

.home-feature__cta {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-secondary);
  color: inherit;
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.4rem;
  transition: opacity 0.2s;
}

.home-feature__cta:hover { opacity: 0.7; }

/* --- Events count chip (next to city tab labels) --- */
.events-count {
  font-size: 0.85em;
  opacity: 0.55;
  margin-left: 0.4em;
  font-family: var(--font-secondary);
  letter-spacing: 0.04em;
}

/* --- Press placeholder cards --- */
.press-card--placeholder {
  border: 1px dashed rgba(0,0,0,0.25);
  border-radius: 4px;
  padding: 1rem;
  opacity: 0.7;
}

.press-card--placeholder .press-card__img {
  background: rgba(0,0,0,0.05);
  width: 100%;
  height: 20rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.press-card--placeholder .press-card__title,
.press-card--placeholder .press-card__source {
  font-style: normal;
}
