/* ==========================================================================
   C&W Real Foodies — main stylesheet
   1. Tokens
   2. Reset & base
   3. Type scale
   4. Layout primitives
   5. Navigation
   6. Sections
   7. Responsive
   8. Reduced motion
   ========================================================================== */

/* 1. Tokens ================================================================ */

:root {
  /* Palette */
  --white:  #ffffff;
  --black:  #000000;
  --lime:   #CDF409;
  --orange: #F45909;
  --purple: #8609F4;
  --lilac:  #F5EBFE;          /* 8% #8609F4 over white */

  --grey-fill: #E4E4E4;       /* unfilled state for the scroll-fill headline */

  /* Type families — verify these names against your Adobe Fonts project */
  --font-display: "obviously", "Arial Black", sans-serif;
  --font-script:  "yellowtail", cursive;
  --font-body:    "inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Type scale — desktop values from the design spec, fluid down to mobile */
  --fs-h1: clamp(3rem, 7.5vw, 6rem);        /* 96px */
  --fs-h2: clamp(2.25rem, 4.7vw, 3.75rem);  /* 60px */
  --fs-h3: clamp(2.75rem, 5.5vw, 4.375rem); /* 70px */
  --fs-h4: clamp(1.5rem, 2.5vw, 2rem);      /* 32px */
  --fs-h5: clamp(1.125rem, 1.9vw, 1.5rem);  /* 24px */
  --fs-h6: 0.75rem;                          /* 12px */
  --fs-body: 0.875rem;                       /* 14px */
  --fs-lead: 1rem;                           /* 16px */

  /* Layout */
  --wrap-max: 1440px;
  --wrap-pad: clamp(1.25rem, 5vw, 5rem);
  --measure: 62ch;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.9375rem;   /* 15px — paragraph spacing */
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;

  --radius-card: 16px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  --nav-h: 68px;
}

/* 2. Reset & base ========================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Lenis manages scroll when active; disable native smooth to avoid conflict */
html.lenis { scroll-behavior: auto; }
html.lenis body { min-height: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }

a { color: inherit; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: var(--wrap-pad);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* 3. Type scale ============================================================ */

h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }

.h1, h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-h1);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.h2, h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.05;
  text-transform: uppercase;
}

.h3, h3 {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: var(--fs-h3);
  line-height: 1;
}

.h4, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--fs-h4);
  line-height: 1.1;
  text-transform: uppercase;
}

.h5, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-h5);
  line-height: 1.2;
}

.h6, h6, .eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-h6);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

p { margin: 0 0 var(--space-sm); }
p:last-child { margin-bottom: 0; }

.lead {
  font-weight: 700;
  font-size: var(--fs-lead);
  line-height: 1.5;
}

/* Section title lockup: uppercase display over overlapping script */
.title-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.title-lockup__main { display: block; }
.title-lockup__script {
  display: block;
  margin-top: -0.36em;
  padding-bottom: 0.12em;   /* room for descenders */
}

.title-lockup--dark .title-lockup__main { color: var(--white); }
.title-lockup--light .title-lockup__main { color: var(--black); }

.accent-lime   { color: var(--lime); }
.accent-orange { color: var(--orange); }
.accent-purple { color: var(--purple); }

/* 4. Layout primitives ===================================================== */

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
}

.section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 10vh, 8rem);
  scroll-margin-top: 0;
}

.section--dark  { background: var(--black); color: var(--white); }
.section--light { background: var(--white); color: var(--black); }
.section--lilac { background: var(--lilac); color: var(--black); }

.section__head { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }

/* Fade-and-rise reveal, applied by JS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

/* 5. Navigation ============================================================ */

.nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - var(--wrap-pad) * 2);
  max-width: 1100px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-inline: 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease,
              top 0.45s var(--ease-out), height 0.45s var(--ease-out);
}

/* Over light sections the pill flips to a translucent white */
.nav.is-light {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

/* Compact slightly once scrolled away from the hero */
.nav.is-scrolled { top: 0.75rem; height: 58px; }

.nav__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.nav__logo svg {
  width: clamp(96px, 11vw, 132px);
  height: auto;
}
.nav__logo svg path,
.nav__logo svg polygon,
.nav__logo svg rect {
  fill: var(--white);
  transition: fill 0.45s ease;
}
.nav.is-light .nav__logo svg path,
.nav.is-light .nav__logo svg polygon,
.nav.is-light .nav__logo svg rect {
  fill: var(--black);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav__link {
  position: relative;
  display: inline-block;
  padding-block: 0.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
  transition: color 0.45s ease, opacity 0.25s ease;
}
.nav.is-light .nav__link { color: var(--black); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--orange); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  width: 28px; height: 20px;
  position: relative;
  flex: 0 0 auto;
}
.nav__toggle span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease-out), opacity 0.2s ease, background 0.45s ease;
}
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 16px; }
.nav.is-light .nav__toggle span { background: var(--black); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 6. Sections ============================================================== */

/* --- 6.1 Hero ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-block: calc(var(--nav-h) + 3rem) 6rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__date {
  color: var(--orange);
  margin-bottom: clamp(1rem, 3vh, 2rem);
}

.hero__title {
  width: min(46vw, 620px);
  min-width: 280px;
}
.hero__title svg { width: 100%; height: auto; }

/* Line-by-line wipe on load */
.hero__title .hero__line {
  clip-path: inset(0 0 100% 0);
  will-change: clip-path;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.5rem, 4vh, 3rem);
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  color: var(--white);
  border-radius: 50%;
  transition: opacity 0.4s ease;
}
.hero__scroll svg { width: 24px; height: 24px; }
.hero__scroll:hover { opacity: 0.7; }

@keyframes mouse-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.hero__scroll svg { animation: mouse-bob 2.2s ease-in-out infinite; }

/* --- 6.2 Intro ----------------------------------------------------------- */

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

/* Sized against viewport height so the four lines fill roughly 65–70vh */
.intro__title {
  margin: 0;
  font-size: clamp(3rem, 17vh, 9.5rem);
  line-height: 0.96;
  text-align: right;
}

/* Scroll-fill: each line is a gradient clipped to the glyphs */
.intro__line {
  display: block;
  background-image: linear-gradient(
    90deg,
    var(--line-color) 0%, var(--line-color) 50%,
    var(--grey-fill) 50%, var(--grey-fill) 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.intro__line--black  { --line-color: var(--black); }
.intro__line--orange { --line-color: var(--orange); }

.intro__body { padding-top: 0.65rem; }
.intro__body .lead { margin-bottom: var(--space-md); }

/* --- 6.3 Spotlight ------------------------------------------------------- */

.spotlight {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.spotlight__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.spotlight__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(0.6);
}
.spotlight__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.92) 100%);
}

.spotlight__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.spotlight__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: clamp(340px, 52vh, 560px);
}

.spotlight__visual {
  position: relative;
  aspect-ratio: 4 / 3;
}

.spotlight__card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  border: 2px solid var(--lime);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: rotate(var(--tilt, -2.5deg)) translateY(var(--enter-y, 40px)) scale(0.97);
  transition: opacity 0.55s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}
.spotlight__card img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.spotlight__card.is-active {
  opacity: 1;
  transform: rotate(var(--tilt, -2.5deg)) translateY(0) scale(1);
  pointer-events: auto;
}
/* Direction-aware exit */
.spotlight.is-reverse .spotlight__card { --enter-y: -40px; }

.spotlight__copy {
  position: relative;
  min-height: 260px;
  padding-top: 3.25rem;   /* clears the progress dots pinned above */
}

.spotlight__pane {
  position: absolute;
  top: 3.25rem;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out) 0.12s, transform 0.65s var(--ease-out) 0.12s;
  pointer-events: none;
}
.spotlight__pane.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.spotlight.is-reverse .spotlight__pane { transform: translateY(-24px); }
.spotlight.is-reverse .spotlight__pane.is-active { transform: none; }

.spotlight__count {
  color: var(--orange);
  margin-bottom: var(--space-xs);
}
.spotlight__count span { color: rgba(255, 255, 255, 0.45); }

.spotlight__name { margin-bottom: var(--space-sm); }
.spotlight__desc { color: rgba(255, 255, 255, 0.82); max-width: 44ch; }

/* Progress dots — anchored above the copy so the venue name always sits clear */
.spotlight__dots {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 8px;
}
.spotlight__dot {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.35s ease;
}
.spotlight__dot.is-active { background: var(--lime); }

/* --- 6.4 London Limelight ------------------------------------------------ */

.limelight__intro {
  max-width: 68ch;
  margin-inline: auto;
  text-align: center;
}

.limelight__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(clamp(220px, 26vw, 300px), 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s var(--ease-out);
}
.card:hover .card__media img,
.card:focus-within .card__media img { transform: scale(1.07); }

/* Feathered gradient — revealed on hover */
.card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0)    0%,
    rgba(0,0,0,0.08) 34%,
    rgba(0,0,0,0.42) 58%,
    rgba(0,0,0,0.78) 80%,
    rgba(0,0,0,0.92) 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.card:hover .card__scrim,
.card:focus-within .card__scrim { opacity: 1; }

.card__tags {
  position: absolute;
  top: 0.875rem; left: 0.875rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--tag-bg, var(--orange));
  color: var(--tag-fg, var(--white));
}

/* Body sits in normal flow so it always reserves height —
   grid-auto-rows: 1fr then equalises every card to the tallest. */
.card__body {
  position: relative;
  z-index: 2;
  padding: clamp(1rem, 1.8vw, 1.5rem);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s var(--ease-out), transform 0.55s var(--ease-out);
}
.card:hover .card__body,
.card:focus-within .card__body {
  opacity: 1;
  transform: none;
}

.card__name { margin-bottom: 0.25rem; }
.card__addr {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
.card__desc {
  margin-top: 0.5rem;
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.8);
}

/* --- 6.5 On the Grapevine ------------------------------------------------ */

.grapevine__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

.article__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-md);
}
.article__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s var(--ease-out);
}
.article:hover .article__media img { transform: scale(1.05); }

.article__title { margin-bottom: 0.75rem; }
.article__excerpt { color: #333; }

/* --- 6.6 Get in Touch ---------------------------------------------------- */

.contact__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2.5rem, 8vw, 7rem);
  margin-top: clamp(2rem, 5vh, 3.5rem);
}

.person {
  width: clamp(220px, 26vw, 280px);
  text-align: center;
}

.person__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--person-accent, var(--orange));
  margin-bottom: var(--space-md);
  transform: translateY(0);
  transition: transform 0.5s var(--ease-out);
}
.person:hover .person__photo { transform: translateY(-8px); }
.person__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(1);
}

.person__name { margin-bottom: 0.3rem; }
.person__role {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-sm);
}
.person__contact { margin: 0; }
.person__contact a {
  color: var(--person-accent, var(--orange));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.person__contact a:hover { border-bottom-color: currentColor; }

/* --- 6.7 Issue archive --------------------------------------------------- */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: var(--space-lg);
}
.issue-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.issue-card__media {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #111;
  margin-bottom: var(--space-md);
}
.issue-card__media img { width: 100%; height: 100%; object-fit: cover; }

/* 7. Responsive ============================================================ */

@media (max-width: 1024px) {
  .intro__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  /* Stacked, a right-aligned headline floats away from the copy below it */
  .intro__title { text-align: left; font-size: clamp(3rem, 13vh, 6rem); }
  .spotlight__stage { grid-template-columns: 1fr; gap: var(--space-lg); }
  .limelight__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grapevine__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --nav-h: 60px; }

  .nav {
    flex-wrap: wrap;
    padding-block: 0.5rem;
    height: auto;
    min-height: var(--nav-h);
  }
  .nav__toggle { display: block; }
  .nav__list {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease-out);
  }
  .nav.is-open .nav__list { max-height: 320px; }
  .nav__list li { width: 100%; }
  .nav__link {
    display: block;
    width: 100%;
    padding-block: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .nav.is-light .nav__link { border-top-color: rgba(0, 0, 0, 0.08); }

  .hero__title { width: 78vw; }

  /* Spotlight becomes a swipeable carousel */
  .spotlight { min-height: auto; }
  .spotlight__stage {
    display: block;
    min-height: 0;
  }
  .spotlight__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .spotlight__track::-webkit-scrollbar { display: none; }
  .spotlight__slide {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }
  .spotlight__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    margin-bottom: var(--space-md);
  }
  .spotlight__card {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: rotate(-1.5deg);
    pointer-events: auto;
  }
  .spotlight__copy { position: static; min-height: 0; padding-top: 0; }
  .spotlight__pane {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .spotlight__dots {
    position: static;
    justify-content: center;
    margin-top: var(--space-md);
  }

  /* Hover doesn't exist on touch — show card content permanently, dimmed */
  .card__scrim { opacity: 1; }
  .card__body { opacity: 1; transform: none; }
}

@media (max-width: 600px) {
  .limelight__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, auto);
  }
  .grapevine__grid { grid-template-columns: 1fr; }
  .contact__grid { gap: var(--space-lg); }
  .person { width: min(260px, 80vw); }
}

/* 8. Reduced motion ======================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero__title .hero__line { clip-path: none; }

  /* Fill headline resolves to its final colours immediately */
  .intro__line { background-position: 0 0; }

  .spotlight__card,
  .spotlight__pane { transform: none; }
}
