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

/* =========================================================
   EASY MOVING — "Warm Editorial Movement"
   Design system: ink + cream + one magenta accent
   ========================================================= */

:root {
  /* ---- Colour ---- */
  --ink: #141414;
  --ink-80: rgba(20, 20, 20, 0.8);
  --ink-70: rgba(20, 20, 20, 0.68);
  --ink-50: rgba(20, 20, 20, 0.48);
  --ink-30: rgba(20, 20, 20, 0.28);

  --cream: #f7f3ee;
  --cream-deep: #efe8e0;
  --stone: #e7e2da;
  --white: #ffffff;

  --magenta: #eb088a;
  --magenta-600: #c4066f;
  --magenta-700: #a8055e;
  --magenta-300: #ff6fbe;
  --magenta-100: #fce4f1;

  --green: #49ab47;

  /* ---- Type ---- */
  --font-display: "Fraunces", "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* ---- 8pt spacing scale ---- */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 2.5rem;
  --s-6: 3rem;
  --s-7: 3.5rem;
  --s-8: 4rem;
  --s-10: 5rem;
  --s-12: 6rem;

  /* ---- Radii ---- */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Elevation ---- */
  --shadow-1: 0 1px 2px rgba(20, 20, 20, 0.04), 0 10px 26px rgba(20, 20, 20, 0.06);
  --shadow-2: 0 2px 6px rgba(20, 20, 20, 0.05), 0 22px 48px rgba(20, 20, 20, 0.11);

  /* ---- Layout ---- */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --header-h: 84px;

  /* ---- Signature device: the "movement cut" ---- */
  --clip-corner: 3.5rem;
  --clip-diagonal: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--clip-corner)),
    calc(100% - var(--clip-corner)) 100%,
    0 100%
  );

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

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  text-underline-offset: 0.22em;
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

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

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--ink-30);
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}

a:hover {
  color: var(--magenta-600);
  text-decoration-color: var(--magenta-600);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

::selection {
  background: var(--magenta-600);
  color: #fff;
}

/* ---- Film grain, applied globally, never intercepts pointer ---- */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%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");
  background-size: 180px 180px;
}

/* =========================================================
   UTILITIES
   ========================================================= */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10000;
  transform: translate(-50%, -140%);
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  font: 600 0.875rem/1 var(--font-sans);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: transform 0.3s var(--ease-out);
}

.skip-link:focus {
  transform: translate(-50%, 0);
  color: #fff;
}

/* =========================================================
   OVERLINE — recurring small-caps device with accent rule
   ========================================================= */

.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0 0 var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-600);
}

.overline::before {
  content: "";
  flex: none;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.overline--light {
  color: var(--magenta-300);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-border: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease), transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  --btn-bg: var(--magenta-600);
  --btn-fg: #ffffff;
  --btn-border: var(--magenta-600);
  box-shadow: 0 6px 18px rgba(196, 6, 111, 0.22);
}

.btn--primary:hover {
  --btn-bg: var(--magenta-700);
  --btn-border: var(--magenta-700);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(168, 5, 94, 0.28);
}

.btn--secondary {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-border: var(--ink);
}

.btn--secondary:hover {
  --btn-bg: var(--ink);
  --btn-fg: #ffffff;
  color: #ffffff;
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.07);
  --btn-fg: #ffffff;
  --btn-border: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  --btn-bg: #ffffff;
  --btn-fg: var(--ink);
  color: var(--ink);
  border-color: #ffffff;
}

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: #ffffff;
  --btn-border: rgba(255, 255, 255, 0.5);
}

.btn--ghost-light:hover {
  --btn-bg: #ffffff;
  --btn-fg: var(--ink);
  color: var(--ink);
  border-color: #ffffff;
}

.btn--small {
  padding: 0.625rem 1.0625rem;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.5) blur(12px);
  -webkit-backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--stone);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--magenta-600);
  transform: scaleX(0);
  transform-origin: left center;
  animation: rule-in 1.1s 0.35s var(--ease-out) forwards;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--header-h);
}

/* ---- Brand ---- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  flex: none;
  transition: transform 0.5s var(--ease-out);
}

.brand:hover .brand-logo {
  transform: rotate(-8deg) scale(1.04);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

.brand-tag {
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* ---- Toggle ---- */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}

.nav-toggle:hover {
  border-color: var(--ink);
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease),
    background-color 0.25s var(--ease);
}

.nav-toggle-bars::before {
  top: 0;
  box-shadow: 0 6px 0 var(--ink);
}

.nav-toggle-bars::after {
  bottom: 0;
}

[aria-expanded="true"] .nav-toggle-bars::before,
.site-header.is-open .nav-toggle-bars::before {
  transform: translateY(6px) rotate(45deg);
  box-shadow: 0 0 0 var(--ink);
}

[aria-expanded="true"] .nav-toggle-bars::after,
.site-header.is-open .nav-toggle-bars::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---- Nav ---- */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.375rem 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--magenta-600);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}

.nav-link:hover {
  color: var(--magenta-600);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--magenta-600);
}

.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex: none;
}

/* ---- Mobile nav behaviour ---- */
@media (max-width: 899px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: var(--s-2) var(--gutter) var(--s-4);
    background: var(--white);
    border-bottom: 1px solid var(--stone);
    box-shadow: var(--shadow-2);
  }

  .site-header.is-open .nav,
  .site-header.nav-open .nav {
    display: block;
    animation: nav-in 0.32s var(--ease-out) both;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 0.9375rem 0;
    border-bottom: 1px solid var(--stone);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.is-active {
    padding-left: 0.875rem;
    box-shadow: inset 3px 0 0 var(--magenta-600);
  }

  .site-header .btn--primary {
    display: none;
  }
}

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

  .nav-list {
    gap: clamp(1rem, 2vw, 1.75rem);
  }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem);
  background-color: var(--ink);
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
      90deg,
      rgba(235, 8, 138, 0.08) 0,
      rgba(235, 8, 138, 0) 55%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 96px
    );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
}

.hero .overline {
  color: var(--magenta-300);
}

.hero-title {
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.4vw, 4.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: #ffffff;
}

.hero-sub {
  max-width: 44ch;
  margin: 0 0 var(--s-4);
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  margin: 0;
  padding: var(--s-3) 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.hero-meta > * {
  position: relative;
}

.hero-meta > * + *::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--magenta-300);
  transform: translateY(-50%);
}

/* ---- Hero figure: the signature "movement cut" ---- */
.hero-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  clip-path: var(--clip-diagonal);
  background: #232323;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.04) contrast(1.04);
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.32) 0%,
    rgba(20, 20, 20, 0) 38%,
    rgba(20, 20, 20, 0.72) 100%
  );
}

.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: var(--s-3) var(--s-4) calc(var(--s-6) + 0.25rem);
  color: #ffffff;
}

.hero-caption-kicker {
  display: block;
  margin-bottom: 0.375rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta-300);
}

.hero-caption-text {
  display: block;
  max-width: 34ch;
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

/* ---- Rotating stamp ---- */
.hero-stamp {
  position: absolute;
  top: clamp(0.875rem, 2vw, 1.5rem);
  right: clamp(0.875rem, 2vw, 1.5rem);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 0.75rem;
  border-radius: 50%;
  background: var(--magenta-600);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.6);
  animation: spin 32s linear infinite;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .hero-figure {
    aspect-ratio: 5 / 6;
  }
}

@media (max-width: 899px) {
  .hero-figure {
    aspect-ratio: 4 / 5;
    max-height: 70vh;
  }
}

/* =========================================================
   COOKIE CONSENT — static band, never covers hero
   ========================================================= */

.cookie-consent {
  position: relative;
  z-index: 5;
  padding-block: var(--s-3);
  background: var(--cream-deep);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2) var(--s-4);
}

.cookie-text {
  flex: 1 1 22rem;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-80);
}

.cookie-muted {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-50);
}

.cookie-muted a {
  color: var(--ink-50);
  text-decoration-color: var(--ink-30);
}

.cookie-muted a:hover {
  color: var(--magenta-600);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  flex: none;
}

/* =========================================================
   SECTIONS
   ========================================================= */

.section {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
  background: var(--white);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section--cream {
  background: var(--cream);
}

.section--cream + .section {
  border-top: 1px solid var(--stone);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-3);
  max-width: none;
}

.section-head--centered {
  max-width: 44rem;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.section-head--centered .overline {
  justify-content: center;
}

.section-title {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4.2vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.lede {
  max-width: 60ch;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-70);
}

/* =========================================================
   SPLIT / EDITORIAL
   ========================================================= */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.split--editorial {
  align-items: start;
}

.split-body {
  max-width: 56ch;
}

.split-body > .btn {
  margin-top: var(--s-2);
}

.split img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.split--editorial img {
  clip-path: var(--clip-diagonal);
  border-radius: 0;
  box-shadow: var(--shadow-2);
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 5rem);
  }

  .split--editorial {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* =========================================================
   FACTS
   ========================================================= */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: var(--s-3);
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact {
  padding-top: var(--s-2);
  border-top: 2px solid var(--ink);
}

.fact-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--magenta-600);
  font-variant-numeric: tabular-nums;
}

.fact-label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.facts--stacked {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 40rem;
}

.facts--stacked .fact {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-2);
  padding-bottom: var(--s-2);
  border-top: 1px solid var(--stone);
}

.facts--stacked .fact:first-child {
  border-top: 2px solid var(--ink);
}

.facts--stacked .fact-value {
  order: 2;
  font-size: 1.75rem;
}

.facts--stacked .fact-label {
  order: 1;
  margin-top: 0;
}

/* =========================================================
   STYLE LIST — editorial index rows (not cards)
   ========================================================= */

.style-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}

.style-item {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: var(--s-1) var(--s-3);
  align-items: start;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--stone);
  transition: padding-inline 0.45s var(--ease-out),
    background-color 0.45s var(--ease-out);
}

.style-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--magenta-600);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s var(--ease-out);
}

.style-item:hover {
  background-color: var(--cream);
  padding-inline: var(--s-3) var(--s-2);
}

.style-item:hover::before {
  transform: scaleY(1);
}

.style-index {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--magenta-600);
  font-variant-numeric: tabular-nums;
}

.style-body {
  max-width: 62ch;
}

.style-title {
  margin: 0 0 0.375rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.style-text {
  margin: 0 0 var(--s-2);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-70);
}

@media (min-width: 768px) {
  .style-item {
    grid-template-columns: 5rem minmax(0, 1fr);
    gap: var(--s-4);
    align-items: baseline;
  }

  .style-index {
    font-size: 1.5rem;
  }
}

/* =========================================================
   LINK ARROW — shared tertiary interaction
   ========================================================= */

.link-arrow,
.tile-cta,
.timeline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--magenta-600);
  text-decoration: none;
  transition: color 0.25s var(--ease), gap 0.35s var(--ease-out);
}

.link-arrow::after,
.tile-cta::after,
.timeline-cta::after {
  content: "\2192";
  font-size: 1.0625rem;
  line-height: 1;
  transition: transform 0.35s var(--ease-out);
}

.link-arrow:hover,
.tile-cta:hover,
.timeline-cta:hover {
  color: var(--magenta-700);
  gap: 0.75rem;
}

.link-arrow:hover::after,
.tile-cta:hover::after,
.timeline-cta:hover::after {
  transform: translateX(3px);
}

/* =========================================================
   GRID 2 / CARDS
   ========================================================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.45s var(--ease-out), border-color 0.35s var(--ease),
    box-shadow 0.45s var(--ease-out);
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--magenta-100);
  box-shadow: var(--shadow-2);
  color: inherit;
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cream-deep);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0) 45%,
    rgba(20, 20, 20, 0.5) 100%
  );
  opacity: 0.85;
  transition: opacity 0.45s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.045);
}

.card:hover .card-media::after {
  opacity: 0.6;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
  padding: var(--s-3) var(--s-3) var(--s-4);
}

.card-meta {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-600);
}

.card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.card-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
}

.card .link-arrow {
  margin-top: auto;
  padding-top: var(--s-1);
}

/* Feature card — asymmetric, full-bleed within grid */
@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card--feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .card--feature .card-media {
    height: 100%;
    aspect-ratio: auto;
    min-height: 22rem;
    clip-path: var(--clip-diagonal);
  }

  .card--feature .card-body {
    justify-content: center;
    padding: var(--s-5) clamp(1.5rem, 3vw, 3rem);
  }

  .card--feature .card-title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
  }
}

/* =========================================================
   AGENDA LIST — typographic rows
   ========================================================= */

.agenda-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}

.agenda-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--stone);
  transition: background-color 0.4s var(--ease), padding-inline 0.4s var(--ease-out);
}

.agenda-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--magenta-600);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.4s var(--ease-out);
}

.agenda-row:hover {
  background-color: var(--cream);
  padding-inline: var(--s-2);
}

.agenda-row:hover::before {
  transform: scaleY(1);
}

.agenda-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-600);
  font-variant-numeric: tabular-nums;
}

.agenda-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.agenda-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
  max-width: 62ch;
}

@media (min-width: 768px) {
  .agenda-row {
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: var(--s-4);
    align-items: baseline;
  }

  .agenda-date {
    padding-top: 0.4rem;
  }
}

/* =========================================================
   TIMELINE — horizontal on desktop, stacked on mobile
   Critical: must always render, never collapsed
   ========================================================= */

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  position: relative;
  padding-top: var(--s-4);
  border-top: 1px solid var(--stone);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--magenta-600);
  box-shadow: 0 0 0 4px var(--white);
}

.section--cream .timeline-item::before {
  box-shadow: 0 0 0 4px var(--cream);
}

.timeline-when {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta-600);
}

.timeline-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.timeline-text {
  margin: 0 0 var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
}

.timeline img {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-top: var(--s-2);
  border-radius: var(--radius-sm);
  object-fit: cover;
}

@media (min-width: 900px) {
  .timeline {
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }

  .timeline-item {
    padding-top: var(--s-4);
  }
}

/* =========================================================
   GRID 3 / TILES — hairline rules instead of boxed cards
   ========================================================= */

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}

.tile {
  position: relative;
  padding: var(--s-4) var(--s-3) var(--s-4) var(--s-4);
  border-left: 2px solid var(--stone);
  background-image: linear-gradient(
    90deg,
    rgba(252, 228, 241, 0) 0%,
    rgba(252, 228, 241, 0) 100%
  );
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease-out),
    background-image 0.5s var(--ease);
}

.tile:hover {
  border-left-color: var(--magenta-600);
  transform: translateX(3px);
  background-image: linear-gradient(
    90deg,
    var(--magenta-100) 0%,
    rgba(252, 228, 241, 0) 85%
  );
}

.tile-index {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-50);
}

.tile-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.4375rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.tile-text {
  margin: 0 0 var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

/* =========================================================
   LOGO STRIP
   ========================================================= */

.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: var(--s-4);
  background: var(--stone);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  overflow: hidden;
}

.logo-item {
  display: grid;
  place-items: center;
  min-height: 7.5rem;
  padding: var(--s-3);
  background: var(--white);
}

.logo-item img {
  max-width: 100%;
  max-height: 3.75rem;
  object-fit: contain;
  filter: grayscale(1) contrast(1.06);
  opacity: 0.58;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease),
    transform 0.4s var(--ease-out);
}

.logo-item:hover img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* =========================================================
   ASSURE — reassurance block
   ========================================================= */

.assure {
  position: relative;
  padding-block: clamp(3rem, 7vw, 5.5rem);
  background: var(--cream);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.assure-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.assure-inner img {
  width: 100%;
  max-width: 26rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  clip-path: var(--clip-diagonal);
  box-shadow: var(--shadow-2);
}

.assure-title {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
}

.assure-list {
  display: grid;
  gap: var(--s-2);
  margin: var(--s-4) 0 0;
  padding: 0;
  list-style: none;
}

.assure-item {
  position: relative;
  padding-left: 2rem;
}

.assure-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 1rem;
  height: 2px;
  background: var(--magenta-600);
}

.assure-item-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.assure-item-text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
}

@media (min-width: 900px) {
  .assure-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .assure-inner > img {
    grid-order: 1;
  }
}

/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background-color: var(--ink);
  color: #ffffff;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--magenta-600);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -40%;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.cta-title {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: #ffffff;
}

.cta-text {
  max-width: 52ch;
  margin: 0 0 var(--s-4);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

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

.cta-text a {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.cta-text a:hover {
  color: var(--magenta-300);
  text-decoration-color: var(--magenta-300);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding-block: clamp(2.5rem, 5vw, 4.5rem) var(--s-3);
  background: var(--cream);
  border-top: 1px solid var(--stone);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.footer-col {
  min-width: 0;
}

.brand--footer {
  margin-bottom: var(--s-2);
}

.brand--footer .brand-logo {
  width: 56px;
  height: 56px;
}

.brand--footer .brand-name {
  font-size: 1.25rem;
}

.footer-text {
  max-width: 34ch;
  margin: 0 0 var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-70);
}

.footer-title {
  margin: 0 0 var(--s-2);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-list {
  display: grid;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-70);
  text-decoration: none;
  transition: color 0.25s var(--ease), padding-left 0.3s var(--ease-out);
}

.footer-list a:hover {
  color: var(--magenta-600);
  padding-left: 0.25rem;
}

.footer-address {
  margin: 0 0 var(--s-3);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-style: normal;
  line-height: 1.7;
  color: var(--ink-70);
}

.footer-address a {
  color: var(--ink-70);
  text-decoration: none;
}

.footer-address a:hover {
  color: var(--magenta-600);
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease-out);
}

.social-link:hover {
  background: var(--magenta-600);
  border-color: var(--magenta-600);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: var(--s-3);
  border-top: 1px solid var(--stone);
}

.footer-copy {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-50);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-50);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

.footer-legal a:hover {
  color: var(--magenta-600);
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-5) var(--s-4);
  }
}

@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

/* =========================================================
   MOTION
   ========================================================= */

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rule-in {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes nav-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: fade-up 0.95s var(--ease-out) both;
  }

  .hero-copy > *:nth-child(1) {
    animation-delay: 0.06s;
  }
  .hero-copy > *:nth-child(2) {
    animation-delay: 0.14s;
  }
  .hero-copy > *:nth-child(3) {
    animation-delay: 0.22s;
  }
  .hero-copy > *:nth-child(4) {
    animation-delay: 0.3s;
  }
  .hero-copy > *:nth-child(5) {
    animation-delay: 0.38s;
  }

  .hero-figure {
    animation: fade-up 1.1s 0.18s var(--ease-out) both;
  }

  /* Progressive scroll-reveal where supported; graceful no-op elsewhere */
  @supports (animation-timeline: view()) {
    .card,
    .tile,
    .timeline-item,
    .agenda-row,
    .style-item,
    .fact,
    .logo-item,
    .assure-item {
      animation: reveal-up linear both;
      animation-timeline: view();
      animation-range: entry 4% cover 26%;
    }
  }
}

@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;
  }
}