/* ==========================================================================
   The Dog Club — dogclub_2026
   Hand-written design system. No framework.
   Structure: tokens → base → layout → components → sections → utilities
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand scale */
  --magenta-700: #8C2059;
  --magenta-600: #A5266B;
  --pink-500: #E03491;   /* large text / graphics only (~3.9:1 on paper) */
  --pink-300: #F27DB8;   /* accents on dark */
  --pink-100: #FBDCEC;
  --pink-50:  #FDF0F7;
  --paper:    #FBF7F2;
  --surface:  #FFFFFF;
  --ink:      #2A141F;
  --ink-soft: #5C4451;
  --plum-950: #1F0E1A;
  --plum-900: #2C1526;
  --plum-800: #3D1E34;
  --border:   #EADFD6;

  /* Semantic aliases — light theme */
  --bg: var(--paper);
  --bg-elevated: var(--surface);
  --text: var(--ink-soft);
  --heading: var(--ink);
  --link: var(--magenta-700);
  --link-hover: var(--magenta-600);
  --accent: var(--magenta-600);
  --accent-strong: var(--pink-500);
  --edge: var(--border);
  --eyebrow: var(--magenta-600);

  /* Type */
  --font-display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --font-body: 'Figtree', 'Segoe UI', sans-serif;
  --leading-body: 1.7;
  --track-display: -0.03em;

  /* Space scale (rem) */
  --sp-1: .25rem;
  --sp-2: .5rem;
  --sp-3: .75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4.5rem;
  --sp-9: 6.5rem;

  /* Radii */
  --r-sm: .375rem;
  --r-md: .75rem;
  --r-lg: 1.25rem;
  --r-pill: 999px;

  /* Layered, colour-tinted shadows */
  --shadow-card:
    0 1px 2px rgba(42, 20, 31, .05),
    0 4px 12px rgba(140, 32, 89, .07),
    0 12px 32px rgba(140, 32, 89, .06);
  --shadow-card-hover:
    0 2px 4px rgba(42, 20, 31, .06),
    0 10px 24px rgba(140, 32, 89, .12),
    0 24px 56px rgba(140, 32, 89, .10);
  --shadow-float:
    0 2px 6px rgba(31, 14, 26, .18),
    0 12px 40px rgba(31, 14, 26, .28);

  /* Motion */
  --ease-spring: cubic-bezier(.34, 1.36, .44, 1);
  --ease-out: cubic-bezier(.22, .8, .36, 1);
  --dur-fast: .18s;
  --dur-med: .34s;

  /* Grain texture (SVG noise) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* Dark (cinematic plum) remap — any section can flip.
   color/background are re-declared here: children inherit body's COMPUTED
   colour, so remapping the custom properties alone is not enough. */
.theme-dark {
  color: var(--text);
  background-color: var(--bg);
  --bg: var(--plum-950);
  --bg-elevated: var(--plum-900);
  --text: #E4D2DD;
  --heading: #FFF6FB;
  --link: var(--pink-300);
  --link-hover: #F9A8CF;
  --accent: var(--pink-300);
  --edge: rgba(242, 125, 184, .16);
  --eyebrow: var(--pink-300);
  --shadow-card:
    0 1px 2px rgba(0, 0, 0, .3),
    0 8px 24px rgba(0, 0, 0, .35);
  --shadow-card-hover:
    0 2px 4px rgba(0, 0, 0, .3),
    0 14px 40px rgba(0, 0, 0, .5);
}

/* --------------------------------------------------------------------------
   2. FONTS (self-hosted variable woff2, latin subsets)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url('../fonts/bricolage-grotesque-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/figtree-latin.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   3. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: .035;
  pointer-events: none;
  z-index: 2147483647;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--track-display);
  line-height: 1.08;
  color: var(--heading);
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.25rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); letter-spacing: -0.02em; }
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--link-hover); }

img, video { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
figcaption { margin: 0; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }

strong { color: var(--heading); font-weight: 600; }

::selection { background: var(--pink-100); color: var(--ink); }
.theme-dark ::selection { background: var(--magenta-700); color: #fff; }

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: min(100% - 2.5rem, 72rem);
  margin-inline: auto;
}
.container--narrow { width: min(100% - 2.5rem, 52rem); }

.section { padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

/* Dark sections: cosmic plum atmosphere (echoes the 2020 posters) */
.section--dark {
  position: relative;
  background-color: var(--plum-950);
  background-image:
    radial-gradient(52rem 30rem at 82% -8%, rgba(224, 52, 145, .17), transparent 60%),
    radial-gradient(40rem 26rem at -12% 108%, rgba(140, 32, 89, .22), transparent 62%),
    radial-gradient(26rem 18rem at 50% 118%, rgba(61, 30, 52, .5), transparent 70%);
}
.section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .05;
  pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: .7rem 1.2rem;
  background: var(--plum-950);
  color: #fff;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus-visible { top: 0; color: #fff; }

/* --------------------------------------------------------------------------
   5. COMPONENTS
   -------------------------------------------------------------------------- */

/* ----- Eyebrow label ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0 0 var(--sp-4);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--eyebrow);
}
.eyebrow::before {
  content: "";
  width: 1.6em;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: .8;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 44px;
  padding: .72em 1.5em;
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-spring),
    box-shadow var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }

.btn--primary {
  background: var(--magenta-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(165, 38, 107, .3), 0 8px 20px rgba(165, 38, 107, .18);
}
.btn--primary:hover {
  background: var(--magenta-700);
  color: #fff;
  box-shadow: 0 4px 12px rgba(140, 32, 89, .35), 0 12px 28px rgba(140, 32, 89, .22);
}

.btn--ghost {
  background: transparent;
  color: var(--heading);
  border-color: currentColor;
}
.btn--ghost:hover { color: var(--magenta-700); }
.theme-dark .btn--ghost,
.section--dark .btn--ghost,
.hero .btn--ghost { color: #fff; }
.theme-dark .btn--ghost:hover,
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { color: var(--pink-300); }
/* over photography the outline alone is illegible */
.hero .btn--ghost {
  background: rgba(31, 14, 26, .42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-color: rgba(255, 255, 255, .75);
}

.btn--light {
  background: #fff;
  color: var(--magenta-700);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .25);
}
.btn--light:hover { color: var(--magenta-600); }

.btn--whatsapp {
  background: #1DAA61;
  color: #fff;
  box-shadow: 0 2px 8px rgba(29, 170, 97, .35);
}
.btn--whatsapp:hover { background: #178C50; color: #fff; }

.btn .icon { width: 1.15em; height: 1.15em; flex: none; }

/* Arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: .45em;
  font-weight: 600;
  text-decoration: none;
}
.arrow-link .icon {
  width: 1.05em;
  height: 1.05em;
  transition: transform var(--dur-fast) var(--ease-spring);
}
.arrow-link:hover .icon { transform: translateX(4px); }

/* ----- Header -----
   The frosted-glass background lives on ::before, not on .site-header itself:
   backdrop-filter on an ancestor becomes the containing block for any
   position:fixed descendant (spec behaviour, all engines). .site-nav (the
   mobile menu sheet) is fixed and nested inside .site-header, so putting
   backdrop-filter directly on .site-header trapped it against the header's
   own small sticky box instead of the viewport — the menu could then
   composite behind page content (e.g. the hero) once scrolled. Keeping
   .site-header itself free of filter/transform lets .site-nav position
   against the viewport as a normal fixed overlay. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(251, 247, 242, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(42, 20, 31, .06);
}
.site-header__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  margin-right: auto;
}
.brand img { width: 42px; height: 42px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.brand__name em { font-style: normal; color: var(--magenta-600); }
.brand:hover .brand__name em { color: var(--pink-500); }

.site-nav { display: flex; align-items: center; gap: var(--sp-2); }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list li { margin: 0; }
.site-nav a:not(.btn) {
  display: inline-block;
  padding: .55rem .8rem;
  border-radius: var(--r-pill);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.site-nav a:not(.btn):hover { background: var(--pink-50); color: var(--magenta-700); }
.site-nav a:not(.btn):active { background: var(--pink-100); }
.site-nav a[aria-current="page"] {
  color: var(--magenta-700);
  font-weight: 600;
  background: var(--pink-50);
}

/* Services dropdown (desktop) */
.nav-drop { position: relative; }
.nav-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  padding: .55rem .8rem;
  border: 0;
  border-radius: var(--r-pill);
  background: none;
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.nav-drop__btn:hover { background: var(--pink-50); color: var(--magenta-700); }
.nav-drop__btn .icon { width: .8em; height: .8em; transition: transform var(--dur-fast) var(--ease-out); }
.nav-drop__btn[aria-expanded="true"] .icon { transform: rotate(180deg); }
.nav-drop__btn[aria-current="page"] { color: var(--magenta-700); font-weight: 600; background: var(--pink-50); }
.nav-drop__menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  translate: -50% 0;
  min-width: 15rem;
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card-hover);
  display: none;
}
.nav-drop.is-open .nav-drop__menu {
  display: block;
  animation: drop-in var(--dur-fast) var(--ease-out);
}
@keyframes drop-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nav-drop__menu a {
  display: block;
  padding: .55rem .8rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-drop__menu a:hover { background: var(--pink-50); color: var(--magenta-700); }
.nav-drop__menu a[aria-current="page"] { background: var(--pink-50); color: var(--magenta-700); font-weight: 600; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--r-sm);
  background: none;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle:hover { color: var(--magenta-700); }
.nav-toggle .icon { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile full-screen sheet */
@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 4.25rem;
    z-index: 90;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-5) var(--sp-5) var(--sp-7);
    background:
      radial-gradient(40rem 24rem at 90% 0%, rgba(224, 52, 145, .16), transparent 60%),
      var(--plum-950);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity var(--dur-med) var(--ease-out),
      transform var(--dur-med) var(--ease-out),
      visibility 0s linear var(--dur-med);
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: .1rem; }
  .site-nav a:not(.btn) {
    padding: .8rem .5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #FFF6FB;
    border-radius: var(--r-sm);
  }
  .site-nav a:not(.btn):hover { background: rgba(242, 125, 184, .1); color: var(--pink-300); }
  .site-nav a[aria-current="page"] { background: rgba(242, 125, 184, .12); color: var(--pink-300); }
  .nav-drop { display: contents; }
  .nav-drop__btn { display: none; }
  .nav-drop__menu {
    display: block;
    position: static;
    translate: none;
    min-width: 0;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    animation: none;
  }
  .nav-drop__menu a {
    padding: .8rem .5rem .8rem 1.4rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #E9CFE0;
  }
  .nav-drop__menu a:hover { background: rgba(242, 125, 184, .1); color: var(--pink-300); }
  .nav-drop__menu a[aria-current="page"] { background: rgba(242, 125, 184, .12); color: var(--pink-300); }
  .site-nav .btn--whatsapp { margin-top: var(--sp-5); }
  body.nav-open { overflow: hidden; }
}

/* ----- Cards ----- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform var(--dur-med) var(--ease-spring),
    box-shadow var(--dur-med) var(--ease-out);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--plum-900);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.06); }
/* colour treatment: plum-to-clear + magenta wash */
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(31, 14, 26, .38), transparent 55%),
    linear-gradient(160deg, rgba(165, 38, 107, .16), transparent 55%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-2);
  padding: var(--sp-5);
}
.card__body h3 { margin: 0; }
.card__body p { margin: 0; font-size: .96rem; }
.card__cta {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-size: .95rem;
}

/* Card as a single link */
.card--link { text-decoration: none; color: inherit; }
.card--link:hover { color: inherit; }
.card--link:focus-visible { outline-offset: 0; }

/* Dark panel card (pet transport — no photo exists) */
.card__media--panel {
  display: grid;
  place-items: center;
  background:
    radial-gradient(18rem 12rem at 78% -20%, rgba(224, 52, 145, .3), transparent 62%),
    radial-gradient(14rem 10rem at 8% 120%, rgba(140, 32, 89, .35), transparent 65%),
    var(--plum-900);
}
.card__media--panel::after { display: none; }
.card__media--panel .icon {
  width: 4rem;
  height: 4rem;
  color: var(--pink-300);
  filter: drop-shadow(0 6px 16px rgba(224, 52, 145, .45));
  transition: transform .6s var(--ease-spring);
}
.card:hover .card__media--panel .icon { transform: scale(1.12) rotate(-3deg); }

/* ----- Stat / credibility strip ----- */
.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cred-strip li {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  margin: 0;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #E9CFE0;
}
.cred-strip li::before {
  content: "";
  width: .45em;
  height: .45em;
  border-radius: 50%;
  background: var(--pink-300);
  box-shadow: 0 0 10px rgba(242, 125, 184, .8);
}

/* --------------------------------------------------------------------------
   6. SECTIONS
   -------------------------------------------------------------------------- */

/* ----- Hero ----- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(92svh, 56rem);
  padding-block: clamp(7rem, 16vh, 10rem) clamp(2.5rem, 6vh, 4rem);
  margin-top: -4.25rem; /* sit behind the sticky header */
  color: #F5E4EE;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--plum-950);
}
.hero__media picture, .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media img {
  animation: kenburns 26s var(--ease-out) both;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.14) translateX(-1.5%); }
}
/* plum scrim + magenta wash */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(31, 14, 26, .96) 0%, rgba(31, 14, 26, .66) 42%, rgba(31, 14, 26, .48) 100%),
    radial-gradient(60rem 34rem at 78% -10%, rgba(224, 52, 145, .28), transparent 62%);
}
.hero__scrim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(140, 32, 89, .5), rgba(31, 14, 26, .25) 60%);
  mix-blend-mode: multiply;
}
.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .06;
}

/* .hero__inner also carries .container, so it inherits the centred 72rem
   width — this keeps the hero copy aligned with the rest of the page and
   gives it a proper left gutter instead of hugging the viewport edge.
   (align-items:flex-end + the container's auto inline margins bottom-centre it.) */
.hero .eyebrow { color: var(--pink-300); }
.hero h1 {
  max-width: 13ch;
  margin-bottom: var(--sp-5);
  color: #FFF6FB;
  text-shadow: 0 2px 30px rgba(31, 14, 26, .45);
}
.hero__lede {
  max-width: 44ch;
  margin-bottom: var(--sp-6);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: clamp(2.5rem, 7vh, 4.5rem);
}
.hero__cred {
  border-top: 1px solid rgba(242, 125, 184, .25);
  padding-top: var(--sp-4);
}

/* ----- Section headers ----- */
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { font-size: 1.1rem; }

/* ----- Services grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.services-grid li { margin: 0; }

/* ----- Film & TV band ----- */
.film-band__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .film-band__grid { grid-template-columns: 1.05fr .95fr; }
}
.credit-list {
  margin: 0 0 var(--sp-6);
  padding: 0;
  list-style: none;
}
.credit-list li {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin: 0;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(242, 125, 184, .14);
}
.credit-list .credit__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #FFF6FB;
}
.credit-list .credit__animal {
  margin-left: auto;
  text-align: right;
  font-size: .92rem;
  color: #D9A9C6;
}
.film-band__stills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(.75rem, 1.6vw, 1.25rem);
}
.film-still {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.film-still img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.film-still::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(31, 14, 26, .5), transparent 38%),
    linear-gradient(140deg, rgba(165, 38, 107, .14), transparent 55%);
}
.film-still figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: .6rem .8rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #F5E4EE;
  text-shadow: 0 1px 8px rgba(31, 14, 26, .8);
}
.film-still:nth-child(2) { transform: translateY(1.5rem); }
@media (max-width: 560px) {
  .film-still:nth-child(2) { transform: none; }
}

/* ----- Owners / credentials ----- */
.owner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.owner + .owner { margin-top: clamp(3rem, 7vw, 5rem); }
@media (min-width: 820px) {
  .owner { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .owner--flip .owner__media { order: 2; }
}
.owner__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
}
.owner__media img { width: 100%; }
.owner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(31, 14, 26, .3), transparent 45%),
    linear-gradient(150deg, rgba(165, 38, 107, .14), transparent 55%);
  mix-blend-mode: multiply;
}
.owner__media figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: .7rem 1rem;
  font-size: .8rem;
  color: #F5E4EE;
  text-shadow: 0 1px 8px rgba(31, 14, 26, .85);
}
.owner__role {
  display: block;
  margin-bottom: var(--sp-1);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta-600);
}
.owner h3 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: var(--sp-4) 0 0;
  padding: 0;
  list-style: none;
}
.chip-list li {
  margin: 0;
  padding: .32em .85em;
  border: 1px solid var(--pink-100);
  border-radius: var(--r-pill);
  background: var(--pink-50);
  font-size: .82rem;
  font-weight: 500;
  color: var(--magenta-700);
}

/* ----- Pull quote ----- */
.mission {
  position: relative;
  text-align: center;
}
.mission blockquote {
  margin: 0;
  padding: 0;
}
.mission blockquote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #FFF6FB;
  max-width: 24ch;
  margin: 0 auto var(--sp-5);
}
.mission blockquote p::before { content: "\201C"; color: var(--pink-300); }
.mission blockquote p::after { content: "\201D"; color: var(--pink-300); }
.mission figcaption {
  font-size: .95rem;
  color: #D9A9C6;
  max-width: 52ch;
  margin-inline: auto;
}

/* ----- Contact strip ----- */
.contact-strip {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 880px) {
  .contact-strip { grid-template-columns: 1.2fr .9fr .9fr; align-items: start; }
}
.contact-strip h2 { margin-bottom: var(--sp-3); }
.info-block { font-size: .98rem; }
.info-block h4 {
  margin-bottom: var(--sp-2);
  font-size: .8125rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--magenta-600);
}
.info-block p { margin-bottom: var(--sp-3); }
.info-block a { font-weight: 500; }

/* ----- Footer ----- */
.site-footer {
  position: relative;
  background-color: var(--plum-950);
  background-image:
    radial-gradient(44rem 26rem at 88% 0%, rgba(224, 52, 145, .12), transparent 60%),
    radial-gradient(30rem 20rem at 0% 110%, rgba(140, 32, 89, .18), transparent 62%);
  color: #D9C6D2;
  font-size: .95rem;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .05;
  pointer-events: none;
}
.site-footer > * { position: relative; z-index: 1; }
.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-block: clamp(3rem, 6vw, 4.5rem) var(--sp-6);
}
@media (min-width: 820px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.site-footer .brand__name { color: #FFF6FB; }
.site-footer__tagline { margin-top: var(--sp-3); max-width: 30ch; }
.site-footer h4 {
  margin-bottom: var(--sp-3);
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink-300);
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 .45rem; }
.site-footer a { color: #E9CFE0; text-decoration: none; }
.site-footer a:hover { color: var(--pink-300); text-decoration: underline; text-underline-offset: .18em; }
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(242, 125, 184, .14);
  font-size: .85rem;
  color: #B292A6;
}
.site-footer__legal p { margin: 0; }

.social-row { display: flex; gap: .6rem; margin-top: var(--sp-4); }
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(242, 125, 184, .3);
  border-radius: 50%;
  color: #E9CFE0;
  transition:
    transform var(--dur-fast) var(--ease-spring),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    background-color var(--dur-fast) var(--ease-out);
}
.social-row a:hover {
  transform: translateY(-3px);
  border-color: var(--pink-300);
  color: #fff;
  background: rgba(224, 52, 145, .16);
}
.social-row .icon { width: 20px; height: 20px; }

/* ----- Page header (interior pages) ----- */
.page-head {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 5vw, 3.5rem);
  background:
    radial-gradient(44rem 20rem at 85% -30%, rgba(224, 52, 145, .08), transparent 60%),
    linear-gradient(to bottom, #FFF9F1, var(--paper));
  border-bottom: 1px solid var(--border);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 18ch; }
.page-head__lede { max-width: 54ch; font-size: 1.12rem; margin: 0; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4em;
  margin: 0 0 var(--sp-4);
  padding: 0;
  list-style: none;
  font-size: .85rem;
}
.breadcrumb li { margin: 0; display: inline-flex; align-items: center; gap: .4em; }
.breadcrumb li + li::before { content: "/"; opacity: .45; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--magenta-700); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--magenta-700); font-weight: 600; }

/* ----- Forms ----- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
}
.field { margin-bottom: var(--sp-4); }
.field label {
  display: block;
  margin-bottom: .4rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--heading);
}
.field .hint { font-weight: 400; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #D9C6B8; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible {
  outline: none;
  border-color: var(--magenta-600);
  box-shadow: 0 0 0 4px rgba(224, 52, 145, .14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C4451' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  padding-right: 2.6rem;
}
.form-row {
  display: grid;
  gap: 0 var(--sp-4);
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
/* Honeypot — off-screen, never display:none (some bots check) */
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  margin: var(--sp-4) 0 0;
  padding: .9rem 1.1rem;
  border-radius: var(--r-md);
  font-size: .95rem;
  display: none;
}
.form-status.is-ok {
  display: block;
  background: #EAF7EF;
  border: 1px solid #BFE5CD;
  color: #1D5A34;
}
.form-status.is-error {
  display: block;
  background: var(--pink-50);
  border: 1px solid var(--pink-100);
  color: var(--magenta-700);
}
.form-status ul { margin: .4rem 0 0; padding-left: 1.2rem; }
.form-status li { margin: 0 0 .2rem; }
.btn.is-sending { opacity: .65; pointer-events: none; }
.btn.is-sending::after {
  content: "";
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(1turn); } }

/* ----- Map ----- */
.map-embed {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--pink-50);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 20rem;
  border: 0;
}

/* ----- Contact page layout ----- */
.contact-grid {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: start;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 7fr 5fr; }
}

/* ----- Gallery: filter pills ----- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  padding: 0;
  list-style: none;
}
.filter-bar li { margin: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .45em 1.2em;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--surface);
  font: inherit;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring);
}
.pill:hover {
  border-color: var(--magenta-600);
  color: var(--magenta-700);
  transform: translateY(-1px);
}
.pill:active { transform: translateY(0) scale(.97); }
.pill[aria-pressed="true"] {
  background: var(--magenta-600);
  border-color: var(--magenta-600);
  color: #fff;
  box-shadow: 0 2px 8px rgba(165, 38, 107, .28);
}

/* ----- Gallery: masonry (CSS columns) ----- */
.gallery-masonry {
  columns: 4 16rem;
  column-gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery-item {
  margin: 0 0 1.25rem;
  break-inside: avoid;
}
@media (max-width: 700px) {
  .gallery-masonry { columns: 2; column-gap: .75rem; }
  .gallery-item { margin-bottom: .75rem; }
  .gallery-cap { font-size: .72rem; padding: .5rem .6rem; }
}
.gallery-item.is-hidden { display: none; }
.gallery-link {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--plum-900);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease-out);
}
.gallery-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.gallery-link img {
  width: 100%;
  transition: transform .6s var(--ease-out);
}
.gallery-link:hover img { transform: scale(1.045); }
.gallery-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 14, 26, .72), transparent 42%);
  opacity: .9;
  transition: opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.gallery-link:hover::after { opacity: 1; }
.gallery-cap {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: .65rem .85rem;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.45;
  color: #F5E4EE;
  text-shadow: 0 1px 6px rgba(31, 14, 26, .9);
}

/* ----- Lightbox ----- */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(94vw, 90rem);
  max-height: 94vh;
  overflow: visible;
}
.lightbox::backdrop {
  background: rgba(24, 10, 20, .93);
}
.lightbox figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin: 0;
}
.lightbox img {
  max-width: min(92vw, 80rem);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-float);
  background: var(--plum-900);
}
.lightbox figcaption {
  color: #E9CFE0;
  font-size: .95rem;
  text-align: center;
  max-width: 60ch;
  text-wrap: balance;
}
.lightbox-btn {
  position: fixed;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1.5px solid rgba(242, 125, 184, .4);
  border-radius: 50%;
  background: rgba(44, 21, 38, .8);
  color: #fff;
  cursor: pointer;
  transition:
    background-color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-spring);
}
.lightbox-btn:hover {
  background: var(--magenta-600);
  border-color: var(--magenta-600);
  transform: scale(1.08);
}
.lightbox-btn:active { transform: scale(.96); }
.lightbox-btn .icon { width: 22px; height: 22px; }
.lightbox-btn--close { top: 1rem; right: 1rem; }
.lightbox-btn--prev { left: 1rem; top: 50%; translate: 0 -50%; }
.lightbox-btn--next { right: 1rem; top: 50%; translate: 0 -50%; }
@media (max-width: 700px) {
  .lightbox-btn--prev { top: auto; bottom: 1.25rem; translate: none; left: calc(50% - 60px); }
  .lightbox-btn--next { top: auto; bottom: 1.25rem; translate: none; right: calc(50% - 60px); }
}

/* ----- Video blocks (casting page) ----- */
.video-frame {
  max-width: 56rem; /* source is 640px — limit upscaling */
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  background: var(--plum-950);
}
.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-cards {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 640px) {
  .video-cards { grid-template-columns: repeat(3, 1fr); }
}
.video-card {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med) var(--ease-out);
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.video-card img { width: 100%; transition: transform .6s var(--ease-out); }
.video-card:hover img { transform: scale(1.05); }
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 14, 26, .78), transparent 45%);
  pointer-events: none;
}
.video-card__label {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .85rem;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(31, 14, 26, .9);
}
.video-card__play {
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(224, 52, 145, .92);
  color: #fff;
  box-shadow: 0 4px 18px rgba(31, 14, 26, .5);
  transition: transform var(--dur-fast) var(--ease-spring), background-color var(--dur-fast) var(--ease-out);
}
.video-card:hover .video-card__play {
  transform: scale(1.12);
  background: var(--pink-500);
}
.video-card__play .icon { width: 20px; height: 20px; margin-left: 2px; }

/* ----- Service pages ----- */
.service-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 880px) {
  .service-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .service-aside { position: sticky; top: 5.5rem; }
}
.service-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
}
/* Space the major sub-sections. Each h2 sits inside its own .reveal wrapper,
   so target the top-level blocks rather than the (always-first-child) h2. */
.service-body > * + * { margin-top: var(--sp-7); }
.service-body img { border-radius: var(--r-lg); }

/* Check list with brand markers */
.check-list {
  margin: 0 0 var(--sp-4);
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 0 0 .55rem;
  padding-left: 1.9rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28em;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  background: var(--pink-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C2059' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 60% no-repeat;
}

/* Pricing card */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(1.25rem, 3vw, 1.9rem);
}
.price-card + .price-card { margin-top: var(--sp-5); }
.price-card h3 {
  margin-bottom: var(--sp-3);
  font-size: 1.15rem;
}
.price-card .btn { width: 100%; margin-top: var(--sp-4); }
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  margin: 0;
  padding: .55rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .96rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--magenta-700);
  white-space: nowrap;
}
.price-note {
  margin: var(--sp-3) 0 0;
  font-size: .82rem;
  color: var(--ink-soft);
}
.price-card--dark {
  background:
    radial-gradient(16rem 10rem at 85% -10%, rgba(224, 52, 145, .25), transparent 60%),
    var(--plum-900);
  border-color: rgba(242, 125, 184, .2);
  color: #E4D2DD;
}
.price-card--dark h3 { color: #FFF6FB; }
.price-card--dark .price-list li { border-bottom-color: rgba(242, 125, 184, .18); }
.price-card--dark .price-list .amount { color: var(--pink-300); }
.price-card--dark .price-note { color: #C9A9BC; }

/* Times table */
.times-block { margin-bottom: var(--sp-5); }
.times-block h3 { margin-bottom: var(--sp-2); font-size: 1.1rem; }
.times-block p { margin-bottom: var(--sp-2); }

/* --------------------------------------------------------------------------
   7. SCROLL REVEAL (JS adds .is-revealed; ~900ms fallback in main.js)
   Visible-by-default: the hidden starting state only applies once main.js
   has actually run and tagged <html class="js-reveal">. If that script
   never runs (blocked, 404, error, JS disabled) content simply stays
   visible with no animation, instead of vanishing forever. -------------- */
.reveal {
  transition:
    opacity .7s var(--ease-out),
    transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
  will-change: opacity, transform;
}
.js-reveal .reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   8. UTILITIES
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.icon { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }
