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

:root {
  /* Official TST colour vectors */
  --tst-red: #D34A4A;
  --tst-pink: #FFE6E6;
  --coral: #D34A4A;
  --coral-deep: #A83636;
  --coral-soft: #F0A8A8;
  --blush: #FFE6E6;
  --blush-soft: #FFF1F1;
  --cream: #FBF6F1;
  --cream-warm: #F3E9DC;
  --plum: #2A1218;
  --burgundy: #7E2430;
  --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: 'Chillink', 'Yellowtail', 'Pacifico', cursive;
  text-shadow:
    1px 0 0 var(--burgundy), -1px 0 0 var(--burgundy),
    0 1px 0 var(--burgundy), 0 -1px 0 var(--burgundy),
    0.7px 0.7px 0 var(--burgundy), -0.7px 0.7px 0 var(--burgundy),
    0.7px -0.7px 0 var(--burgundy), -0.7px -0.7px 0 var(--burgundy);
  letter-spacing: 0.03em;
  word-spacing: 0.1em;
  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 { flex: 0 0 auto; }
.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: 22px;
  list-style: none;
}
.nav-links a {
  color: var(--plum);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-links .caret { font-size: 0.7em; opacity: 0.6; }
.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 170px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft), 0 4px 24px rgba(42,18,24,0.14);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  translate: 0 6px;
  transition: opacity .2s ease, translate .2s ease, visibility .2s;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}
.has-dropdown .dropdown li a {
  display: block;
  padding: 9px 20px;
  white-space: nowrap;
}
.has-dropdown .dropdown li a:hover { background: var(--blush-soft); }
.has-dropdown .dropdown a.active::after { display: none; }
.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: 'Chillink', '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: 'Chillink', '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); }
}

/* Chillink — the brand script (licensed copy from the client to follow).
   Declared for both styles so the browser never fake-slants it. */
@font-face {
  font-family: 'Chillink';
  src: url('../fonts/Chillink.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Chillink';
  src: url('../fonts/Chillink.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--tst-pink);
  color: var(--tst-red);
  overflow: hidden;
  padding: 16px 0;
  border-top: 2px solid var(--tst-red);
  border-bottom: 2px solid var(--tst-red);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 30s linear infinite;
  font-family: 'Chillink', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-shadow:
    1px 0 0 var(--burgundy), -1px 0 0 var(--burgundy),
    0 1px 0 var(--burgundy), 0 -1px 0 var(--burgundy),
    0.7px 0.7px 0 var(--burgundy), -0.7px 0.7px 0 var(--burgundy),
    0.7px -0.7px 0 var(--burgundy), -0.7px -0.7px 0 var(--burgundy);
  letter-spacing: 0.045em;
  word-spacing: 0.14em;
  font-size: 1.7rem;
  padding-top: 6px; /* script ascenders need a little headroom */
  color: var(--tst-red);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { color: var(--tst-red); font-size: 1.2rem; line-height: 1; opacity: 0.75; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
section.block { padding: clamp(52px, 6vw, 84px) 0; }
section.block.tight { padding: clamp(36px, 4.5vw, 60px) 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(28px, 3.5vw, 44px);
}
.section-head p { color: var(--plum-soft); margin-top: 14px; font-size: 1.08rem; }
.section-head .script { font-size: clamp(2.5rem, 4.2vw, 3.7rem); display: block; margin-bottom: 8px; line-height: 1.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(2.5rem, 4.2vw, 3.4rem); display: block; margin-bottom: 6px; line-height: 1.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: 'Chillink', '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); }

/* Press coverage grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 28px;
}
.press-card {
  background: var(--white);
  border: 1px solid rgba(232, 90, 111, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.press-card .pub {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
}
.press-card h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.35;
  flex: 1;
}
.press-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tst-red);
  text-decoration: none;
  border-bottom: 1.5px solid var(--tst-pink);
  align-self: flex-start;
  padding-bottom: 2px;
}
.press-card a:hover { border-bottom-color: var(--tst-red); }

/* ---------- 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(2.5rem, 4.2vw, 3.7rem); display: block; margin-bottom: 8px; line-height: 1.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: 'Chillink', '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: 'Chillink', '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: 900px) {
  .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; }
  /* flatten the More dropdown inside the mobile menu */
  .has-dropdown > a { display: none; }
  .has-dropdown .dropdown {
    position: static;
    transform: none;
    translate: 0 0;
    opacity: 1;
    visibility: visible;
    background: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .has-dropdown .dropdown li a { padding: 0; font-size: 1.4rem; }
  .has-dropdown .dropdown li a:hover { background: none; }
}

@media (max-width: 760px) {
  :root { --nav-h: 74px; }
  .nav-inner { padding: 0 20px; }
  .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; }
}

/* =========================================================
   2026-09 rebuild — client brief additions
   ========================================================= */

/* ---------- Event cards (data-driven) ---------- */
.ecard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.ecard {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ecard:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.ecard .img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.ecard .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ecard .date-chip {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--tst-pink);
  color: var(--tst-red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(42,18,24,0.18);
}
.ecard .type-chip {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--tst-red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
}
.ecard .body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ecard h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; line-height: 1.2; }
.ecard .meta { font-size: 0.9rem; color: var(--plum-soft); display: flex; flex-direction: column; gap: 3px; }
.ecard .foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ecard .price { font-weight: 700; color: var(--tst-red); font-size: 1.02rem; }
.ecard .btn { padding: 10px 20px; font-size: 0.88rem; }
.ecard.sold-out .img img { filter: grayscale(0.7); }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin: 0 0 36px;
}
.filter-bar label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-bar select {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--plum);
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}
.filter-bar select:focus { outline: 2px solid var(--tst-red); outline-offset: 1px; }
.filter-empty { text-align: center; color: var(--plum-soft); padding: 40px 0; font-size: 1.05rem; }

/* ---------- Steps (Coming alone) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--tst-pink);
  color: var(--tst-red);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.step h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--plum-soft); line-height: 1.55; }

/* ---------- Community cards ---------- */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.community-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  transition: transform .25s ease, box-shadow .25s ease;
}
.community-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.community-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.community-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,18,24,0) 30%, rgba(42,18,24,0.82) 100%);
}
.community-card .body { position: relative; z-index: 1; padding: 26px; }
.community-card .body h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 6px; color: var(--white); }
.community-card .body p { font-size: 0.92rem; opacity: 0.92; margin-bottom: 14px; line-height: 1.5; }
.community-card .body .link {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tst-pink);
}

/* ---------- Stories / testimonials ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 1; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-quote {
  background: var(--tst-pink);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.story-quote p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.08rem; line-height: 1.45; color: var(--plum); }
.story-quote cite { font-style: normal; font-size: 0.85rem; font-weight: 700; color: var(--tst-red); }
.story-quote.deep { background: var(--tst-red); }
.story-quote.deep p { color: var(--white); }
.story-quote.deep cite { color: var(--tst-pink); }

/* ---------- Newsletter band ---------- */
.newsletter {
  background: var(--tst-pink);
  border-top: 2px solid var(--tst-red);
}
.newsletter .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px;
}
.newsletter .script { color: var(--tst-red); font-size: clamp(2.6rem, 5vw, 3.8rem); display: block; line-height: 1; margin-bottom: 6px; }
.newsletter h2 { margin-bottom: 14px; }
.newsletter p { color: var(--plum-soft); margin-bottom: 26px; }
.newsletter form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 18px;
}
.newsletter input[type="email"] {
  flex: 1;
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--tst-red);
  background: var(--white);
  color: var(--plum);
  min-width: 0;
}
.newsletter input[type="email"]:focus { outline: 2px solid var(--tst-red); outline-offset: 1px; }
.newsletter .note { font-size: 0.85rem; opacity: 0.75; margin-bottom: 0; }
.newsletter .confirm { font-weight: 600; color: var(--tst-red); margin-top: 14px; }
.newsletter .socials { display: flex; gap: 18px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.newsletter .socials a { font-weight: 700; color: var(--tst-red); font-size: 0.95rem; }

/* ---------- Timeline (Our Story) ---------- */
.timeline { max-width: 720px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--blush);
}
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--tst-red);
  border: 3px solid var(--tst-pink);
}
.tl-item .when {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tst-red);
}
.tl-item h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin: 4px 0 6px; }
.tl-item p { color: var(--plum-soft); line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-list details {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 20px 24px;
}
.faq-list summary {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-list summary::after { content: "+"; color: var(--tst-red); font-size: 1.4rem; font-family: 'Inter', sans-serif; }
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { margin-top: 12px; color: var(--plum-soft); line-height: 1.6; }

/* ---------- Responsive for new components ---------- */
@media (max-width: 1100px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .newsletter form { flex-direction: column; }
  .filter-bar { justify-content: flex-start; }
}

/* ---------- Become a Host ---------- */
.container.narrow { max-width: 820px; }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.host-intro p { font-size: 1.08rem; line-height: 1.75; color: var(--plum); margin-bottom: 18px; }
.host-intro p:last-child { margin-bottom: 0; }
.host-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: 34px;
}
.host-list { list-style: none; display: grid; gap: 14px; }
.host-list li {
  background: var(--white);
  border: 1px solid rgba(232, 90, 111, 0.14);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 16px 20px 16px 48px;
  position: relative;
  line-height: 1.5;
}
.host-list li::before {
  content: "✿";
  position: absolute;
  left: 18px; top: 15px;
  color: var(--coral);
}
.host-note {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--plum-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}
.host-note strong { color: var(--plum); }
.host-closed {
  background: var(--white);
  border: 1.5px dashed var(--blush);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.host-closed h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
.host-closed p { color: var(--plum-soft); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.host-form-frame {
  width: 100%;
  height: min(78vh, 1100px);
  min-height: 620px;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.host-form-hint { text-align: center; margin-top: 12px; font-size: 0.88rem; color: var(--plum-soft); }
@media (max-width: 860px) {
  .host-split { grid-template-columns: 1fr; }
  .host-split .story-photo { order: 2; }
}
#apply { scroll-margin-top: 92px; } /* clears the sticky nav when jumping to the form */

/* ---------- Hero logo with shine ---------- */
.hero-logo-wrap {
  position: relative;
  width: min(540px, 78%);
  margin-bottom: 26px;
  animation: heroLogoIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-logo-wrap .hero-logo {
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}
/* Soft halo breathing behind the logo */
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -22% -14%;
  background: radial-gradient(closest-side, rgba(255, 230, 230, 0.32), rgba(255, 230, 230, 0) 72%);
  animation: heroHalo 6s ease-in-out infinite;
  pointer-events: none;
}
/* A glint that sweeps across the letters themselves (masked to the logo) */
.hero-logo-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform: rotate(-2deg); /* match the logo's tilt */
  pointer-events: none;
  -webkit-mask-image: url("../images/tst-logo.png");
  mask-image: url("../images/tst-logo.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 44%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 56%
  );
  background-size: 300% 100%;
  background-repeat: no-repeat;
  background-position: 120% 0;
  animation: heroShine 7s ease-in-out 1.2s infinite;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroHalo {
  0%, 100% { opacity: 0.55; transform: scale(0.97); }
  50%      { opacity: 1; transform: scale(1.03); }
}
@keyframes heroShine {
  0%   { background-position: 120% 0; }
  22%  { background-position: -60% 0; }
  100% { background-position: -60% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap, .hero-logo-wrap::before, .hero-logo-shine { animation: none; }
}

/* ---------- Partner page ---------- */
.logo-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  margin-top: 30px;
  padding: 26px clamp(16px, 3vw, 40px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.logo-strip li {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-soft);
}
.logo-strip li img { max-height: 44px; width: auto; display: block; filter: grayscale(1) opacity(0.75); }
.collab-list { display: grid; gap: clamp(26px, 4vw, 44px); margin-top: 34px; }
.collab {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(22px, 4vw, 52px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.collab:nth-child(even) .collab-photo { order: 2; }
.collab-photo img { width: 100%; height: 100%; min-height: 300px; max-height: 420px; object-fit: cover; display: block; }
.collab-copy { padding: clamp(6px, 2vw, 20px) clamp(22px, 3vw, 48px) clamp(24px, 3vw, 36px); }
.collab-copy .pub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 10px;
}
.collab-copy h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 10px; }
.collab-copy p { color: var(--plum-soft); line-height: 1.7; }
.team-ctas { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 26px; }
#enquiries { scroll-margin-top: 92px; }
@media (max-width: 820px) {
  .collab { grid-template-columns: 1fr; }
  .collab:nth-child(even) .collab-photo { order: 0; }
  .collab-photo img { min-height: 220px; }
  .collab-copy { padding: 4px 22px 26px; }
  .team-ctas .btn { width: 100%; }
}

.footer-bottom a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--white); border-bottom-color: var(--white); }
