*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: 1.55;
  color: var(--ink-default);
  background: #eef1f6;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
main { display: block; }

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.theme {
  min-height: 100vh;
  background: #eef1f6;
}

.c-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(238, 241, 246, 0.88);
  border-bottom: 1px solid rgba(23, 32, 43, 0.08);
}

.c-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 4.4rem;
}

.c-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.c-site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.c-site-nav a {
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.c-page-head {
  padding-block: var(--space-8) var(--space-7);
}

.c-page-head__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--theme-primary-current);
  font-weight: 700;
}


.c-page-head__title,
.c-section__title,
.c-banner__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
}

.c-page-head__title { font-size: clamp(2.6rem, 6vw, 5.2rem); }
.c-section__title { font-size: clamp(1.55rem, 3.2vw, 2.35rem); text-transform: uppercase; letter-spacing: 0.03em; }
.c-banner__title { font-size: clamp(2.2rem, 6vw, 4.8rem); }

.c-page-head__lead,
.c-section__lead,
.c-copy,
.c-testimonial__quote,
.c-editorial__copy,
.c-list-card__copy { color: var(--ink-muted); }

.c-page-head__lead,
.c-section__lead,
.c-banner__copy { max-width: var(--measure); margin: 0; font-size: 1.05rem; }
.c-section__title + .c-section__lead,
.c-page-head__title + .c-page-head__lead,
.c-banner__title + .c-banner__copy { margin-top: var(--space-4); }

.c-kicker,
.c-section__kicker,
.c-banner__kicker {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  opacity: 0.76;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.3rem;
  min-height: 3rem;
  border-radius: var(--ui-button-radius);
  border: 1px solid var(--theme-primary-current);
  background: var(--theme-primary-current);
  color: var(--ink-inverse);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: var(--ui-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.c-button--ghost {
  background: transparent;
  color: var(--theme-secondary-current, currentColor);
  border-color: var(--theme-secondary-current, currentColor);
  box-shadow: none;
}

.c-button--ghost:is(:hover, :focus-visible) {
  background: color-mix(in srgb, var(--theme-secondary-current, currentColor) 10%, transparent);
}

.c-button--secondary {
  background: var(--theme-secondary-current, var(--theme-primary-current));
  border-color: var(--theme-secondary-current, var(--theme-primary-current));
  color: var(--ink-inverse);
}


.c-button--white {
  background: var(--theme-primary-inverse, #fff);
  color: var(--ink-inverse);
  border-color: var(--theme-primary-inverse, #fff);
  box-shadow: var(--ui-shadow);
}

.c-button--white:is(:hover, :focus-visible) {
  background: transparent;
  color: var(--theme-primary-inverse, #fff);
  border-color: var(--theme-primary-inverse, #fff);
}

.c-button--ghost-white {
  background: transparent;
  color: var(--theme-secondary-inverse, #fff);
  border-color: color-mix(in srgb, var(--theme-secondary-inverse, #fff) 92%, transparent);
}

.c-button--ghost-white:is(:hover, :focus-visible) {
  background: color-mix(in srgb, var(--theme-secondary-inverse, #fff) 12%, transparent);
}

.c-button--full {
  width: 100%;
}

.c-button--arrow::after {
  content: "->";
  font-size: 0.95em;
  line-height: 1;
}

.c-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-4);
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.c-meta-pill {
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(23, 32, 43, 0.06);
}

.c-media-swatch,
.c-media-photo {
  min-height: 100%;
  border-radius: inherit;
}

.c-media-swatch {
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 55%), var(--swatch, linear-gradient(135deg, #a8c6ff, #4c72d7));
}

.c-media-photo {
  background-color: #cfd7e2;
  background-image: var(--media-image);
  background-size: cover;
  background-position: var(--media-position, center center);
  background-repeat: no-repeat;
}

.c-media-swatch--warm { --swatch: linear-gradient(135deg, #ffd4b0, #d86b4c); }
.c-media-swatch--cool { --swatch: linear-gradient(135deg, #b3d6ff, #4167d9); }
.c-media-swatch--forest { --swatch: linear-gradient(135deg, #bde6c8, #356a58); }
.c-media-swatch--plum { --swatch: linear-gradient(135deg, #d6c0f1, #684f97); }
.c-media-swatch--sand { --swatch: linear-gradient(135deg, #f2dfbc, #b68d53); }
.c-media-swatch--night { --swatch: linear-gradient(135deg, #30415d, #0f1728); }

@media (max-width: 64rem) {
  .c-site-header__inner { align-items: flex-start; padding-block: var(--space-3); }
}
