:root {
  --navy-deep: oklch(0.205 0.055 273);
  --navy: oklch(0.275 0.072 273);
  --navy-soft: oklch(0.36 0.07 270);
  --orange: oklch(0.68 0.17 48);
  --orange-dark: oklch(0.48 0.15 43);
  --cyan: oklch(0.74 0.09 220);
  --paper: oklch(0.965 0.015 76);
  --paper-light: oklch(0.985 0.008 76);
  --paper-warm: oklch(0.925 0.025 72);
  --ink: oklch(0.235 0.035 270);
  --muted: oklch(0.5 0.025 265);
  --line: oklch(0.35 0.025 270 / 0.18);
  --line-light: oklch(0.95 0.012 270 / 0.2);
  --display: "Literata", Georgia, serif;
  --brand: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
  --body: "Cabin", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: 77.5rem;
  --header-height: 6rem;
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  background: var(--paper-light);
  color: var(--ink);
  font-family: var(--body);
  margin: 0;
  max-width: 100%;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
summary {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin-top: 0;
}

p,
li,
dd,
a {
  overflow-wrap: anywhere;
}

::selection {
  background: var(--orange);
  color: var(--navy-deep);
}

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

.section-dark :focus-visible,
.contact :focus-visible,
.brand-pause :focus-visible {
  outline-color: var(--orange);
}

.skip-link {
  background: var(--navy-deep);
  color: var(--paper-light);
  font-weight: 700;
  left: 1rem;
  padding: 0.8rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-180%);
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell,
.header-shell,
.hero-shell {
  margin-inline: auto;
  max-width: calc(var(--shell) + 3rem);
  padding-inline: 1.5rem;
  width: 100%;
}

.site-header {
  background: color-mix(in oklch, var(--paper) 94%, transparent);
  border-bottom: 1px solid var(--line);
  height: var(--header-height);
  position: sticky;
  top: 0;
  transition: background 300ms ease, box-shadow 300ms ease, height 300ms var(--ease);
  z-index: 90;
}

.site-header.is-scrolled {
  background: color-mix(in oklch, var(--paper-light) 98%, transparent);
  box-shadow: 0 0.8rem 2.4rem oklch(0.2 0.04 270 / 0.08);
}

.scroll-progress {
  background: var(--orange);
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  z-index: 3;
}

.header-shell {
  align-items: center;
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 3rem);
  grid-template-columns: minmax(15rem, auto) 1fr auto;
  height: 100%;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
  justify-self: start;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  height: 3.35rem;
  object-fit: contain;
  width: 3.35rem;
}

.brand-wordmark {
  display: grid;
  line-height: 1;
  min-width: 0;
}

.brand-wordmark strong {
  color: var(--navy);
  font-family: var(--brand);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.brand-wordmark small {
  color: var(--orange-dark);
  font-family: var(--brand);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.1vw, 2.25rem);
  justify-content: center;
}

.site-nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  padding-block: 0.65rem;
  position: relative;
  white-space: nowrap;
}

.site-nav a::after {
  background: var(--orange);
  bottom: 0.3rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: 1rem;
  justify-content: space-between;
  min-height: 3.35rem;
  transition: color 250ms ease, background 250ms ease, transform 350ms var(--ease);
}

.header-cta {
  background: var(--navy);
  color: var(--paper-light);
  font-size: 0.88rem;
  padding: 0.55rem 0.75rem 0.55rem 1.35rem;
  white-space: nowrap;
}

.header-cta span,
.button-arrow {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 auto;
  height: 2.2rem;
  justify-content: center;
  transition: transform 350ms var(--ease);
  width: 2.2rem;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:hover span,
.button:hover .button-arrow,
.header-cta:focus-visible span,
.button:focus-visible .button-arrow {
  transform: rotate(45deg);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 2.75rem;
  justify-content: center;
  padding: 0.5rem;
  width: 2.75rem;
}

.menu-toggle span {
  background: var(--navy);
  height: 2px;
  margin-block: 0.2rem;
  transform-origin: center;
  transition: transform 280ms var(--ease), opacity 180ms ease;
  width: 1.45rem;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(0.3rem) rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-0.3rem) rotate(-45deg);
}

.hero {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - var(--header-height));
  overflow: clip;
  position: relative;
}

.hero-picture {
  inset: 0;
  position: absolute;
}

.hero-picture img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-wash {
  background: linear-gradient(
    90deg,
    var(--paper) 0%,
    color-mix(in oklch, var(--paper) 97%, transparent) 30%,
    color-mix(in oklch, var(--paper) 78%, transparent) 48%,
    transparent 69%
  );
  inset: 0;
  position: absolute;
}

.hero-shell {
  align-items: center;
  display: flex;
  flex: 1;
  min-height: 43rem;
  padding-bottom: 10rem;
  padding-top: 4.5rem;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 44rem;
  min-width: 0;
  width: 54%;
}

.eyebrow {
  align-items: center;
  color: var(--orange-dark);
  display: flex;
  font-family: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  gap: 0.65rem;
  letter-spacing: 0.13em;
  margin-bottom: 1.7rem;
  text-transform: uppercase;
}

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

.hero-eyebrow span,
.eyebrow::before {
  background: var(--orange);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 0.45rem;
  width: 0.45rem;
}

.hero-eyebrow::before {
  display: none;
}

.hero h1,
.section h2,
.brand-pause h2,
.contact h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero h1 {
  color: var(--navy-deep);
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.98;
  margin-bottom: 2rem;
  max-width: 11ch;
}

.hero h1 em,
.section h2 em {
  color: var(--orange-dark);
  display: block;
  font-style: normal;
}

.hero-intro {
  color: color-mix(in oklch, var(--ink) 84%, transparent);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 2.35rem;
  max-width: 35rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.5rem;
}

.button {
  padding: 0.6rem 0.72rem 0.6rem 1.45rem;
}

.button-primary {
  background: var(--navy);
  color: var(--paper-light);
}

.button-primary:hover {
  background: var(--navy-deep);
}

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

.text-link span {
  transition: transform 350ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.12rem, 0.15rem);
}

.text-link-dark {
  color: var(--navy);
}

.hero-seal {
  align-items: center;
  aspect-ratio: 1;
  background: color-mix(in oklch, var(--paper-light) 90%, transparent);
  border: 1px solid color-mix(in oklch, var(--orange) 28%, transparent);
  border-radius: 50%;
  bottom: 10.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  right: 1.5rem;
  text-align: center;
  width: 9rem;
}

.hero-seal span {
  font-family: var(--brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-seal strong {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.1;
  margin-top: 0.35rem;
  max-width: 6ch;
}

.hero-facts {
  background: color-mix(in oklch, var(--paper-light) 95%, transparent);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  left: 0;
  margin: 0;
  padding-inline: max(1.5rem, calc((100% - var(--shell)) / 2));
  position: absolute;
  right: 0;
  z-index: 3;
}

.hero-facts div {
  min-width: 0;
  padding: 1.65rem clamp(1rem, 2.8vw, 2.5rem);
}

.hero-facts div + div {
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--navy);
  font-family: var(--brand);
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.hero-facts dd {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.section {
  padding-block: clamp(6.5rem, 10vw, 10rem);
}

.section h2 {
  color: var(--navy-deep);
  font-size: clamp(3.2rem, 5.2vw, 5.7rem);
  line-height: 1.02;
  margin-bottom: 0;
}

.manifesto {
  background: var(--paper-light);
}

.manifesto-grid {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1.2fr) minmax(17rem, 0.72fr);
}

.section-index {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.section-index span {
  color: var(--orange-dark);
  font-family: var(--brand);
  font-size: 2.6rem;
  font-weight: 600;
}

.section-index p {
  color: var(--muted);
  font-size: 0.84rem;
  margin: 1rem 0 0;
  max-width: 8ch;
}

.manifesto-copy h2 {
  font-size: clamp(3.2rem, 4.8vw, 5.4rem);
  max-width: 12ch;
}

.manifesto-text {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.manifesto-text p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.section-dark {
  background: var(--navy-deep);
  color: var(--paper-light);
  overflow: clip;
  padding-block: clamp(7rem, 11vw, 11rem);
  position: relative;
}

.section-dark::before {
  border: 1px solid color-mix(in oklch, var(--cyan) 18%, transparent);
  border-radius: 50%;
  content: "";
  height: 44rem;
  position: absolute;
  right: -18rem;
  top: -20rem;
  width: 44rem;
}

.eyebrow-light {
  color: var(--cyan);
}

.focus-heading {
  align-items: end;
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.62fr);
  margin-bottom: clamp(4rem, 7vw, 7rem);
  position: relative;
  z-index: 1;
}

.focus-heading h2 {
  color: var(--paper-light);
  max-width: 12ch;
}

.focus-heading h2 em {
  color: var(--orange);
}

.focus-heading > p {
  color: color-mix(in oklch, var(--paper-light) 76%, transparent);
  line-height: 1.75;
  margin: 0;
  max-width: 30rem;
}

.focus-list {
  border-bottom: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.focus-list li {
  min-height: 21rem;
  min-width: 0;
  padding: 2.35rem clamp(1.3rem, 2.3vw, 2.3rem);
}

.focus-list li + li {
  border-left: 1px solid var(--line-light);
}

.focus-number {
  color: var(--orange);
  display: block;
  font-family: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 3.2rem;
}

.focus-list h3 {
  color: var(--paper-light);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 1.35rem;
}

.focus-list p {
  color: color-mix(in oklch, var(--paper-light) 68%, transparent);
  line-height: 1.7;
  margin: 0;
}

.strategy {
  background: var(--paper-warm);
  overflow: clip;
}

.strategy-grid {
  align-items: start;
  display: grid;
  gap: clamp(4rem, 9vw, 9rem);
  grid-template-columns: minmax(20rem, 0.82fr) minmax(0, 1.12fr);
}

.strategy-visual {
  aspect-ratio: 4 / 5;
  isolation: isolate;
  margin: 0;
  max-width: 30rem;
  position: relative;
  width: 100%;
}

.strategy-visual::before {
  border: 1px solid color-mix(in oklch, var(--orange-dark) 34%, transparent);
  border-radius: 0 6.5rem 0 6.5rem;
  content: "";
  inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  position: absolute;
  z-index: -1;
}

.strategy-photo-frame {
  border: 0.45rem solid var(--paper-light);
  border-radius: 0 6.5rem 0 6.5rem;
  box-shadow: 0 1.5rem 4rem oklch(0.22 0.04 270 / 0.16);
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.strategy-photo-frame::after {
  background: linear-gradient(180deg, transparent 62%, oklch(0.2 0.05 273 / 0.34));
  content: "";
  inset: 0;
  position: absolute;
}

.strategy-photo-frame img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  width: 100%;
}

.strategy-visual figcaption {
  align-items: center;
  background: var(--navy);
  border: 1px solid color-mix(in oklch, var(--paper-light) 28%, transparent);
  border-radius: 0 1.35rem 0 1.35rem;
  bottom: 1.35rem;
  color: var(--paper-light);
  display: flex;
  font-family: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.72rem;
  justify-content: center;
  left: 1.35rem;
  letter-spacing: 0.08em;
  padding: 1rem 1.15rem;
  position: absolute;
  right: 1.35rem;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
}

.strategy-visual figcaption i {
  background: var(--orange);
  border-radius: 50%;
  flex: 0 0 auto;
  height: 0.42rem;
  width: 0.42rem;
}

.strategy-copy h2 {
  max-width: 11ch;
}

.strategy-lead {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 2rem 0 3.2rem;
  max-width: 41rem;
}

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

.strategy-steps li {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 3.6rem 1fr;
  padding-block: 1.6rem;
}

.strategy-steps > li > span {
  color: var(--orange-dark);
  font-family: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}

.strategy-steps h3 {
  font-family: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.strategy-steps p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.glp-note {
  align-items: start;
  background: var(--navy);
  color: var(--paper-light);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 3rem 1fr;
  margin-top: 2.2rem;
  padding: 1.6rem;
}

.glp-icon {
  align-items: center;
  background: color-mix(in oklch, var(--cyan) 15%, transparent);
  border-radius: 50%;
  display: flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.glp-icon svg {
  fill: none;
  height: 1.5rem;
  stroke: var(--cyan);
  stroke-width: 1.5;
  width: 1.5rem;
}

.glp-note h3 {
  font-family: var(--brand);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.glp-note p {
  color: color-mix(in oklch, var(--paper-light) 82%, transparent);
  line-height: 1.62;
  margin-bottom: 0.65rem;
}

.glp-note small {
  color: var(--cyan);
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
}

.about {
  background: var(--paper-light);
  padding: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 52rem;
}

.about-photo {
  min-height: 52rem;
  overflow: hidden;
  position: relative;
}

.about-photo::after {
  background: var(--paper-light);
  border-radius: 50%;
  content: "";
  height: 118%;
  position: absolute;
  right: -7.5rem;
  top: -9%;
  width: 12rem;
}

.about-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
  width: 100%;
}

.about-photo figcaption {
  background: var(--navy);
  bottom: 2.2rem;
  color: var(--paper-light);
  display: grid;
  left: 2.2rem;
  padding: 1.25rem 1.5rem;
  position: absolute;
  z-index: 2;
}

.about-photo figcaption strong {
  font-family: var(--brand);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.about-photo figcaption span {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

.about-copy {
  align-self: center;
  max-width: 45rem;
  padding: clamp(6rem, 10vw, 10rem) clamp(2rem, 8vw, 8rem) clamp(6rem, 10vw, 10rem) clamp(3rem, 7vw, 7rem);
}

.about-copy h2 {
  max-width: 10ch;
}

.about-lead {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.75;
  margin: 2.2rem 0 1rem;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  color: var(--muted);
  line-height: 1.75;
}

.about-values {
  border-top: 1px solid var(--line);
  margin: 2.6rem 0 2.1rem;
}

.about-values > div {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 5rem 1fr;
  padding-block: 1.25rem;
}

.about-values dt {
  color: var(--orange-dark);
  font-family: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-values dd {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.about-values dd strong {
  font-family: var(--brand);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.about-values dd span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.brand-pause {
  background: var(--navy);
  color: var(--paper-light);
  overflow: clip;
  padding-block: clamp(6rem, 9vw, 9rem);
  position: relative;
  text-align: center;
}

.brand-pause::after {
  border: 1px solid color-mix(in oklch, var(--cyan) 22%, transparent);
  border-radius: 50%;
  content: "";
  height: 35rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 35rem;
}

.brand-pause .section-shell {
  position: relative;
  z-index: 1;
}

.brand-pause p {
  color: var(--cyan);
  font-family: var(--brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.brand-pause h2 {
  color: var(--orange);
  font-size: clamp(3.25rem, 6vw, 6.5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.brand-pause span {
  color: color-mix(in oklch, var(--paper-light) 72%, transparent);
  font-size: 0.94rem;
}

.care {
  background: var(--paper);
}

.care-grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.care-photo {
  border-radius: 0 7rem 0 7rem;
  min-height: 42rem;
  overflow: hidden;
  position: relative;
}

.care-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 69% center;
  position: absolute;
  width: 100%;
}

.care-photo figcaption {
  background: color-mix(in oklch, var(--paper-light) 92%, transparent);
  bottom: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.2rem;
  left: 0;
  max-width: 18rem;
  padding: 1.4rem 1.6rem;
  position: absolute;
}

.care-copy h2 {
  max-width: 11ch;
}

.care-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 2rem 0 2.5rem;
}

.care-details {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.care-details li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.3rem;
  padding-block: 1.15rem;
}

.care-details span {
  color: var(--orange-dark);
  font-family: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.care-details strong {
  font-family: var(--brand);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.care-details small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.faq {
  background: var(--paper-light);
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: clamp(3.5rem, 9vw, 9rem);
  grid-template-columns: minmax(18rem, 0.63fr) minmax(0, 1.1fr);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.faq-heading h2 {
  max-width: 9ch;
}

.faq-heading > p:last-child {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1.75rem;
  max-width: 24rem;
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 2.75rem minmax(0, 1fr) 1.5rem;
  list-style: none;
  min-height: 6.2rem;
  padding-block: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span:nth-child(2) {
  font-family: var(--brand);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-icon {
  align-items: center;
  border: 1px solid color-mix(in oklch, var(--orange) 35%, transparent);
  border-radius: 50%;
  display: flex;
  height: 2.75rem;
  justify-content: center;
  width: 2.75rem;
}

.faq-icon svg {
  fill: none;
  height: 1.35rem;
  stroke: var(--orange-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 1.35rem;
}

.faq-control {
  height: 1rem;
  position: relative;
  width: 1rem;
}

.faq-control::before,
.faq-control::after {
  background: var(--navy);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transition: transform 280ms var(--ease);
  width: 100%;
}

.faq-control::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-control::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease);
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
  max-width: 45rem;
  overflow: hidden;
  padding: 0 0 0 3.95rem;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item[open] .faq-answer p {
  padding-bottom: 1.8rem;
}

.contact {
  background: var(--navy-deep);
  color: var(--paper-light);
  overflow: clip;
  padding-block: clamp(6rem, 10vw, 9rem);
  position: relative;
}

.contact-mark {
  bottom: -14rem;
  opacity: 0.08;
  position: absolute;
  right: -8rem;
  transform: rotate(-12deg);
  width: 33rem;
}

.contact-grid {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
  position: relative;
  z-index: 1;
}

.contact h2 {
  color: var(--paper-light);
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: 1;
  margin-bottom: 0;
  max-width: 12ch;
}

.contact-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact .button-primary {
  background: var(--orange);
  color: var(--navy-deep);
}

.button-large {
  min-height: 4.2rem;
  padding-left: 1.65rem;
}

.contact-social {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper-light);
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  padding: 1rem 0.25rem;
}

.site-footer {
  background: var(--paper);
  padding-block: 2.2rem 1.4rem;
}

.footer-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto auto;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 0.85rem;
}

.footer-brand img {
  height: 2.7rem;
  object-fit: contain;
  width: 2.7rem;
}

.footer-brand p {
  display: grid;
  line-height: 1.25;
  margin: 0;
}

.footer-brand strong {
  font-family: var(--brand);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 0.25rem;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer nav a,
.back-to-top {
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.72rem;
  justify-content: space-between;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
}

.footer-note p {
  margin: 0;
}

.floating-cta {
  align-items: center;
  background: var(--orange);
  border-radius: 999px;
  bottom: 1rem;
  box-shadow: 0 0.8rem 2rem oklch(0.2 0.04 270 / 0.25);
  color: var(--navy-deep);
  display: none;
  font-weight: 700;
  justify-content: space-between;
  left: 1rem;
  min-height: 3.5rem;
  padding: 0.5rem 0.65rem 0.5rem 1.25rem;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  transform: translateY(calc(100% + 2rem));
  transition: transform 450ms var(--ease), visibility 0s linear 450ms;
  visibility: hidden;
  z-index: 80;
}

.floating-cta span {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  height: 2.35rem;
  justify-content: center;
  width: 2.35rem;
}

.floating-cta.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
  visibility: visible;
}

.load {
  animation: load-up 820ms var(--ease) both;
}

.load-1 {
  animation-delay: 80ms;
}

.load-2 {
  animation-delay: 170ms;
}

.load-3 {
  animation-delay: 280ms;
}

.load-4 {
  animation-delay: 390ms;
}

.hero-picture {
  animation: load-photo 1050ms var(--ease) both;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes load-up {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes load-photo {
  from {
    opacity: 0;
    transform: translateX(1.5rem) scale(1.015);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@media (max-width: 72rem) {
  :root {
    --header-height: 5.5rem;
  }

  .header-shell {
    grid-template-columns: minmax(14rem, auto) 1fr auto auto;
  }

  .menu-toggle {
    display: flex;
    grid-column: 4;
  }

  .header-cta {
    grid-column: 3;
  }

  .site-nav {
    background: var(--paper-light);
    border: 1px solid var(--line);
    box-shadow: 0 1.2rem 2.5rem oklch(0.2 0.04 270 / 0.13);
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 15rem;
    opacity: 0;
    padding: 0.6rem 1.25rem;
    pointer-events: none;
    position: absolute;
    right: 1.5rem;
    top: calc(100% + 0.65rem);
    transform: translateY(-0.55rem);
    transition: opacity 250ms ease, transform 320ms var(--ease), visibility 0s linear 320ms;
    visibility: hidden;
  }

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

  .site-nav a {
    border-bottom: 1px solid var(--line);
    min-height: 3.25rem;
    padding: 1rem 0;
    width: 100%;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.4rem);
  }

  .hero-copy {
    width: 58%;
  }

  .hero-seal {
    right: 1.5rem;
    width: 7.7rem;
  }

  .manifesto-grid {
    grid-template-columns: 0.28fr 1fr;
  }

  .manifesto-text {
    grid-column: 2;
  }

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

  .focus-list li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .focus-list li:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .strategy-grid {
    gap: 4rem;
    grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.15fr);
  }

  .about-copy {
    padding-inline: 3.5rem 2rem;
  }

  .care-grid {
    gap: 4rem;
  }
}

@media (max-width: 52rem) {
  :root {
    --header-height: 4.9rem;
  }

  .header-shell {
    gap: 0.75rem;
    grid-template-columns: auto 1fr auto;
    padding-inline: 1rem;
  }

  .brand-mark {
    height: 2.7rem;
    width: 2.7rem;
  }

  .brand-wordmark strong {
    font-size: 1.05rem;
  }

  .brand-wordmark small {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .site-nav {
    left: 1rem;
    min-width: 0;
    right: 1rem;
  }

  .hero {
    display: flex;
    min-height: auto;
  }

  .hero-wash {
    display: none;
  }

  .hero-shell {
    align-items: start;
    min-height: auto;
    order: 1;
    padding-bottom: 3.5rem;
    padding-top: 4.5rem;
  }

  .hero-copy {
    max-width: 44rem;
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 10.8vw, 5rem);
    max-width: 12ch;
  }

  .hero-intro {
    max-width: 40rem;
  }

  .hero-picture {
    aspect-ratio: 4 / 5;
    border-radius: 0 4rem 0 4rem;
    inset: auto;
    margin-inline: 1rem;
    order: 2;
    overflow: hidden;
    position: relative;
  }

  .hero-picture img {
    object-position: 77% center;
  }

  .hero-seal {
    display: none;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 3;
    padding-inline: 1rem;
    position: relative;
  }

  .hero-facts div {
    padding: 1.35rem 1rem;
  }

  .hero-facts div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 6.5rem;
  }

  .section h2 {
    font-size: clamp(3rem, 9vw, 4.6rem);
  }

  .manifesto-grid,
  .focus-heading,
  .strategy-grid,
  .about-grid,
  .care-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 2.5rem;
  }

  .manifesto-copy,
  .manifesto-text {
    grid-column: auto;
  }

  .section-index p {
    max-width: none;
  }

  .focus-heading {
    align-items: start;
    gap: 2rem;
  }

  .focus-heading > p {
    max-width: 38rem;
  }

  .strategy-visual {
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    max-width: 36rem;
  }

  .strategy-visual::before,
  .strategy-photo-frame {
    border-radius: 0 4.5rem 0 4.5rem;
  }

  .about-grid {
    min-height: 0;
  }

  .about-photo {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .about-photo::after {
    bottom: -6rem;
    height: 10rem;
    left: -5%;
    right: auto;
    top: auto;
    width: 110%;
  }

  .about-photo img {
    object-position: 87% center;
  }

  .about-copy {
    max-width: none;
    padding: 6rem 1.5rem;
  }

  .brand-pause::after {
    height: 27rem;
    width: 27rem;
  }

  .care-grid {
    gap: 4rem;
  }

  .care-photo {
    min-height: 34rem;
  }

  .faq-heading {
    position: static;
  }

  .contact-grid {
    align-items: start;
  }

  .contact-actions {
    max-width: 30rem;
  }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr auto;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 36rem) {
  .section-shell,
  .hero-shell {
    padding-inline: 1.2rem;
  }

  .brand,
  .text-link,
  .site-footer nav a,
  .back-to-top {
    align-items: center;
    display: inline-flex;
    min-height: 2.75rem;
  }

  .brand-wordmark small {
    display: none;
  }

  .hero-shell {
    padding-bottom: 3rem;
    padding-top: 3.7rem;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4rem);
    line-height: 1;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: space-between;
  }

  .hero-picture {
    border-radius: 0 3rem 0 3rem;
    margin-inline: 0.75rem;
  }

  .hero-facts dt {
    font-size: 0.92rem;
  }

  .hero-facts dd {
    font-size: 0.75rem;
  }

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

  .focus-list li {
    min-height: 0;
    padding: 2rem 1.2rem 2.4rem;
  }

  .focus-list li + li,
  .focus-list li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-light);
  }

  .focus-number {
    margin-bottom: 1.5rem;
  }

  .strategy-steps li {
    grid-template-columns: 2.6rem 1fr;
  }

  .strategy-visual::before,
  .strategy-photo-frame {
    border-radius: 0 2.75rem 0 2.75rem;
  }

  .strategy-visual::before {
    inset: 0.7rem -0.7rem -0.7rem 0.7rem;
  }

  .strategy-visual figcaption {
    bottom: 0.9rem;
    font-size: 0.64rem;
    gap: 0.48rem;
    left: 0.9rem;
    letter-spacing: 0.055em;
    padding: 0.82rem 0.7rem;
    right: 0.9rem;
  }

  .strategy-visual figcaption i {
    height: 0.34rem;
    width: 0.34rem;
  }

  .glp-note {
    grid-template-columns: 1fr;
  }

  .about-photo figcaption {
    bottom: 1.2rem;
    left: 1.2rem;
  }

  .about-copy {
    padding-inline: 1.2rem;
  }

  .about-values > div {
    grid-template-columns: 1fr;
  }

  .brand-pause h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .care-photo {
    border-radius: 0 4rem 0 4rem;
    min-height: 29rem;
  }

  .care-photo img {
    object-position: 74% center;
  }

  .faq-item summary {
    gap: 0.8rem;
    grid-template-columns: 2.5rem minmax(0, 1fr) 1rem;
  }

  .faq-icon {
    height: 2.5rem;
    width: 2.5rem;
  }

  .faq-answer p {
    padding-left: 3.3rem;
  }

  .contact h2 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

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

  .site-footer nav {
    flex-direction: column;
    gap: 0.7rem;
    grid-column: 1;
    grid-row: auto;
  }

  .back-to-top {
    justify-self: start;
  }

  .footer-note {
    flex-direction: column;
    gap: 0.7rem;
  }

  .floating-cta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
