/*
 * Compiled fallback stylesheet.
 *
 * A plain-CSS mirror of assets/scss/, so the theme is styled on activation with
 * no build step. When you run `npm run build`, HP_Assets prefers the hashed Vite
 * output and ignores this file. Keep this in sync with the SCSS, or delete it
 * and rely solely on the build.
 */

:root {
  --hp-color-brand: #1f4fff;
  --hp-color-accent: #ff5c39;
  --hp-color-ink: #14181f;
  --hp-color-surface: #ffffff;
  --hp-color-muted: #f4f6f9;
  --hp-color-on-brand: #ffffff;
  --hp-color-border: color-mix(in srgb, var(--hp-color-ink) 12%, transparent);

  --hp-font-display: "Fraunces", Georgia, serif;
  --hp-font-body: "Inter", system-ui, -apple-system, sans-serif;
  --hp-text-xs: 0.8125rem;
  --hp-text-sm: 0.9375rem;
  --hp-text-base: 1.0625rem;
  --hp-text-lg: 1.375rem;
  --hp-text-xl: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  --hp-h1: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
  --hp-h2: clamp(1.75rem, 1.35rem + 2vw, 2.5rem);
  --hp-h3: clamp(1.375rem, 1.15rem + 1vw, 1.75rem);
  --hp-h4: 1.25rem;
  --hp-h5: 1.0625rem;
  --hp-h6: 0.9375rem;
  --hp-leading-tight: 1.15;
  --hp-leading-body: 1.6;

  --hp-space-0: 0;
  --hp-space-1: 0.5rem;
  --hp-space-2: 1rem;
  --hp-space-3: 2rem;
  --hp-space-4: 4rem;
  --hp-space-5: 7rem;

  --hp-radius: 0.75rem;
  --hp-radius-card: var(--hp-radius);
  --hp-radius-image: var(--hp-radius);
  --hp-radius-button: var(--hp-radius);
  --hp-radius-input: var(--hp-radius);
  --hp-elevation-1: none;
  --hp-elevation-2: none;

  --hp-container-narrow: 48rem;
  --hp-container-default: 72rem;
  --hp-container-wide: 84rem;
  --hp-gutter: clamp(1rem, 0.5rem + 2.5vw, 2.5rem);

  --hp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hp-duration: 0.5s;
}

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

body { overflow-x: clip;
  margin: 0;
  font-family: var(--hp-font-body);
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-body);
  color: var(--hp-color-ink);
  background-color: var(--hp-color-surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--hp-font-display);
  line-height: var(--hp-leading-tight);
  margin: 0 0 0.5em;
  color: var(--hp-heading-color, inherit);
}
.hp-section--bg-ink, .hp-section--bg-brand, .hp-section--bg-custom, .hp-section--has-bg.hp-section--tint-dark, .hp-hero--bg-ink, .hp-hero--has-media, .hp-footer, .hp-slider, .hp-section__card--dark, .hp-media--card, .hp-card--colored, .hp-cta__card--ink, .hp-post-hero { --hp-heading-color: currentColor; }
h1 { font-size: var(--hp-h1); line-height: var(--hp-h1-lh, var(--hp-leading-tight)); }
h2 { font-size: var(--hp-h2); line-height: var(--hp-h2-lh, var(--hp-leading-tight)); }
h3 { font-size: var(--hp-h3); line-height: var(--hp-h3-lh, var(--hp-leading-tight)); }
h4 { font-size: var(--hp-h4); line-height: var(--hp-h4-lh, var(--hp-leading-tight)); }
h5 { font-size: var(--hp-h5); line-height: var(--hp-h5-lh, var(--hp-leading-tight)); }
h6 { font-size: var(--hp-h6); line-height: var(--hp-h6-lh, var(--hp-leading-tight)); }

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

.hp-accent { color: var(--hp-color-accent); }
.hp-mark { font-size: 0.45em; line-height: 0; vertical-align: super; margin-inline-start: 0.06em; }
.hp-section__title .hp-mark,
.hp-hero__title .hp-mark { font-size: 0.32em; }

.hp-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--hp-color-ink);
  color: var(--hp-color-surface);
  border-radius: 0 0 var(--hp-radius) 0;
}
.hp-skip-link:focus { left: 0; }

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

/* Section + container */
.hp-section {
  --hp-section-pt: var(--hp-space-4);
  --hp-section-pb: var(--hp-space-4);
  position: relative;
  padding-top: var(--hp-section-pt);
  padding-bottom: var(--hp-section-pb);
  background-color: var(--hp-color-surface);
  color: var(--hp-color-ink);
}
.hp-section--pt-0 { --hp-section-pt: var(--hp-space-0); }
.hp-section--pt-1 { --hp-section-pt: var(--hp-space-1); }
.hp-section--pt-2 { --hp-section-pt: var(--hp-space-2); }
.hp-section--pt-3 { --hp-section-pt: var(--hp-space-3); }
.hp-section--pt-4 { --hp-section-pt: var(--hp-space-4); }
.hp-section--pt-5 { --hp-section-pt: var(--hp-space-5); }
.hp-section--pb-0 { --hp-section-pb: var(--hp-space-0); }
.hp-section--pb-1 { --hp-section-pb: var(--hp-space-1); }
.hp-section--pb-2 { --hp-section-pb: var(--hp-space-2); }
.hp-section--pb-3 { --hp-section-pb: var(--hp-space-3); }
.hp-section--pb-4 { --hp-section-pb: var(--hp-space-4); }
.hp-section--pb-5 { --hp-section-pb: var(--hp-space-5); }
.hp-section--bg-muted { background-color: var(--hp-color-muted); }
.hp-section--bg-brand { background-color: var(--hp-color-brand); color: var(--hp-color-on-brand); }
.hp-section--bg-ink { background-color: var(--hp-color-ink); color: var(--hp-color-surface); }
.hp-section--bg-custom { background-color: var(--hp-section-bg); color: var(--hp-section-ink, inherit); }
.hp-section__header { max-width: 42rem; margin-bottom: calc(var(--hp-space-3) + var(--hp-space-2)); }
.hp-section__title {
  letter-spacing: -0.01em;
  margin: 0;
}

.hp-container {
  --hp-container: var(--hp-container-default);
  width: 100%;
  max-width: var(--hp-container);
  margin-inline: auto;
  padding-inline: var(--hp-gutter);
}
.hp-container--narrow { --hp-container: var(--hp-container-narrow); }
.hp-container--wide { --hp-container: var(--hp-container-wide); }
.hp-container--full { --hp-container: 100%; padding-inline: 0; }

.hp-eyebrow {
  font-family: var(--hp-font-eyebrow, var(--hp-font-body));
  font-style: var(--hp-eyebrow-style, normal);
  font-size: var(--hp-eyebrow-size, var(--hp-text-sm));
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: var(--hp-eyebrow-transform, uppercase);
  color: var(--hp-color-accent);
  margin: 0 0 var(--hp-space-1);
}

/* Cards */
.hp-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--hp-space-3);
  grid-template-columns: 1fr;
}
@media (min-width: 40rem) {
  .hp-cards--cols-2, .hp-cards--cols-3, .hp-cards--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64rem) {
  .hp-cards--cols-3 { grid-template-columns: repeat(3, 1fr); }
  .hp-cards--cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.hp-section__header--align-center { text-align: center; margin-inline: auto; }
.hp-section__content {
  margin-top: var(--hp-space-2);
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-body);
  color: color-mix(in srgb, currentColor 82%, transparent);
}
.hp-section__content > :first-child { margin-top: 0; }
.hp-section__content > :last-child { margin-bottom: 0; }
.hp-section__content a { color: var(--hp-color-brand); text-underline-offset: 0.15em; }

.hp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--hp-card-bg, var(--hp-color-surface));
  color: var(--hp-card-ink, var(--hp-color-ink));
  border: 1px solid var(--hp-card-border, var(--hp-color-border));
  border-radius: var(--hp-radius-card);
  overflow: hidden;
  box-shadow: var(--hp-elevation-1);
}
@media (prefers-reduced-motion: no-preference) {
  .hp-card.js-reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity var(--hp-duration) var(--hp-ease), transform var(--hp-duration) var(--hp-ease);
  }
  .hp-card.js-reveal.is-revealed { opacity: 1; transform: none; }
}
.hp-card__media { aspect-ratio: var(--hp-image-ratio, 4 / 3); overflow: hidden; }
.hp-card__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-card__icon-wrap {
  margin: var(--hp-space-3) var(--hp-space-3) 0;
  color: var(--hp-color-brand);
}
.hp-card__icon { width: 2rem; height: 2rem; fill: currentColor; }
.hp-card__icon-img { display: block; width: 3rem; height: 3rem; object-fit: contain; }
.hp-card__body { display: flex; flex-direction: column; gap: var(--hp-space-1); padding-block: var(--hp-card-pt, clamp(1.75rem, 1.4rem + 1vw, 2.75rem)) var(--hp-card-pb, clamp(1.75rem, 1.4rem + 1vw, 2.75rem)); padding-inline: var(--hp-card-pl, clamp(1.75rem, 1.4rem + 1vw, 2.75rem)) var(--hp-card-pr, clamp(1.75rem, 1.4rem + 1vw, 2.75rem)); flex: 1 1 auto; }
.hp-card__eyebrow {
  font-family: var(--hp-font-eyebrow, inherit);
  font-style: var(--hp-eyebrow-style, normal);
  font-size: var(--hp-eyebrow-size, var(--hp-text-xs));
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: var(--hp-eyebrow-transform, uppercase);
  color: var(--hp-color-accent);
  margin: 0;
}
.hp-card__title { font-family: var(--hp-font-display); font-size: var(--hp-text-lg); line-height: var(--hp-h3-lh, var(--hp-leading-tight)); margin: 0; }
.hp-card__description {
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-body);
  color: color-mix(in srgb, currentColor 78%, transparent);
  margin: 0;
}
.hp-card__cta {
  margin-top: auto;
  padding-top: var(--hp-space-2);
  display: inline-flex;
  align-items: center;
  gap: var(--hp-space-1);
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: var(--hp-text-sm);
  color: var(--hp-color-brand);
}
.hp-card__cta-icon { width: 1.1em; height: 1.1em; transition: transform var(--hp-duration) var(--hp-ease); }
@media (prefers-reduced-motion: no-preference) {
  .hp-card--linked:hover .hp-card__cta-icon { transform: translateX(3px); }
}
.hp-card--linked { transition: box-shadow var(--hp-duration) var(--hp-ease), transform var(--hp-duration) var(--hp-ease); }
.hp-card--linked:hover { box-shadow: var(--hp-elevation-2); }
@media (prefers-reduced-motion: no-preference) {
  .hp-card--linked:hover { transform: translateY(-2px); }
}
.hp-card__link { color: inherit; text-decoration: none; }
.hp-card__link::after { content: ""; position: absolute; inset: 0; }
.hp-card__link:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-card:focus-within { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }

/* Button */
.hp-button {
  --hp-btn-bg: var(--hp-color-brand);
  --hp-btn-fg: var(--hp-color-on-brand);
  display: inline-flex;
  align-items: center;
  gap: var(--hp-space-1);
  padding: 0.75rem 1.25rem;
  border-radius: var(--hp-radius-button);
  background-color: var(--hp-btn-bg);
  color: var(--hp-btn-fg);
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: var(--hp-text-sm);
  text-decoration: none;
  transition: filter var(--hp-duration) var(--hp-ease);
}
.hp-button:hover { filter: brightness(0.94); }
.hp-button:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-button--secondary { --hp-btn-bg: var(--hp-color-ink); }
.hp-button--ghost { --hp-btn-bg: transparent; --hp-btn-fg: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.hp-button__icon { width: 1em; height: 1em; fill: currentColor; }

/* Hero */
.hp-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--hp-space-5);
  background-color: var(--hp-color-muted);
  color: var(--hp-color-ink);
}
.hp-hero--home { min-height: 100vh; min-height: 100dvh; }
.hp-hero--medium { min-height: clamp(24rem, 62vh, 44rem); }
.hp-hero--interior { min-height: clamp(16rem, 40vh, 28rem); }
.hp-hero--bg-surface { background-color: var(--hp-color-surface); }
.hp-hero--bg-muted { background-color: var(--hp-color-muted); }
.hp-hero--bg-brand { background-color: var(--hp-color-brand); color: var(--hp-color-on-brand); }
.hp-hero--bg-ink { background-color: var(--hp-color-ink); color: var(--hp-color-surface); }
.hp-hero--divider { padding-bottom: calc(var(--hp-space-5) + var(--hp-divider-bottom-h, 0px)); }
.hp-hero .hp-divider--bottom { z-index: 3; }
.hp-hero--has-media { color: var(--hp-color-surface); }
.hp-hero__bg { position: absolute; inset: 0; z-index: 0; }
.hp-hero__image, .hp-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hp-hero__overlay { position: absolute; inset: 0; z-index: 1; background-color: var(--hp-color-ink); opacity: var(--hp-hero-overlay, 0.4); }
.hp-hero__inner { position: relative; z-index: 2; }
.hp-hero__content { display: flex; flex-direction: column; gap: var(--hp-space-2); max-width: 46rem; }
.hp-hero--align-center { text-align: center; }
.hp-hero--align-center .hp-hero__content { max-width: 52rem; margin-inline: auto; align-items: center; }
.hp-hero__title { font-family: var(--hp-font-display); font-size: var(--hp-h1); line-height: var(--hp-h1-lh, var(--hp-leading-tight)); letter-spacing: -0.02em; margin: 0; }
.hp-hero__subtitle { font-size: var(--hp-text-lg); font-weight: 500; margin: 0; opacity: 0.9; }
.hp-hero__description { font-size: var(--hp-text-base); line-height: var(--hp-leading-body); margin: 0; opacity: 0.85; }
.hp-hero__buttons { display: flex; flex-wrap: wrap; gap: var(--hp-space-2); margin-top: var(--hp-space-1); }
.hp-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: var(--hp-space-2);
  z-index: 2;
  translate: -50% 0;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: inherit;
  border-radius: 999px;
  border: 1px solid currentColor;
}
.hp-hero__scroll:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: no-preference) {
  .hp-hero__scroll { animation: hp-hero-bob 1.8s var(--hp-ease) infinite; }
}
.hp-hero__scroll-icon { width: 1.25rem; height: 1.25rem; }
@keyframes hp-hero-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Buttons row */
.hp-buttons { display: flex; flex-wrap: wrap; gap: var(--hp-space-2); }

/* Breadcrumbs */
.hp-breadcrumbs { font-size: var(--hp-text-sm); }
.hp-breadcrumbs__list { display: flex; flex-wrap: wrap; gap: var(--hp-space-1); list-style: none; margin: 0; padding: 0; }
.hp-breadcrumbs__item { display: inline-flex; align-items: center; }
.hp-breadcrumbs__item:not(:last-child)::after { content: "\203A"; margin-inline-start: var(--hp-space-1); opacity: 0.6; }
.hp-breadcrumbs__item a { color: inherit; text-decoration: none; opacity: 0.85; }
.hp-breadcrumbs__item a:hover { opacity: 1; text-decoration: underline; }
.hp-breadcrumbs__item [aria-current="page"] { font-weight: 600; }

/* FAQ accordion */
.hp-accordion {
  display: grid;
  gap: var(--hp-space-2);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 48rem) {
  .hp-accordion--cols-2 { grid-template-columns: repeat(2, 1fr); }
}
.hp-accordion__column {
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-2);
}
.hp-accordion__item {
  border: 1px solid var(--hp-color-border);
  border-radius: var(--hp-radius);
  background-color: var(--hp-color-surface);
  overflow: hidden;
}
.hp-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--hp-space-2);
  padding: var(--hp-space-2) var(--hp-space-3);
  cursor: pointer;
  font-family: var(--hp-font-body);
  font-weight: 600;
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-tight);
  color: var(--hp-color-ink);
  list-style: none;
}
.hp-accordion__summary::-webkit-details-marker { display: none; }
.hp-accordion__summary::marker { content: ""; }
.hp-accordion__summary:hover { color: var(--hp-color-brand); }
.hp-accordion__summary:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-accordion__icon {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--hp-color-brand);
  transition: transform var(--hp-duration) var(--hp-ease);
}
.hp-accordion__item[open] .hp-accordion__icon { transform: rotate(180deg); }
.hp-accordion__panel { padding: 0 var(--hp-space-3) var(--hp-space-3); }
.hp-accordion__content {
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-body);
  color: color-mix(in srgb, currentColor 82%, transparent);
}
.hp-accordion__content > :first-child { margin-top: 0; }
.hp-accordion__content > :last-child { margin-bottom: 0; }
.hp-accordion__content a { color: var(--hp-color-brand); text-underline-offset: 0.15em; }
@media (prefers-reduced-motion: no-preference) {
  .hp-accordion__item[open] .hp-accordion__panel { animation: hp-accordion-reveal var(--hp-duration) var(--hp-ease); }
}
@keyframes hp-accordion-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

/* List block */
.hp-list-cols {
  display: grid;
  gap: var(--hp-space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 48rem) {
  .hp-list-cols--2 { grid-template-columns: repeat(2, 1fr); }
}
.hp-list-col__head {
  display: flex;
  align-items: center;
  gap: var(--hp-space-2);
  margin-bottom: var(--hp-space-3);
}
.hp-list-col__icon-img { flex: none; width: 3rem; height: 3rem; object-fit: contain; display: block; }
.hp-list-col__subtitle {
  margin: 0;
  font-family: var(--hp-font-display);
  font-size: var(--hp-text-lg);
  line-height: var(--hp-leading-tight);
}
.hp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-body);
  counter-reset: hp-list;
}
.hp-list__item {
  display: flex;
  gap: var(--hp-space-2);
  align-items: baseline;
  padding-block: var(--hp-space-1);
  border-bottom: 1px solid var(--hp-color-border);
}
.hp-list__item:first-child { padding-top: 0; }
.hp-list__item:last-child { border-bottom: none; }
.hp-list__item::before {
  flex: none;
  color: var(--hp-color-accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hp-list--ul .hp-list__item::before { content: "\2022"; }
.hp-list--ol .hp-list__item { counter-increment: hp-list; }
.hp-list--ol .hp-list__item::before { content: counter(hp-list) "."; min-width: 1.25em; font-size: 0.8em; }

/* 50/50 content + media */
.hp-media {
  display: grid;
  gap: var(--hp-space-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 48rem) {
  .hp-media { grid-template-columns: 1fr 1fr; gap: var(--hp-space-5); }
  .hp-media--left .hp-media__figure { order: -1; }
}
.hp-media__content {
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-2);
}
.hp-media__content .hp-eyebrow { margin-bottom: 0; }
.hp-media__content--center { text-align: center; }
.hp-media__text {
  font-size: var(--hp-text-base);
  line-height: var(--hp-leading-body);
  color: color-mix(in srgb, currentColor 82%, transparent);
}
.hp-media__text > :first-child { margin-top: 0; }
.hp-media__text > :last-child { margin-bottom: 0; }
.hp-media__text a { color: var(--hp-color-brand); text-underline-offset: 0.15em; }
.hp-media__img { width: 100%; height: auto; display: block; border-radius: var(--hp-radius-image); }
.hp-media__video-wrap { border-radius: var(--hp-radius-image); overflow: hidden; line-height: 0; }
.hp-media__video { width: 100%; height: auto; display: block; }
.hp-media__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--hp-radius-image);
  overflow: hidden;
}
.hp-media__embed :where(iframe, embed, object, video) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Site header */
.hp-header { background-color: var(--hp-color-surface); border-bottom: 1px solid var(--hp-color-border); }
.hp-header--sticky { position: sticky; top: 0; z-index: 100; }
.hp-header__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: var(--hp-space-3); min-height: 4.5rem; }
.hp-header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.hp-header__logo-img { display: block; height: var(--hp-logo-height, 2.25rem); width: auto; }
.hp-header__logo-text { font-family: var(--hp-font-display); font-weight: 700; font-size: var(--hp-text-lg); color: var(--hp-color-ink); }
.hp-header__toggle { display: inline-grid; place-items: center; width: 2.75rem; height: 2.75rem; margin: 0; padding: 0; color: var(--hp-color-ink); background: none; border: 1px solid var(--hp-color-border); border-radius: var(--hp-radius); cursor: pointer; }
.hp-header__toggle:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-header__toggle-icon { width: 1.5rem; height: 1.5rem; }
.hp-header__toggle-icon--close { display: none; }
.hp-header.is-menu-open .hp-header__toggle-icon--open { display: none; }
.hp-header.is-menu-open .hp-header__toggle-icon--close { display: block; }
.hp-header__collapse { position: fixed; inset: 0; z-index: 90; display: flex; flex-direction: column; align-items: flex-start; gap: var(--hp-space-3); padding: calc(var(--hp-header-height, 5rem) + var(--hp-space-2)) var(--hp-space-4) var(--hp-space-5); background-color: var(--hp-color-ink); color: var(--hp-color-surface); overflow-y: auto; opacity: 0; visibility: hidden; transform: translate3d(0, -0.5rem, 0); -webkit-backface-visibility: hidden; backface-visibility: hidden; transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease; }
.hp-header__logo, .hp-header__toggle { position: relative; z-index: 95; }
.hp-header__cta { flex: none; margin-top: var(--hp-space-2); }
.hp-header.is-menu-open .hp-header__collapse { opacity: 1; visibility: visible; transform: translate3d(0, 0, 0); }
.hp-header__cta { flex: none; }
@media (min-width: 48rem) {
  .hp-header__toggle { display: none; }
  .hp-header__collapse { position: static; inset: auto; z-index: auto; display: flex; flex-direction: row; align-items: center; gap: var(--hp-space-4); padding: 0; background: none; color: inherit; overflow: visible; opacity: 1; visibility: visible; transform: none; }
  .hp-header__cta { margin-top: 0; }
}
.hp-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--hp-space-2); }
.hp-menu__link { text-decoration: none; color: var(--hp-color-ink); font-family: var(--hp-font-body); font-weight: 500; }
.hp-menu__link:hover { color: var(--hp-color-brand); }
.hp-menu__item.is-current > .hp-menu__link { color: var(--hp-color-brand); }
@media (min-width: 48rem) {
  .hp-menu { flex-direction: row; align-items: center; gap: var(--hp-space-3); }
}
.hp-overlay-hero .hp-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom-color: transparent;
}
.hp-overlay-hero .hp-header__logo-text,
.hp-overlay-hero .hp-header__toggle { color: var(--hp-color-surface); }
.hp-overlay-hero .hp-header__toggle { border-color: color-mix(in srgb, var(--hp-color-surface) 40%, transparent); }
@media (min-width: 48rem) {
  .hp-overlay-hero .hp-menu__link,
  .hp-overlay-hero .hp-menu__item.is-current > .hp-menu__link { color: var(--hp-color-surface); }
  .hp-overlay-hero .hp-menu__link:hover { color: color-mix(in srgb, var(--hp-color-surface) 75%, transparent); }
}

/* Site footer */
.hp-footer { position: relative; background-color: var(--hp-footer-bg, var(--hp-color-ink)); color: var(--hp-footer-ink, var(--hp-color-surface)); padding-block: var(--hp-space-4) var(--hp-space-3); font-size: var(--hp-text-base); line-height: var(--hp-leading-body); }
.hp-footer__top { display: grid; gap: var(--hp-space-3); grid-template-columns: 1fr; padding-bottom: var(--hp-space-3); border-bottom: 1px solid color-mix(in srgb, currentColor 15%, transparent); }
@media (min-width: 48rem) {
  .hp-footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: var(--hp-space-4); }
}
.hp-footer__brand { max-width: 22rem; }
.hp-footer__logo { display: block; height: var(--hp-footer-logo-h, 2.75rem); width: auto; margin-bottom: var(--hp-space-2); }
.hp-footer__tagline { margin: 0; color: color-mix(in srgb, currentColor 80%, transparent); }
.hp-footer__cols { display: grid; gap: var(--hp-space-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48rem) {
  .hp-footer__cols { grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); }
}
.hp-footer__heading { font-family: var(--hp-font-body); font-size: var(--hp-text-sm); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 var(--hp-space-2); color: color-mix(in srgb, currentColor 70%, transparent); }
.hp-footer__menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--hp-space-1); }
.hp-footer__menu a { color: inherit; text-decoration: none; opacity: 0.85; }
.hp-footer__menu a:hover { opacity: 1; color: var(--hp-color-accent); }
.hp-footer__bottom { padding-top: var(--hp-space-3); }
.hp-footer__copy { margin: 0; font-size: var(--hp-text-sm); color: color-mix(in srgb, currentColor 70%, transparent); }

/* Shape dividers */
.hp-section--dividers {
  overflow: hidden;
  padding-top: calc(var(--hp-section-pt) + var(--hp-divider-top-h, 0px));
  padding-bottom: calc(var(--hp-section-pb) + var(--hp-divider-bottom-h, 0px));
}
.hp-section--dividers > .hp-container { position: relative; z-index: 1; }
.hp-section--has-bg { overflow: hidden; }
.hp-section--has-bg > .hp-container { position: relative; z-index: 1; }
.hp-section--has-bg.hp-section--tint-dark { color: var(--hp-color-surface); }
.hp-section--has-bg.hp-section--tint-light { color: var(--hp-color-ink); }
.hp-section__bg { position: absolute; inset: 0; z-index: 0; }
.hp-section__bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-section__overlay { position: absolute; inset: 0; z-index: 0; background-color: var(--hp-color-ink); }
.hp-divider {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  line-height: 0;
  pointer-events: none;
}
.hp-divider svg { display: block; width: 100%; height: 100%; }
.hp-divider--top { top: 0; }
.hp-divider--bottom { bottom: 0; }
.hp-divider--top svg { transform: rotate(180deg); }
.hp-divider--bottom.hp-divider--flip svg { transform: scaleX(-1); }
.hp-divider--top.hp-divider--flip svg { transform: rotate(180deg) scaleX(-1); }

/* Hero split 50/50 */
.hp-hero--split .hp-hero__content { max-width: none; }
.hp-hero__split {
  width: 100%;
  display: grid;
  gap: var(--hp-space-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 48rem) {
  .hp-hero__split { grid-template-columns: 1fr 1fr; gap: var(--hp-space-5); }
  .hp-hero--media-left .hp-hero__media { order: -1; }
}
.hp-hero__media-img { width: 100%; height: auto; display: block; border-radius: var(--hp-radius-image); }
.hp-hero__media-video { border-radius: var(--hp-radius-image); overflow: hidden; line-height: 0; }
.hp-hero__media-video video { width: 100%; height: auto; display: block; }

/* Logo gallery */
.hp-logos--light .hp-logo-img { filter: brightness(0) invert(1); }
.hp-logos--dark .hp-logo-img { filter: brightness(0); }
.hp-logo-img { display: block; width: auto; height: auto; max-width: 100%; max-height: 3rem; object-fit: contain; }
.hp-logos--grid { display: grid; gap: var(--hp-space-4) var(--hp-space-3); align-items: center; justify-items: center; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48rem) {
  .hp-logos--grid.hp-logos--cols-3 { grid-template-columns: repeat(3, 1fr); }
  .hp-logos--grid.hp-logos--cols-4 { grid-template-columns: repeat(4, 1fr); }
  .hp-logos--grid.hp-logos--cols-5 { grid-template-columns: repeat(5, 1fr); }
  .hp-logos--grid.hp-logos--cols-6 { grid-template-columns: repeat(6, 1fr); }
}
.hp-logo-slot { display: grid; place-items: center; width: 100%; min-height: 4.5rem; }
.hp-logo { display: inline-flex; align-items: center; justify-content: center; }
.hp-logos--grid .hp-logo { grid-area: 1 / 1; opacity: 0; transition: opacity 0.6s ease; }
.hp-logos--grid .hp-logo.is-active { opacity: 1; }
.hp-logos-split { display: grid; gap: var(--hp-space-5); grid-template-columns: 1fr; align-items: center; }
.hp-logos-split .hp-logos-header { order: -1; }
@media (min-width: 48rem) {
  .hp-logos-split { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
  .hp-logos-split .hp-logos-header { order: 0; }
  .hp-logos-split--header-left { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); }
  .hp-logos-split--header-left .hp-logos-header { order: -1; }
}
.hp-logos-text { margin-top: var(--hp-space-2); color: color-mix(in srgb, currentColor 80%, transparent); }
.hp-logos-text > :first-child { margin-top: 0; }
.hp-logos-text > :last-child { margin-bottom: 0; }
.hp-logos--marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.hp-logos-track { display: flex; width: max-content; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); animation: hp-marquee var(--hp-marquee-duration, 25s) linear infinite; }
.hp-logos--marquee:hover .hp-logos-track { animation-play-state: paused; }
.hp-logos--speed-slow .hp-logos-track { --hp-marquee-duration: 40s; }
.hp-logos--speed-normal .hp-logos-track { --hp-marquee-duration: 25s; }
.hp-logos--speed-fast .hp-logos-track { --hp-marquee-duration: 15s; }
.hp-logo-item { flex: none; }
@keyframes hp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hp-logos-track { animation: none !important; transform: none !important; } }

/* Call to action */
.hp-section__bg-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-cta { display: flex; flex-direction: column; justify-content: center; }
.hp-cta--h-small { min-height: 22rem; }
.hp-cta--h-medium { min-height: 32rem; }
.hp-cta--h-large { min-height: 44rem; }
.hp-cta__card {
  max-width: 30rem;
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  border-radius: var(--hp-radius-card);
  display: flex;
  flex-direction: column;
  gap: var(--hp-space-2);
}
.hp-cta__card .hp-eyebrow { margin-bottom: 0; }
.hp-cta__card--left { margin-right: auto; }
.hp-cta__card--center { margin-inline: auto; text-align: center; }
.hp-cta__card--right { margin-left: auto; }
.hp-cta__card--surface { background-color: var(--hp-color-surface); color: var(--hp-color-ink); }
.hp-cta__card--ink { background-color: var(--hp-color-ink); color: var(--hp-color-surface); }
.hp-cta__card--plain { background: transparent; padding: 0; color: var(--hp-color-surface); }
.hp-cta__card--center .hp-buttons { justify-content: center; }
.hp-cta__text { font-size: var(--hp-text-base); line-height: var(--hp-leading-body); color: color-mix(in srgb, currentColor 82%, transparent); }
.hp-cta__text > :first-child { margin-top: 0; }
.hp-cta__text > :last-child { margin-bottom: 0; }

/* Nav links */
.hp-nav-links__list { list-style: none; margin: 0; padding: 0; }
.hp-nav-links__item { break-inside: avoid; }
@media (min-width: 48rem) {
  .hp-nav-links--cols-2 .hp-nav-links__list { column-count: 2; column-gap: clamp(2rem, 5vw, 5rem); }
}
.hp-nav-links__link { display: flex; align-items: stretch; gap: var(--hp-space-3); padding-block: var(--hp-space-2); text-decoration: none; color: inherit; }
.hp-nav-links__num { flex: none; align-self: flex-start; padding-top: 0.7em; font-family: var(--hp-font-body); font-size: var(--hp-text-sm); letter-spacing: 0.15em; font-variant-numeric: tabular-nums; color: color-mix(in srgb, currentColor 50%, transparent); }
.hp-nav-links__label { display: inline-flex; align-items: center; gap: 0.25em; padding-left: var(--hp-space-3); border-left: 1px solid color-mix(in srgb, currentColor 22%, transparent); font-family: var(--hp-font-display); font-size: clamp(2rem, 1.4rem + 3.5vw, 4rem); line-height: 1.05; transition: color var(--hp-duration) var(--hp-ease); }
.hp-nav-links--no-num .hp-nav-links__label { padding-left: 0; border-left: 0; }
.hp-nav-links__arrow { flex: none; width: 0.5em; height: 0.5em; color: color-mix(in srgb, currentColor 55%, transparent); transition: transform var(--hp-duration) var(--hp-ease), color var(--hp-duration) var(--hp-ease); }
.hp-nav-links__link:hover .hp-nav-links__label,
.hp-nav-links__link:focus-visible .hp-nav-links__label { color: var(--hp-color-accent); }
.hp-nav-links__link:hover .hp-nav-links__arrow,
.hp-nav-links__link:focus-visible .hp-nav-links__arrow { transform: translateX(0.25em); color: var(--hp-color-accent); }
.hp-nav-links__more { display: inline-flex; align-items: center; gap: 0.5em; margin-top: var(--hp-space-3); font-family: var(--hp-font-body); font-size: var(--hp-text-sm); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: inherit; border-bottom: 1px solid currentColor; padding-bottom: 0.25em; }
.hp-nav-links__more:hover { color: var(--hp-color-accent); }
.hp-nav-links__more-arrow { flex: none; width: 1em; height: 1em; transition: transform var(--hp-duration) var(--hp-ease); }
.hp-nav-links__more:hover .hp-nav-links__more-arrow { transform: translateX(0.25em); }

/* Popups */
body.hp-popup-open { overflow: hidden; }
.hp-popup[hidden] { display: none; }
.hp-popup { position: fixed; z-index: 1000; }
.hp-popup__box { position: relative; background-color: var(--hp-color-surface); color: var(--hp-color-ink); border-radius: var(--hp-radius); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.hp-popup--theme-dark .hp-popup__box { background-color: var(--hp-color-ink); color: var(--hp-color-surface); }
.hp-popup--theme-brand .hp-popup__box { background-color: var(--hp-color-brand); color: var(--hp-color-on-brand); }
.hp-popup__close { position: absolute; top: var(--hp-space-2); right: var(--hp-space-2); width: 2rem; height: 2rem; display: grid; place-items: center; padding: 0; color: currentColor; background: none; border: 0; border-radius: 999px; opacity: 0.6; cursor: pointer; }
.hp-popup__close:hover { opacity: 1; }
.hp-popup__close:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-popup__close-icon { width: 1.1rem; height: 1.1rem; }
.hp-popup__title { font-family: var(--hp-font-display); font-size: var(--hp-h3); line-height: var(--hp-leading-tight); margin: 0 0 var(--hp-space-2); }
.hp-popup__body { line-height: var(--hp-leading-body); }
.hp-popup__body > :first-child { margin-top: 0; }
.hp-popup__body > :last-child { margin-bottom: 0; }
.hp-popup__buttons { margin-top: var(--hp-space-3); }
.hp-popup--modal { inset: 0; display: grid; place-items: center; padding: var(--hp-space-3); }
.hp-popup--modal .hp-popup__overlay { position: fixed; inset: 0; background-color: color-mix(in srgb, var(--hp-color-ink) 62%, transparent); opacity: 0; transition: opacity var(--hp-duration) var(--hp-ease); }
.hp-popup--modal.is-open .hp-popup__overlay { opacity: 1; }
.hp-popup--modal .hp-popup__box { width: 100%; max-width: 32rem; opacity: 0; transform: translateY(1rem) scale(0.98); transition: opacity var(--hp-duration) var(--hp-ease), transform var(--hp-duration) var(--hp-ease); }
.hp-popup--modal.is-open .hp-popup__box { opacity: 1; transform: none; }
.hp-popup--modal.hp-popup--size-small .hp-popup__box { max-width: 24rem; }
.hp-popup--modal.hp-popup--size-large .hp-popup__box { max-width: 44rem; }
.hp-popup--slidein { width: min(24rem, calc(100vw - var(--hp-space-4))); }
.hp-popup--slidein.hp-popup--pos-bottom-right { right: var(--hp-space-3); bottom: var(--hp-space-3); }
.hp-popup--slidein.hp-popup--pos-bottom-left { left: var(--hp-space-3); bottom: var(--hp-space-3); }
.hp-popup--slidein.hp-popup--pos-top-right { right: var(--hp-space-3); top: var(--hp-space-3); }
.hp-popup--slidein.hp-popup--pos-top-left { left: var(--hp-space-3); top: var(--hp-space-3); }
.hp-popup--slidein .hp-popup__box { opacity: 0; transform: translateY(1.5rem); transition: opacity var(--hp-duration) var(--hp-ease), transform var(--hp-duration) var(--hp-ease); }
.hp-popup--slidein.is-open .hp-popup__box { opacity: 1; transform: none; }
.hp-popup--banner { left: 0; right: 0; }
.hp-popup--banner.hp-popup--pos-top { top: 0; }
.hp-popup--banner.hp-popup--pos-bottom { bottom: 0; }
.hp-popup--banner .hp-popup__box { max-width: none; border-radius: 0; padding-block: var(--hp-space-2); box-shadow: none; transform: translateY(-100%); transition: transform var(--hp-duration) var(--hp-ease); }
.hp-popup--banner.hp-popup--pos-bottom .hp-popup__box { transform: translateY(100%); }
.hp-popup--banner.is-open .hp-popup__box { transform: none; }
.hp-popup--banner .hp-popup__content { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: var(--hp-space-2) var(--hp-space-3); padding-right: 2.5rem; }
.hp-popup--banner .hp-popup__title { margin: 0; font-size: var(--hp-text-lg); }
.hp-popup--banner .hp-popup__buttons { margin-top: 0; }

/* Popup looks: split + promo */
.hp-popup__box--split { padding: 0; overflow: hidden; display: flex; }
.hp-popup--modal .hp-popup__box--split { max-width: 46rem; }
.hp-popup__box--split.hp-popup__box--media-right { flex-direction: row-reverse; }
.hp-popup__media { flex: 1 1 44%; align-self: stretch; min-height: 16rem; }
.hp-popup__media-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-popup__box--split .hp-popup__content { flex: 1 1 56%; display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--hp-space-2); padding: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); }
.hp-popup__box--split .hp-popup__buttons .hp-button { width: 100%; justify-content: center; }
@media (max-width: 40rem) {
  .hp-popup__box--split, .hp-popup__box--split.hp-popup__box--media-right { flex-direction: column; }
  .hp-popup__media { flex-basis: auto; min-height: 0; max-height: 12rem; }
}
.hp-popup__box--promo { position: relative; overflow: hidden; text-align: center; }
.hp-popup__box--promo .hp-popup__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: var(--hp-space-2); }
.hp-popup__box--promo .hp-popup__title { font-size: clamp(2rem, 1.4rem + 3vw, 3.25rem); line-height: 1.05; }
.hp-popup__box--promo .hp-popup__buttons { width: 100%; }
.hp-popup__box--promo .hp-popup__buttons .hp-button { width: 100%; justify-content: center; }
.hp-popup__decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; color: var(--hp-popup-accent, currentColor); }
.hp-popup__star { position: absolute; opacity: 0.35; }
.hp-popup__star--1 { top: 6%; left: 6%; width: 2.6rem; height: 2.6rem; opacity: 0.5; }
.hp-popup__star--2 { top: 20%; left: 15%; width: 1.1rem; height: 1.1rem; opacity: 0.3; }
.hp-popup__star--3 { top: 8%; right: 7%; width: 2rem; height: 2rem; opacity: 0.45; }
.hp-popup__star--4 { top: 24%; right: 15%; width: 1.4rem; height: 1.4rem; opacity: 0.3; }
.hp-popup__star--5 { top: 16%; right: 4%; width: 0.9rem; height: 0.9rem; opacity: 0.25; }
.hp-popup__form { display: flex; gap: var(--hp-space-2); width: 100%; margin-top: var(--hp-space-2); flex-wrap: wrap; }
.hp-popup__form-input { flex: 1 1 12rem; min-width: 0; padding: 0.7em 1em; font: inherit; color: inherit; background: transparent; border: 1px solid color-mix(in srgb, currentColor 35%, transparent); border-radius: var(--hp-radius-input); }
.hp-popup__form-input::placeholder { color: color-mix(in srgb, currentColor 55%, transparent); }
.hp-popup__form-input:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 1px; }
.hp-popup__form-btn { flex: none; }
.hp-popup__box--promo .hp-popup__form { flex-direction: column; }
.hp-popup__box--promo .hp-popup__form-btn { width: 100%; justify-content: center; }
.hp-popup__countdown { display: flex; gap: var(--hp-space-3); justify-content: center; margin-top: var(--hp-space-2); }
.hp-popup__cd-unit { display: flex; flex-direction: column; align-items: center; }
.hp-popup__cd-num { font-family: var(--hp-font-display); font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); font-variant-numeric: tabular-nums; line-height: 1; }
.hp-popup__cd-label { margin-top: 0.35em; font-size: var(--hp-text-xs); text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; }
.hp-popup__secondary { margin-top: var(--hp-space-1); font-size: var(--hp-text-sm); color: inherit; text-decoration: underline; text-underline-offset: 0.2em; opacity: 0.85; }
.hp-popup__secondary:hover { opacity: 1; }

.hp-popup .hp-accent { color: var(--hp-popup-accent, var(--hp-color-accent)); }
.hp-popup__box--promo .hp-button--primary { background-color: var(--hp-popup-accent, var(--hp-color-accent)); border-color: var(--hp-popup-accent, var(--hp-color-accent)); color: #fff; }
.hp-popup__box--promo .hp-button--primary:hover { filter: brightness(0.93); }

/* Contact block */
.hp-section--contact { padding-block: 0; }
.hp-section--contact > .hp-container { padding-inline: 0; }
.hp-contact { display: grid; grid-template-columns: 1fr; }
.hp-contact--content .hp-contact__col--side { order: -1; }
@media (min-width: 48rem) {
  .hp-contact { grid-template-columns: 1fr 1fr; }
  .hp-contact--form-left .hp-contact__col--form { order: 0; }
  .hp-contact--form-left .hp-contact__col--side { order: 1; }
  .hp-contact--form-right .hp-contact__col--form { order: 1; }
  .hp-contact--form-right .hp-contact__col--side { order: 0; }
}
.hp-contact__col { padding: clamp(1.75rem, 1.2rem + 3vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.hp-contact__col--map { padding: 0; }
.hp-contact__col--on-dark { color: var(--hp-color-surface); }
.hp-contact__col--on-dark .hp-contact-field__input { color: inherit; background: color-mix(in srgb, #fff 10%, transparent); border-color: color-mix(in srgb, currentColor 30%, transparent); }
.hp-contact__col--on-dark .hp-contact-field__input::placeholder { color: color-mix(in srgb, currentColor 55%, transparent); }
.hp-contact__content { max-width: 34rem; }
.hp-contact__text { margin-top: var(--hp-space-2); line-height: var(--hp-leading-body); color: color-mix(in srgb, currentColor 82%, transparent); }
.hp-contact__text > :first-child { margin-top: 0; }
.hp-contact__text > :last-child { margin-bottom: 0; }
.hp-contact__map { position: relative; width: 100%; height: 100%; min-height: 20rem; }
.hp-contact__map iframe, .hp-contact__map-frame { width: 100%; height: 100%; min-height: 20rem; border: 0; display: block; }
.hp-contact-embed { width: 100%; max-width: 34rem; }
.hp-contact-form { width: 100%; max-width: 34rem; }
.hp-contact-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp-contact-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--hp-space-2); }
.hp-contact-form__submit { margin-top: var(--hp-space-3); }
.hp-contact-form__status { margin: var(--hp-space-2) 0 0; font-size: var(--hp-text-sm); }
.hp-contact-form__status[hidden] { display: none; }
.hp-contact-form__status--error { color: var(--hp-color-brand); }
.hp-contact-form__success { margin: 0; font-family: var(--hp-font-display); font-size: var(--hp-text-lg); }
.hp-contact-field { display: flex; flex-direction: column; gap: 0.4em; }
.hp-contact-field--full { grid-column: 1 / -1; }
.hp-contact-field__label { font-size: var(--hp-text-sm); font-weight: 500; }
.hp-contact-field__req { color: var(--hp-color-accent); }
.hp-contact-field__input { font: inherit; color: inherit; padding: 0.7em 0.9em; background: color-mix(in srgb, var(--hp-color-surface) 92%, transparent); border: 1px solid var(--hp-color-border); border-radius: var(--hp-radius-input); }
.hp-contact-field__input:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 1px; border-color: transparent; }
textarea.hp-contact-field__input { resize: vertical; min-height: 6rem; }

/* Posts grid */
.hp-posts__filters { display: flex; flex-wrap: wrap; gap: var(--hp-space-2); margin-bottom: var(--hp-space-4); }
.hp-posts__filters--center { justify-content: center; }
.hp-posts__filters--right { justify-content: flex-end; }
.hp-posts__filter { padding: 0.55em 1.4em; font: inherit; font-size: var(--hp-text-sm); color: inherit; background: transparent; border: 1px solid color-mix(in srgb, currentColor 25%, transparent); border-radius: 999px; cursor: pointer; transition: background-color var(--hp-duration) var(--hp-ease), color var(--hp-duration) var(--hp-ease), border-color var(--hp-duration) var(--hp-ease); }
.hp-posts__filter:hover { border-color: currentColor; }
.hp-posts__filter:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-posts__filter.is-active { background-color: var(--hp-color-ink); color: var(--hp-color-surface); border-color: var(--hp-color-ink); }
.hp-posts__grid { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 3rem); grid-template-columns: 1fr; }
@media (min-width: 48rem) {
  .hp-posts__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
  .hp-posts__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
}
.hp-posts__card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.hp-posts__card.is-hidden { display: none; }
.hp-posts__media { overflow: hidden; border-radius: var(--hp-radius-image); background-color: var(--hp-color-muted); aspect-ratio: 4 / 3; }
.hp-posts__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--hp-ease); }
.hp-posts__card:hover .hp-posts__img { transform: scale(1.04); }
.hp-posts__meta { display: flex; align-items: center; gap: 0.5em; margin-top: var(--hp-space-2); }
.hp-posts__title { font-family: var(--hp-font-display); font-size: var(--hp-text-lg); line-height: 1.1; }
.hp-posts__arrow { flex: none; width: 0.9em; height: 0.9em; transition: transform var(--hp-duration) var(--hp-ease); }
.hp-posts__card:hover .hp-posts__arrow { transform: translateX(0.3em); }
.hp-posts__empty { margin: 0; color: color-mix(in srgb, currentColor 70%, transparent); }

/* Content scroller */
.hp-scroller__nav { display: flex; justify-content: flex-end; gap: var(--hp-space-2); margin-bottom: var(--hp-space-3); }
.hp-scroller__btn { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 25%, transparent); background: transparent; color: inherit; cursor: pointer; transition: border-color var(--hp-duration) var(--hp-ease), opacity var(--hp-duration) var(--hp-ease); }
.hp-scroller__btn:hover { border-color: currentColor; }
.hp-scroller__btn:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-scroller__btn[disabled] { opacity: 0.35; cursor: default; }
.hp-scroller__btn-icon { width: 1.1rem; height: 1.1rem; }
.hp-scroller__btn--prev .hp-scroller__btn-icon { transform: scaleX(-1); }
.hp-scroller__track { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(1rem, 0.5rem + 1.5vw, 1.75rem); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.hp-scroller__track::-webkit-scrollbar { display: none; }
.hp-scroller__item { flex: 0 0 auto; width: clamp(15rem, 40vw, 21rem); scroll-snap-align: start; }
.hp-scroller__card { display: block; text-decoration: none; color: inherit; }
.hp-scroller__media { overflow: hidden; border-radius: var(--hp-radius-image); background-color: var(--hp-color-muted); aspect-ratio: 4 / 5; }
.hp-scroller__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--hp-ease); }
.hp-scroller__card:hover .hp-scroller__img { transform: scale(1.04); }
.hp-scroller__meta { display: flex; flex-direction: column; gap: 0.15em; margin-top: var(--hp-space-2); }
.hp-scroller__name { font-family: var(--hp-font-display); font-size: var(--hp-text-lg); line-height: 1.15; }
.hp-scroller__role { font-size: var(--hp-text-sm); color: color-mix(in srgb, currentColor 65%, transparent); }
.hp-scroller__footer { display: flex; justify-content: center; margin-top: var(--hp-space-4); }
.hp-popup--drawer { inset: 0; display: flex; justify-content: flex-end; }
.hp-popup--drawer .hp-popup__overlay { position: fixed; inset: 0; background-color: color-mix(in srgb, var(--hp-color-ink) 55%, transparent); opacity: 0; transition: opacity var(--hp-duration) var(--hp-ease); }
.hp-popup--drawer.is-open .hp-popup__overlay { opacity: 1; }
.hp-popup--drawer .hp-popup__box { position: relative; width: min(34rem, 100%); max-width: none; height: 100%; border-radius: 0; overflow-y: auto; transform: translateX(100%); transition: transform var(--hp-duration) var(--hp-ease); }
.hp-popup--drawer.is-open .hp-popup__box { transform: none; }
.hp-speaker__media { overflow: hidden; border-radius: var(--hp-radius-image); margin-bottom: var(--hp-space-3); }
.hp-speaker__img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.hp-speaker__role { margin: 0 0 var(--hp-space-3); color: color-mix(in srgb, currentColor 65%, transparent); font-size: var(--hp-text-sm); }
.hp-speaker__bio > * + * { margin-top: 1em; }

/* Header slider */
.hp-slider { position: relative; overflow: hidden; color: var(--hp-color-surface); background-color: var(--hp-slider-bg, var(--hp-color-ink)); }
.hp-slider--h-medium { min-height: 60vh; }
.hp-slider--h-large { min-height: 78vh; }
.hp-slider--h-full { min-height: 100vh; }
.hp-slider__viewport { position: absolute; inset: 0; }
.hp-slider__slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.8s var(--hp-ease), visibility 0.8s var(--hp-ease); }
.hp-slider__slide.is-active { opacity: 1; visibility: visible; }
.hp-slider__bg { position: absolute; inset: 0; z-index: 0; }
.hp-slider__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-slider__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0, var(--hp-slider-overlay, 0.75)) 0%, rgba(0,0,0, calc(var(--hp-slider-overlay, 0.75) * 0.55)) 38%, transparent 68%); }
.hp-slider .hp-container { position: relative; z-index: 2; width: 100%; }
.hp-slider__content { max-width: 42rem; }
.hp-slider__quote { margin: 0; font-family: var(--hp-font-display); font-weight: 700; font-size: var(--hp-h2); line-height: var(--hp-leading-tight); letter-spacing: -0.02em; }
.hp-slider__cite { margin: var(--hp-space-3) 0 0; font-size: var(--hp-text-base); line-height: var(--hp-leading-body); color: color-mix(in srgb, currentColor 82%, transparent); }
.hp-slider__ui { position: absolute; left: 0; right: 0; bottom: var(--hp-space-3); z-index: 3; }
.hp-slider__ui-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--hp-space-3); }
.hp-slider__dots { display: flex; align-items: center; gap: var(--hp-space-2); }
.hp-slider__dot { position: relative; width: 0.5rem; height: 0.5rem; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,0.4); cursor: pointer; overflow: hidden; transition: width 0.4s var(--hp-ease), background-color 0.4s var(--hp-ease); }
.hp-slider__dot.is-active { width: 3rem; background: rgba(255,255,255,0.3); }
.hp-slider__dot:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-slider__dot-fill { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.hp-slider__playpause { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.4); background: transparent; color: #fff; cursor: pointer; }
.hp-slider__playpause:hover { border-color: #fff; }
.hp-slider__playpause:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-slider__pp { width: 1.05rem; height: 1.05rem; fill: currentColor; }
.hp-slider__pp--play { display: none; }
.hp-slider__playpause.is-paused .hp-slider__pp--pause { display: none; }
.hp-slider__playpause.is-paused .hp-slider__pp--play { display: block; }

/* Fluent Forms — match framework form styling */
.fluentform .ff-el-input--label,
.fluentform .ff-el-input--label label { font-family: var(--hp-font-body); font-size: var(--hp-text-sm); font-weight: 500; color: var(--hp-color-ink); margin-bottom: 0.4em; }
.fluentform .ff-el-is-required-mark,
.fluentform .ff_asterisk_right { color: var(--hp-color-accent) !important; }
.fluentform input.ff-el-form-control,
.fluentform textarea.ff-el-form-control,
.fluentform select.ff-el-form-control {
  font: inherit; color: var(--hp-color-ink); padding: 0.7em 0.9em;
  background-color: color-mix(in srgb, var(--hp-color-surface) 92%, transparent);
  border: 1px solid var(--hp-color-border); border-radius: var(--hp-radius-input); box-shadow: none;
  transition: border-color var(--hp-duration) var(--hp-ease), box-shadow var(--hp-duration) var(--hp-ease);
}
.fluentform input.ff-el-form-control::placeholder,
.fluentform textarea.ff-el-form-control::placeholder { color: color-mix(in srgb, var(--hp-color-ink) 45%, transparent); }
.fluentform input.ff-el-form-control:focus,
.fluentform textarea.ff-el-form-control:focus,
.fluentform select.ff-el-form-control:focus {
  outline: none; border-color: var(--hp-color-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--hp-color-accent) 35%, transparent);
}
.fluentform textarea.ff-el-form-control { min-height: 8rem; resize: vertical; }
.fluentform .ff-btn.ff-btn-submit,
.fluentform button.ff-btn-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--hp-space-1);
  font-family: var(--hp-font-body); font-weight: 600; line-height: 1.2; padding: 0.75rem 1.5rem;
  border: 0 !important; border-radius: var(--hp-radius-button) !important;
  background: var(--hp-color-brand) !important; color: var(--hp-color-on-brand) !important;
  box-shadow: none !important; cursor: pointer; transition: filter var(--hp-duration) var(--hp-ease);
}
.fluentform .ff-btn.ff-btn-submit:hover,
.fluentform button.ff-btn-submit:hover { filter: brightness(0.94); }
.fluentform .ff-btn.ff-btn-submit:focus-visible,
.fluentform button.ff-btn-submit:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.fluentform .ff-el-is-error input.ff-el-form-control,
.fluentform .ff-el-is-error textarea.ff-el-form-control,
.fluentform .ff-el-is-error select.ff-el-form-control { border-color: var(--hp-color-brand); }
.fluentform .error.text-danger,
.fluentform .ff-el-is-error .error { color: var(--hp-color-brand); font-size: var(--hp-text-sm); }
.fluentform .ff-message-success { color: var(--hp-color-ink); border: 1px solid var(--hp-color-border); border-radius: var(--hp-radius-card); padding: var(--hp-space-3); background-color: color-mix(in srgb, var(--hp-color-brand) 8%, transparent); }

/* Single entry + prose */
.hp-entry__header { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) var(--hp-space-4); }
.hp-entry__title { margin: var(--hp-space-2) 0 0; font-family: var(--hp-font-display); font-size: var(--hp-h1); line-height: var(--hp-h1-lh, var(--hp-leading-tight)); letter-spacing: -0.02em; }
.hp-entry__meta { margin-top: var(--hp-space-3); font-size: var(--hp-text-sm); color: color-mix(in srgb, var(--hp-color-ink) 62%, transparent); display: flex; gap: 0.5em; align-items: center; }
.hp-entry__media { margin: var(--hp-space-3) 0 0; border-radius: var(--hp-radius-image); overflow: hidden; line-height: 0; }
.hp-entry__img { width: 100%; height: auto; display: block; }
.hp-entry__body { padding-block: clamp(2rem, 1.5rem + 3vw, 3.5rem); }
.hp-entry__footer { margin-top: var(--hp-space-5); padding-top: var(--hp-space-4); border-top: 1px solid var(--hp-color-border); font-size: var(--hp-text-sm); color: color-mix(in srgb, var(--hp-color-ink) 65%, transparent); }
.hp-prose { font-size: var(--hp-text-base); line-height: var(--hp-leading-body); color: var(--hp-color-ink); }
.hp-prose > * + * { margin-top: 1.2em; }
.hp-prose > :first-child { margin-top: 0; }
.hp-prose h2, .hp-prose h3, .hp-prose h4 { font-family: var(--hp-font-display); margin-top: 2em; margin-bottom: 0.5em; }
.hp-prose h2 { font-size: var(--hp-h2); line-height: var(--hp-h2-lh, var(--hp-leading-tight)); }
.hp-prose h3 { font-size: var(--hp-h3); line-height: var(--hp-h3-lh, var(--hp-leading-tight)); }
.hp-prose h4 { font-size: var(--hp-text-xl); line-height: var(--hp-h4-lh, var(--hp-leading-tight)); }
.hp-prose p, .hp-prose ul, .hp-prose ol, .hp-prose blockquote, .hp-prose figure, .hp-prose pre, .hp-prose table { margin: 0; }
.hp-prose ul, .hp-prose ol { padding-left: 1.4em; }
.hp-prose li + li { margin-top: 0.4em; }
.hp-prose a { color: var(--hp-color-brand); text-decoration: underline; text-underline-offset: 0.15em; }
.hp-prose img { max-width: 100%; height: auto; border-radius: var(--hp-radius-image); }
.hp-prose figure img { margin: 0; }
.hp-prose figcaption { margin-top: 0.5em; font-size: var(--hp-text-sm); color: color-mix(in srgb, var(--hp-color-ink) 62%, transparent); }
.hp-prose blockquote { border-left: 3px solid var(--hp-color-accent); padding-left: 1em; font-size: var(--hp-text-lg); font-style: italic; }
.hp-prose code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.9em; background: var(--hp-color-muted); padding: 0.12em 0.35em; border-radius: 4px; }
.hp-prose pre { background: var(--hp-color-ink); color: var(--hp-color-surface); padding: 1em 1.25em; border-radius: var(--hp-radius); overflow-x: auto; }
.hp-prose pre code { background: none; padding: 0; }
.hp-prose hr { border: 0; border-top: 1px solid var(--hp-color-border); margin: 2em 0; }
.hp-prose :is(h2, h3, h4):first-child { margin-top: 0; }

/* Post nav + related */
.hp-postnav { padding-block: var(--hp-space-4); border-top: 1px solid var(--hp-color-border); }
.hp-postnav__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--hp-space-4); }
.hp-postnav__link { display: flex; flex-direction: column; gap: 0.35em; text-decoration: none; color: inherit; }
.hp-postnav__link--next { text-align: right; align-items: flex-end; }
.hp-postnav__label { display: inline-flex; align-items: center; gap: 0.4em; font-size: var(--hp-text-sm); letter-spacing: 0.08em; text-transform: uppercase; color: color-mix(in srgb, var(--hp-color-ink) 60%, transparent); }
.hp-postnav__icon { width: 0.8em; height: 0.8em; }
.hp-postnav__icon--prev { transform: scaleX(-1); }
.hp-postnav__title { font-family: var(--hp-font-display); font-size: var(--hp-text-lg); line-height: 1.2; transition: color var(--hp-duration) var(--hp-ease); }
.hp-postnav__link:hover .hp-postnav__title { color: var(--hp-color-brand); }
.hp-related { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); border-top: 1px solid var(--hp-color-border); }
.hp-related__title { margin: 0 0 var(--hp-space-4); font-family: var(--hp-font-display); font-size: var(--hp-h3); }
.hp-related__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 1rem + 1.5vw, 2rem); }
@media (min-width: 48rem) { .hp-related__grid { grid-template-columns: repeat(3, 1fr); } }
.hp-related__card { text-decoration: none; color: inherit; }
.hp-related__media { aspect-ratio: 4 / 3; border-radius: var(--hp-radius-image); overflow: hidden; background-color: var(--hp-color-muted); margin-bottom: var(--hp-space-2); }
.hp-related__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--hp-ease); }
.hp-related__card:hover .hp-related__img { transform: scale(1.04); }
.hp-related__name { font-family: var(--hp-font-display); font-size: var(--hp-text-lg); line-height: 1.15; }

/* Archive + speaker single */
.hp-archive__header { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) var(--hp-space-3); }
.hp-archive__title { margin: var(--hp-space-2) 0 0; font-family: var(--hp-font-display); font-size: var(--hp-h1); line-height: var(--hp-leading-tight); letter-spacing: -0.02em; }
.hp-archive__description { margin-top: var(--hp-space-3); max-width: 42rem; font-size: var(--hp-text-lg); line-height: var(--hp-leading-body); color: color-mix(in srgb, var(--hp-color-ink) 78%, transparent); }
.hp-archive__description > :first-child { margin-top: 0; }
.hp-archive__description > :last-child { margin-bottom: 0; }
.hp-archive__filters { padding-block: var(--hp-space-2) var(--hp-space-4); }
.hp-archive__body { padding-block: 0 clamp(3rem, 2.5rem + 3vw, 5rem); }
.hp-archive__empty { color: color-mix(in srgb, var(--hp-color-ink) 65%, transparent); }
a.hp-posts__filter { text-decoration: none; }
.pagination { margin-top: var(--hp-space-5); }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: var(--hp-space-1); justify-content: center; align-items: center; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.6em; border-radius: var(--hp-radius); border: 1px solid var(--hp-color-border); color: var(--hp-color-ink); text-decoration: none; transition: border-color var(--hp-duration) var(--hp-ease), background-color var(--hp-duration) var(--hp-ease); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--hp-color-ink); }
.pagination .page-numbers.current { background-color: var(--hp-color-ink); color: var(--hp-color-surface); border-color: var(--hp-color-ink); }
.pagination .page-numbers.dots { border: 0; min-width: 1.5rem; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.hp-speaker-single__top { display: grid; gap: var(--hp-space-4); grid-template-columns: 1fr; }
@media (min-width: 48rem) { .hp-speaker-single__top { grid-template-columns: minmax(0, 20rem) 1fr; align-items: center; gap: var(--hp-space-5); } }
.hp-speaker-single__media { margin: 0; border-radius: var(--hp-radius-image); overflow: hidden; line-height: 0; }
.hp-speaker-single__img { width: 100%; height: auto; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.hp-speaker-single__name { margin: var(--hp-space-2) 0 0; font-family: var(--hp-font-display); font-size: var(--hp-h1); line-height: var(--hp-leading-tight); letter-spacing: -0.02em; }
.hp-speaker-single__role { margin: var(--hp-space-2) 0 0; font-size: var(--hp-text-lg); color: color-mix(in srgb, var(--hp-color-ink) 65%, transparent); }
.hp-speaker-single__bio { padding-block: 0 clamp(3rem, 2rem + 3vw, 5rem); }

/* Project single */
.hp-project-single__header { padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) var(--hp-space-4); }
.hp-project-single__title { margin: var(--hp-space-2) 0 0; font-family: var(--hp-font-display); font-size: var(--hp-h1); line-height: var(--hp-leading-tight); letter-spacing: -0.02em; }
.hp-project-single__meta { display: flex; flex-wrap: wrap; gap: var(--hp-space-4) var(--hp-space-5); margin: var(--hp-space-4) 0 0; }
.hp-project-single__meta-item dt { font-size: var(--hp-text-sm); text-transform: uppercase; letter-spacing: 0.08em; color: color-mix(in srgb, var(--hp-color-ink) 55%, transparent); margin-bottom: 0.25em; }
.hp-project-single__meta-item dd { margin: 0; font-size: var(--hp-text-base); }
.hp-project-single__media { margin: var(--hp-space-4) 0 0; border-radius: var(--hp-radius-image); overflow: hidden; line-height: 0; }
.hp-project-single__img { width: 100%; height: auto; display: block; }
.hp-project-single__body { padding-block: clamp(2rem, 1.5rem + 3vw, 3.5rem); }

/* Generic ACF field output */
.hp-fields { display: grid; gap: var(--hp-space-4); margin-top: var(--hp-space-4); }
.hp-fields:first-child { margin-top: 0; }
.hp-fields__label { margin: 0 0 var(--hp-space-1); font-family: var(--hp-font-body); font-size: var(--hp-text-sm); text-transform: uppercase; letter-spacing: 0.08em; color: color-mix(in srgb, var(--hp-color-ink) 55%, transparent); }
.hp-fields__value { font-size: var(--hp-text-base); line-height: var(--hp-leading-body); }
.hp-fields__value > :first-child { margin-top: 0; }
.hp-fields__value > :last-child { margin-bottom: 0; }
.hp-fields__value img { max-width: 100%; height: auto; border-radius: var(--hp-radius-image); }
.hp-fields__value a { color: var(--hp-color-brand); }
.hp-project-single__metabar { padding-block: clamp(2rem, 1.5rem + 2vw, 3rem); }

/* Post Hero (compact) */
.hp-post-hero { position: relative; padding-block: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem); background-color: var(--hp-color-surface); }
.hp-post-hero--h-standard { padding-block: clamp(3.25rem, 2.5rem + 4vw, 5.5rem); }
.hp-post-hero--on-dark { color: var(--hp-color-surface); background-color: var(--hp-color-ink); }
.hp-post-hero__bg { position: absolute; inset: 0; z-index: 0; }
.hp-post-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-post-hero__overlay { position: absolute; inset: 0; z-index: 1; background-color: rgba(0, 0, 0, var(--hp-post-hero-ov, 0.45)); }
.hp-post-hero .hp-container { position: relative; z-index: 2; }
.hp-post-hero__content { max-width: 46rem; }
.hp-post-hero--center { text-align: center; }
.hp-post-hero--center .hp-post-hero__content { margin-inline: auto; }
.hp-post-hero__title { margin: var(--hp-space-2) 0 0; font-family: var(--hp-font-display); font-size: var(--hp-h1); line-height: var(--hp-leading-tight); letter-spacing: -0.02em; }
.hp-post-hero__subtitle { margin: var(--hp-space-3) 0 0; max-width: 42rem; font-size: var(--hp-text-lg); line-height: var(--hp-leading-body); color: color-mix(in srgb, currentColor 78%, transparent); }
.hp-post-hero--center .hp-post-hero__subtitle { margin-inline: auto; }

/* Masonry gallery + lightbox */
.hp-masonry { --hp-masonry-gap: clamp(0.75rem, 0.5rem + 1vw, 1.25rem); column-count: 1; column-gap: var(--hp-masonry-gap); }
@media (min-width: 40rem) { .hp-masonry--cols-2, .hp-masonry--cols-3, .hp-masonry--cols-4 { column-count: 2; } }
@media (min-width: 48rem) { .hp-masonry--cols-3, .hp-masonry--cols-4 { column-count: 3; } }
@media (min-width: 64rem) { .hp-masonry--cols-4 { column-count: 4; } }
.hp-masonry__item { break-inside: avoid; margin: 0 0 var(--hp-masonry-gap); }
.hp-masonry__img { width: 100%; height: auto; display: block; border-radius: var(--hp-radius-image); }
.hp-masonry__trigger { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--hp-radius-image); overflow: hidden; }
.hp-masonry__trigger .hp-masonry__img { transition: transform 0.6s var(--hp-ease); }
.hp-masonry__trigger:hover .hp-masonry__img { transform: scale(1.04); }
.hp-masonry__trigger:focus-visible { outline: 2px solid var(--hp-color-accent); outline-offset: 2px; }
.hp-masonry__caption { margin-top: var(--hp-space-1); font-size: var(--hp-text-sm); color: color-mix(in srgb, var(--hp-color-ink) 60%, transparent); }
.hp-lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: clamp(1rem, 5vw, 4rem); background: rgba(0,0,0,0.9); }
.hp-lightbox.is-open { display: flex; }
.hp-lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--hp-radius); }
.hp-lightbox__close { position: absolute; top: clamp(0.75rem, 2vw, 1.5rem); right: clamp(0.75rem, 2vw, 1.5rem); width: 2.75rem; height: 2.75rem; display: grid; place-items: center; font-size: 1.75rem; line-height: 1; color: #fff; background: rgba(255,255,255,0.12); border: 0; border-radius: 999px; cursor: pointer; }
.hp-lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* Page Hero — split form embed */
.hp-hero__media--form { display: flex; align-items: center; justify-content: center; }
.hp-hero__form { width: 100%; max-width: 34rem; background-color: color-mix(in srgb, var(--hp-color-surface) var(--hp-hero-form-opacity, 100%), transparent); color: var(--hp-color-ink); border-radius: var(--hp-radius-card); padding: clamp(1.5rem, 1rem + 2vw, 2.75rem); box-shadow: var(--hp-elevation-2); }
.hp-hero__form > :first-child { margin-top: 0; }
.hp-hero__form > :last-child { margin-bottom: 0; }

/* Flat cards (background toggled off) */
.hp-cards--flat { --hp-card-flat-inset: clamp(0.5rem, 0.8vw, 1rem); }
.hp-cards--flat .hp-card { background-color: transparent; border-color: transparent; box-shadow: none; border-radius: 0; overflow: visible; color: inherit; }
.hp-cards--flat .hp-card--linked:hover { box-shadow: none; transform: none; }
.hp-cards--flat .hp-card__media { border-radius: var(--hp-radius-image); }
.hp-cards--flat .hp-card__icon-wrap { margin: 0 var(--hp-card-flat-inset); }
.hp-cards--flat .hp-card__body { padding: var(--hp-space-2) var(--hp-card-flat-inset) 0; }
/* Centered card content */
.hp-cards--center .hp-card { text-align: center; }
.hp-cards--center .hp-card__icon-img { margin-inline: auto; }
.hp-cards--center .hp-card__cta { justify-content: center; }

/* Card callouts: badge pill + corner flag */
.hp-card__badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 0.4em; margin-bottom: var(--hp-space-1); padding: 0.4em 0.85em; font-family: var(--hp-font-body); font-size: var(--hp-text-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; line-height: 1; color: var(--hp-color-surface); background-color: var(--hp-color-ink); border-radius: 999px; }
.hp-cards--center .hp-card__badge { align-self: center; }
.hp-card__flag { position: absolute; top: 0; right: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 4.75rem; padding: var(--hp-space-2) var(--hp-space-2) calc(var(--hp-space-2) - 0.15rem); color: var(--hp-color-on-brand); background-color: var(--hp-color-brand); border-radius: 0 var(--hp-radius-card) 0 var(--hp-radius-card); text-align: center; pointer-events: none; }
.hp-card__flag--left { right: auto; left: 0; border-radius: var(--hp-radius-card) 0 var(--hp-radius-card) 0; }
.hp-card__flag-value { font-family: var(--hp-font-display); font-size: var(--hp-text-xl); line-height: 1; letter-spacing: -0.01em; }
.hp-card__flag-label { margin-top: 0.25em; font-size: 0.625rem; font-weight: 600; letter-spacing: 0.1em; text-transform: var(--hp-eyebrow-transform, uppercase); opacity: 0.85; }

/* Header Slider: centered content + no-image background */
.hp-slider--center .hp-slider__content { margin-inline: auto; text-align: center; }
.hp-slider--no-image .hp-slider__slide { background-color: var(--hp-slider-bg, var(--hp-color-ink)); }
.hp-slider--no-image .hp-slider__overlay { display: none; }

/* 50/50 panel style: tinted content panel + overlapping image */
.hp-media--panel .hp-media__content { position: relative; z-index: 1; background-color: var(--hp-color-muted); border-radius: var(--hp-radius-card); padding: clamp(1.75rem, 4vw, 3.25rem); }
.hp-media--panel .hp-media__figure { position: relative; z-index: 2; }
@media (min-width: 48rem) {
  .hp-media--panel { gap: 0; }
  .hp-media--panel.hp-media--left .hp-media__figure { margin-right: -2.75rem; }
  .hp-media--panel.hp-media--left .hp-media__content { padding-left: clamp(3.5rem, 6vw, 5.5rem); }
  .hp-media--panel.hp-media--right .hp-media__figure { margin-left: -2.75rem; }
  .hp-media--panel.hp-media--right .hp-media__content { padding-right: clamp(3.5rem, 6vw, 5.5rem); }
}

/* Post Hero */
.hp-post-hero { position: relative; display: flex; align-items: flex-end; overflow: hidden; margin-bottom: var(--hp-space-4); padding-block: clamp(2.5rem, 6vw, 5rem); background-color: var(--hp-color-ink); color: var(--hp-color-surface); }
.hp-post-hero--h-compact { min-height: 38vh; }
.hp-post-hero--h-medium { min-height: 52vh; }
.hp-post-hero--h-tall { min-height: 68vh; }
.hp-post-hero--center { align-items: center; text-align: center; }
.hp-post-hero--center .hp-post-hero__inner { margin-inline: auto; }
.hp-post-hero__bg { position: absolute; inset: 0; z-index: 0; }
.hp-post-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hp-post-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgb(20 24 31 / 30%) 0%, rgb(20 24 31 / 85%) 100%); }
.hp-post-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 52rem; }
.hp-post-hero__eyebrow { margin: 0 0 var(--hp-space-1); font-family: var(--hp-font-eyebrow, var(--hp-font-body)); font-style: var(--hp-eyebrow-style, normal); font-size: var(--hp-eyebrow-size, var(--hp-text-sm)); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--hp-color-accent); }
.hp-post-hero__title { margin: 0; color: inherit; }
.hp-post-hero__subtitle { margin: var(--hp-space-2) 0 0; font-size: var(--hp-text-lg); max-width: 44rem; opacity: 0.9; }
.hp-post-hero--center .hp-post-hero__subtitle { margin-inline: auto; }
.hp-post-hero__meta { margin: var(--hp-space-2) 0 0; font-size: var(--hp-text-sm); opacity: 0.75; display: flex; gap: var(--hp-space-1); align-items: center; }
.hp-post-hero--center .hp-post-hero__meta { justify-content: center; }

/* Hero columns (badges) */
.hp-hero-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr)); gap: var(--hp-space-3) var(--hp-space-4); margin-top: var(--hp-space-4); align-items: start; align-self: stretch; width: 100%; }
.hp-hero-cols__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--hp-space-1); }
.hp-hero-cols__icon { display: flex; align-items: flex-end; justify-content: center; min-height: 7.5rem; }
.hp-hero-cols__icon img { width: 95px; height: auto; max-height: 7.5rem; object-fit: contain; }
.hp-hero-cols__label { font-size: var(--hp-text-xs); font-weight: 600; line-height: var(--hp-leading-tight); }

/* Overlay header on a light hero — dark chrome */
.hp-overlay-hero--light .hp-header__logo-text, .hp-overlay-hero--light .hp-header__toggle { color: var(--hp-color-ink); }
.hp-overlay-hero--light .hp-header__toggle { border-color: color-mix(in srgb, var(--hp-color-ink) 40%, transparent); }
@media (min-width: 64rem) {
  .hp-overlay-hero--light .hp-menu__link, .hp-overlay-hero--light .hp-menu__item.is-current > .hp-menu__link { color: var(--hp-color-ink); }
  .hp-overlay-hero--light .hp-menu__link:hover { color: var(--hp-color-brand); }
}

/* Video block */
.hp-video { position: relative; width: 100%; border-radius: var(--hp-radius-image); overflow: hidden; isolation: isolate; }
.hp-video--16x9 { aspect-ratio: 16 / 9; }
.hp-video--4x3 { aspect-ratio: 4 / 3; }
.hp-video--1x1 { aspect-ratio: 1 / 1; }
.hp-video__el { position: absolute; top: -1px; left: -1px; width: calc(100% + 2px); height: calc(100% + 2px); border: 0; }
video.hp-video__el { object-fit: cover; }
.hp-video__facade { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: none; }
.hp-video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hp-video__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: grid; place-items: center; width: 4.5rem; height: 4.5rem; border-radius: 50%; background-color: color-mix(in srgb, var(--hp-color-ink) 55%, transparent); transition: background-color 200ms ease, transform 200ms ease; }
.hp-video__play::after { content: ""; width: 0; height: 0; margin-left: 0.35rem; border-style: solid; border-width: 0.7rem 0 0.7rem 1.15rem; border-color: transparent transparent transparent var(--hp-color-surface); }
.hp-video__facade:hover .hp-video__play, .hp-video__facade:focus-visible .hp-video__play { background-color: var(--hp-color-brand); }
@media (prefers-reduced-motion: no-preference) { .hp-video__facade:hover .hp-video__play, .hp-video__facade:focus-visible .hp-video__play { transform: translate(-50%, -50%) scale(1.06); } }
.hp-video__error { padding: var(--hp-space-2); color: var(--hp-color-surface); text-align: center; }

/* Showcase block */
.hp-showcase { display: flex; flex-direction: column; gap: var(--hp-space-5); }
@media (min-width: 48rem) { .hp-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: var(--hp-space-4); align-items: start; } }
.hp-showcase__col { display: contents; }
@media (min-width: 48rem) { .hp-showcase__col { display: flex; flex-direction: column; gap: var(--hp-space-5); min-width: 0; } }
.hp-showcase__intro { min-width: 0; }
@media (min-width: 48rem) { .hp-showcase__intro { padding-right: var(--hp-space-2); } }
.hp-showcase__item { min-width: 0; }
.hp-showcase__text { margin-top: var(--hp-space-2); max-width: 34rem; color: color-mix(in srgb, currentColor 72%, transparent); }
.hp-showcase__text > :first-child { margin-top: 0; }
.hp-showcase__text > :last-child { margin-bottom: 0; }
.hp-showcase__media { position: relative; display: block; border-radius: var(--hp-radius-image); overflow: hidden; background-color: color-mix(in srgb, currentColor 8%, transparent); }
.hp-showcase__media-el { display: block; width: 100%; height: auto; }
.hp-showcase__media-el--video { aspect-ratio: 4 / 3; object-fit: cover; }
.hp-showcase__badge { position: absolute; right: var(--hp-space-2); bottom: var(--hp-space-2); display: inline-block; max-width: 9rem; padding: var(--hp-space-1) var(--hp-space-2); border-radius: 0.5rem; background-color: var(--hp-color-ink); color: var(--hp-color-surface); font-size: var(--hp-text-xs); font-weight: 600; line-height: var(--hp-leading-tight, 1.15); }
.hp-showcase__title { margin: var(--hp-space-2) 0 var(--hp-space-1); font-size: var(--hp-h3); line-height: var(--hp-h3-lh, var(--hp-leading-tight)); text-transform: uppercase; color: inherit; }
.hp-showcase__title a { color: inherit; text-decoration: none; }
.hp-showcase__title a:hover { color: var(--hp-color-accent); }
.hp-showcase__excerpt { margin: 0; max-width: 34rem; color: color-mix(in srgb, currentColor 72%, transparent); }

/* Hero custom gradient */
.hp-hero--gradient { background: var(--hp-hero-gradient, none); }
.hp-hero--gradient-animated { background-size: 300% 300%; }
@media (prefers-reduced-motion: no-preference) { .hp-hero--gradient-animated { animation: hp-hero-gradient-drift 18s ease infinite; } }
@keyframes hp-hero-gradient-drift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Cards — horizontal scroll variant */
.hp-cards--scroll { display: flex; grid-template-columns: none; flex-wrap: nowrap; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: var(--hp-space-1); -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.hp-cards--scroll::-webkit-scrollbar { display: none; }
.hp-cards--scroll > * { flex: 0 0 auto; width: min(85%, 20rem); scroll-snap-align: start; }
@media (min-width: 48rem) { .hp-cards--scroll > * { width: min(46%, 22rem); } }
@media (min-width: 64rem) { .hp-cards--scroll > * { width: min(31%, 24rem); } }

/* Content restriction notice */
.hp-restricted { padding: var(--hp-space-4); border: 1px solid var(--hp-color-border); border-radius: var(--hp-radius-card); background-color: var(--hp-color-muted); text-align: center; }
.hp-restricted__msg { margin: 0; font-size: var(--hp-text-lg); color: var(--hp-color-ink); }
.hp-restricted__action { margin: var(--hp-space-3) 0 0; }

/* Frontend login form */
.hp-login { max-width: 24rem; margin: var(--hp-space-3) auto 0; text-align: left; }
.hp-login p { margin: 0 0 var(--hp-space-2); }
.hp-login label { display: block; margin-bottom: var(--hp-space-1); font-weight: 600; font-size: var(--hp-text-sm); }
.hp-login input.input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--hp-color-border); border-radius: var(--hp-radius-image); background: var(--hp-color-surface); color: var(--hp-color-ink); font: inherit; }
.hp-login .login-remember label { display: flex; align-items: center; gap: var(--hp-space-1); margin: 0; font-weight: 400; font-size: var(--hp-text-sm); }
.hp-login .login-remember input { width: auto; }
.hp-login #wp-submit { display: inline-block; width: 100%; padding: 0.75rem 1.25rem; border: 0; border-radius: var(--hp-radius-button, 999px); background: var(--hp-color-accent); color: var(--hp-color-on-accent, #fff); font: inherit; font-weight: 600; cursor: pointer; }
.hp-login #wp-submit:hover { opacity: 0.9; }
.hp-login__error { padding: var(--hp-space-1) var(--hp-space-2); border-radius: var(--hp-radius-image); background: color-mix(in srgb, #dc2626 12%, transparent); color: #b91c1c; font-size: var(--hp-text-sm); }
.hp-login__links { margin-top: var(--hp-space-1); font-size: var(--hp-text-sm); text-align: center; }
.hp-login__note { font-size: var(--hp-text-sm); }

/* Registration honeypot + disclosure */
.hp-register__hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.hp-auth-register, .hp-auth-toggle { max-width: 24rem; margin: var(--hp-space-3) auto 0; text-align: left; }
.hp-auth-register > summary, .hp-auth-toggle > summary { cursor: pointer; font-weight: 600; font-size: var(--hp-text-sm); color: var(--hp-color-accent); list-style: none; }
.hp-auth-register > summary::-webkit-details-marker, .hp-auth-toggle > summary::-webkit-details-marker { display: none; }
.hp-auth-register .hp-login, .hp-auth-toggle .hp-login { margin-top: var(--hp-space-2); }
.hp-login > .hp-auth-toggle { margin-top: var(--hp-space-2); }

/* Post hero off → centered classic single header */
.hp-post-hero-off .hp-entry__header, .hp-post-hero-off .hp-project-single__header { text-align: center; }
.hp-post-hero-off .hp-entry__header .hp-entry__meta, .hp-post-hero-off .hp-entry__header .hp-breadcrumbs, .hp-post-hero-off .hp-project-single__header .hp-breadcrumbs { justify-content: center; }

/* Video "hide controls": kill hover chrome + crop persistent YouTube/Vimeo branding */
.hp-video--bare iframe.hp-video__el { pointer-events: none; inset: auto; top: 50%; left: 50%; width: 100%; height: 132%; transform: translate(-50%, -50%); }

/* Slider section dividers above slides */
.hp-slider > .hp-divider { z-index: 2; }

/* Standard header top padding */
body:not(.hp-header-floating) .hp-header__inner { padding-block: var(--hp-space-3) var(--hp-space-2); min-height: 0; }
/* Floating pill header */
.hp-header-floating .hp-header { background: transparent; border-bottom: 0; }
.hp-header-floating .hp-header__inner { width: calc(100% - var(--hp-space-4)); max-width: 80rem; margin-inline: auto; margin-top: var(--hp-space-3); padding-block: var(--hp-space-2); min-height: 6rem; background-color: var(--hp-header-pill-bg, var(--hp-color-ink)); color: var(--hp-color-surface); border: 1px solid transparent; border-radius: var(--hp-header-pill-radius, var(--hp-radius)); transition: background-color 0.3s ease, border-color 0.3s ease, border-radius 0.3s ease, margin 0.3s ease, max-width 0.3s ease, padding-block 0.3s ease, min-height 0.3s ease; }
.hp-header-floating--outline .hp-header__inner { border-color: color-mix(in srgb, currentColor 22%, transparent); }
.hp-header-floating .hp-header__logo-text { color: var(--hp-color-surface); }
.hp-header-floating .hp-header__toggle { color: var(--hp-color-surface); border-color: color-mix(in srgb, var(--hp-color-surface) 40%, transparent); }
body.hp-header-floating .hp-menu__link, body.hp-header-floating .hp-menu__item.is-current > .hp-menu__link { color: var(--hp-color-surface); }
body.hp-header-floating .hp-menu__link:hover { color: color-mix(in srgb, var(--hp-color-surface) 75%, transparent); }
/* Light pill -> dark nav chrome */
.hp-header-floating--light .hp-header__inner { color: var(--hp-color-ink); }
.hp-header-floating--light .hp-header__logo-text { color: var(--hp-color-ink); }
.hp-header-floating--light .hp-header__toggle { color: var(--hp-color-ink); border-color: color-mix(in srgb, var(--hp-color-ink) 40%, transparent); }
body.hp-header-floating--light .hp-menu__link, body.hp-header-floating--light .hp-menu__item.is-current > .hp-menu__link { color: var(--hp-color-ink); }
body.hp-header-floating--light .hp-menu__link:hover { color: var(--hp-color-brand); }
/* Floating over hero: transparent nav until scrolled, then pill */
body.hp-header-floating.hp-overlay-hero .hp-header:not(.is-stuck) .hp-header__inner { width: auto; max-width: var(--hp-container); margin-top: 0; padding-block: var(--hp-space-3) var(--hp-space-2); min-height: 0; background-color: transparent; border-color: transparent; border-radius: 0; }
body.hp-header-floating.hp-overlay-hero .hp-header:not(.is-stuck) .hp-menu__link, body.hp-header-floating.hp-overlay-hero .hp-header:not(.is-stuck) .hp-menu__item.is-current > .hp-menu__link, body.hp-header-floating.hp-overlay-hero .hp-header:not(.is-stuck) .hp-header__logo-text, body.hp-header-floating.hp-overlay-hero .hp-header:not(.is-stuck) .hp-header__toggle { color: var(--hp-color-surface); }
body.hp-header-floating.hp-overlay-hero--light .hp-header:not(.is-stuck) .hp-menu__link, body.hp-header-floating.hp-overlay-hero--light .hp-header:not(.is-stuck) .hp-menu__item.is-current > .hp-menu__link, body.hp-header-floating.hp-overlay-hero--light .hp-header:not(.is-stuck) .hp-header__logo-text, body.hp-header-floating.hp-overlay-hero--light .hp-header:not(.is-stuck) .hp-header__toggle { color: var(--hp-color-ink); }
/* Overlay + sticky header pinned */
.hp-overlay-hero .hp-header--sticky { position: fixed; top: 0; left: 0; right: 0; }
.hp-overlay-hero .hp-post-hero { padding-top: calc(clamp(2.5rem, 6vw, 5rem) + var(--hp-header-height, 5rem)); }
body:not(.hp-header-floating).hp-overlay-hero .hp-header--sticky.is-stuck { background-color: var(--hp-color-surface); border-bottom-color: var(--hp-color-border); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
body:not(.hp-header-floating).hp-overlay-hero .hp-header--sticky.is-stuck .hp-header__logo-text, body:not(.hp-header-floating).hp-overlay-hero .hp-header--sticky.is-stuck .hp-header__toggle, body:not(.hp-header-floating).hp-overlay-hero .hp-header--sticky.is-stuck .hp-menu__link, body:not(.hp-header-floating).hp-overlay-hero .hp-header--sticky.is-stuck .hp-menu__item.is-current > .hp-menu__link { color: var(--hp-color-ink); }

/* Auto-hide header on scroll */
@media (prefers-reduced-motion: no-preference) { .hp-header-autohide .hp-header { transition: transform 0.35s ease; } }
.hp-header-autohide .hp-header.is-hidden { transform: translateY(-100%); }
.hp-header-autohide .hp-header.is-hidden:focus-within { transform: none; }

/* Centered footer */
.hp-footer--center { text-align: center; }
.hp-footer--center .hp-footer__top { grid-template-columns: 1fr; justify-items: center; gap: var(--hp-space-3); }
.hp-footer--center .hp-footer__brand { max-width: none; }
.hp-footer--center .hp-footer__logo { margin-inline: auto; }
.hp-footer--center .hp-footer__cols { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--hp-space-5); text-align: left; }
.hp-footer--center .hp-footer__col { min-width: 8rem; }

/* Stats block */
.hp-stats { display: grid; grid-template-columns: 1fr; gap: var(--hp-space-5) var(--hp-space-4); margin: 0; padding: 0; list-style: none; text-align: center; }
@media (min-width: 40rem) { .hp-stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 48rem) { .hp-stats--cols-2 { grid-template-columns: repeat(2, 1fr); } .hp-stats--cols-3 { grid-template-columns: repeat(3, 1fr); } .hp-stats--cols-4 { grid-template-columns: repeat(4, 1fr); } }
.hp-stat { display: flex; flex-direction: column; align-items: center; gap: var(--hp-space-2); min-width: 0; }
.hp-stat__value { font-family: var(--hp-font-display, inherit); font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; line-height: 1; color: inherit; }
.hp-stat__label { max-width: 18rem; font-size: var(--hp-text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; line-height: var(--hp-leading-tight, 1.2); color: color-mix(in srgb, currentColor 68%, transparent); }

/* Mobile: floating header is a plain bar + hamburger (no pill/morph/auto-hide) */
@media (max-width: 47.999rem) {
  .hp-header-floating .hp-header { background-color: var(--hp-color-surface); border-bottom: 1px solid var(--hp-color-border); }
  .hp-header-floating .hp-header__inner { width: auto; max-width: var(--hp-container); margin-top: 0; padding-block: var(--hp-space-2); min-height: 4.5rem; background-color: transparent; border-color: transparent; border-radius: 0; }
  .hp-header-floating .hp-header__logo-text, .hp-header-floating .hp-header__toggle { color: var(--hp-color-ink); }
  .hp-header-floating.hp-overlay-hero .hp-header--sticky:not(.is-stuck) { background-color: transparent; border-bottom-color: transparent; }
  .hp-header-floating.hp-overlay-hero .hp-header--sticky:not(.is-stuck) .hp-header__logo-text, .hp-header-floating.hp-overlay-hero .hp-header--sticky:not(.is-stuck) .hp-header__toggle { color: var(--hp-color-surface); }
  .hp-header-floating.hp-overlay-hero--light .hp-header--sticky:not(.is-stuck) .hp-header__logo-text, .hp-header-floating.hp-overlay-hero--light .hp-header--sticky:not(.is-stuck) .hp-header__toggle { color: var(--hp-color-ink); }
  .hp-header-autohide .hp-header.is-hidden { transform: none; }
}

/* Primary navigation: dropdown + mega-menu */
.hp-menu { display: flex; align-items: center; gap: var(--hp-space-3); margin: 0; padding: 0; list-style: none; }
.hp-menu__item { position: relative; }
.hp-menu__item--mega { position: relative; }
.hp-menu__link { display: inline-flex; align-items: center; gap: 0.35em; color: inherit; font-weight: 600; text-decoration: none; }
.hp-menu__item.is-current > .hp-menu__link { text-decoration: underline; text-underline-offset: 0.35em; }
.hp-menu__toggle { display: inline-flex; align-items: center; justify-content: center; padding: 0.25rem; margin-inline-start: -0.15rem; background: none; border: 0; color: inherit; cursor: pointer; }
.hp-menu__caret { width: 0.5rem; height: 0.5rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.2s ease; }
.hp-menu__item.is-open .hp-menu__caret { transform: rotate(-135deg); }
.hp-dropdown, .hp-mega { position: absolute; z-index: 200; opacity: 0; visibility: hidden; transform: translateY(0.5rem); background-color: var(--hp-mega-bg, var(--hp-color-ink)); color: var(--hp-mega-ink, var(--hp-color-surface)); border-radius: var(--hp-radius); box-shadow: 0 24px 60px rgba(0,0,0,0.28); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease; }
@media (min-width: 48rem) {
  .hp-menu__toggle { display: none; }
  .hp-menu__item--has-children:hover > .hp-dropdown, .hp-menu__item--has-children:hover > .hp-mega,
  .hp-menu__item--has-children:focus-within > .hp-dropdown, .hp-menu__item--has-children:focus-within > .hp-mega { opacity: 1; visibility: visible; transform: translateY(0); }
}
.hp-menu__item.is-open > .hp-dropdown, .hp-menu__item.is-open > .hp-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.hp-dropdown { top: calc(100% + 0.85rem); left: 0; min-width: 13rem; margin: 0; padding: var(--hp-space-2); list-style: none; }
.hp-dropdown__link { display: block; padding: var(--hp-space-1) var(--hp-space-2); color: inherit; text-decoration: none; border-radius: calc(var(--hp-radius) * 0.55); }
.hp-dropdown__link:hover { background-color: color-mix(in srgb, var(--hp-mega-ink, #fff) 12%, transparent); }
.hp-mega { top: calc(100% + 0.85rem); left: 50%; translate: -50% 0; width: max-content; max-width: min(60rem, calc(100vw - 3rem)); padding: var(--hp-space-4); }
.hp-mega__caret { position: absolute; top: -0.55rem; left: 50%; width: 1.1rem; height: 1.1rem; background-color: var(--hp-mega-bg, var(--hp-color-ink)); border-radius: 0.15rem 0 0 0; transform: translateX(-50%) rotate(45deg); }
.hp-mega__inner { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(13rem, max-content); gap: var(--hp-space-4) var(--hp-space-5); }
.hp-mega__heading { display: inline-block; color: var(--hp-badge, inherit); font-family: var(--hp-font-display, inherit); font-weight: 800; font-size: 1.05rem; }
.hp-mega__links { margin: var(--hp-space-3) 0 0; padding: 0; list-style: none; }
.hp-mega__link-item { border-top: 1px dashed color-mix(in srgb, var(--hp-mega-ink, #fff) 28%, transparent); }
.hp-mega__link { display: block; padding: var(--hp-space-2) 0; color: inherit; text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.hp-mega__link:hover { color: color-mix(in srgb, var(--hp-mega-ink, #fff) 68%, transparent); }
@media (max-width: 47.999rem) {
  .hp-menu { flex-direction: column; align-items: stretch; gap: 0; }
  .hp-menu__item { display: flex; flex-wrap: wrap; align-items: center; }
  .hp-menu__link { flex: 1; padding-block: var(--hp-space-2); }
  .hp-menu__toggle { padding: var(--hp-space-2); }
  .hp-dropdown, .hp-mega { position: static; flex-basis: 100%; opacity: 1; visibility: hidden; transform: none; max-height: 0; overflow: hidden; padding: 0; background: transparent; color: inherit; border-radius: 0; box-shadow: none; transition: max-height 0.3s ease, visibility 0.3s ease; }
  .hp-menu__item.is-open > .hp-dropdown, .hp-menu__item.is-open > .hp-mega { visibility: visible; max-height: 60rem; padding: var(--hp-space-1) 0 var(--hp-space-2) var(--hp-space-3); }
  .hp-mega { translate: none; }
  .hp-mega__inner { grid-auto-flow: row; grid-template-columns: 1fr; gap: var(--hp-space-3); }
  .hp-mega__caret { display: none; }
}

/* Full-screen mobile menu: large stacked links */
@media (max-width: 47.999rem) {
  .hp-header.is-menu-open .hp-header__inner { background: transparent; }
  .hp-header.is-menu-open .hp-header__logo-text, .hp-header.is-menu-open .hp-header__toggle { color: var(--hp-color-surface); }
  .hp-header__collapse .hp-header__nav { width: 100%; }
  .hp-header__collapse .hp-menu { gap: var(--hp-space-1); width: 100%; }
  .hp-header__collapse .hp-menu__link { display: block; padding-block: var(--hp-space-1); font-family: var(--hp-font-display, inherit); font-size: clamp(2rem, 9vw, 3.25rem); font-weight: 800; line-height: 1.05; text-transform: uppercase; color: var(--hp-color-surface) !important; }
  .hp-header__collapse .hp-menu__item.is-current > .hp-menu__link { text-decoration: none; opacity: 0.7; }
  .hp-header__collapse .hp-mega__link, .hp-header__collapse .hp-dropdown__link { color: var(--hp-color-surface) !important; font-size: 1rem; }
  .hp-header__collapse .hp-mega__heading { color: var(--hp-badge, var(--hp-color-surface)); }
  .hp-header__collapse .hp-header__cta { margin-top: var(--hp-space-3); }
  .hp-menu-foot { margin-top: auto; padding-top: var(--hp-space-4); color: color-mix(in srgb, var(--hp-color-surface) 80%, transparent); }
  .hp-menu-foot a { color: inherit; }
}

/* Marquee ticker */
.hp-marquee { width: 100vw; margin-inline: calc(50% - 50vw); overflow: hidden; }
.hp-marquee__track { display: flex; width: max-content; will-change: transform; }
@media (prefers-reduced-motion: no-preference) { .hp-marquee__track { animation: hp-marquee var(--hp-marquee-duration, 30s) linear infinite; } }
.hp-marquee--reverse .hp-marquee__track { animation-direction: reverse; }
.hp-marquee__item { flex: none; padding-inline: var(--hp-space-3); font-family: var(--hp-font-display, inherit); font-size: var(--hp-marquee-size, clamp(2.5rem, 8vw, 6rem)); font-weight: 800; line-height: 1.15; text-transform: uppercase; white-space: nowrap; }
@keyframes hp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Title & Content buttons */
.hp-buttons--center { justify-content: center; }
.hp-heading__buttons { margin-top: var(--hp-space-3); }

/* Per-card colour + playful tilt */
.hp-card--colored { background-color: var(--hp-card-bg); color: var(--hp-card-ink); border-color: transparent; }
.hp-card--colored .hp-card__title, .hp-card--colored .hp-card__title .hp-card__link { color: var(--hp-card-ink); }
.hp-card--colored .hp-card__eyebrow { color: color-mix(in srgb, var(--hp-card-ink) 72%, transparent); }
.hp-card--colored .hp-card__description { color: color-mix(in srgb, var(--hp-card-ink) 82%, transparent); }
.hp-card--colored .hp-card__cta { color: var(--hp-card-ink); }
@media (prefers-reduced-motion: no-preference) { .hp-cards--tilt .hp-card { transition: transform 0.3s ease; } }
.hp-cards--tilt .hp-card:nth-child(4n+1) { transform: rotate(-3deg); }
.hp-cards--tilt .hp-card:nth-child(4n+2) { transform: rotate(2deg); }
.hp-cards--tilt .hp-card:nth-child(4n+3) { transform: rotate(-1.5deg); }
.hp-cards--tilt .hp-card:nth-child(4n+4) { transform: rotate(2.5deg); }
.hp-cards--tilt .hp-card:hover, .hp-cards--tilt .hp-card:focus-within { transform: rotate(0) translateY(-4px); }

/* Cards scroll arrows: center / bottom / filled next */
.hp-scroller__nav--center { justify-content: center; }
.hp-scroller__nav--bottom { margin-bottom: 0; margin-top: var(--hp-space-3); }
.hp-scroller__btn--fill { background: var(--hp-color-ink); color: var(--hp-color-surface); border-color: var(--hp-color-ink); }
.hp-scroller__btn--fill:hover { background: color-mix(in srgb, var(--hp-color-ink) 85%, #000); border-color: color-mix(in srgb, var(--hp-color-ink) 85%, #000); }

/* Content Scroller playful tilt */
.hp-scroller--tilt .hp-scroller__track { padding-block: var(--hp-space-2); }
@media (prefers-reduced-motion: no-preference) { .hp-scroller--tilt .hp-scroller__item { transition: transform 0.3s ease; } }
.hp-scroller--tilt .hp-scroller__item:nth-child(4n+1) { transform: rotate(-3deg); }
.hp-scroller--tilt .hp-scroller__item:nth-child(4n+2) { transform: rotate(2deg); }
.hp-scroller--tilt .hp-scroller__item:nth-child(4n+3) { transform: rotate(-1.5deg); }
.hp-scroller--tilt .hp-scroller__item:nth-child(4n+4) { transform: rotate(2.5deg); }
.hp-scroller--tilt .hp-scroller__item:hover, .hp-scroller--tilt .hp-scroller__item:focus-within { transform: rotate(0) translateY(-4px); }

/* Premium footer additions */
.hp-footer__contact { display: flex; flex-direction: column; gap: var(--hp-space-2); margin-top: var(--hp-space-2); }
.hp-footer__contact-item { display: flex; flex-direction: column; gap: 0.1rem; }
.hp-footer__contact-label { font-family: var(--hp-font-body); font-size: var(--hp-text-sm); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2; color: color-mix(in srgb, currentColor 70%, transparent); }
.hp-footer__contact-item a { color: inherit; font-size: var(--hp-text-base); text-decoration: underline; text-underline-offset: 0.18em; word-break: break-word; }
.hp-footer__contact-item a:hover { color: var(--hp-color-accent); }
.hp-footer__address { font-style: normal; line-height: 1.6; color: color-mix(in srgb, currentColor 85%, transparent); }
.hp-footer__address p { margin: 0; }
.hp-footer__cta { margin-top: var(--hp-space-1); }
.hp-footer__connect { margin-top: var(--hp-space-3); }
.hp-social { display: flex; flex-wrap: wrap; gap: var(--hp-space-2); margin: 0; padding: 0; list-style: none; }
.hp-social__link { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 50%; background-color: var(--hp-footer-ink, currentColor); color: var(--hp-footer-bg, #fff); }
@media (prefers-reduced-motion: no-preference) { .hp-social__link { transition: transform 0.2s ease, opacity 0.2s ease; } }
.hp-social__link:hover { transform: translateY(-2px); opacity: 0.9; }
.hp-social__icon { width: 1.15rem; height: 1.15rem; display: block; }
.hp-footer__note { max-width: 62rem; margin: var(--hp-space-3) auto 0; text-align: center; line-height: 1.7; color: color-mix(in srgb, currentColor 85%, transparent); }
.hp-footer__note p { margin: 0 0 var(--hp-space-2); }
.hp-footer__note p:last-child { margin-bottom: 0; }
.hp-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--hp-space-2) var(--hp-space-4); margin-top: var(--hp-space-3); padding-top: var(--hp-space-3); border-top: 1px solid color-mix(in srgb, currentColor 15%, transparent); }
.hp-footer__legal { display: flex; flex-wrap: wrap; gap: var(--hp-space-2) var(--hp-space-3); margin: 0; padding: 0; list-style: none; font-size: var(--hp-text-sm); }
.hp-footer__legal a { color: inherit; text-decoration: underline; text-underline-offset: 0.18em; opacity: 0.85; }
.hp-footer__legal a:hover { opacity: 1; color: var(--hp-color-accent); }
.hp-footer__credit { font-size: var(--hp-text-sm); color: color-mix(in srgb, currentColor 72%, transparent); text-decoration: underline; text-underline-offset: 0.18em; }
.hp-footer__credit:hover { color: currentColor; }
.hp-footer--panel .hp-footer__brand { max-width: none; padding: var(--hp-space-4); border-radius: var(--hp-radius); background-color: color-mix(in srgb, var(--hp-footer-ink) 7%, transparent); border: 1px solid color-mix(in srgb, var(--hp-footer-ink) 12%, transparent); }
@media (min-width: 48rem) { .hp-footer--panel .hp-footer__top { grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); } }
.hp-footer--centered { text-align: center; }
.hp-footer--centered .hp-footer__top { grid-template-columns: 1fr; justify-items: center; border-bottom: 0; }
.hp-footer--centered .hp-footer__brand { max-width: none; }
.hp-footer--centered .hp-footer__logo { margin-inline: auto; }
.hp-footer--centered .hp-footer__contact { align-items: center; }
.hp-footer--centered .hp-footer__connect { display: flex; justify-content: center; }
.hp-footer--centered .hp-footer__cols { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--hp-space-5); text-align: left; }
.hp-footer--centered .hp-footer__bottom { flex-direction: column; align-items: center; gap: var(--hp-space-3); }
.hp-footer--centered .hp-footer__legal { justify-content: center; }

/* Marquee text size */
.hp-marquee--h1 { --hp-marquee-size: clamp(2.5rem, 8vw, 6rem); }
.hp-marquee--h2 { --hp-marquee-size: clamp(2rem, 6.5vw, 4.5rem); }
.hp-marquee--h3 { --hp-marquee-size: clamp(1.75rem, 5vw, 3.5rem); }
.hp-marquee--h4 { --hp-marquee-size: clamp(1.5rem, 4vw, 2.75rem); }
.hp-marquee--h5 { --hp-marquee-size: clamp(1.3rem, 3vw, 2.1rem); }
.hp-marquee--h6 { --hp-marquee-size: clamp(1.1rem, 2.4vw, 1.6rem); }

/* Hero frosted content panel */
.hp-hero__content--panel { padding: clamp(1.5rem, 3.5vw, 3rem); border-radius: var(--hp-radius); background-color: color-mix(in srgb, #12151b 58%, transparent); border: 1px solid color-mix(in srgb, #fff 10%, transparent); color: var(--hp-color-surface); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.hp-hero__content--panel-light { background-color: color-mix(in srgb, #fff 62%, transparent); border-color: color-mix(in srgb, #12151b 10%, transparent); color: var(--hp-color-ink); }

/* Hero content scroller */

/* Hero slider content */
.hp-slider--hero .hp-slider__content { display: flex; flex-direction: column; align-items: flex-start; gap: var(--hp-space-2); max-width: 62rem; }
.hp-slider--hero .hp-hero__title { margin: 0; }
.hp-slider--hero .hp-hero__description { margin: 0; max-width: 46rem; }
.hp-slider--hero .hp-hero__buttons { margin-top: var(--hp-space-2); }
.hp-slider--no-image { color: var(--hp-slider-ink, var(--hp-color-surface)); }

/* Stats animated bars */
.hp-stats--bars { display: flex; flex-direction: column; gap: var(--hp-space-3); }
.hp-stat-bar__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--hp-space-2); margin-bottom: var(--hp-space-1); }
.hp-stat-bar__label { font-weight: 600; }
.hp-stat-bar__value { font-family: var(--hp-font-display, inherit); font-weight: 800; font-size: var(--hp-text-lg); }
.hp-stat-bar__track { height: 0.85rem; border-radius: 999px; background-color: color-mix(in srgb, currentColor 12%, transparent); overflow: hidden; }
.hp-stat-bar__fill { width: var(--hp-bar-value, 0%); height: 100%; border-radius: inherit; background-color: var(--hp-bar-color, var(--hp-color-accent)); }
@media (prefers-reduced-motion: no-preference) { .hp-stat-bar__fill { transition: width 1.2s var(--hp-ease, ease); } }
.hp-stats--bars[data-animate] .hp-stat-bar__fill { width: 0; }
.hp-stats--bars[data-animate].is-visible .hp-stat-bar__fill { width: var(--hp-bar-value, 0%); }

/* Goal / fundraising bar */
.hp-stats--goal .hp-stat-bar__track { height: 1.1rem; }
.hp-goal__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--hp-space-2); margin-bottom: var(--hp-space-2); }
.hp-goal__label { font-weight: 700; font-size: var(--hp-text-lg); }
.hp-goal__pct { font-family: var(--hp-font-display, inherit); font-weight: 800; font-size: var(--hp-text-xl); color: var(--hp-bar-color, var(--hp-color-accent)); }
.hp-goal__amounts { display: flex; justify-content: space-between; gap: var(--hp-space-2); margin-top: var(--hp-space-2); font-size: var(--hp-text-sm); }
.hp-goal__current { font-weight: 700; }
.hp-goal__target { color: color-mix(in srgb, currentColor 70%, transparent); }
.hp-video__img { object-fit: cover; }

/* Video/Image → Image scroller */
.hp-scroller--media .hp-scroller__track { scroll-snap-type: x mandatory; }
.hp-scroller--media .hp-scroller__item { flex: 0 0 100%; scroll-snap-align: start; }
.hp-media-slide { position: relative; }
.hp-media-slide__caption { margin: var(--hp-space-2) 0 0; font-size: var(--hp-text-sm); text-align: center; color: color-mix(in srgb, currentColor 78%, transparent); }

/* Audio / Podcast block */
.hp-podcast { display: grid; gap: var(--hp-space-3); grid-template-columns: 1fr; }
@media (min-width: 40rem) { .hp-podcast { grid-template-columns: auto 1fr; align-items: center; gap: var(--hp-space-4); } .hp-podcast--noart { grid-template-columns: 1fr; } }
.hp-podcast__art { width: 11rem; max-width: 100%; flex: none; border-radius: var(--hp-radius-image, var(--hp-radius)); overflow: hidden; }
.hp-podcast__img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.hp-podcast__main { min-width: 0; display: flex; flex-direction: column; gap: var(--hp-space-2); }
.hp-podcast__meta { margin: 0; font-size: var(--hp-text-sm); text-transform: uppercase; letter-spacing: 0.05em; color: color-mix(in srgb, currentColor 55%, transparent); }
.hp-audio { display: flex; align-items: center; gap: var(--hp-space-2); }
.hp-audio__play { flex: none; width: 3.25rem; height: 3.25rem; border: 0; border-radius: 999px; background-color: var(--hp-color-accent); color: #fff; cursor: pointer; display: grid; place-items: center; }
@media (prefers-reduced-motion: no-preference) { .hp-audio__play { transition: transform 0.15s ease; } }
.hp-audio__play:hover { transform: scale(1.06); }
.hp-audio__icon { width: 1.35rem; height: 1.35rem; fill: currentColor; }
.hp-audio__icon--pause { display: none; }
.hp-audio.is-playing .hp-audio__icon--play { display: none; }
.hp-audio.is-playing .hp-audio__icon--pause { display: block; }
.hp-audio__body { flex: 1; min-width: 0; }
.hp-audio__bar { position: relative; height: 0.85rem; border-radius: 999px; background-color: color-mix(in srgb, currentColor 12%, transparent); cursor: pointer; }
.hp-audio__buffer, .hp-audio__progress { position: absolute; inset: 0 auto 0 0; width: 0; border-radius: inherit; }
.hp-audio__buffer { background-color: color-mix(in srgb, currentColor 12%, transparent); }
.hp-audio__progress { background-color: var(--hp-color-accent); }
.hp-audio__handle { position: absolute; top: 50%; left: 0; width: 0.9rem; height: 0.9rem; border-radius: 999px; background-color: var(--hp-color-accent); box-shadow: 0 1px 4px rgba(0,0,0,0.25); transform: translate(-50%, -50%); opacity: 0; }
@media (prefers-reduced-motion: no-preference) { .hp-audio__handle { transition: opacity 0.15s ease; } }
.hp-audio__bar:hover .hp-audio__handle, .hp-audio.is-playing .hp-audio__handle { opacity: 1; }
.hp-audio__times { display: flex; justify-content: space-between; margin-top: var(--hp-space-1); font-size: var(--hp-text-sm); font-variant-numeric: tabular-nums; color: color-mix(in srgb, currentColor 60%, transparent); }
.hp-podcast__platforms { display: flex; flex-wrap: wrap; gap: var(--hp-space-1); margin-top: var(--hp-space-1); }
.hp-podcast__platform { padding: 0.4em 0.95em; border-radius: 999px; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); font-size: var(--hp-text-sm); text-decoration: none; color: inherit; }
@media (prefers-reduced-motion: no-preference) { .hp-podcast__platform { transition: background-color 0.15s ease, border-color 0.15s ease; } }
.hp-podcast__platform:hover { background-color: color-mix(in srgb, currentColor 8%, transparent); border-color: color-mix(in srgb, currentColor 35%, transparent); }

/* Header dark/light logo swap */
.hp-header__logo-img { display: block; }
.hp-header--dual-logo .hp-header__logo-img--light { display: none; }
.hp-overlay-hero .hp-header--dual-logo .hp-header__logo-img--dark,
.hp-header--dual-logo.hp-header--pill-dark .hp-header__logo-img--dark { display: none; }
.hp-overlay-hero .hp-header--dual-logo .hp-header__logo-img--light,
.hp-header--dual-logo.hp-header--pill-dark .hp-header__logo-img--light { display: block; }
.hp-overlay-hero--light .hp-header--dual-logo .hp-header__logo-img--dark,
.hp-header--dual-logo.hp-header--pill-light .hp-header__logo-img--dark { display: block; }
.hp-overlay-hero--light .hp-header--dual-logo .hp-header__logo-img--light,
.hp-header--dual-logo.hp-header--pill-light .hp-header__logo-img--light { display: none; }

/* Audio / Podcast 50/50 split */
.hp-podcast-split { display: grid; gap: var(--hp-space-4); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 48rem) { .hp-podcast-split { grid-template-columns: 1fr 1fr; gap: var(--hp-space-5); } .hp-podcast-split--left .hp-podcast-split__player { order: -1; } }
.hp-podcast-split__content { min-width: 0; }
.hp-podcast-split__text { margin-top: var(--hp-space-2); color: color-mix(in srgb, currentColor 82%, transparent); }
.hp-podcast-split .hp-podcast { grid-template-columns: 1fr; }
.hp-podcast-split .hp-podcast__art { max-width: 9rem; }

/* Centered podcast content */
.hp-podcast--center { text-align: center; }
.hp-podcast--center .hp-podcast__main { align-items: center; }
.hp-podcast--center .hp-podcast__art { margin-inline: auto; }
.hp-podcast--center .hp-audio { width: 100%; }
.hp-podcast--center .hp-podcast__platforms { justify-content: center; }

/* Hero custom-colour content panel */
.hp-hero__content--panel-custom { background-color: var(--hp-hero-panel-bg); color: var(--hp-hero-panel-ink, inherit); border-color: color-mix(in srgb, currentColor 12%, transparent); -webkit-backdrop-filter: none; backdrop-filter: none; }

/* Card title heading level -> size */
.hp-cards--title-h2 .hp-card__title { font-size: var(--hp-h2); }
.hp-cards--title-h3 .hp-card__title { font-size: var(--hp-h3); }
.hp-cards--title-h4 .hp-card__title { font-size: var(--hp-h4); }
.hp-cards--title-h5 .hp-card__title { font-size: var(--hp-h5); }
.hp-cards--title-h6 .hp-card__title { font-size: var(--hp-h6); }

/* Eyebrow pill */
.hp-eyebrow-pill .hp-eyebrow { display: inline-block; align-self: flex-start; width: fit-content; padding: 0.4em 1.3em; border-radius: 999px; background-color: var(--hp-eyebrow-pill-bg, color-mix(in srgb, currentColor 12%, transparent)); color: var(--hp-eyebrow-pill-ink, inherit); }


/* Minimal footer (logo only) — tighter gap before the note */
.hp-footer--minimal .hp-footer__top { padding-bottom: var(--hp-space-2); }
.hp-footer--minimal .hp-footer__note { margin-top: var(--hp-space-2); }

/* 50/50 card container */
.hp-media--card { background-color: var(--hp-media-card-bg, var(--hp-color-muted)); color: var(--hp-media-card-ink, inherit); border-radius: var(--hp-radius-card); padding-block: var(--hp-media-card-pt, clamp(1.75rem, 4vw, 3.25rem)) var(--hp-media-card-pb, clamp(1.75rem, 4vw, 3.25rem)); padding-inline: var(--hp-media-card-pl, clamp(1.75rem, 4vw, 3.25rem)) var(--hp-media-card-pr, clamp(1.75rem, 4vw, 3.25rem)); align-items: center; }

/* Centered logo header */
.hp-header--center-logo .hp-header__inner { justify-content: flex-end; }
.hp-header--center-logo .hp-header__logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }

/* Centered logo desktop: nav below */
@media (min-width: 48rem) {
  .hp-header--center-logo .hp-header__inner { flex-direction: column; justify-content: center; gap: var(--hp-space-2); padding-block: var(--hp-space-2); }
  .hp-header--center-logo .hp-header__logo { position: static; transform: none; }
}

/* Podcast episode title */
.hp-podcast__title { margin: 0 0 0.25em; }

/* Podcast: centered on mobile by default */
@media (max-width: 39.9375rem) {
  .hp-podcast { text-align: center; }
  .hp-podcast__main { align-items: center; }
  .hp-podcast__art { margin-inline: auto; }
  .hp-audio { width: 100%; }
  .hp-podcast__platforms { justify-content: center; }
}

/* Title & Content oversized CTA */
.hp-heading__cta { margin-top: var(--hp-space-3); }
.hp-heading__cta--left { text-align: left; }
.hp-heading__cta--center { text-align: center; }
.hp-heading__cta .hp-button { font-size: clamp(1.05rem, 0.95rem + 0.6vw, 1.4rem); padding: 0.95em 2.3em; font-weight: 700; }

/* Event block */
.hp-event { display: grid; gap: var(--hp-space-4); grid-template-columns: 1fr; align-items: center; }
.hp-event--noimg { grid-template-columns: 1fr; }
@media (min-width: 48rem) {
  .hp-event { grid-template-columns: 1fr 1fr; }
  .hp-event--img-right .hp-event__media { order: 2; }
}
.hp-event__img-wrap { position: relative; border-radius: var(--hp-radius-image, var(--hp-radius)); overflow: hidden; }
.hp-event__img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
.hp-event__badge { position: absolute; top: var(--hp-space-2); left: var(--hp-space-2); display: flex; flex-direction: column; align-items: center; gap: 0.1rem; padding: 0.45rem 0.75rem; border-radius: var(--hp-radius); background: var(--hp-color-accent); color: #fff; line-height: 1; }
.hp-event__badge-day { font-size: 1.6rem; font-weight: 800; }
.hp-event__badge-mon { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; }
.hp-event__name { margin: 0 0 var(--hp-space-2); }
.hp-event__meta { display: flex; flex-wrap: wrap; gap: var(--hp-space-1) var(--hp-space-3); margin-bottom: var(--hp-space-3); }
.hp-event__meta-item { display: inline-flex; align-items: center; gap: 0.45rem; font-size: var(--hp-text-sm); color: color-mix(in srgb, currentColor 75%, transparent); }
.hp-event__meta-item .hp-icon { width: 1.15em; height: 1.15em; flex: none; color: var(--hp-color-accent); }
.hp-event__desc { margin-bottom: var(--hp-space-3); }
.hp-event__desc :last-child { margin-bottom: 0; }
.hp-event__cta { margin-top: var(--hp-space-1); }

/* Event — condensed list row */
.hp-event--condensed { display: flex; align-items: center; gap: var(--hp-space-3); padding-block: var(--hp-space-3); border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
.hp-event--condensed .hp-event__date-block { flex: none; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 3.75rem; padding: 0.55rem 0.5rem; border-radius: var(--hp-radius); background: color-mix(in srgb, var(--hp-color-accent) 12%, transparent); color: var(--hp-color-accent); line-height: 1; }
.hp-event--condensed .hp-event__body { flex: 1 1 auto; min-width: 0; }
.hp-event--condensed .hp-event__name { margin: 0 0 0.2rem; font-size: var(--hp-text-lg); }
.hp-event--condensed .hp-event__meta { margin: 0; }
.hp-event--condensed .hp-event__cta { flex: none; margin: 0; }

/* Per-block contained card */
.hp-section__card { background: var(--hp-section-card-bg, color-mix(in srgb, currentColor 4%, transparent)); color: var(--hp-section-card-ink, inherit); border-radius: var(--hp-radius); padding: clamp(1.75rem, 1.4rem + 2vw, 3.5rem); }

/* Footer background image */
.hp-footer__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hp-footer__bg-img { width: 100%; height: 100%; object-fit: cover; }
.hp-footer__overlay { position: absolute; inset: 0; z-index: 0; background: var(--hp-footer-bg, var(--hp-color-ink)); }
.hp-footer > .hp-container { position: relative; z-index: 1; }
