/* =========================================================
   The Social Thirties — stylesheet
   ========================================================= */

:root {
  --coral: #E85A6F;
  --coral-deep: #B03A50;
  --coral-soft: #FFB8C4;
  --blush: #F7D5D5;
  --blush-soft: #FCECEC;
  --cream: #FBF6F1;
  --cream-warm: #F3E9DC;
  --plum: #2A1218;
  --plum-soft: #5C3942;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 30px rgba(42, 18, 24, 0.08);
  --shadow-hover: 0 24px 50px rgba(176, 58, 80, 0.22);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-w: 1240px;
  --nav-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--plum);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; }

a { color: var(--coral-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--plum);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.script {
  font-family: 'Yellowtail', 'Pacifico', cursive;
  color: var(--coral);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.76rem;
  color: var(--coral-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--coral);
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-2px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.015em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--coral); color: var(--white); box-shadow: 0 10px 24px rgba(232, 90, 111, 0.38); }
.btn-primary:hover { background: var(--coral-deep); color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(176, 58, 80, 0.45); }
.btn-ghost { background: rgba(255,255,255,0.12); color: var(--white); border-color: rgba(255,255,255,0.85); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,0.22); color: var(--white); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--coral-deep); border-color: var(--coral); }
.btn-outline:hover { background: var(--coral); color: var(--white); transform: translateY(-2px); }
.btn .arrow { font-size: 1.1em; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251, 246, 241, 0.85);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.site-nav.scrolled {
  box-shadow: 0 8px 26px rgba(42, 18, 24, 0.08);
  background: rgba(251, 246, 241, 0.97);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  white-space: nowrap;
}
.brand-mark .brand-logo {
  height: 44px;
  width: auto;
  display: block;
}
.hero-logo {
  width: min(540px, 78%);
  height: auto;
  display: block;
  margin-bottom: 24px;
  margin-top: 4px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35)) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transform: rotate(-2deg);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a {
  color: var(--plum);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-cta { margin-left: 6px; }
.nav-cta .btn { padding: 11px 22px; }

.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--plum);
  margin: 5px auto;
  transition: transform .25s ease, opacity .2s ease;
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(820px, 96vh);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero .bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(100% 70% at 10% 50%, rgba(42,18,24,0.62) 0%, rgba(42,18,24,0.3) 50%, rgba(42,18,24,0.05) 85%),
    linear-gradient(90deg, rgba(42,18,24,0.55) 0%, rgba(42,18,24,0.15) 55%, rgba(42,18,24,0) 90%),
    linear-gradient(180deg, rgba(42,18,24,0.0) 40%, rgba(42,18,24,0.55) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 88px 28px 104px;
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.76rem;
  color: var(--blush);
  margin-bottom: 20px;
  font-weight: 700;
  padding: 8px 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero-script {
  font-family: 'Yellowtail', cursive;
  color: var(--white);
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.88;
  margin-bottom: 18px;
  text-shadow: 0 6px 40px rgba(0,0,0,0.35);
  transform: rotate(-1deg);
  display: inline-block;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  max-width: 720px;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero p.lede {
  max-width: 580px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.95);
  margin-bottom: 34px;
  text-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

/* Floating event sticker */
.hero-sticker {
  position: absolute;
  top: 48%;
  right: 60px;
  transform: translateY(-50%) rotate(6deg);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 3px dashed rgba(255,255,255,0.5);
  font-family: 'Playfair Display', serif;
  animation: wobble 6s ease-in-out infinite;
}
.hero-sticker .small {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.92;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-sticker .big {
  font-family: 'Yellowtail', cursive;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-sticker .meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.95;
  line-height: 1.4;
}
@keyframes wobble {
  0%, 100% { transform: translateY(-50%) rotate(6deg); }
  50% { transform: translateY(-54%) rotate(4deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--plum);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(232, 90, 111, 0.4);
  border-bottom: 1px solid rgba(232, 90, 111, 0.4);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 30s linear infinite;
  font-family: 'Yellowtail', cursive;
  font-size: 2rem;
  color: var(--cream);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { color: var(--coral); font-size: 1.4rem; line-height: 1; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section.block { padding: clamp(72px, 9vw, 130px) 0; }
section.block.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head p { color: var(--plum-soft); margin-top: 14px; font-size: 1.08rem; }
.section-head .script { font-size: clamp(3rem, 5vw, 4.4rem); display: block; margin-bottom: 6px; line-height: 1; }

.alt-bg { background: var(--blush-soft); }
.warm-bg { background: var(--cream-warm); }

/* ---------- Intro blurb (editorial) ---------- */
.intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.intro .copy h2 { margin-bottom: 22px; }
.intro .copy .script { font-size: clamp(3rem, 5vw, 4rem); display: block; margin-bottom: 4px; line-height: 1; }
.intro .copy p { margin-bottom: 16px; font-size: 1.08rem; color: var(--plum-soft); }
.intro .copy p.lead { font-size: 1.2rem; color: var(--plum); font-weight: 500; }
.intro .copy .btn { margin-top: 10px; }

.intro .art {
  position: relative;
  aspect-ratio: 4/5;
}
.intro .art .photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
}
.intro .art .photo img { width: 100%; height: 100%; object-fit: cover; }
.intro .art .photo-accent {
  position: absolute;
  right: -24px; bottom: -20px;
  width: 60%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--cream);
  transform: rotate(4deg);
  z-index: 2;
}
.intro .art .photo-accent img { width: 100%; height: 100%; object-fit: cover; }
.intro .art .blob {
  position: absolute;
  left: -40px; top: -40px;
  width: 180px; height: 180px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(2px);
  z-index: -1;
}
.intro .art .blob-sm {
  position: absolute;
  right: 12%; top: -10%;
  width: 70px; height: 70px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.9;
  box-shadow: 0 10px 20px rgba(232,90,111,0.3);
}

/* ---------- Event card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--plum);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  display: block;
  color: var(--white);
  isolation: isolate;
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.event-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.event-card:hover img { transform: scale(1.06); }
.event-card .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 24px 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(20,8,10,0.85) 100%);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}
.event-card .label small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 600;
  margin-bottom: 6px;
}
.event-card .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(232,90,111,0.4);
  transform: rotate(-4deg);
  z-index: 2;
}
.event-card:nth-child(odd) .tag { transform: rotate(3deg); }

/* Varied card layouts (masonry-ish via aspect ratios) */
.card-grid.varied .event-card:nth-child(4n+1) { aspect-ratio: 4/5; }
.card-grid.varied .event-card:nth-child(4n+2) { aspect-ratio: 4/5; }
.card-grid.varied .event-card:nth-child(4n+3) { aspect-ratio: 4/5; }
.card-grid.varied .event-card:nth-child(4n+4) { aspect-ratio: 4/5; }

/* ---------- Stats row (before events) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat {
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(232, 90, 111, 0.08);
}
.stat .n {
  font-family: 'Yellowtail', cursive;
  font-size: 3rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 2px;
}
.stat .t {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum-soft);
  font-weight: 600;
}

/* ---------- Press callout ---------- */
.press {
  background: var(--plum);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.press::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(232,90,111,0.35) 0%, rgba(232,90,111,0) 70%);
  pointer-events: none;
}
.press .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 0.55;
  color: var(--coral);
}
.press p { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.5rem); color: var(--cream); line-height: 1.35; }
.press cite { display: block; margin-top: 12px; font-style: normal; font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blush); font-weight: 600; }
.press a.btn-outline { border-color: var(--coral); color: var(--blush); }
.press a.btn-outline:hover { background: var(--coral); color: var(--white); border-color: var(--coral); }

/* ---------- Testimonial ---------- */
.testimonial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.testimonial-block .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.5deg);
}
.testimonial-block .photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-block .copy .script { font-size: clamp(3rem, 5vw, 4.4rem); display: block; margin-bottom: 6px; line-height: 1; }
.testimonial-block .copy blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--plum);
  margin-bottom: 22px;
  padding-left: 22px;
  border-left: 3px solid var(--coral);
}
.testimonial-block .copy .attr { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--plum-soft); font-weight: 600; margin-bottom: 26px; }

/* ---------- Pillars (About) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  box-shadow: var(--shadow-soft);
  text-align: left;
  border: 1px solid rgba(232, 90, 111, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pillar .num {
  position: absolute;
  top: -10px; right: -6px;
  font-family: 'Yellowtail', cursive;
  font-size: 6rem;
  color: var(--blush);
  line-height: 0.8;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.pillar h3 { margin-bottom: 10px; position: relative; z-index: 1; }
.pillar p { color: var(--plum-soft); font-size: 0.98rem; position: relative; z-index: 1; }

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.founder .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
}
.founder .photo::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px dashed var(--coral);
  border-radius: calc(var(--radius-lg) + 10px);
  z-index: -1;
  transform: rotate(2deg);
  opacity: 0.35;
}
.founder .photo img { width: 100%; height: 100%; object-fit: cover; }
.founder h2 { margin-bottom: 8px; }
.founder .script { font-size: clamp(2.4rem, 4vw, 3.4rem); display: block; margin-bottom: 10px; line-height: 1; }
.founder .handle { color: var(--coral-deep); font-weight: 600; letter-spacing: 0.04em; }
.founder p { color: var(--plum-soft); margin-top: 14px; font-size: 1.05rem; }
.founder blockquote {
  margin-top: 22px;
  padding: 18px 22px;
  border-left: 3px solid var(--coral);
  background: var(--blush-soft);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--plum);
  font-size: 1.1rem;
}

/* ---------- Run club facts ---------- */
.runclub-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.fact {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid rgba(232,90,111,0.1);
}
.fact .num {
  font-family: 'Yellowtail', cursive;
  font-size: 2.6rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 6px;
}
.fact .lbl { font-size: 0.82rem; color: var(--plum-soft); text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; }

/* ---------- Upcoming ---------- */
.upcoming {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.upcoming .ucard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(232,90,111,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.upcoming .ucard:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.upcoming .ucard .img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.upcoming .ucard .img img { width: 100%; height: 100%; object-fit: cover; }
.upcoming .ucard .body { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.upcoming .ucard .tag {
  display: inline-block;
  background: var(--blush-soft);
  color: var(--coral-deep);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  align-self: flex-start;
}
.upcoming .ucard h3 { margin-top: 6px; }
.upcoming .ucard .meta { color: var(--coral-deep); font-size: 0.92rem; letter-spacing: 0.04em; font-weight: 600; }
.upcoming .ucard p { color: var(--plum-soft); font-size: 0.98rem; }
.upcoming .ucard .btn { align-self: flex-start; margin-top: 14px; }

/* ---------- Footer CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(90px, 12vw, 170px) 24px;
  text-align: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.cta-band .bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.cta-band::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(176,58,80,0.72), rgba(42,18,24,0.8));
  z-index: -1;
}
.cta-band .script { color: var(--white); font-size: clamp(2.8rem, 7vw, 5.4rem); display: block; margin-bottom: 6px; line-height: 1; transform: rotate(-1deg); }
.cta-band h2 { color: var(--white); margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,0.94); max-width: 580px; margin: 0 auto 30px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--plum);
  color: var(--cream);
  padding: 72px 28px 32px;
  position: relative;
  overflow: hidden;
}
.footer-mega {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-mega .script {
  color: var(--coral);
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  display: block;
  line-height: 0.9;
}
.footer-mega p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 18px auto 0;
  font-size: 1rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-inner h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-inner ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-inner a { color: var(--blush); opacity: 0.95; font-size: 0.96rem; }
.footer-inner a:hover { color: var(--white); opacity: 1; }
.footer-brand p { color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 330px; }
.footer-brand .brand-line { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand-line .script { color: var(--coral); font-size: 2.4rem; line-height: 1; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ---------- Fade in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .75s ease, transform .75s ease;
}
.fade-in.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .intro { grid-template-columns: 1fr; }
  .intro .art { max-width: 560px; aspect-ratio: 4/5; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder .photo { max-width: 440px; }
  .press { grid-template-columns: 1fr; text-align: left; }
  .press .quote-mark { font-size: 5rem; }
  .upcoming { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonial-block { grid-template-columns: 1fr; }
  .testimonial-block .photo { max-width: 460px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .runclub-facts { grid-template-columns: 1fr 1fr 1fr; }
  .hero-sticker { right: 32px; width: 180px; height: 180px; }
  .hero-sticker .big { font-size: 1.6rem; }
}

@media (max-width: 760px) {
  :root { --nav-h: 74px; }
  .nav-inner { padding: 0 20px; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--cream);
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
    transform: translateY(-110%);
    transition: transform .35s ease;
    box-shadow: 0 20px 30px rgba(42,18,24,0.08);
    height: calc(100vh - var(--nav-h));
    align-items: flex-start;
    z-index: 40;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.4rem; font-family: 'Playfair Display', serif; }
  .nav-links .nav-cta { margin: 10px 0 0; width: 100%; }
  .nav-links .nav-cta .btn { width: 100%; padding: 14px 22px; font-size: 1rem; }
  .hamburger { display: block; }
  .brand-mark .brand-logo { height: 54px; }

  /* Hero mobile */
  .hero { min-height: 580px; }
  .hero-inner { padding: 40px 22px 56px; text-align: left; }
  .hero .bg img { object-position: center 25%; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(42,18,24,0.35) 0%, rgba(42,18,24,0.25) 45%, rgba(42,18,24,0.75) 100%);
  }
  .hero-eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    padding: 6px 12px;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .hero-logo {
    max-width: 72%;
    margin-bottom: 14px;
    transform: rotate(-1.5deg);
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1.12;
  }
  .hero p.lede { font-size: 1rem; margin-bottom: 24px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { width: 100%; padding: 14px 20px; font-size: 0.95rem; }
  .hero-sticker { display: none; }

  /* Sections */
  section.block { padding: 56px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head .script { font-size: 2.6rem; }

  .intro { gap: 32px; }
  .intro .copy .script { font-size: 2.4rem; }
  .intro .copy h2 { margin-bottom: 14px; }
  .intro .copy p { font-size: 1rem; }
  .intro .copy p.lead { font-size: 1.08rem; }
  .intro .art { max-width: 100%; aspect-ratio: 4/5; }
  .intro .art .photo-accent { width: 50%; right: -12px; bottom: -12px; border-width: 5px; }
  .intro .art .blob { width: 120px; height: 120px; left: -20px; top: -20px; }
  .intro .art .blob-sm { width: 44px; height: 44px; right: 8%; top: -6%; }

  .card-grid { grid-template-columns: 1fr; gap: 16px; }
  .event-card { aspect-ratio: 16/10; }
  .event-card .label { padding: 32px 20px 20px; font-size: 1.1rem; }
  .event-card .tag { top: 14px; left: 14px; font-size: 0.66rem; padding: 5px 11px; }

  .pillars { grid-template-columns: 1fr; gap: 18px; }
  .pillar { padding: 32px 26px; }
  .pillar .num { font-size: 4.5rem; top: -4px; right: -2px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat { padding: 20px 10px; }
  .stat .n { font-size: 2.1rem; }
  .stat .t { font-size: 0.7rem; letter-spacing: 0.18em; }

  .runclub-facts { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }
  .fact { padding: 18px 6px; }
  .fact .num { font-size: 1.8rem; }
  .fact .lbl { font-size: 0.64rem; letter-spacing: 0.12em; }

  .marquee { padding: 12px 0; }
  .marquee-track { font-size: 1.3rem; gap: 32px; }
  .marquee-track span { gap: 32px; }

  .press { grid-template-columns: 1fr; padding: 32px 24px; gap: 18px; text-align: left; }
  .press .quote-mark { font-size: 3.6rem; }
  .press p { font-size: 1.08rem; }
  .press .btn { justify-self: flex-start; }

  .testimonial-block { gap: 32px; }
  .testimonial-block .photo { max-width: 320px; margin: 0 auto; }
  .testimonial-block .copy blockquote { font-size: 1.2rem; padding-left: 16px; }
  .testimonial-block .copy .script { font-size: 2.4rem; }

  .founder { gap: 28px; }
  .founder .photo { max-width: 320px; margin: 0 auto; }
  .founder .script { font-size: 2rem; }
  .founder blockquote { font-size: 1rem; padding: 14px 16px; }

  .upcoming { gap: 18px; }
  .upcoming .ucard .body { padding: 22px 22px 26px; }
  .upcoming .ucard .btn { width: 100%; }

  .cta-band { padding: 72px 22px; }
  .cta-band .script { font-size: 2.6rem; }
  .cta-band h2 { font-size: 1.9rem; }
  .cta-band p { font-size: 1rem; }
  .cta-band .btn { width: 100%; max-width: 360px; }

  footer.site-footer { padding: 56px 24px 24px; }
  .footer-mega { margin-bottom: 36px; padding-bottom: 32px; }
  .footer-mega img { max-width: 220px !important; }
  .footer-mega p { font-size: 0.92rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 32px; }

  body { font-size: 16px; }
}

@media (max-width: 420px) {
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; }
  .hero h1 { font-size: 1.8rem; }
  .hero-logo { max-width: 78%; }
  .section-head h2, section.block h2 { font-size: 1.75rem; }
  .intro .copy h2 { font-size: 1.8rem; }
  .runclub-facts { grid-template-columns: 1fr; }
}
