/* ==========================================================================
   EASY MOVING — "The Welcoming Stage"
   Editorial & restrained. Warm. Inclusive. Movement-forward.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Colour — 2 base tones + 1 accent */
  --ink:          #141216;
  --cream:        #F7F2EA;
  --stone:        #E8E1D6;
  --white:        #FFFFFF;

  --magenta:      #EB088A;
  --magenta-dark: #C40673;
  --magenta-text: #A8055F;   /* accessible magenta for small text on cream */
  --magenta-glow: rgba(235, 8, 138, 0.28);

  --cyan:         #1F6F86;   /* accessible cyan — overlines / links */
  --green:        #3E8E3C;   /* trust / accreditation */

  --body:         #3F3A40;
  --muted:        #5C555B;   /* darkened for AA contrast on cream */
  --border:       #D8D0C4;

  /* Spacing — 8pt scale */
  --s-1: 0.5rem;   /*  8 */
  --s-2: 1rem;     /* 16 */
  --s-3: 1.5rem;   /* 24 */
  --s-4: 2rem;     /* 32 */
  --s-5: 2.5rem;   /* 40 */
  --s-6: 3rem;     /* 48 */
  --s-7: 4rem;     /* 64 */
  --s-8: 5rem;     /* 80 */
  --s-9: 6.5rem;   /* 104 */

  /* Type scale — rem based */
  --fs--2: 0.75rem;    /* 12 overline        */
  --fs--1: 0.875rem;   /* 14 meta            */
  --fs-0:  1rem;       /* 16                 */
  --fs-1:  1.0625rem;  /* 17 body            */
  --fs-2:  1.25rem;    /* 20                 */
  --fs-3:  1.5rem;     /* 24 card title      */
  --fs-4:  1.875rem;   /* 30 mobile h2       */
  --fs-5:  2.375rem;   /* 38                 */
  --fs-6:  2.75rem;    /* 44 h2 desktop      */
  --fs-7:  3.5rem;     /* 56                 */
  --fs-8:  4rem;       /* 64 h1 desktop      */

  /* Layout */
  --container: 1200px;
  --gutter: 1rem;
  --gutter-d: 1.5rem;
  --section-y: 2.5rem;      /* 40 mobile */
  --section-y-t: 3.5rem;    /* 56 tablet */
  --section-y-d: 5rem;      /* 80 desktop */

  /* Radii */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;
  --arch: 240px 240px 6px 6px;   /* signature stage-arch */

  /* Elevation — crisp, layered, never blurry-soft */
  --el-1: 0 1px 0 rgba(20,18,22,0.06), 0 0 0 1px rgba(20,18,22,0.04);
  --el-2: 0 2px 0 rgba(20,18,22,0.05), 0 12px 32px -18px rgba(20,18,22,0.35);
  --el-3: 0 3px 0 rgba(20,18,22,0.05), 0 28px 60px -28px rgba(20,18,22,0.45);

  /* Fonts */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: var(--fs-1);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Use clip (not hidden) so the body never becomes a scroll container
     that would break the sticky header / fixed mobile menu. */
  overflow-x: clip;
}

/* Grain texture overlay — signature tactile layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
}

p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

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

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--magenta-glow), 0 0 0 2px var(--white) inset;
  border-radius: var(--r-xs);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--s-2);
  top: -120%;
  z-index: 300;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--s-2); }

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--gutter-d); }
}

.section {
  position: relative;
  padding-block: var(--section-y);
  display: block;
  height: auto;
}
.section--cream { background: var(--cream); }

/* Fallback placeholder — if a published content section renders empty it
   shows a skeleton band instead of a large blank gap (never reads as broken). */
.section > .container:empty::after {
  content: "";
  display: block;
  width: 100%;
  min-height: 220px;
  border-radius: var(--r-md);
  background:
    linear-gradient(var(--stone), var(--stone)) 0 0    / 42% 1.4rem no-repeat,
    linear-gradient(var(--stone), var(--stone)) 0 2.8rem / 72% 1rem  no-repeat,
    linear-gradient(var(--stone), var(--stone)) 0 4.3rem / 64% 1rem  no-repeat,
    linear-gradient(var(--stone), var(--stone)) 0 5.8rem / 58% 1rem  no-repeat;
  opacity: 0.55;
}

@media (min-width: 768px) {
  .section { padding-block: var(--section-y-t); }
}
@media (min-width: 1024px) {
  .section { padding-block: var(--section-y-d); }
}

/* Overline — letterspaced small caps */
.overline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--fs--2);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 var(--s-3);
  position: relative;
  padding-left: 2.25rem;
}
.overline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.overline--light { color: var(--stone); }

/* Section head */
.section__head {
  max-width: 62ch;
  margin-bottom: var(--s-6);
}
.section__head--split {
  max-width: none;
  display: grid;
  gap: var(--s-4);
  align-items: end;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .section__head--split {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: var(--s-7);
  }
}
.section__title {
  font-size: var(--fs-4);
  margin: 0 0 var(--s-3);
}
@media (min-width: 768px) {
  .section__title { font-size: var(--fs-5); }
}
@media (min-width: 1024px) {
  .section__title { font-size: var(--fs-6); }
}
.section__intro {
  font-size: var(--fs-1);
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
}
.section__aside-text {
  font-size: var(--fs--1);
  color: var(--muted);
  max-width: 40ch;
  border-left: 2px solid var(--magenta);
  padding-left: var(--s-3);
  line-height: 1.6;
}
.section__footnote {
  margin-top: var(--s-5);
  font-size: var(--fs--1);
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  --btn-h: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: var(--btn-h);
  padding: 0 var(--s-3);
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
              border-color 0.22s var(--ease), transform 0.22s var(--ease),
              box-shadow 0.22s var(--ease);
  position: relative;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 2px 0 rgba(20,18,22,0.08), 0 14px 30px -18px var(--magenta);
}
.btn--primary:hover {
  background: var(--magenta-dark);
  box-shadow: 0 2px 0 rgba(20,18,22,0.08), 0 20px 40px -18px var(--magenta-dark);
}

.btn--secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(247,242,234,0.35);
  color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn--link {
  height: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-weight: 600;
  Gap: 0.5rem;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 4px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), gap .2s var(--ease);
}
.btn--link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}
.btn--link:hover {
  color: var(--magenta-text);
  border-color: var(--magenta-text);
  gap: 0.85rem;
}
.btn--link:hover::after { transform: translateX(3px); }

/* Icon button (search) */
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--ink);
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.icon-btn:hover {
  background: var(--stone);
  border-color: var(--border);
  color: var(--magenta-text);
}
.icon-btn svg { width: 19px; height: 19px; }

/* --------------------------------------------------------------------------
   5. HEADER / NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  /* Raised above the mobile nav so the toggle/close control stays visible. */
  z-index: 140;
  /* Solid background: backdrop-filter would create a containing block that
     traps the fixed-position mobile menu and breaks its viewport sizing. */
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--border); }

@media (max-width: 1023px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  body {
    padding-top: 64px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  height: 64px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 1024px) {
  .site-header__inner { height: 84px; }
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  flex-shrink: 0;
  min-width: 0;
}
.brand__logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.5s var(--ease-out);
}
.brand:hover .brand__logo { transform: rotate(-8deg) scale(1.06); }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
@media (min-width: 1024px) {
  .brand__logo { width: 44px; height: 44px; }
  .brand__name { font-size: 1.3rem; }
}

/* Nav — mobile slide-in panel, viewport-sized */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  max-height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  width: min(90vw, 360px);
  max-width: 100vw;
  background: var(--cream);
  padding: 6rem var(--s-4) var(--s-5);
  transform: translateX(102%);
  transition: transform 0.45s var(--ease-out), visibility 0s linear 0.45s;
  z-index: 130;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-left: 1px solid var(--border);
  box-shadow: -30px 0 60px -40px rgba(20,18,22,0.5);
  visibility: hidden;
  pointer-events: none;
}
.site-header:has(.nav-toggle[aria-expanded="true"]) .nav {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.45s var(--ease-out), visibility 0s;
}
.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__item {
  border-bottom: 1px solid var(--border);
  position: relative;
}
.nav__link {
  display: block;
  padding: 0.95rem 0.15rem;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--magenta-text);
  padding-left: 0.55rem;
}

/* Submenu / dropdown panels — stacked inline while the menu is a drawer */
.nav__submenu,
.nav__dropdown,
.submenu,
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav {
    position: static;
    width: auto;
    height: auto;
    max-height: none;
    padding: 0;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
    overscroll-behavior: auto;
    visibility: visible;
    pointer-events: auto;
  }
  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  }
  .nav__item { border: 0; }
  .nav__link {
    padding: 0.5rem 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.15rem;
    height: 2px;
    background: var(--magenta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-out);
  }
  .nav__link:hover,
  .nav__link[aria-current="page"] {
    padding-left: 0.85rem;
    color: var(--ink);
  }
  .nav__link:hover::after,
  .nav__link[aria-current="page"]::after { transform: scaleX(1); }

  /* Anchor dropdowns to their trigger instead of floating detached */
  .nav__submenu,
  .nav__dropdown,
  .submenu,
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    padding: var(--s-2);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    box-shadow: var(--el-2);
    z-index: 150;
  }
}

/* Header actions */
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;   /* >= 8px between tap targets */
  flex-shrink: 0;
}
.site-header__cta { display: none; }
@media (min-width: 640px) {
  .site-header__cta { display: inline-flex; height: 42px; }
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: transparent;
  position: relative;
  z-index: 140;
  transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-toggle:hover { background: var(--stone); }
.nav-toggle__label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after  { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after  { transform: rotate(-45deg); }

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

/* --------------------------------------------------------------------------
   6. HERO — "The Welcoming Stage"
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--cream);
  padding-block: var(--s-5) var(--s-8);
  overflow: hidden;
  overflow-x: clip;   /* safety net against horizontal overflow */
  width: 100%;
}

/* decorative stage arc behind content */
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -12%;
  width: min(58vw, 720px);
  aspect-ratio: 1 / 1.15;
  border-radius: var(--arch);
  background: radial-gradient(circle at 70% 30%, rgba(235,8,138,0.10), transparent 62%),
              radial-gradient(circle at 30% 80%, rgba(31,111,134,0.09), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--s-5);
  align-items: center;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: var(--s-7);
    padding-block: var(--s-5) var(--s-6);
  }
}

.hero__content {
  max-width: 34rem;
  width: 100%;
  min-width: 0;
}

.hero__title {
  font-size: var(--fs-6);
  line-height: 1.03;
  letter-spacing: -0.028em;
  margin: 0 0 var(--s-3);
  overflow-wrap: break-word;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--magenta-text);
}
@media (min-width: 768px) {
  .hero__title { font-size: var(--fs-7); }
}
@media (min-width: 1024px) {
  .hero__title { font-size: var(--fs-8); }
}

.hero__rule {
  display: block;
  width: 4rem;
  height: 3px;
  background: var(--magenta);
  margin: 0 0 var(--s-3);
  border: 0;
}

.hero__lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--body);
  max-width: 46ch;
  margin: 0 0 var(--s-4);
}
@media (min-width: 768px) {
  .hero__lead { font-size: 1.25rem; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  align-items: center;
  margin-bottom: var(--s-5);
}

.hero__facts {
  display: flex;
  flex-direction: column;   /* single column on small screens */
  flex-wrap: nowrap;
  gap: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
}
@media (min-width: 640px) {
  .hero__facts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--s-2) var(--s-5);
  }
}
.hero__fact {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: var(--fs--1);
  color: var(--muted);
  position: relative;
  padding-left: 1.1rem;
  min-width: 0;
  max-width: 100%;
}
.hero__fact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
}
.hero__fact strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1;
}

/* Hero media — signature stage arch */
.hero__media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.hero__figure {
  position: relative;
  margin: 0;
  border-radius: var(--arch);
  overflow: hidden;
  background: var(--stone);
  box-shadow: var(--el-3);
  aspect-ratio: 4 / 5;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  isolation: isolate;
}
.hero__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,18,22,0) 45%, rgba(20,18,22,0.55) 100%),
    linear-gradient(200deg, rgba(235,8,138,0.14) 0%, rgba(20,18,22,0) 42%);
  pointer-events: none;
  z-index: 2;
}
.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.hero__figure:hover img { transform: scale(1.045); }

/* Rotating stamp — signature detail */
.hero__stamp {
  position: absolute;
  left: -18px;
  bottom: 26px;
  z-index: 4;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
  padding: 0.9rem;
  box-shadow: 0 18px 34px -18px var(--magenta);
}
.hero__stamp::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1px dashed rgba(235, 8, 138, 0.55);
  animation: em-spin 26s linear infinite;
}
@media (min-width: 768px) {
  .hero__stamp { width: 124px; height: 124px; font-size: 0.6875rem; left: -30px; }
}

@keyframes em-spin { to { transform: rotate(360deg); } }

.hero__caption {
  margin-top: var(--s-2);
  font-size: var(--fs--2);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
  padding-right: var(--s-2);
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  white-space: normal;
  text-indent: 0;
}

/* Generic tagline safety */
.tagline,
.hero__tagline {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-indent: 0;
  overflow-wrap: normal;
  word-break: normal;
}

/* --------------------------------------------------------------------------
   7. EDITORIAL INTRO — oversized serif device
   -------------------------------------------------------------------------- */
.editorial {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .editorial {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: var(--s-7);
    align-items: start;
  }
}

.editorial__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.editorial__emblem {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(5rem, 16vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.05em;
  color: var(--ink);
  position: relative;
  padding-bottom: var(--s-3);
}
.editorial__emblem::after {
  content: "";
  display: block;
  width: 42%;
  height: 3px;
  background: var(--magenta);
  margin-top: var(--s-3);
}
.editorial__emblem span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: var(--s-3);
}

.editorial__body { max-width: 62ch; }

.editorial__title {
  font-size: var(--fs-4);
  margin: 0 0 var(--s-3);
  max-width: 22ch;
}
@media (min-width: 768px) {
  .editorial__title { font-size: var(--fs-5); }
}
@media (min-width: 1024px) {
  .editorial__title { font-size: var(--fs-6); }
}

.editorial__text {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--s-3);
}
.editorial__text:last-of-type { margin-bottom: var(--s-4); }

/* --------------------------------------------------------------------------
   8. PROOF — styles, facts, checklist
   -------------------------------------------------------------------------- */
.proof { position: relative; }

.proof__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--border);
}
.proof__filters > * {
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: transparent;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.proof__filters > *:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.proof__filters > *[aria-pressed="true"],
.proof__filters > .is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.proof__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  letter-spacing: -0.02em;
}
.proof__subheading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-3);
  letter-spacing: -0.015em;
}
.proof__note {
  font-size: var(--fs--1);
  color: var(--muted);
  font-style: italic;
  max-width: 55ch;
  margin-top: var(--s-3);
}
.proof__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  margin-top: var(--s-4);
}

/* Style list — editorial, not identical cards */
.style-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .style-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--s-5); }
}
@media (min-width: 1024px) {
  .style-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.style-list__item {
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  position: relative;
  transition: color 0.2s var(--ease), padding-left 0.28s var(--ease);
}
.style-list__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  flex-shrink: 0;
  transform: translateY(-2px);
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease);
}
.style-list__item:hover {
  color: var(--magenta-dark);
  padding-left: 0.4rem;
}
.style-list__item:hover::before {
  transform: translateY(-2px) scale(1.6);
}

/* Facts grid */
.proof__facts { margin-top: var(--s-4); }
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 900px) {
  .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.fact {
  background: var(--white);
  padding: var(--s-3) var(--s-3) var(--s-4);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.fact__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.fact__label {
  font-size: var(--fs--1);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* Checklist */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-2);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--s-5); }
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--body);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E");
  background-size: 0.7rem;
  background-repeat: no-repeat;
  background-position: center;
}

/* --------------------------------------------------------------------------
   9. TRUST / LOGO STRIP
   -------------------------------------------------------------------------- */
.trust {
  padding-block: var(--s-6);
  background: var(--white);
  border-block: 1px solid var(--border);
}
.trust__label {
  display: block;
  text-align: center;
  font-size: var(--fs--2);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--s-4);
}
.logo-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--s-3) var(--s-4);
  align-items: center;
  justify-items: center;
}
.logo-strip__item {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 64px;
  padding: var(--s-2);
  filter: grayscale(1) opacity(0.62);
  transition: filter 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.logo-strip__item img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-strip__item:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   10. CARDS / DANSSTAGES
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 700px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-5);
    align-items: start;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.35s var(--ease);
  box-shadow: var(--el-1);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--el-3);
  border-color: var(--stone);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,22,0.0) 55%, rgba(20,18,22,0.35) 100%);
  pointer-events: none;
}

/* Emblem media variant (no photography) */
.card__media--emblem {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(235,8,138,0.14), transparent 60%),
    var(--ink);
  aspect-ratio: 4 / 3;
}
.card__media--emblem::after { display: none; }
.card__media--emblem img,
.card__media--emblem svg {
  width: 46%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.9s var(--ease-out);
}
.card:hover .card__media--emblem img,
.card:hover .card__media--emblem svg { transform: scale(1.06) rotate(-2deg); }

.card__badge {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-xs);
  box-shadow: 0 10px 24px -12px rgba(235,8,138,0.8);
}

.card__body {
  padding: var(--s-4) var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  flex: 1;
}
.card__meta {
  font-size: var(--fs--2);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}
.card__title {
  font-size: var(--fs-3);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}
.card:hover .card__title { color: var(--magenta-text); }
.card__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 var(--s-2);
}
.card__body .btn--link { margin-top: auto; align-self: flex-start; }

/* Editorial asymmetric rhythm on desktop */
@media (min-width: 900px) {
  .card--event-alt { margin-top: var(--s-6); }
  .card--event .card__media { aspect-ratio: 5 / 4; }
  .card--event-alt .card__media { aspect-ratio: 4 / 5; }
}

/* --------------------------------------------------------------------------
   11. REASSURANCE (placed low)
   -------------------------------------------------------------------------- */
.reassure {
  display: grid;
  gap: var(--s-4);
  padding: var(--s-4) 0 0;
  border-top: 1px solid var(--border);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .reassure {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: var(--s-7);
    align-items: start;
  }
}
.reassure__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 20ch;
}
.reassure__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}
.reassure__item {
  position: relative;
  padding-left: 2rem;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
}
.reassure__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 1.15rem;
  height: 2px;
  background: var(--magenta);
}

/* --------------------------------------------------------------------------
   12. CTA PANEL / INVITATION
   -------------------------------------------------------------------------- */
.section--invite {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--s-7) var(--s-8);
}
@media (min-width: 1024px) {
  .section--invite { padding-block: var(--s-9); }
}

.cta-panel {
  position: relative;
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .cta-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--s-8);
  }
}

.cta-panel__emblem {
  display: none;
}
@media (min-width: 900px) {
  .cta-panel__emblem {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--arch);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(235,8,138,0.22), rgba(31,111,134,0.18));
    box-shadow: inset 0 0 0 1px rgba(247,242,234,0.14);
  }
  .cta-panel__emblem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    mix-blend-mode: luminosity;
    transition: transform 1.2s var(--ease-out);
  }
  .cta-panel__emblem:hover img { transform: scale(1.04); }
  .cta-panel__emblem::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(20,18,22,0.1) 0%, rgba(20,18,22,0.75) 100%),
      linear-gradient(200deg, rgba(235,8,138,0.32), transparent 55%);
    pointer-events: none;
  }
}

.cta-panel__body { max-width: 40rem; }

.cta-panel__title {
  font-size: var(--fs-5);
  color: var(--cream);
  margin: 0 0 var(--s-3);
  line-height: 1.05;
  letter-spacing: -0.022em;
}
@media (min-width: 1024px) {
  .cta-panel__title { font-size: var(--fs-7); }
}
.cta-panel__text {
  color: rgba(247,242,234,0.78);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 var(--s-5);
  max-width: 46ch;
}

.contact-list {
  list-style: none;
  margin: 0 0 var(--s-5);
  padding: 0;
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-4); }
}
.contact-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: var(--s-2);
  border-top: 1px solid rgba(247,242,234,0.15);
}
.contact-list__label {
  font-size: var(--fs--2);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.contact-list__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease);
}
a.contact-list__value:hover { color: var(--magenta); }

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(247,242,234,0.72);
  border-top: 1px solid rgba(247,242,234,0.08);
  padding-block: var(--s-6) var(--s-4);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(247,242,234,0.12);
}
@media (min-width: 1024px) {
  .footer__grid { gap: var(--s-6); }
}

.footer__col { min-width: 0; }

.footer__title {
  font-family: var(--font-sans);
  font-size: var(--fs--2);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0 0 var(--s-3);
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9375rem;
}
.footer__list a {
  color: rgba(247,242,234,0.72);
  transition: color 0.2s var(--ease);
  position: relative;
}
.footer__list a:hover { color: var(--magenta); }

.footer__note {
  font-size: var(--fs--1);
  color: rgba(247,242,234,0.55);
  margin-top: var(--s-3);
  max-width: 34ch;
  line-height: 1.55;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding-top: var(--s-4);
  font-size: var(--fs--1);
  color: #CCCCCC;
  letter-spacing: 0.02em;
}
.footer__bottom a { color: inherit; }
.footer__bottom a:hover { color: var(--magenta); }

/* --------------------------------------------------------------------------
   14. SCROLL-REVEAL & MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .section > .container > *,
    .editorial,
    .cards > .card,
    .trust .logo-strip,
    .cta-panel {
      animation: em-reveal linear both;
      animation-timeline: view();
      animation-range: entry 6% cover 26%;
    }
  }
}

@keyframes em-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* --------------------------------------------------------------------------
   15. UTILITY / MISC
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Ensure decorative overlays never block interaction */
[class*="__figure"]::after,
.hero::before,
.card__media::after { pointer-events: none; }

/* --------------------------------------------------------------------------
   16. LARGE SCREENS — subtle refinements
   -------------------------------------------------------------------------- */
@media (min-width: 1280px) {
  :root { --gutter-d: 2rem; }
  .hero { padding-block: var(--s-7) var(--s-9); }
}