@font-face {
  font-family: "Breauti Display";
  src: url("../fonts/BreautiDisplay-Regular.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #11110f;
  --ink-soft: #3e3d38;
  --paper: #ffffff;
  --warm-white: #f7f6f2;
  --line: #d9d7d0;
  --line-dark: rgba(255, 255, 255, 0.22);
  --gold: #bd8a33;
  --gold-light: #e2c47f;
  --fashion: #164da0;
  --education: #126238;
  --development: #d24f40;
  --cobalt: #195cc3;
  --coral: #dd5a48;
  --green: #176f42;
  --header-height: 82px;
  --development-banner-height: 34px;
  --page-gutter: clamp(20px, 4.4vw, 72px);
  --content-width: 1440px;
  --radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  color: var(--ink);
  border-bottom-color: rgba(17, 17, 15, 0.12);
  background: var(--paper);
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

button,
.button,
.text-link,
.nav-link,
.hero-branch-link {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

::selection {
  color: var(--paper);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - var(--development-banner-height) - 24px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

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

.shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section {
  padding-block: clamp(72px, 9vw, 144px);
}

.section[id] {
  scroll-margin-top: calc(var(--development-banner-height) + var(--header-height) + 16px);
}

.section--compact {
  padding-block: clamp(54px, 6vw, 96px);
}

.section.section--flush-lead {
  padding-top: clamp(28px, 3vw, 44px);
}

.section--warm {
  background: var(--warm-white);
}

.section--ink {
  color: var(--paper);
  background: var(--ink);
}

.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow--fashion {
  color: var(--ink);
}

.eyebrow--education {
  color: var(--education);
}

.eyebrow--development {
  color: var(--development);
}

.display,
.section-title,
.editorial-title {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
}

.display {
  font-size: clamp(3.35rem, 7.3vw, 7.8rem);
}

.section-title {
  font-size: clamp(2.65rem, 5.2vw, 5.5rem);
}

.editorial-title {
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: 1.04;
}

.lead {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.lead--light {
  color: rgba(255, 255, 255, 0.82);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  color: var(--ink);
  background: transparent;
}

.button svg,
.text-link svg,
.header-cta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg,
.header-cta:hover svg {
  transform: translate(3px, -3px);
}

.button--light {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.button--light:hover {
  color: var(--paper);
  background: transparent;
}

.button--outline {
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  color: var(--paper);
  background: var(--ink);
}

.button--outline-light {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--paper);
}

.button--education {
  border-color: var(--education);
  background: var(--education);
}

.button--education:hover {
  color: var(--education);
}

.button--development {
  border-color: #a9372f;
  background: #a9372f;
}

.button--development:hover {
  color: #a9372f;
}

.button--fashion {
  border-color: var(--ink);
  background: var(--ink);
}

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

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-block: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.93rem;
  font-weight: 700;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  gap: 28px;
  align-items: center;
  padding-inline: var(--page-gutter);
  border-bottom: 1px solid transparent;
  transition: min-height 220ms var(--ease), color 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header[data-header-theme="light"] {
  color: var(--ink);
  border-bottom-color: rgba(17, 17, 15, 0.12);
  background: var(--paper);
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 8px 28px rgba(17, 17, 15, 0.05);
}

.site-header[data-header-theme="dark"]:not(.is-scrolled) {
  color: var(--paper);
}

body.menu-open .site-header[data-header-theme="dark"]:not(.is-scrolled) {
  color: var(--ink);
  border-bottom-color: rgba(17, 17, 15, 0.12);
  background: var(--paper);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: clamp(136px, 12vw, 190px);
  height: auto;
}

@media (min-width: 1081px) {
  .site-header .brand {
    transform: translateY(-4px);
  }
}

.main-nav {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding-block: 10px;
  font-size: 0.83rem;
  font-weight: 650;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  gap: 10px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--paper);
}

.site-header.is-scrolled .header-cta:hover,
.site-header[data-header-theme="light"] .header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.menu-toggle .icon-close,
.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: calc(var(--development-banner-height) + var(--header-height) + 44px) var(--page-gutter) 34px;
  color: var(--ink);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 0s linear 220ms;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-menu__nav {
  display: grid;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 7vw, 2.75rem);
  line-height: 1;
}

.mobile-menu__number {
  color: var(--ink-soft);
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.home-hero {
  position: relative;
  min-height: max(720px, 92svh);
  overflow: hidden;
  color: var(--paper);
  background: #101113;
}

.home-hero__panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.home-hero__panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  background: #141414;
}

.home-hero__panel:last-child {
  border-right: 0;
}

.home-hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.92) contrast(1.06);
  transition: filter 600ms ease, transform 1.1s var(--ease);
}

.home-hero__panel--fashion img {
  object-position: 65% center;
}

.home-hero__panel--education img {
  object-position: 69% center;
}

.home-hero__panel--development img {
  object-position: 72% center;
}

.home-hero__panel.is-active img {
  filter: brightness(0.72) saturate(1.08) contrast(1.03);
  transform: scale(1.025);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(720px, 92svh);
  align-items: center;
  justify-content: center;
  padding: calc(var(--development-banner-height) + var(--header-height) + 58px) var(--page-gutter) 176px;
  text-align: center;
  pointer-events: none;
}

.home-hero__copy {
  width: min(100%, 980px);
}

.home-hero__content .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero__title {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7vw, 7.2rem);
  font-weight: 400;
  line-height: 0.94;
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.48);
}

.home-hero__lead {
  width: min(100%, 650px);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.62);
}

.home-hero__content .button-row {
  justify-content: center;
  pointer-events: auto;
}

.home-hero__branches {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-branch-link {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(12, 12, 12, 0.34);
  backdrop-filter: blur(7px);
  transition: background 180ms ease;
}

.hero-branch-link:last-child {
  border-right: 0;
}

.hero-branch-link:hover,
.hero-branch-link:focus-visible {
  background: rgba(12, 12, 12, 0.7);
}

.hero-branch-link__number {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-branch-link__name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.25vw, 2.2rem);
  line-height: 1;
}

.hero-branch-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
}

.intro-grid .lead {
  margin-bottom: 4px;
}

.branch-list {
  border-top: 1px solid var(--line);
}

.branch-story {
  --story-accent: var(--ink);
  display: grid;
  min-height: 430px;
  grid-template-columns: 0.28fr 0.72fr 1.1fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding-block: clamp(38px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.branch-story--fashion {
  --story-accent: var(--ink);
}

.branch-story--education {
  --story-accent: var(--education);
}

.branch-story--development {
  --story-accent: var(--development);
}

.branch-story__number {
  align-self: start;
  color: var(--story-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.8;
}

.branch-story__copy h3 {
  margin-bottom: 18px;
  color: var(--story-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
}

.branch-story__copy p {
  max-width: 480px;
  color: var(--ink-soft);
}

.branch-story__media {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--warm-white);
}

.branch-story__media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.branch-story:hover .branch-story__media img {
  transform: scale(1.025);
}

.branch-story--fashion .branch-story__media img {
  object-fit: cover;
  object-position: center;
}

.branch-story--education .branch-story__media img {
  object-position: 70% center;
}

.branch-story--development .branch-story__media img {
  object-position: 72% center;
}

.standard-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(48px, 10vw, 160px);
  align-items: center;
}

.standard-band__principles {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.standard-band__principles div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.standard-band__principles span {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
}

.standard-band__principles strong {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
}

.branch-hero {
  position: relative;
  display: flex;
  min-height: max(680px, 88svh);
  align-items: center;
  overflow: hidden;
  padding: calc(var(--development-banner-height) + var(--header-height) + 58px) var(--page-gutter) 76px;
  background: var(--warm-white);
}

.branch-hero__media,
.branch-hero__media::after {
  position: absolute;
  inset: 0;
}

.branch-hero__media img,
.branch-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-hero__art,
.branch-hero__media video {
  position: absolute;
  inset: 0;
}

.branch-hero__art {
  display: block;
  width: 100%;
  height: 100%;
}

.branch-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
}

.branch-hero__content .lead {
  max-width: 660px;
}

.branch-hero--education .branch-hero__media img {
  object-position: center;
}

.branch-hero--development .branch-hero__media img {
  object-position: center;
}

.branch-hero--education .branch-hero__media::after,
.branch-hero--development .branch-hero__media::after {
  right: 48%;
  content: "";
  background: rgba(247, 246, 242, 0.62);
}

.branch-hero--education .branch-hero__content,
.branch-hero--development .branch-hero__content {
  width: min(48%, 720px);
}

.branch-hero--education .display,
.branch-hero--development .display {
  font-size: clamp(3.5rem, 5.6vw, 6.1rem);
  line-height: 0.95;
}

.branch-hero--fashion {
  color: var(--paper);
  background: #0a1423;
}

.branch-hero--fashion .branch-hero__media video,
.branch-hero--fashion .branch-hero__media img {
  object-fit: cover;
  object-position: center;
  filter: none;
}

.branch-hero--fashion .branch-hero__media video {
  opacity: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 260ms ease;
}

.branch-hero--fashion .branch-hero__media video.is-scrubbing {
  cursor: grabbing;
}

.branch-hero--fashion .branch-hero__media video:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: -8px;
}

.branch-hero--fashion .branch-hero__media video.is-ready {
  opacity: 1;
}

.branch-hero--fashion .branch-hero__media::after {
  content: "";
  pointer-events: none;
  background: transparent;
}

.branch-hero--fashion .branch-hero__content {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42);
}

.branch-hero--fashion .lead {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1081px) {
  .branch-hero--fashion .branch-hero__media video,
  .branch-hero--fashion .branch-hero__media img {
    object-fit: cover;
  }
}

@media (min-width: 1081px) and (min-aspect-ratio: 19 / 10) {
  .branch-hero--fashion {
    min-height: 100svh;
  }

  .branch-hero--fashion .branch-hero__media video,
  .branch-hero--fashion .branch-hero__media img {
    object-position: center top;
  }
}

.hero-media-controls {
  position: absolute;
  z-index: 3;
  right: var(--page-gutter);
  bottom: 26px;
  display: grid;
  gap: 8px;
  justify-items: end;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.branch-hero:hover .hero-media-controls,
.branch-hero:focus-within .hero-media-controls,
.branch-hero:has([data-video-gesture][data-playback-state="paused"]) .hero-media-controls {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.video-style-picker {
  display: flex;
  min-height: 24px;
  gap: 12px;
  justify-self: center;
  align-items: center;
  justify-content: center;
}

.video-style-picker__name {
  color: rgba(17, 17, 15, 0.56);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
}

.media-scrubber {
  display: flex;
  width: min(220px, 34vw);
  height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px) saturate(135%);
}

.media-scrubber input {
  --scrub-progress: 0%;
  width: 100%;
  height: 18px;
  margin: 0;
  appearance: none;
  cursor: ew-resize;
  background: transparent;
}

.media-scrubber input::-webkit-slider-runnable-track {
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    to right,
    var(--paper) 0 var(--scrub-progress),
    rgba(255, 255, 255, 0.42) var(--scrub-progress) 100%
  );
}

.media-scrubber input::-webkit-slider-thumb {
  width: 34px;
  height: 16px;
  margin-top: -7px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px) saturate(140%);
}

.media-scrubber input::-moz-range-track {
  height: 2px;
  border: 0;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.media-scrubber input::-moz-range-progress {
  height: 2px;
  border-radius: 1px;
  background: var(--paper);
}

.media-scrubber input::-moz-range-thumb {
  width: 34px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 4px 14px rgba(0, 0, 0, 0.26);
}

.media-scrubber input:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 6px;
}

.branch-marker {
  position: absolute;
  z-index: 2;
  right: var(--page-gutter);
  bottom: 28px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.branch-marker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: start;
}

.positioning-grid__aside {
  position: sticky;
  top: 116px;
}

.positioning-grid__aside p {
  max-width: 520px;
  color: var(--ink-soft);
}

.feature-lines {
  border-top: 1px solid var(--line);
}

.feature-line {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: clamp(22px, 4vw, 54px);
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.feature-line__number {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.feature-line h3 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.feature-line p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.media-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(3, clamp(220px, 26vw, 380px));
  gap: 12px;
}

.media-mosaic figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #ecebe6;
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.media-mosaic figure:first-child {
  grid-row: 1 / 4;
}

.media-mosaic picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-mosaic__trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
}

.media-mosaic__trigger:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: -4px;
}

.media-mosaic__trigger--contain img {
  object-fit: contain;
}

.media-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms var(--ease), filter 300ms ease;
}

.media-mosaic figure:first-child img {
  object-position: center;
}

.media-mosaic figure:hover,
.media-mosaic figure:focus-within {
  z-index: 2;
  box-shadow: 0 24px 50px rgba(17, 17, 15, 0.2);
  transform: translateY(-7px) scale(1.008);
}

.media-mosaic figure:hover img,
.media-mosaic figure:focus-within img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.018);
}

.concept-disclosure {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.concept-disclosure__icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  background: var(--paper);
}

.concept-disclosure__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.concept-disclosure p {
  max-width: 1050px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.65;
}

.concept-disclosure strong {
  color: var(--ink);
}

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: rgba(8, 9, 11, 0.96);
}

.lightbox:not([open]) {
  display: none;
}

.lightbox::backdrop {
  background: rgba(8, 9, 11, 0.82);
}

.lightbox__surface {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 72px minmax(0, 1fr) 78px;
  align-items: center;
}

.lightbox__figure {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-column: 2;
  grid-row: 2 / 4;
  grid-template-rows: minmax(0, 1fr) 78px;
  margin: 0;
  align-items: center;
  justify-items: center;
}

.lightbox__figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 170px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lightbox__figure figcaption {
  display: flex;
  width: min(100%, 1100px);
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.lightbox__control {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lightbox__control:hover {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.lightbox__control svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lightbox__close {
  grid-column: 3;
  grid-row: 1;
  justify-self: center;
}

.lightbox__previous {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}

.lightbox__next {
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
}

.fundraiser-section {
  overflow: hidden;
  background: #f1f1ee;
}

.fundraiser-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(54px, 9vw, 140px);
  align-items: start;
}

.fundraiser-intro {
  padding-top: clamp(14px, 2vw, 30px);
}

.fundraiser-intro .section-title {
  max-width: 660px;
}

.fundraiser-intro .lead {
  max-width: 580px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.fundraiser-notice {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.fundraiser-notice > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
}

.fundraiser-panel {
  width: min(100%, 720px);
  justify-self: end;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(24, 31, 42, 0.08);
}

.fundraiser-panel__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.fundraiser-panel__header > div {
  display: grid;
  gap: 4px;
}

.fundraiser-panel__label {
  color: var(--ink-soft);
  font-size: 0.71rem;
  font-weight: 750;
  text-transform: uppercase;
}

.fundraiser-panel__header strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 1;
}

.fundraiser-preview-badge {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--warm-white);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.fundraiser-progress {
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 30px;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  appearance: none;
  background: #dfe2e7;
}

.fundraiser-progress::-webkit-progress-bar {
  border-radius: 5px;
  background: #dfe2e7;
}

.fundraiser-progress::-webkit-progress-value {
  border-radius: 5px;
  background: var(--ink);
}

.fundraiser-progress::-moz-progress-bar {
  border-radius: 5px;
  background: var(--ink);
}

.fundraiser-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.fundraiser-progress__meta strong {
  color: var(--ink);
}

.fundraiser-milestones {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fundraiser-milestones li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: center;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.fundraiser-milestones__number {
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.fundraiser-milestones li > div {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.fundraiser-milestones strong {
  font-size: 0.9rem;
}

.fundraiser-milestones li > div > span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-align: right;
}

.fundraiser-early-access {
  margin-top: 26px;
  padding: 20px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.fundraiser-early-access > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.fundraiser-early-access p {
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.15;
}

.fundraiser-early-access p strong {
  font-weight: 400;
}

.fundraiser-early-access small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.funding-interest {
  margin-top: 28px;
}

.funding-interest__intro {
  display: flex;
  gap: 18px;
  align-items: baseline;
  justify-content: space-between;
}

.funding-interest__intro p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 750;
}

.funding-interest__intro span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  text-align: right;
}

.funding-interest__amounts {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 7px;
  margin-top: 11px;
}

.funding-interest__amounts button {
  min-height: 42px;
  padding: 7px 6px;
  border: 1px solid #bfc3ca;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.funding-interest__amounts button:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.funding-interest__amounts button[aria-pressed="true"] {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.funding-interest__custom {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.funding-interest__custom[hidden] {
  display: none;
}

.funding-interest__custom label {
  font-size: 0.68rem;
  font-weight: 750;
}

.funding-interest__input {
  display: grid;
  min-height: 46px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #bfc3ca;
  border-radius: var(--radius);
  background: var(--paper);
}

.funding-interest__input:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 2px rgba(17, 17, 15, 0.1);
}

.funding-interest__input > span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.funding-interest__input input {
  min-width: 0;
  padding: 11px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
}

.funding-interest__action {
  width: 100%;
  margin-top: 9px;
}

.funding-interest__action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.funding-interest__status {
  min-height: 18px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-align: center;
}

.funding-interest__status.is-active {
  color: var(--ink);
  font-weight: 700;
}

.funding-interest__disclosure {
  display: block;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.66rem;
  line-height: 1.5;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability {
  min-height: 280px;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 42px;
  color: var(--education);
}

.page-development .capability__icon {
  color: var(--development);
}

.capability__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.capability h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.capability p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.audience-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(50px, 9vw, 150px);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-list li {
  padding: 19px 4px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 600;
}

.audience-list li:nth-child(odd) {
  margin-right: 18px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-step {
  position: relative;
  min-height: 270px;
  padding: 30px clamp(20px, 3vw, 42px) 22px 0;
  border-right: 1px solid var(--line);
}

.process-step:not(:first-child) {
  padding-left: clamp(20px, 3vw, 42px);
}

.process-step:last-child {
  border-right: 0;
}

.process-step__number {
  display: block;
  margin-bottom: 52px;
  color: var(--education);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.page-development .process-step__number {
  color: var(--development);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.process-step p {
  max-width: 330px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.service-accordion {
  border-top: 1px solid var(--line);
}

.service-accordion details {
  border-bottom: 1px solid var(--line);
}

.service-accordion summary {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 24px;
  align-items: center;
  padding-block: 28px;
  list-style: none;
  cursor: pointer;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion__number {
  color: var(--development);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-accordion summary h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 400;
}

.service-accordion__toggle {
  position: relative;
  width: 28px;
  height: 28px;
}

.service-accordion__toggle::before,
.service-accordion__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.service-accordion__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-accordion details[open] .service-accordion__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-accordion__body {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(240px, 0.6fr);
  gap: 24px;
  padding: 0 0 34px;
}

.service-accordion__body p {
  grid-column: 2;
  max-width: 650px;
  color: var(--ink-soft);
}

.service-accordion__body ul {
  grid-column: 3;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-accordion__body li {
  padding-block: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(44px, 9vw, 150px);
  align-items: end;
}

.cta-band .section-title {
  margin-bottom: 0;
}

.cta-band__action {
  padding-bottom: 6px;
}

.cta-band__action p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.74);
}

.about-hero,
.start-hero {
  padding: calc(var(--development-banner-height) + var(--header-height) + clamp(80px, 10vw, 160px)) var(--page-gutter) clamp(70px, 9vw, 140px);
  background: var(--warm-white);
}

.about-hero__grid,
.start-hero__grid {
  display: grid;
  width: min(100%, var(--content-width));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(60px, 11vw, 180px);
  align-items: end;
}

.about-hero .display,
.start-hero .display {
  margin-bottom: 0;
}

.about-hero__aside,
.start-hero__aside {
  padding-bottom: 10px;
}

.about-hero__aside p,
.start-hero__aside p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(54px, 10vw, 160px);
}

.origin-grid__copy p {
  max-width: 740px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.branch-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.branch-map__item {
  min-height: 360px;
  padding: 30px clamp(20px, 3vw, 42px) 30px 0;
  border-right: 1px solid var(--line);
}

.branch-map__item:not(:first-child) {
  padding-left: clamp(20px, 3vw, 42px);
}

.branch-map__item:last-child {
  border-right: 0;
}

.branch-map__number {
  display: block;
  margin-bottom: 80px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.branch-map__item h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
}

.branch-map__item p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.legal-line {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.legal-line::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--green);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(54px, 10vw, 160px);
  align-items: start;
}

.project-layout__intro {
  position: sticky;
  top: 116px;
}

.project-layout__intro p {
  color: var(--ink-soft);
}

.project-form {
  border-top: 1px solid var(--ink);
}

.form-section {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}

.form-section__heading {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.form-section__heading span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.form-section__heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  position: relative;
  display: block;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice__surface {
  display: flex;
  min-height: 128px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.choice__surface strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.choice__surface small {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.choice input:checked + .choice__surface {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.choice input:checked + .choice__surface small {
  color: rgba(255, 255, 255, 0.72);
}

.choice input:focus-visible + .choice__surface {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field > span {
  font-size: 0.76rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #a9a69e;
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.field-note {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding-top: 30px;
}

.form-actions p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.form-status {
  display: none;
  margin-top: 28px;
  padding: 24px;
  border-left: 3px solid var(--green);
  background: #eef6f0;
}

.form-status.is-visible {
  display: block;
}

.form-status h3 {
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.form-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.form-status__actions button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 0.35fr));
  gap: clamp(36px, 6vw, 90px);
  padding-block: clamp(68px, 8vw, 120px);
}

.site-footer__brand img {
  width: min(230px, 72%);
  margin-bottom: 22px;
}

.site-footer__brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.9rem;
}

.footer-group h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-group a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.87rem;
}

.footer-group a:hover {
  color: var(--gold-light);
}

.site-footer__legal {
  display: flex;
  min-height: 74px;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
}

.business-registry-link {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.business-registry-link::after {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.business-registry-link:hover::after,
.business-registry-link:focus-visible::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms var(--ease), transform 680ms var(--ease);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  body.page-fashion .site-header[data-header-theme="dark"]:not(.is-scrolled) {
    color: var(--ink);
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .branch-hero--fashion {
    align-items: flex-end;
    padding-bottom: clamp(48px, 6vw, 72px);
    color: var(--ink);
    background: #d6d4d1;
  }

  .branch-hero--fashion .branch-hero__art img {
    object-fit: cover;
    object-position: center;
  }

  .branch-hero--fashion .hero-media-controls {
    top: calc(var(--development-banner-height) + var(--header-height) + 16px);
    bottom: auto;
  }

  .branch-hero--fashion .media-scrubber {
    border-color: rgba(17, 17, 15, 0.62);
    background: rgba(255, 255, 255, 0.82);
  }

  .branch-hero--fashion .media-scrubber input::-webkit-slider-runnable-track {
    background: linear-gradient(
      to right,
      var(--ink) 0 var(--scrub-progress),
      rgba(17, 17, 15, 0.28) var(--scrub-progress) 100%
    );
  }

  .branch-hero--fashion .media-scrubber input::-webkit-slider-thumb {
    border-color: rgba(17, 17, 15, 0.46);
    background: rgba(255, 255, 255, 0.48);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -1px 0 rgba(17, 17, 15, 0.08),
      0 4px 14px rgba(17, 17, 15, 0.2);
  }

  .branch-hero--fashion .media-scrubber input::-moz-range-thumb {
    border-color: rgba(17, 17, 15, 0.46);
    background: rgba(255, 255, 255, 0.48);
  }

  .branch-hero--fashion .branch-hero__media::after {
    background: transparent;
  }

  .branch-hero--fashion .branch-hero__content {
    text-shadow: none;
  }

  .branch-hero--fashion .eyebrow--light {
    color: var(--ink-soft);
  }

  .branch-hero--fashion .lead {
    color: var(--ink-soft);
  }

  .branch-hero--fashion .button--light {
    color: var(--paper);
    border-color: var(--ink);
    background: var(--ink);
  }

  .branch-hero--fashion .button--light:hover {
    color: var(--ink);
    background: transparent;
  }

  .branch-hero--fashion .button--outline-light {
    color: var(--ink);
    border-color: var(--ink);
  }

  .branch-hero--fashion .button--outline-light:hover {
    color: var(--paper);
    background: var(--ink);
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu {
    flex-direction: column;
  }

  .home-hero,
  .home-hero__content {
    min-height: max(700px, 92svh);
  }

  .hero-branch-link {
    grid-template-columns: 1fr auto;
  }

  .hero-branch-link__number {
    display: none;
  }

  .branch-story {
    grid-template-columns: 0.22fr 0.65fr 1.13fr;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__main {
    grid-template-columns: 1fr repeat(3, minmax(120px, 0.35fr));
  }
}

@media (min-width: 581px) and (max-width: 1080px) and (orientation: landscape) {
  .branch-hero--fashion {
    align-items: center;
    padding-bottom: 76px;
  }

  .branch-hero--fashion .branch-hero__art img {
    object-fit: cover;
    object-position: center;
  }

  .branch-hero--fashion .branch-hero__media::after {
    right: 0;
    background: transparent;
  }

  .branch-hero--fashion .branch-hero__content {
    width: min(48%, 480px);
  }
}

@media (max-width: 800px) {
  .intro-grid,
  .standard-band,
  .positioning-grid,
  .fundraiser-layout,
  .audience-band,
  .cta-band,
  .about-hero__grid,
  .start-hero__grid,
  .origin-grid,
  .project-layout {
    grid-template-columns: 1fr;
  }

  .fundraiser-layout {
    gap: 42px;
  }

  .fundraiser-panel {
    width: 100%;
    justify-self: stretch;
  }

  .positioning-grid__aside,
  .project-layout__intro {
    position: static;
  }

  .home-hero__panels {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-hero__panel--fashion img {
    object-position: 58% center;
  }

  .home-hero__panel--education img {
    object-position: 72% center;
  }

  .home-hero__panel--development img {
    object-position: 76% center;
  }

  .home-hero__content {
    padding-bottom: 206px;
  }

  .home-hero__branches {
    grid-template-columns: 1fr;
  }

  .hero-branch-link {
    min-height: 54px;
    padding: 12px var(--page-gutter);
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-branch-link:last-child {
    border-bottom: 0;
  }

  .hero-branch-link__name {
    font-family: Inter, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
  }

  .branch-story {
    grid-template-columns: 64px 1fr;
  }

  .branch-story__number {
    font-size: 4rem;
  }

  .branch-story__media {
    grid-column: 1 / -1;
    min-height: 300px;
  }

  .branch-hero--education .branch-hero__content,
  .branch-hero--development .branch-hero__content {
    width: min(100%, 680px);
  }

  .branch-hero--education .branch-hero__media img,
  .branch-hero--development .branch-hero__media img {
    object-position: 70% center;
    filter: brightness(0.74) saturate(0.9);
  }

  .branch-hero--education .branch-hero__media::after,
  .branch-hero--development .branch-hero__media::after {
    right: 0;
    content: "";
    background: rgba(255, 255, 255, 0.46);
  }

  .media-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(350px, 70vw) minmax(220px, 34vw);
  }

  .media-mosaic figure:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .process-grid,
  .branch-map {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:not(:first-child),
  .branch-map__item,
  .branch-map__item:not(:first-child) {
    min-height: auto;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step__number,
  .branch-map__number {
    margin-bottom: 28px;
  }

  .service-accordion__body {
    grid-template-columns: 1fr;
    padding-left: 70px;
  }

  .service-accordion__body p,
  .service-accordion__body ul {
    grid-column: auto;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .privacy-snapshot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-snapshot__grid li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }
}

@media (max-width: 580px) {
  .section {
    padding-block: 70px;
  }

  .branch-hero--fashion .branch-hero__content > .eyebrow {
    display: none;
  }

  .display {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .section-title {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .site-header {
    min-height: 66px;
  }

  .brand img {
    width: 132px;
  }

  .site-header .policy-print--header {
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
  }

  .site-header .policy-print--header span {
    display: none;
  }

  .mobile-menu {
    padding-top: 102px;
  }

  .home-hero,
  .home-hero__content {
    min-height: max(720px, 93svh);
  }

  .home-hero__content {
    align-items: flex-start;
    padding-top: 150px;
    padding-bottom: 202px;
  }

  .home-hero__title {
    font-size: clamp(3.05rem, 14vw, 4.6rem);
  }

  .home-hero__panels {
    grid-template-columns: 1fr;
  }

  .home-hero__panel {
    position: absolute;
    inset: 0;
    border: 0;
    opacity: 0;
    transition: opacity 600ms ease;
  }

  .home-hero__panel--fashion {
    opacity: 1;
  }

  .home-hero[data-active-branch="education"] .home-hero__panel--fashion,
  .home-hero[data-active-branch="development"] .home-hero__panel--fashion {
    opacity: 0;
  }

  .home-hero[data-active-branch="education"] .home-hero__panel--education,
  .home-hero[data-active-branch="development"] .home-hero__panel--development {
    opacity: 1;
  }

  .branch-story {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .branch-story__number {
    font-size: 3rem;
  }

  .branch-story__media {
    grid-column: auto;
    min-height: 260px;
  }

  .branch-hero {
    min-height: max(650px, 90svh);
    align-items: flex-end;
    padding: 110px var(--page-gutter) 32px;
  }

  .branch-hero--fashion {
    display: flex;
    min-height: max(650px, 90svh);
    align-items: flex-end;
    padding: 110px var(--page-gutter) 32px;
    background: #d6d4d1;
  }

  .branch-hero--fashion .branch-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    aspect-ratio: auto;
    background: #d6d4d1;
  }

  .branch-hero--fashion .branch-hero__art img,
  .branch-hero--fashion .branch-hero__media video {
    object-fit: cover;
    object-position: center;
  }

  .branch-hero--fashion .branch-hero__content {
    width: min(100%, 760px);
    padding: 0;
  }

  .branch-hero--education .branch-hero__media img,
  .branch-hero--development .branch-hero__media img {
    object-position: 68% center;
  }

  .branch-marker {
    display: none;
  }

  .hero-media-controls {
    top: calc(var(--development-banner-height) + var(--header-height) + 14px);
    right: 18px;
    bottom: auto;
  }

  .media-scrubber {
    width: 148px;
  }

  .feature-line {
    grid-template-columns: 40px 1fr;
  }

  .media-mosaic {
    display: block;
  }

  .media-mosaic figure {
    height: auto;
    margin-bottom: 10px;
  }

  .media-mosaic picture,
  .media-mosaic img {
    height: auto;
  }

  .lightbox__surface {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    grid-template-rows: 62px minmax(0, 1fr) 78px;
  }

  .lightbox__figure {
    grid-column: 1 / -1;
    padding-inline: 18px;
  }

  .lightbox__figure img {
    max-height: calc(100svh - 180px);
  }

  .lightbox__figure figcaption {
    padding-inline: 2px;
  }

  .lightbox__control {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    background: rgba(8, 9, 11, 0.58);
  }

  .lightbox__close {
    grid-column: 3;
  }

  .fundraiser-panel {
    padding: 24px 20px;
  }

  .fundraiser-panel__header {
    gap: 16px;
  }

  .fundraiser-panel__header strong {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .fundraiser-milestones li > div {
    display: grid;
    gap: 2px;
  }

  .fundraiser-milestones li > div > span {
    text-align: left;
  }

  .funding-interest__intro {
    gap: 10px;
  }

  .funding-interest__amounts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: auto;
  }

  .capability__icon {
    margin-bottom: 30px;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .audience-list li:nth-child(odd) {
    margin-right: 0;
  }

  .service-accordion summary {
    grid-template-columns: 42px 1fr auto;
    gap: 14px;
  }

  .service-accordion__body {
    padding-left: 56px;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .choice__surface {
    min-height: 104px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }
}

/* Product plan hero aligned to the approved first-wearable-pair study. */
body.page-product-plan .site-header[data-header-theme="light"]:not(.is-scrolled) {
  border-bottom-color: transparent;
  background: transparent;
}

body.page-product-plan .plan-hero {
  display: block;
  min-height: clamp(595px, 69vw, 760px);
  padding: 0;
  background: radial-gradient(circle at 62% 34%, #f1efec 0, #e4e1dd 42%, #d8d5d1 100%);
}

body.page-product-plan .plan-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

body.page-product-plan .plan-hero__media::after {
  display: none;
}

body.page-product-plan .plan-hero__media img {
  position: absolute;
  top: -18px;
  left: 23vw;
  width: min(1200px, 108vw);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 18px rgba(17, 17, 15, 0.16));
}

body.page-product-plan .plan-hero__content {
  position: relative;
  z-index: 2;
  transform: translateX(clamp(0px, 0.7vw, 8px));
  padding-top: clamp(130px, 15.3vw, 166px);
}

body.page-product-plan .plan-hero__content .display {
  max-width: 410px;
  margin: 0 0 22px;
  font-size: clamp(3.85rem, 7.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

body.page-product-plan .plan-hero__content .lead {
  max-width: 300px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.62;
}

body.page-product-plan .plan-hero__content .button-row {
  gap: 14px;
  margin-top: 28px;
}

body.page-product-plan .plan-hero__content .button {
  width: 178px;
  min-height: 40px;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.68rem;
  white-space: nowrap;
}

body.page-product-plan .plan-hero__content .button svg {
  width: 13px;
  height: 13px;
}

body.page-product-plan .plan-hero__visual-note {
  max-width: 300px;
  margin-top: 16px;
  color: rgba(17, 17, 15, 0.64);
  font-size: 0.64rem;
  line-height: 1.5;
}

body.page-product-plan .plan-facts {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  background: transparent;
}

body.page-product-plan .plan-facts__grid {
  max-width: 702px;
  padding-block: 22px 28px;
}

body.page-product-plan .plan-facts__grid > div {
  min-height: 50px;
  justify-content: center;
  padding-inline: clamp(22px, 5vw, 58px);
  border-color: rgba(17, 17, 15, 0.48);
}

body.page-product-plan .plan-facts strong {
  font-size: clamp(1.5rem, 2.45vw, 2.1rem);
}

body.page-product-plan .plan-facts span {
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: lowercase;
}

body.page-product-plan .plan-risk .plan-hero__disclosure {
  max-width: 700px;
  margin-top: 22px;
  padding-top: 16px;
  border-top-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 800px) {
  body.page-product-plan .site-header[data-header-theme="light"]:not(.is-scrolled) {
    border-bottom-color: rgba(17, 17, 15, 0.12);
    background: var(--paper);
  }

  body.page-product-plan .plan-hero {
    min-height: auto;
    padding-top: calc(var(--development-banner-height) + var(--header-height));
  }

  body.page-product-plan .plan-hero__media {
    position: relative;
    height: clamp(300px, 72vw, 430px);
  }

  body.page-product-plan .plan-hero__media img {
    top: 50%;
    left: -8%;
    width: 125%;
    height: auto;
    transform: translateY(-50%);
    object-fit: contain;
    object-position: center;
  }

  body.page-product-plan .plan-hero__content {
    transform: none;
    padding-top: 34px;
    padding-bottom: 36px;
  }

  body.page-product-plan .plan-hero__content .display {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  body.page-product-plan .plan-facts {
    position: static;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 580px) {
  body.page-product-plan .plan-facts__grid {
    padding-block: 0;
  }

  body.page-product-plan .plan-facts__grid > div {
    padding-block: 20px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product plan and publication pages */

.site-footer__main {
  grid-template-columns: minmax(220px, 1.2fr) repeat(auto-fit, minmax(126px, 0.35fr));
}

.section--ink :focus-visible,
.site-footer :focus-visible,
.plan-risk :focus-visible {
  outline-color: var(--paper);
  box-shadow: 0 0 0 2px var(--ink);
}

.funding-interest__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.funding-interest__links a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.plan-hero {
  position: relative;
  display: flex;
  min-height: min(900px, 94svh);
  align-items: center;
  overflow: hidden;
  padding-block: calc(var(--development-banner-height) + var(--header-height) + 72px) 78px;
  background: #e9e7e3;
}

.plan-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 52%;
}

.plan-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(243, 241, 237, 1) 0%, rgba(243, 241, 237, 0.72) 14%, rgba(243, 241, 237, 0.08) 38%);
}

.plan-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.plan-hero__content {
  position: relative;
  z-index: 1;
}

.plan-hero__content .display {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: clamp(4.4rem, 7.2vw, 8.2rem);
}

.plan-hero__content .lead {
  max-width: 590px;
}

.plan-hero__disclosure {
  max-width: 600px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 15, 0.22);
  color: var(--ink-soft);
  font-size: 0.73rem;
  line-height: 1.55;
}

.plan-facts {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.plan-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 34px;
}

.plan-facts__grid > div {
  display: grid;
  gap: 3px;
  padding-inline: clamp(22px, 5vw, 80px);
  border-right: 1px solid var(--line);
  text-align: center;
}

.plan-facts__grid > div:last-child {
  border-right: 0;
}

.plan-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 400;
}

.plan-facts span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.plan-section {
  padding-block: clamp(78px, 9vw, 138px);
}

.plan-section--warm {
  background: var(--warm-white);
}

.plan-section--compact {
  padding-block: clamp(58px, 6vw, 90px);
}

.plan-section__heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 38px;
}

.plan-section__heading > span {
  padding-top: 10px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.plan-section__heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.02;
}

.plan-section__heading p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.plan-section__heading--wide {
  grid-template-columns: 44px minmax(0, 1fr);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}

.plan-state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 120px);
}

.plan-state-card + .plan-state-card {
  padding-left: clamp(28px, 5vw, 80px);
  border-left: 1px solid var(--line);
}

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

.plan-checklist li {
  position: relative;
  padding: 15px 10px 15px 34px;
  border-bottom: 1px solid var(--line);
}

.plan-checklist li::before {
  position: absolute;
  top: 14px;
  left: 6px;
  color: var(--ink-soft);
  content: "✓";
  font-weight: 800;
}

.plan-table-wrap {
  overflow-x: auto;
  border-bottom: 1px solid var(--ink);
}

.plan-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  text-align: left;
}

.plan-table th,
.plan-table td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.plan-table thead th {
  color: var(--ink-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.plan-table tbody th {
  width: 34%;
  font-size: 0.9rem;
}

.plan-table td:nth-child(2),
.plan-table thead th:nth-child(2) {
  width: 130px;
  text-align: right;
  white-space: nowrap;
}

.plan-table tbody td:last-child {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-table__subtotal th,
.plan-table__subtotal td {
  color: var(--ink);
  font-weight: 800;
}

.plan-table tfoot th,
.plan-table tfoot td {
  border-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.plan-table tfoot td:nth-child(2) {
  color: var(--ink);
  font-size: 1.8rem;
}

.plan-footnote {
  max-width: 1040px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.plan-route {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}

.plan-route li {
  min-height: 260px;
  padding: 26px 22px 26px 0;
  border-right: 1px solid var(--line);
}

.plan-route li:not(:first-child) {
  padding-left: 22px;
}

.plan-route li:last-child {
  border-right: 0;
}

.plan-route span {
  display: block;
  margin-bottom: 54px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.plan-route strong {
  display: block;
  margin-bottom: 10px;
}

.plan-route p {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.plan-acceptance {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: start;
}

.plan-acceptance .plan-section__heading {
  position: sticky;
  top: 108px;
}

.plan-checklist--acceptance li {
  padding-block: 20px;
  font-size: 1rem;
}

.plan-checklist--acceptance li::before {
  top: 19px;
}

.plan-campaign-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  column-gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.plan-campaign-preview .plan-section__heading {
  position: sticky;
  top: 108px;
}

.plan-campaign-preview__content {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.plan-campaign-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.plan-campaign-preview__grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.plan-campaign-preview__grid article > span {
  display: block;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.plan-campaign-preview__grid strong {
  display: block;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
  font-weight: 400;
}

.plan-campaign-preview__grid p {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-campaign-preview__interest {
  background: #f1f1ee;
}

.plan-campaign-preview__content > .legal-callout {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line);
  border-top-color: var(--ink);
  border-radius: 0;
  background: #f1f1ee;
  box-shadow: none;
}

.plan-campaign-preview__content > .legal-callout > strong {
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
}

.plan-campaign-preview__content > .legal-callout p {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.plan-risk {
  padding-block: clamp(76px, 9vw, 130px);
  color: var(--paper);
  background: radial-gradient(circle at 80% 0%, #1b2431 0, #0a0d11 48%, #050607 100%);
}

.plan-risk__grid {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.plan-risk h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5.2vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
}

.plan-risk p:not(.eyebrow) {
  max-width: 850px;
  color: rgba(255, 255, 255, 0.72);
}

.plan-policy-band,
.contact-security {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: start;
}

.plan-policy-band h2,
.contact-security h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1.04;
}

.plan-policy-band > div:last-child p {
  color: var(--ink-soft);
}

.legal-hero {
  padding: calc(var(--development-banner-height) + var(--header-height) + clamp(80px, 10vw, 155px)) 0 clamp(68px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.legal-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  gap: clamp(60px, 11vw, 180px);
  align-items: end;
}

.legal-hero h1,
.contact-hero h1,
.concierge-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 8.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.legal-hero__meta > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.legal-hero__meta dl {
  margin: 34px 0 0;
  border-top: 1px solid var(--ink);
}

.legal-hero__meta dl > div {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
}

.legal-hero__meta dt {
  color: var(--ink-soft);
}

.legal-hero__meta dd {
  margin: 0;
  font-weight: 700;
}

.policy-print {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.policy-print svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-print:hover {
  color: var(--paper);
  background: var(--ink);
}

.site-header .policy-print--header {
  min-height: 42px;
  margin-top: 0;
  padding: 9px 13px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.legal-section {
  padding-block: clamp(76px, 9vw, 140px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.98fr);
  gap: clamp(58px, 11vw, 180px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 108px;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.legal-summary > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.legal-summary p {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin: 62px 0 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.legal-copy h2:first-of-type {
  margin-top: 46px;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

.legal-copy a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 650;
}

.legal-copy li + li {
  margin-top: 10px;
}

.legal-callout {
  padding: clamp(24px, 4vw, 42px);
  border-left: 4px solid var(--ink);
  background: #f1f1ee;
}

.legal-callout > strong {
  display: block;
  margin-bottom: 10px;
}

.legal-callout p {
  margin: 0;
  color: var(--ink-soft);
}

.page-policy {
  --policy-radius-large: 28px;
  --policy-radius-medium: 18px;
  --policy-radius-small: 12px;
  background: #fff;
}

.policy-hero {
  background: var(--paper);
}

.policy-hero__title-row {
  display: flex;
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
}

.policy-hero__mark {
  display: grid;
  width: clamp(76px, 8vw, 104px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--policy-radius-medium);
  background: #fff;
  color: var(--ink);
}

.policy-hero__mark svg,
.policy-snapshot__icon svg,
.policy-launch-gate svg,
.policy-heading__marker svg,
.policy-checklist svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.policy-hero__mark svg {
  width: 56%;
  stroke-width: 1.55;
}

.policy-snapshot {
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.policy-snapshot__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.policy-snapshot__grid li {
  display: grid;
  min-height: 130px;
  padding: 28px clamp(20px, 3vw, 34px);
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.policy-snapshot__grid li:first-child {
  border-left: 1px solid var(--line);
}

.policy-snapshot__icon {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--policy-radius-small);
  background: #fff;
  color: var(--ink);
}

.policy-snapshot__icon svg {
  width: 22px;
  stroke-width: 1.45;
}

.policy-snapshot__grid strong,
.policy-snapshot__grid small {
  display: block;
}

.policy-snapshot__grid strong {
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.policy-snapshot__grid small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.45;
}

.policy-body {
  background: #fff;
}

.policy-body .legal-layout {
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1.12fr);
}

.policy-summary {
  padding-top: 0;
}

.policy-summary__status {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.policy-summary__status span {
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.policy-summary__status strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-toc {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.policy-toc a {
  display: grid;
  padding: 13px 0;
  grid-template-columns: 38px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.35;
}

.policy-toc a:hover,
.policy-toc a:focus-visible {
  color: var(--ink);
}

.policy-toc a span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.policy-copy {
  max-width: none;
}

.policy-launch-gate {
  display: grid;
  padding: clamp(26px, 4vw, 42px);
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  border: 1px solid var(--ink);
  border-radius: var(--policy-radius-large);
  background: var(--warm-white);
  color: var(--ink);
}

.policy-launch-gate > span {
  display: grid;
  width: 56px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--policy-radius-small);
  background: #fff;
}

.policy-launch-gate svg {
  width: 25px;
  stroke-width: 1.5;
}

.policy-launch-gate strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-launch-gate p {
  margin: 0;
  color: var(--ink-soft);
}

.policy-section {
  scroll-margin-top: 112px;
  margin-top: clamp(62px, 8vw, 98px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid var(--ink);
}

.policy-heading {
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.policy-heading__marker {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
}

.policy-heading__marker svg {
  width: 64px;
  stroke-width: 1.25;
}

.policy-heading__number {
  fill: currentColor;
  stroke: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  text-anchor: middle;
  dominant-baseline: middle;
}

.legal-copy .policy-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 0.98;
}

.policy-copy h3 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
}

.policy-copy .policy-note {
  margin-top: 26px;
  padding-left: 16px;
  border-left: 2px solid var(--ink);
  font-size: 0.8rem;
}

.policy-checklist {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.policy-copy .policy-checklist li {
  display: grid;
  margin: 0;
  padding: 15px 0;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.policy-checklist svg {
  width: 20px;
  margin-top: 2px;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.page-privacy {
  --privacy-radius-large: 28px;
  --privacy-radius-medium: 18px;
  --privacy-radius-small: 12px;
  background: #fff;
}

.privacy-hero {
  background: var(--paper);
}

.privacy-hero__title-row {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
}

.privacy-hero__mark {
  display: grid;
  flex: 0 0 auto;
  width: clamp(74px, 8vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: var(--privacy-radius-medium);
  background: #fff;
}

.privacy-hero__mark svg,
.privacy-snapshot__icon svg,
.privacy-heading__marker svg,
.privacy-launch-gate svg,
.privacy-rights svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-hero__mark svg { width: 54%; stroke-width: 1.6; }

.privacy-hero h1 {
  font-size: clamp(4rem, 7.3vw, 7.5rem);
}

.privacy-snapshot {
  padding-block: 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
}

.privacy-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  list-style: none;
}

.privacy-snapshot__grid li {
  display: flex;
  min-height: 132px;
  gap: 16px;
  align-items: center;
  padding: 28px clamp(18px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
}

.privacy-snapshot__grid li:first-child { border-left: 1px solid var(--line); }

.privacy-snapshot__icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--privacy-radius-small);
  background: var(--paper);
  color: var(--ink);
}

.privacy-snapshot__icon svg { width: 22px; stroke-width: 1.45; }
.privacy-snapshot__grid strong,
.privacy-snapshot__grid small { display: block; }
.privacy-snapshot__grid strong { font-size: 0.78rem; letter-spacing: 0.01em; }
.privacy-snapshot__grid small { margin-top: 5px; color: var(--ink-soft); font-size: 0.7rem; line-height: 1.45; }

.privacy-policy { background: #fff; }
.privacy-policy .legal-layout {
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1.08fr);
  gap: clamp(48px, 7vw, 110px);
}
.privacy-summary { padding-top: 0; }

.privacy-summary__status {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.privacy-summary__status span {
  width: 34px;
  height: 1px;
  background: var(--ink);
}

.privacy-summary__status strong { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.privacy-toc { margin: 26px 0; border-top: 1px solid var(--line); }

.privacy-toc a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-decoration: none;
}

.privacy-toc a:hover,
.privacy-toc a:focus-visible { color: var(--ink); }
.privacy-toc a span { color: var(--ink-soft); font-size: 0.72rem; font-weight: 700; }
.privacy-copy {
  width: 100%;
  min-width: 0;
  max-width: 940px;
}

.privacy-launch-gate {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--ink);
  border-radius: var(--privacy-radius-large);
  background: var(--warm-white);
  color: var(--ink);
}

.privacy-launch-gate > span {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--privacy-radius-small);
  background: var(--paper);
  color: var(--ink);
}

.privacy-launch-gate svg { width: 25px; stroke-width: 1.5; }
.privacy-launch-gate strong { display: block; margin-bottom: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.privacy-launch-gate p { margin: 0; color: var(--ink-soft); }
.privacy-launch-gate a { color: var(--ink); }

.privacy-section {
  scroll-margin-top: 112px;
  margin-top: clamp(62px, 8vw, 98px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid var(--ink);
}

.privacy-heading {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.privacy-heading__marker {
  position: relative;
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
}

.privacy-heading__marker svg {
  width: 64px;
  stroke-width: 1.25;
}

.privacy-heading__number {
  fill: currentColor;
  stroke: none;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  text-anchor: middle;
  dominant-baseline: middle;
}

.legal-copy .privacy-heading h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
}
.privacy-copy h3 { margin: 36px 0 10px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.2vw, 1.8rem); font-weight: 400; }

.privacy-table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 30px 0 16px;
  overflow-x: auto;
  outline-offset: 4px;
}

.privacy-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  border-top: 1px solid var(--ink);
  font-size: 0.81rem;
  line-height: 1.55;
}

.privacy-table th,
.privacy-table td { padding: 17px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-table thead th { color: var(--ink-soft); font-size: 0.66rem; letter-spacing: 0.07em; text-transform: uppercase; }
.privacy-table tbody th { width: 19%; color: var(--ink); font-weight: 700; }
.privacy-table td { color: var(--ink-soft); }
.privacy-note { padding-left: 16px; border-left: 2px solid var(--ink); font-size: 0.79rem; }

.privacy-planned {
  margin: 30px 0;
  padding: clamp(22px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--privacy-radius-medium);
  background: #f5f4f1;
}

.privacy-planned > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-planned p {
  margin: 0;
}

.privacy-rights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  margin: 30px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.privacy-copy .privacy-rights li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 13px;
  min-height: 104px;
  margin: 0;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
}

.privacy-rights svg { width: 20px; stroke: var(--ink); stroke-width: 1.5; }
.privacy-rights strong { display: block; margin-bottom: 4px; color: var(--ink); }

.contact-hero,
.concierge-hero {
  padding: calc(var(--development-banner-height) + var(--header-height) + clamp(88px, 11vw, 170px)) 0 clamp(80px, 10vw, 150px);
  background: var(--warm-white);
}

.contact-hero__grid,
.concierge-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(64px, 11vw, 180px);
  align-items: end;
}

.contact-section {
  padding-block: clamp(76px, 9vw, 140px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.contact-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card--status {
  background: #f1f1ee;
}

.contact-card__number {
  display: block;
  margin-bottom: 56px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.contact-card h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
  font-weight: 400;
  line-height: 1.05;
}

.contact-card p {
  max-width: 600px;
  color: var(--ink-soft);
}

.contact-status {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 26px;
  font-size: 0.73rem;
  font-weight: 750;
}

.contact-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

body.page-legal .eyebrow--fashion,
body.page-contact .eyebrow--fashion {
  color: var(--ink);
}

.contact-security > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.concierge-hero {
  background: linear-gradient(135deg, #f7f6f2 0%, #edf2fb 100%);
}

.concierge-hero__copy .lead {
  max-width: 640px;
}

.concierge-hero__note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.concierge-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.concierge-services article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.concierge-services article > span {
  display: block;
  margin-bottom: 80px;
  color: var(--fashion);
  font-size: 0.72rem;
  font-weight: 750;
}

.concierge-services h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
}

.concierge-services p,
.concierge-process p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.concierge-process {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.concierge-process li {
  padding: 32px 30px;
  border-right: 1px solid var(--line);
}

.concierge-process li:last-child {
  border-right: 0;
}

.concierge-process strong {
  display: block;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.7rem);
  font-weight: 400;
}

@media (max-width: 1080px) {
  .plan-hero {
    min-height: 820px;
  }

  .plan-hero__media::after {
    background: linear-gradient(90deg, rgba(243, 241, 237, 0.98) 0%, rgba(243, 241, 237, 0.64) 18%, rgba(243, 241, 237, 0.08) 42%);
  }

  .plan-route {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .plan-route li:nth-child(3) {
    border-right: 0;
  }

  .plan-route li:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .plan-risk__grid {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .plan-risk__grid .button {
    grid-column: 2;
    width: fit-content;
  }

  .site-footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .privacy-snapshot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-snapshot__grid li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .policy-snapshot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-snapshot__grid li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 800px) {
  .plan-hero {
    display: block;
    min-height: auto;
    padding-top: calc(var(--development-banner-height) + var(--header-height));
  }

  .plan-hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(55vw, 430px);
  }

  .plan-hero__media::after {
    background: linear-gradient(0deg, #f3f1ed 0%, rgba(243, 241, 237, 0) 42%);
  }

  .plan-hero__media img {
    object-position: 58% center;
  }

  .plan-hero__content {
    padding-top: 30px;
  }

  .plan-hero__content .display {
    font-size: clamp(4rem, 14vw, 6.3rem);
  }

  .plan-state-grid,
  .plan-acceptance,
  .plan-campaign-preview,
  .legal-hero__grid,
  .legal-layout,
  .contact-hero__grid,
  .concierge-hero__grid,
  .plan-policy-band,
  .contact-security {
    grid-template-columns: 1fr;
  }

  .plan-state-card + .plan-state-card {
    padding-top: 54px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .plan-acceptance .plan-section__heading,
  .plan-campaign-preview .plan-section__heading,
  .legal-summary {
    position: static;
  }

  .legal-layout,
  .contact-hero__grid,
  .concierge-hero__grid {
    gap: 46px;
  }

  .contact-grid,
  .concierge-services {
    grid-template-columns: 1fr;
  }

  .concierge-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concierge-process li:nth-child(2) {
    border-right: 0;
  }

  .concierge-process li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .privacy-hero__title-row {
    align-items: center;
  }

  .privacy-rights {
    grid-template-columns: 1fr;
  }

  .privacy-policy .legal-layout {
    grid-template-columns: 1fr;
  }

  .policy-body .legal-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .plan-hero__media {
    height: 310px;
  }

  .plan-hero__content .display {
    font-size: clamp(3.6rem, 17vw, 5.2rem);
  }

  .plan-facts__grid {
    grid-template-columns: 1fr;
    padding-block: 0;
  }

  .plan-facts__grid > div {
    padding-block: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-facts__grid > div:last-child {
    border-bottom: 0;
  }

  .plan-table {
    min-width: 0;
  }

  .plan-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .plan-table tbody,
  .plan-table tfoot {
    display: block;
  }

  .plan-table tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    border-bottom: 1px solid var(--line);
  }

  .plan-table th,
  .plan-table td {
    display: block;
    width: auto;
    padding: 16px 8px;
    border-bottom: 0;
  }

  .plan-table tbody th {
    width: auto;
  }

  .plan-table tbody td:nth-child(2),
  .plan-table tfoot td:nth-child(2) {
    width: auto;
    text-align: right;
  }

  .plan-table tbody td:last-child,
  .plan-table tfoot td:last-child {
    grid-column: 1 / -1;
    padding-top: 0;
    text-align: left;
  }

  .plan-route {
    grid-template-columns: 1fr;
  }

  .plan-route li,
  .plan-route li:not(:first-child) {
    min-height: auto;
    padding: 24px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-route span {
    margin-bottom: 14px;
  }

  .plan-campaign-preview__grid,
  .concierge-process {
    grid-template-columns: 1fr;
  }

  .concierge-process li,
  .concierge-process li:nth-child(2),
  .concierge-process li:nth-child(n + 3) {
    padding-inline: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-risk__grid {
    grid-template-columns: 1fr;
  }

  .plan-risk__grid .button {
    grid-column: auto;
  }

  .legal-hero h1,
  .contact-hero h1,
  .concierge-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .page-privacy .legal-hero h1 {
    font-size: clamp(3.4rem, 15vw, 5.4rem);
  }

  .page-policy--refund .legal-hero h1 {
    font-size: clamp(3rem, 14vw, 3.5rem);
  }

  .contact-grid {
    display: block;
    border-left: 0;
  }

  .contact-card {
    min-height: auto;
    padding-inline: 0;
    border-right: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .privacy-hero__title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-hero__mark {
    width: 68px;
  }

  .privacy-snapshot__grid {
    grid-template-columns: 1fr;
  }

  .privacy-snapshot__grid li,
  .privacy-snapshot__grid li:first-child {
    min-height: 104px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .privacy-snapshot__grid li:first-child {
    border-top: 0;
  }

  .privacy-launch-gate {
    grid-template-columns: 1fr;
  }

  .policy-hero__title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-hero__mark {
    width: 68px;
  }

  .policy-snapshot__grid {
    grid-template-columns: 1fr;
  }

  .policy-snapshot__grid li,
  .policy-snapshot__grid li:first-child {
    min-height: 104px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-left: 0;
  }

  .policy-snapshot__grid li:first-child {
    border-top: 0;
  }

  .policy-launch-gate {
    grid-template-columns: 1fr;
  }

  .policy-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .policy-heading__marker,
  .policy-heading__marker svg {
    width: 48px;
  }

  .legal-copy .policy-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .privacy-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
  }

  .privacy-heading__marker,
  .privacy-heading__marker svg {
    width: 48px;
  }

  .legal-copy .privacy-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }
}

@media print {
  @page {
    margin: 15mm;
  }

  :root {
    --ink: #000000;
    --ink-soft: #222222;
    --line: #b8b8b8;
    --paper: #ffffff;
    --warm-white: #ffffff;
  }

  html {
    scroll-behavior: auto;
    background: #ffffff;
  }

  body {
    color: #000000;
    background: #ffffff;
    font-size: 10pt;
    line-height: 1.45;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .skip-link,
  .site-header,
  .mobile-menu,
  .policy-print,
  .policy-snapshot,
  .privacy-snapshot,
  .legal-summary,
  .site-footer {
    display: none !important;
  }

  .shell {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }

  .legal-hero {
    padding: 0 0 11mm;
    border-bottom: 1px solid #000000;
    background: #ffffff !important;
  }

  .legal-hero__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(62mm, 0.85fr);
    gap: 12mm;
    align-items: end;
  }

  .legal-hero h1,
  .page-privacy .legal-hero h1,
  .page-policy--refund .legal-hero h1 {
    font-size: 42pt;
    line-height: 0.94;
  }

  .policy-hero__title-row {
    align-items: flex-end;
    flex-direction: row;
    gap: 8mm;
  }

  .privacy-hero__title-row {
    align-items: center;
    flex-direction: row;
    gap: 8mm;
  }

  .policy-hero__mark,
  .privacy-hero__mark {
    width: 22mm;
    border-radius: 4mm;
  }

  .legal-hero__meta > p {
    font-size: 9.5pt;
  }

  .legal-hero__meta dl {
    margin-top: 6mm;
  }

  .legal-hero__meta dl > div {
    padding-block: 2mm;
    font-size: 8pt;
  }

  .legal-section {
    padding: 10mm 0 0;
  }

  .legal-layout,
  .policy-body .legal-layout,
  .privacy-policy .legal-layout {
    display: block;
  }

  .legal-copy,
  .policy-copy,
  .privacy-copy {
    width: 100%;
    max-width: none;
  }

  .policy-launch-gate,
  .privacy-launch-gate,
  .privacy-planned,
  .legal-callout {
    break-inside: avoid;
    border-color: #000000;
    background: #ffffff !important;
  }

  .policy-launch-gate,
  .privacy-launch-gate {
    padding: 6mm;
  }

  .policy-section,
  .privacy-section {
    margin-top: 9mm;
    padding-top: 5mm;
    border-top-color: #000000;
  }

  .policy-heading,
  .privacy-heading,
  .policy-copy h3,
  .privacy-copy h3 {
    break-after: avoid;
  }

  .policy-heading,
  .privacy-heading {
    margin-bottom: 5mm;
    grid-template-columns: 14mm minmax(0, 1fr);
    gap: 5mm;
  }

  .policy-heading__marker,
  .policy-heading__marker svg,
  .privacy-heading__marker,
  .privacy-heading__marker svg {
    width: 14mm;
  }

  .legal-copy .policy-heading h2,
  .legal-copy .privacy-heading h2 {
    font-size: 24pt;
    line-height: 1;
  }

  .legal-copy p,
  .legal-copy li {
    color: #222222;
  }

  .legal-copy a {
    border-bottom: 0;
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 0.5pt;
    text-underline-offset: 2pt;
  }

  .privacy-table-wrap {
    overflow: visible;
  }

  .privacy-table {
    min-width: 0;
    font-size: 7.2pt;
    line-height: 1.35;
  }

  .privacy-table th,
  .privacy-table td {
    padding: 2.5mm 2mm;
  }

  .privacy-table thead {
    display: table-header-group;
  }

  .privacy-table tr,
  .policy-checklist li,
  .privacy-rights li {
    break-inside: avoid;
  }

  p,
  li {
    orphans: 3;
    widows: 3;
  }
}

/* Temporary public development notice. Keep this isolated for easy removal at launch. */
@media screen {
  .development-banner {
    position: fixed;
    z-index: 140;
    inset: 0 0 auto;
    display: flex;
    width: 100%;
    height: var(--development-banner-height);
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding-inline: var(--page-gutter);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    background: #11110f;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.045em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .development-banner__dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.14);
  }

  .development-banner ~ .site-header {
    top: var(--development-banner-height);
  }

  .development-banner ~ .skip-link {
    top: calc(var(--development-banner-height) + 12px);
  }
}

@media screen and (max-width: 420px) {
  .development-banner {
    gap: 8px;
    padding-inline: 12px;
    font-size: 0.68rem;
    letter-spacing: 0.025em;
  }
}

@media print {
  .development-banner {
    display: none !important;
  }
}
