:root {
  --ink: #111349;
  --paper: #f1f1ed;
  --white: #ffffff;
  --mint: #79f3c5;
  --mint-dark: #36d99e;
  --lilac: #d7c7ff;
  --coral: #ff8f78;
  --line: rgba(17, 17, 15, 0.16);
  --muted: #66665f;
  --inverse-muted: #c4c4be;
  --inverse-subtle: #b9b9b4;
  --card-dark-1: #191a52;
  --card-dark-2: #27275c;
  --card-dark-3: #343465;
  --card-dark-4: #463d6d;
  --radius-lg: 42px;
  --radius-md: 28px;
  --content: 1440px;
  --pad: clamp(24px, 5vw, 76px);
  --motion-fast: .2s ease;
  --motion-base: .25s ease;
  --motion-slow: .35s ease;
  --shadow-form: 0 20px 60px rgba(17,17,15,.07);
  --shadow-card-hover: 0 18px 38px rgba(17,17,15,.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", "Arial Nova", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.search-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.lucide-icon { display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.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;
}
figure {margin-block-start: 0;margin-inline-start: 0;}
.section-pad {
  max-width: var(--content);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 160px) var(--pad);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: max(18px, calc((100vw - var(--content)) / 2 + 24px));
  right: max(18px, calc((100vw - var(--content)) / 2 + 24px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 24px;
  transition: transform .35s ease;
  > .brand,
  > .main-nav,
  > .header-actions,
  .header-search-button,
  .request-link,
  > .menu-toggle { height: 50px; }
  > .brand {
    grid-area: brand;
    padding: 7px 14px 7px 8px;
    border: 1px solid rgba(255,255,255,.62);
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
    backdrop-filter: blur(20px);
  }
}
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand-logo { display: block; width: 154px; height: auto; }
.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 4px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,.07);
  backdrop-filter: blur(20px);
  & a {
    padding: 12px 15px;
    border-radius: 999px;
    font-size: 14px;
    transition: background var(--motion-fast);
  }
}
.main-nav a:hover { background: rgba(17,17,15,.07); }
.main-nav a.current { background: var(--mint); color: var(--ink); }
.main-nav a.current:hover { background: var(--mint-dark); }
.header-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-search-button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
  cursor: pointer;
  transition: color var(--motion-fast), background var(--motion-fast), transform var(--motion-fast);
}
.header-search-button:hover { background: var(--mint-dark); color: var(--ink); transform: translateY(-2px); }
.header-search-button:focus-visible, .smart-search-close:focus-visible, .smart-search-suggestions button:focus-visible, .smart-search-category:focus-visible, .smart-search-all-results:focus-visible, .smart-search-result:focus-visible {
  outline: 3px solid var(--mint-dark);
  outline-offset: 3px;
}
.header-search-button svg, .smart-search-form > svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.request-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.65);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}
.request-count {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
}
.menu-toggle { display: none; }

.request-drawer {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  pointer-events: none;
  transition: visibility .4s;
}
.request-drawer-open { overflow: hidden; }
.request-drawer-open .request-drawer { visibility: visible; pointer-events: auto; }
.request-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17,17,15,.58);
  opacity: 0;
  cursor: pointer;
  transition: opacity .35s ease;
}
.request-drawer-open .request-drawer-backdrop { opacity: 1; }
.request-drawer-panel {
  position: relative;
  width: min(540px, 100%);
  height: 100%;
  padding: 38px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  background: var(--paper);
  color: var(--ink);
  box-shadow: -30px 0 70px rgba(0,0,0,.2);
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2,.75,.2,1);
}
.request-drawer-open .request-drawer-panel { transform: translateX(0); }
.request-drawer-header { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: start; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.request-drawer-header h2 { max-width: 420px; margin: 18px 0 0; font-size: clamp(30px, 3vw, 42px); line-height: 1; letter-spacing: -.045em; }
.request-drawer-close {
  width: 48px;
  height: 48px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.request-drawer-close svg { width: 21px; height: 21px; margin: auto; }
.request-drawer-close:focus-visible, .request-drawer-remove:focus-visible { outline: 3px solid var(--mint-dark); outline-offset: 3px; }
.request-progress { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.request-progress button { display: flex; align-items: center; gap: 9px; padding: 0; border: 0; background: transparent; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; text-align: left; cursor: pointer; }
.request-progress b { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid var(--line); border-radius: 50%; font-size: 11px; }
.request-progress button.is-active { color: var(--ink); }
.request-progress button.is-active b { border-color: var(--mint-dark); background: var(--mint); }
.request-progress button:disabled { opacity: .45; cursor: not-allowed; }
.request-progress button:focus-visible { outline: 2px solid var(--mint-dark); outline-offset: 4px; }
.request-drawer-steps { min-height: 0; }
.request-drawer-step { height: 100%; min-height: 0; }
.request-drawer-step[hidden] { display: none !important; }
.request-list-step { display: grid; grid-template-rows: minmax(0, 1fr) auto; }
.request-drawer-list { min-height: 0; overflow-y: auto; padding: 0; }
.request-drawer-empty { min-height: 100%; display: grid; place-content: center; gap: 12px; text-align: center; color: var(--muted); }
.request-drawer-empty strong { color: var(--ink); font-size: 26px; letter-spacing: -.035em; }
.request-drawer-empty p { max-width: 330px; margin: 0; line-height: 1.5; }
.request-drawer-item { display: grid; grid-template-columns: 72px minmax(0, 1fr) 42px; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.request-drawer-item:last-child { border-bottom: 0; }
.request-drawer-item img { width: 72px; height: 96px; display: block; object-fit: contain; background: #1a1a18; }
.request-drawer-item-copy { min-width: 0; }
.request-drawer-item-copy span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.request-drawer-item-copy strong { display: block; font-size: 20px; line-height: 1.08; letter-spacing: -.035em; }
.request-drawer-item-copy .request-drawer-item-price { margin: 9px 0 0; color: var(--ink); font-size: 13px; font-weight: 400; line-height: 1.2; letter-spacing: 0; text-transform: none; }
.request-drawer-remove { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--muted); cursor: pointer; }
.request-drawer-remove svg { width: 17px; height: 17px; }
.request-drawer-remove:hover { border-color: var(--ink); color: var(--ink); }
.request-drawer-footer { padding-top: 26px; border-top: 1px solid var(--line); }
.request-drawer-footer p { margin: 0 0 7px; color: var(--muted); font-size: 14px; }
.request-drawer-footer p span { color: var(--ink); font-weight: 700; }
.request-drawer-total { display: block; margin-bottom: 18px; color: var(--ink); font-size: 16px; line-height: 1.25; }
.request-continue { width: 100%; border: 0; background: var(--mint); color: var(--ink); }
.request-continue:hover:not(:disabled) { background: var(--mint-dark); }
.request-continue:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.request-form-step { overflow-y: auto; padding: 26px 4px 10px; }
.request-back { margin: 0 0 22px; padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--ink); font-weight: 700; cursor: pointer; }
.request-form-heading h3 { margin: 0; font-size: 30px; letter-spacing: -.045em; }
.request-form-heading p { margin: 10px 0 24px; color: var(--muted); line-height: 1.45; }
.request-form-grid input,
.request-form-grid textarea,
.selection-field input,
.selection-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  outline: 0;
}

.request-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  & label { display: grid; gap: 8px; }
  & label > span { font-size: 13px; font-weight: 700; }
  & input,
  & textarea { background: var(--white); }
  & input { height: 48px; padding: 0 14px; }
  & textarea { min-height: 110px; padding: 13px 14px; resize: vertical; }
}
.request-form-grid input:focus,
.request-form-grid textarea:focus,
.selection-field input:focus,
.selection-field textarea:focus { border-color: var(--mint-dark); box-shadow: 0 0 0 3px rgba(54,217,158,.18); }
.request-form-wide { grid-column: 1 / -1; }
.request-form-field[aria-invalid="true"] input:not([type="checkbox"]),
.request-form-field[aria-invalid="true"] textarea { border-color: #a63b30; box-shadow: 0 0 0 2px rgba(166,59,48,.12); }
.request-form-error { margin: 0; color: #8d2f27; font-size: 12px; line-height: 1.35; }
.request-form-error[hidden] { display: none; }
.request-consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; margin-top: 20px; color: var(--muted); font-size: 13px; line-height: 1.4; cursor: pointer; }
.request-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--mint-dark); }
.request-consent[aria-invalid="true"] input { outline: 2px solid #a63b30; outline-offset: 2px; }
.request-consent .request-form-error { grid-column: 2; }
.request-consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.request-required-note { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.request-form-actions { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
.request-form-actions .button { width: 100%; padding-left: 14px; padding-right: 14px; }
.request-send { border: 0; }
.request-send:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.smart-search-overlay {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 104px 24px 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.search-open .smart-search-overlay { visibility: visible; opacity: 1; pointer-events: auto; }
.smart-search-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(17,17,15,.42);
  backdrop-filter: blur(10px);
  cursor: default;
}
.smart-search-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(820px, calc(100dvh - 128px));
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 38px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0,0,0,.24);
  transform: translateY(-18px) scale(.985);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.search-open .smart-search-panel { transform: translateY(0) scale(1); }
.smart-search-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.smart-search-heading .eyebrow { margin-bottom: 12px; }
.smart-search-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 64px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.smart-search-close {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}
.smart-search-close svg { width: 21px; height: 21px; margin: auto; }
.smart-search-form {
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  padding: 14px 20px;
  border: 2px solid var(--mint-dark);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17,17,15,.08);
}
.smart-search-form > svg { color: var(--muted); }
.smart-search-form input { min-width: 0; padding: 8px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: clamp(20px, 2.5vw, 30px); line-height: 1.1; }
.smart-search-form input::placeholder { color: #97978f; }
.smart-search-suggestions { margin-top: 26px; }
.smart-search-suggestions > span { display: block; margin-bottom: 12px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.smart-search-suggestions > div { display: flex; flex-wrap: wrap; gap: 9px; }
.smart-search-suggestions button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.smart-search-suggestions button:hover { background: var(--white); border-color: rgba(17,17,15,.3); }
.smart-search-suggestions[hidden],
.smart-search-results[hidden],
.smart-search-note[hidden] { display: none !important; }
.smart-search-results {
  margin-top: 14px;
  padding: 20px 16px 18px;
  border: 1px solid rgba(17,17,15,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.68);
}
.smart-search-result-group + .smart-search-result-group { margin-top: 22px; }
.smart-search-result-label {
  display: block;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.smart-search-category-list { display: flex; flex-wrap: wrap; gap: 10px; }
.smart-search-category {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  max-width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: border-color var(--motion-fast), background var(--motion-fast), transform var(--motion-fast);
}
.smart-search-category:hover { border-color: var(--mint-dark); background: #f8fffc; transform: translateY(-1px); }
.smart-search-folder-icon { flex: 0 0 auto; width: 20px; height: 20px; color: #8f8f89; }
.smart-search-category span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.smart-search-result-list { display: grid; gap: 3px; }
.smart-search-result {
  display: grid;
  grid-template-columns: minmax(74px, auto) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 11px 8px;
  border-radius: 11px;
  color: var(--ink);
  transition: background var(--motion-fast), transform var(--motion-fast);
}
.smart-search-result:hover { background: var(--white); transform: translateX(2px); }
.smart-search-result-index { color: var(--muted); font-size: 14px; line-height: 1.2; white-space: nowrap; }
.smart-search-result-copy { min-width: 0; display: grid; gap: 4px; }
.smart-search-result-copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: clamp(16px, 1.7vw, 21px); font-weight: 500; line-height: 1.15; letter-spacing: -.025em; }
.smart-search-result-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 12px; line-height: 1.2; }
.smart-search-result-arrow { display: grid; place-items: center; width: 28px; height: 28px; color: var(--muted); }
.smart-search-result-arrow .lucide-icon { width: 17px; height: 17px; }
.smart-search-all-results {
  display: block;
  margin: 22px auto 0;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--motion-fast), transform var(--motion-fast);
}
.smart-search-all-results:hover { color: var(--ink); transform: translateY(-1px); }
.smart-search-state { padding: 16px 8px 6px; }
.smart-search-state h3 { margin: 0; font-size: 24px; line-height: 1; letter-spacing: -.04em; }
.smart-search-state p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.smart-search-loading { display: grid; gap: 11px; padding: 12px 8px; }
.smart-search-loading span { display: block; height: 14px; border-radius: 7px; background: linear-gradient(90deg, rgba(17,17,15,.08), rgba(17,17,15,.16), rgba(17,17,15,.08)); background-size: 220% 100%; animation: smart-search-shimmer 1.2s ease-in-out infinite; }
.smart-search-loading span:nth-child(2) { width: 82%; }
.smart-search-loading span:nth-child(3) { width: 64%; }
@keyframes smart-search-shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.smart-search-note { margin: 22px 0 0; color: var(--muted); font-size: 14px; }

.hero {
  position: relative;
  max-width: none;
  min-height: 860px;
  padding-top: 150px;
  padding-left: max(var(--pad), calc((100vw - var(--content)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--content)) / 2 + var(--pad)));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.93) 31%, rgba(241,241,237,.7) 48%, rgba(241,241,237,.2) 70%, rgba(241,241,237,.06) 100%), var(--hero-photo, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-copy { position: relative; z-index: 1; width: min(720px, 58%); }
.hero-video { background-image: none; }
.hero-background-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.93) 31%, rgba(241,241,237,.7) 48%, rgba(241,241,237,.2) 70%, rgba(241,241,237,.06) 100%);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}
.eyebrow > span { width: 9px; height: 9px; border-radius: 50%; background: var(--mint-dark); }
.hero h1, .section-heading h2, .company h2, .publisher-copy h2, .download h2, .request h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .92;
}
.hero h1 { font-size: clamp(64px, 6.6vw, 100px); }
.hero h1 em, .company h2 em { color: var(--mint-dark); font-style: normal; }
.hero-lead {
  max-width: 690px;
  margin: 34px 0;
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.42;
  letter-spacing: -.025em;
}
.hero-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 760px;
  padding: 10px 10px 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 16px 60px rgba(17,17,15,.08);
}
.search-icon { width: 20px; height: 20px; flex: 0 0 auto; }
.hero-search input { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; font-size: 17px; }
.hero-search input::placeholder { color: #85857e; }
.hero-search button {
  border: 0;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--mint);
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.hero-search button:hover { transform: translateY(-2px); background: var(--mint-dark); }
.search-hint { margin: 12px 0 0 23px; color: var(--muted); font-size: 13px; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: max-content;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform var(--motion-fast), background var(--motion-fast);
  &.button-dark { background: var(--ink); color: var(--white); }
  &.button-mint { background: var(--mint); color: var(--ink); }
  &.button-outline { border: 1px solid var(--ink); }
}
.button:hover { transform: translateY(-3px); }
.text-link { font-weight: 700; border-bottom: 1px solid var(--ink); padding-bottom: 4px; }

.trust-bar {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.trust-bar div { padding: 34px clamp(20px, 3vw, 46px); border-right: 1px solid var(--line); }
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { display: block; font-size: clamp(30px, 4vw, 58px); letter-spacing: -.06em; font-weight: 500; }
.trust-bar span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

.featured { max-width: none; background: var(--ink); color: var(--white); border-radius: 0; }
.featured > * { max-width: calc(var(--content) - var(--pad) * 2); margin-left: auto; margin-right: auto; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: end; margin-bottom: 70px; }
.section-heading h2, .company h2, .publisher-copy h2, .download h2 { font-size: clamp(55px, 7vw, 104px); }
.heading-side, .heading-note { max-width: 420px; justify-self: end; font-size: 18px; line-height: 1.5; }
.heading-side .button { margin-top: 22px; }
.inverse-heading .eyebrow > span { background: var(--mint); }
.publication-carousel { min-width: 0; position: relative; }
.publication-grid { position: relative; overflow: hidden; outline: 0; }
.publication-grid:focus-visible { outline: 2px solid var(--mint); outline-offset: 8px; border-radius: var(--radius-md); }
.publication-track { display: flex; align-items: stretch; gap: 16px; transition: transform .55s cubic-bezier(.2,.75,.2,1); will-change: transform; }
.publication-card,
.news-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: background var(--motion-base), color var(--motion-base), border-color var(--motion-base);
}
.publication-card:hover,
.news-card:hover { background: var(--white); color: var(--ink); border-color: var(--ink); }
.publication-card {
  flex: 0 0 calc((100% - 48px) / 4);
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  & .publication-card-link { position: absolute; z-index: 1; inset: 0; border-radius: inherit; }
  & .publication-card-link:focus-visible { outline: 3px solid var(--mint); outline-offset: -4px; }
}
.publication-card > figure {
  min-height: 330px;
  margin: 0;
  padding: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.publication-card > figure img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 260px;
  object-fit: contain;
  filter: none;
  transition: filter .25s ease;
}
.publication-card:hover > figure img { filter: drop-shadow(0 18px 24px rgba(0,0,0,.38)); }
.publication-card > div { flex: 1; padding: 23px; display: flex; flex-direction: column; min-height: 220px; }
.publication-card > div > h3 { margin: 0 0 16px; font-size: clamp(14px, 1.19vw, 18px); line-height: 1; letter-spacing: -.045em; }
.publication-card > div > div { display: flex; flex-direction: column; align-items: stretch; gap: 14px; margin-top: auto; padding-top: 25px; }
.publication-card > div > div > strong { color: inherit; font-size: 13px; line-height: 1.2; text-align: center; }
.publication-card > div > div > button { position: relative; z-index: 2; width: 100%; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: var(--white); cursor: pointer; font-size: 13px; font-weight: 700; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.publication-card:hover > div > div > button { background: transparent; border-color: var(--ink); color: var(--ink); }
.publication-card > div > div > button.added { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.publication-card:hover > div > div > button.added { background: var(--ink); border-color: var(--ink); color: var(--white); }
.publication-card > div > div > button:hover,
.publication-card:hover > div > div > button:hover { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.publication-card > div > div > button:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; }
.carousel-footer { display: flex; justify-content: center; align-items: center; margin-top: 32px; }
.carousel-arrows { position: absolute; z-index: 3; top: 50%; left: 14px; right: 14px; display: flex; justify-content: space-between; transform: translateY(-50%); pointer-events: none; }
.carousel-arrows button {
  display: grid;
  place-items: center;
  width: 50px;
  min-width: 0;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  pointer-events: auto;
  transition: color .2s ease, background .2s ease, opacity .2s ease;
}
.carousel-arrows button:first-child { padding: 0 3px 0 0; }
.carousel-arrows button:last-child { padding: 0 0 0 3px; }
.carousel-arrows svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.carousel-arrows button:hover:not(:disabled) { background: var(--mint); color: var(--ink); }
.carousel-arrows button:disabled { opacity: .28; cursor: default; }
.carousel-all:hover { background: var(--mint-dark); }

.news-section { max-width: none; background: var(--ink); color: var(--white); border-top: 1px solid rgba(255,255,255,.16); }
.news-section > * { max-width: calc(var(--content) - var(--pad) * 2); margin-left: auto; margin-right: auto; }
.news-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.news-card {
  & > a { display: flex; flex-direction: column; height: 100%; }
  & > a > figure { min-height: 280px; display: grid; place-items: center; margin: 0; padding: 22px; border-bottom: 1px solid rgba(255,255,255,.16); overflow: hidden; }
  & > a > figure img { display: block; width: auto; max-width: 100%; max-height: 236px; object-fit: contain; transition: transform .3s ease, filter .3s ease; }
  & > a > div { display: flex; flex: 1; flex-direction: column; min-height: 230px; padding: 24px; }
  & time { color: var(--mint); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  & h3 { margin: 20px 0; font-size: clamp(20px, 1.6vw, 25px); line-height: 1.08; letter-spacing: -.04em; }
  & > a > div > span { width: max-content; margin-top: auto; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; }
}
.news-card:hover > a > figure img { transform: translateY(-4px); filter: drop-shadow(0 16px 18px rgba(0,0,0,.3)); }
.news-card:hover time { color: var(--mint-dark); }
.news-card a:focus-visible { outline: 3px solid var(--mint); outline-offset: -4px; }
.news-footer { display: flex; justify-content: center; margin-top: 32px; }
.news-footer .button:hover { background: var(--mint-dark); }

.company { max-width: none; position: relative; overflow: hidden; background: var(--mint); min-height: 820px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; }
.company-content, .company-steps { position: relative; z-index: 2; }
.company-content { max-width: 880px; margin-left: max(0px, calc((100vw - var(--content)) / 2)); }
.company h2 em { color: var(--ink); }
.company-content > p:not(.eyebrow) { max-width: 650px; font-size: 20px; line-height: 1.5; margin: 35px 0; }
.company-steps { max-width: 410px; margin-right: max(0px, calc((100vw - var(--content)) / 2)); }
.company-steps div { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: center; padding: 25px 0; border-bottom: 1px solid rgba(17,17,15,.28); }
.company-steps span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--ink); font-size: 13px; }
.company-steps p { margin: 0; font-size: 20px; font-weight: 600; }
.publishers { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.publisher-visual { min-height: 620px; background: linear-gradient(180deg, rgba(17,17,15,.2) 0%, rgba(17,17,15,.36) 50%, rgba(17,17,15,.88) 100%), var(--publisher-photo, none) center / cover no-repeat; color: var(--white); border-radius: var(--radius-lg); padding: 42px; position: relative; overflow: hidden; }
.publisher-stamp { position: relative; z-index: 2; font-size: clamp(36px, 4.2vw, 58px); line-height: .92; letter-spacing: -.05em; }
.publisher-stamp span { color: var(--mint); }
.publisher-visual > p { position: absolute; bottom: 38px; left: 42px; max-width: 270px; margin: 0; color: #bcbcb6; line-height: 1.4; }
.publisher-copy h2 { font-size: clamp(54px, 6vw, 90px); }
.publisher-copy > p:not(.eyebrow) { max-width: 600px; margin: 30px 0; font-size: 20px; line-height: 1.5; color: var(--muted); }
.publisher-benefits { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.publisher-benefits span { border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; font-size: 13px; }
.publisher-cta:hover { background: var(--mint-dark); }

.download { max-width: none; background: var(--coral); color: var(--ink); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); align-items: center; border-radius: 0; }
.download-cover { justify-self: end; width: min(400px, 100%); position: relative; overflow: hidden; transform: rotate(-5deg); box-shadow: 0 30px 70px rgba(0,0,0,.38);}
.download-cover img{display: block;}
.download-year { font-weight: 800; }
.download-cover strong { position: absolute; left: 34px; bottom: 65px; font-size: clamp(42px, 5vw, 72px); line-height: .84; letter-spacing: -.065em; }
.download-brand { position: absolute; bottom: 25px; left: 34px; font-weight: 700; }
.download-copy { max-width: 700px; }
.download-copy > p:not(.eyebrow) { max-width: 570px; margin: 30px 0; color: rgba(17,17,15,.72); font-size: 20px; line-height: 1.5; }
.download-copy small { display: block; margin-top: 14px; color: rgba(17,17,15,.58); }

.site-footer { background: var(--ink); color: var(--white); padding: 80px max(var(--pad), calc((100vw - var(--content)) / 2 + var(--pad))); }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 70px; border-bottom: 1px solid rgba(255,255,255,.18); }
.footer-top p { margin: 0; text-align: right; font-size: clamp(22px, 3vw, 40px); line-height: 1.05; letter-spacing: -.035em; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px 28px; padding: 70px 0; }
.footer-links a { font-size: 18px; line-height: 1.25; }
.footer-links a:hover { color: var(--mint); }
.footer-bottom { display: flex; gap: 30px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); color: #8f8f8a; font-size: 12px; }
.footer-bottom a:last-child { margin-left: auto; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 25px; transform: translate(-50%, 120px); padding: 14px 22px; border-radius: 999px; background: var(--white); color: var(--ink); box-shadow: 0 14px 50px rgba(0,0,0,.2); font-weight: 700; transition: transform .3s ease; }
.toast.visible { transform: translate(-50%, 0); }

/* Shared inner-page structure. Page-specific classes below act as modifiers. */
.content-page { overflow-x: hidden; }
.content-page main { padding-top: 112px; }
.content-page a:focus-visible,
.content-page button:focus-visible { outline: 3px solid var(--mint-dark); outline-offset: 3px; }

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

/* Periodicals catalog and publication detail additions. All selectors are isolated from index.html. */

.periodicals-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(42px, 8vw, 130px);
  align-items: end;
  min-height: 480px;
  padding-top: clamp(66px, 8vw, 112px);
  padding-bottom: clamp(74px, 9vw, 130px);
}

.periodicals-hero-copy { max-width: 760px; }
.periodicals-hero h1,
.publication-detail h1 {
  margin: 0;
  font-size: clamp(58px, 8.5vw, 126px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.07em;
}
.periodicals-hero h1 em { color: var(--mint-dark); font-style: normal; }
.periodicals-hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.42;
  letter-spacing: -.025em;
}
.periodicals-draft-note {
  max-width: 780px;
  margin: 0 auto;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.6);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.periodicals-topics-section { background: var(--paper); color: var(--ink); }
.periodicals-related-section { background: var(--ink); color: var(--white); }
.periodicals-section-inner { width: min(var(--content), 100%); margin: 0 auto; padding: clamp(78px, 9vw, 132px) var(--pad); }
.periodicals-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 52px; }
.periodicals-section-heading h1,
.periodicals-section-heading h2 { margin: 0; font-size: clamp(48px, 6.5vw, 92px); font-weight: 500; line-height: .9; letter-spacing: -.065em; }
.periodicals-section-heading p { max-width: 390px; margin: 0; color: var(--inverse-subtle); font-size: 16px; line-height: 1.5; }
.periodicals-topics-section .periodicals-section-heading p { color: var(--muted); }
.periodicals-topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.periodicals-topic-card,
.about-route {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: background var(--motion-base), color var(--motion-base), transform var(--motion-base);
}
.periodicals-topic-card {
  min-height: 250px;
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  background: var(--card-dark-1);
  overflow: hidden;
  &:nth-child(4n + 2) { background: var(--card-dark-2); }
  &:nth-child(4n + 3) { background: var(--card-dark-3); }
  &:nth-child(4n) { background: var(--card-dark-4); }
}
.periodicals-topic-card:hover,
.periodicals-topic-card:focus-visible {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-3px);
}
.periodicals-topic-card:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }
.periodicals-topic-card[hidden] { display: none; }
.periodicals-topic-label { color: var(--mint); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.periodicals-topic-card:hover .periodicals-topic-label { color: var(--mint-dark); }
.periodicals-topic-card h3 { max-width: none; margin: 0; font-size: clamp(19px, 2.1vw, 33px); font-weight: 500; line-height: .94; letter-spacing: -.06em; }
.periodicals-topic-card p { max-width: 420px; margin: 16px 0 0; color: var(--inverse-muted); font-size: 14px; line-height: 1.45; }
.periodicals-topic-card:hover p { color: var(--muted); }
.periodicals-topic-arrow { align-self: flex-end; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid currentColor; border-radius: 50%; }
.periodicals-topic-arrow .lucide-icon { width: 19px; height: 19px; }

.periodicals-empty,
.periodicals-not-found {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
}
.periodicals-not-found-section { padding-top: 72px; padding-bottom: 108px; }
.periodicals-list-section { padding-top: 0; padding-bottom: 108px; }
.periodicals-empty[hidden] { display: none; }
.periodicals-empty h3,
.periodicals-not-found h2 { margin: 0; font-size: clamp(27px, 3vw, 42px); line-height: .98; letter-spacing: -.05em; }
.periodicals-empty p,
.periodicals-not-found p { max-width: 620px; margin: 15px 0 0; color: var(--muted); line-height: 1.5; }
.periodicals-not-found { margin-top: 28px; background: var(--mint); }
.periodicals-not-found .button { margin-top: 22px; }

.periodicals-category-hero { padding-top: clamp(54px, 7vw, 100px); padding-bottom: 54px; }
.periodicals-breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0 0 30px; color: var(--muted); font-size: 13px; }
.periodicals-breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.periodicals-breadcrumbs a:hover { color: var(--ink); }
.periodicals-breadcrumbs .current { color: var(--ink); font-weight: 700; }
.periodicals-category-hero h1 { max-width: none; margin: 0; font-size: clamp(28px, 3.75vw, 56px); font-weight: 500; line-height: .88; letter-spacing: -.07em; }
.periodicals-category-lead { max-width: 720px; margin: 24px 0 0; color: var(--muted); font-size: 19px; line-height: 1.5; }
.periodicals-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.periodicals-list-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(110px, 32.56%) minmax(0, 67.44%);
  min-height: 330px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--motion-fast), transform var(--motion-fast), box-shadow var(--motion-fast);
  & > figure { min-height: 330px; display: grid; place-items: center; margin: 0; padding: 18px; background: var(--ink); }
  & > figure img { display: block; width: auto; max-width: 100%; max-height: 270px; object-fit: contain; }
  & > div { min-width: 0; display: flex; flex-direction: column; padding: 25px; }
  & > div > .periodicals-topic-label { color: var(--muted); }
  & > div > h2 { margin: 15px 0 0; font-size: clamp(17px, 1.68vw, 24px); font-weight: 500; line-height: .98; letter-spacing: -.05em; }
  & > div > p { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
  & > div > div { display: grid; gap: 7px; margin-top: auto; padding-top: 24px; }
  & > div > div > span { color: var(--muted); font-size: 12px; line-height: 1.35; }
  & > div > button { position: relative; z-index: 2; min-height: 46px; margin-top: 14px; padding: 0 15px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; color: var(--ink); font-size: 13px; font-weight: 700; cursor: pointer; }
  & > div > button:hover,
  & > div > button.added { background: var(--mint); border-color: var(--mint); }
  & > a { position: absolute; z-index: 1; inset: 0; border-radius: inherit; }
  & > a:focus-visible { outline: 3px solid var(--mint-dark); outline-offset: -4px; }
}
.periodicals-list-card[hidden] { display: none; }
.periodicals-list-card:hover { border-color: var(--ink); box-shadow: var(--shadow-card-hover); transform: translateY(-2px); }
.periodicals-list-card:focus-within { outline: 3px solid var(--mint-dark); outline-offset: 3px; }

.publication-detail { padding-top: clamp(48px, 7vw, 102px); padding-bottom: clamp(72px, 9vw, 125px); }
.publication-detail-grid { display: grid; grid-template-columns: minmax(270px, .62fr) minmax(0, 1.38fr); gap: clamp(44px, 8vw, 130px); align-items: start; }
.publication-detail-cover { margin: 0; min-height: 560px; display: grid; place-items: center; padding: 42px; border-radius: var(--radius-lg); background: var(--ink); }
.publication-detail-cover img { display: block; width: auto; max-width: 100%; max-height: 490px; object-fit: contain; filter: drop-shadow(0 24px 30px rgba(0,0,0,.28)); }
.publication-detail-copy { padding-top: 10px; }
.publication-detail .periodicals-topic-label { color: var(--muted); }
.publication-detail h1 { max-width: 850px; margin-top: 18px; font-size: clamp(38.5px, 5.18vw, 77px); }
.publication-detail-intro { max-width: 690px; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.5; }
.publication-detail-note { max-width: 640px; margin: 22px 0 0; padding: 14px 16px; border-left: 3px solid var(--mint-dark); color: var(--muted); font-size: 13px; line-height: 1.45; }
.publication-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 700px; margin: 30px 0 0; }
.publication-meta div { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.55); }
.publication-meta dt,
.publication-meta-label { display: block; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.publication-meta dd,
.publication-meta-value { display: block; margin: 9px 0 0; font-size: 16px; line-height: 1.25; }
.publication-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 30px; }
.publication-detail-add { min-height: 52px; border: 0; cursor: pointer; }
.publication-detail-add.added { background: var(--ink); color: var(--white); }
.publication-detail-actions .button-outline { min-height: 52px; }
.publication-detail-actions .button-outline:hover { background: var(--white); }

.publication-page .periodicals-related-section { border-top: 1px solid rgba(255,255,255,.15); }
.publication-page .periodicals-related-section--coral {
  border-top-color: rgba(17,19,73,.18);
  background: var(--coral);
  color: var(--ink);
}
.periodicals-related-section .periodicals-section-heading { margin-bottom: 34px; }
.periodicals-related-section .periodicals-section-heading h2 { font-size: clamp(38px, 5vw, 68px); }
.periodicals-related-section .periodicals-section-heading p { max-width: 470px; }
.periodicals-related-section--coral .periodicals-section-heading p { color: rgba(17,19,73,.72); }
.periodicals-related-section--coral .publication-card { color: var(--white); }
.periodicals-related-section--coral .publication-card:hover { color: var(--ink); }
.periodicals-carousel { min-width: 0; position: relative; }

/* Shared full-bleed hero with page-specific visual modifiers. */
.page-hero {
  min-height: clamp(860px, calc(35.5vw + 449px), 993px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  & > .page-shell {
    min-height: clamp(860px, calc(35.5vw + 449px), 993px);
    padding-top: 150px;
    padding-bottom: clamp(88px, 10vw, 160px);
  }

  & > .page-shell > div { max-width: var(--page-hero-copy-width); }

  & h1 {
    max-width: var(--page-hero-title-width);
    margin: 0;
    font-size: var(--page-hero-title-size);
    font-weight: 500;
    line-height: .88;
    letter-spacing: -.07em;
    overflow-wrap: var(--page-hero-title-wrap, normal);
  }

  & h1 em { color: var(--mint-dark); font-style: normal; }
  & h1 + p {
    max-width: var(--page-hero-lead-width);
    margin: var(--page-hero-lead-margin);
    color: var(--muted);
    font-size: var(--page-hero-lead-size);
    line-height: var(--page-hero-lead-line-height);
    letter-spacing: -.025em;
  }
}

.page-hero--selection {
  --page-hero-copy-width: 850px;
  --page-hero-title-width: 850px;
  --page-hero-title-size: clamp(58px, 8.5vw, 126px);
  --page-hero-lead-width: 720px;
  --page-hero-lead-margin: 30px 0 0;
  --page-hero-lead-size: clamp(18px, 2vw, 25px);
  --page-hero-lead-line-height: 1.42;
  background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.92) 44%, rgba(241,241,237,.54) 68%, rgba(241,241,237,.2) 100%), var(--hero-photo, none);

  & > .page-shell { display: flex; align-items: center; }
}
.publisher-page .page-hero--selection { background-position: center 57%; }

/* Selection page. Selectors are scoped to keep the approved home and catalog layouts unchanged. */
.selection-process { background: var(--ink); color: var(--white); }
.selection-process > .page-shell { padding-top: clamp(76px, 9vw, 132px); padding-bottom: clamp(82px, 10vw, 142px); }
.selection-section-heading { margin-bottom: 50px; }
.selection-section-heading h2 { max-width: 680px; margin: 0; font-size: clamp(48px, 6.5vw, 92px); font-weight: 500; line-height: .9; letter-spacing: -.065em; }
.selection-section-heading > p { max-width: 620px; margin: 22px 0 0; color: var(--inverse-subtle); font-size: 16px; line-height: 1.5; }
.selection-process .eyebrow > span { background: var(--mint); }
.selection-process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: selection-step; }

.selection-process-list li {
  min-width: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  background: var(--card-dark-1);
  &:nth-child(2) { background: var(--card-dark-2); }
  &:nth-child(3) { background: var(--card-dark-3); }
}
.selection-process-list li > span { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--mint); border-radius: 50%; color: var(--mint); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.selection-process-list h3 { margin: 38px 0 0; font-size: clamp(27px, 3vw, 45px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.selection-process-list p { max-width: 380px; margin: 16px 0 0; color: var(--inverse-muted); font-size: 14px; line-height: 1.5; }
.selection-form-section { background: var(--paper); }
.selection-form-layout { display: grid; grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr); align-items: start; gap: clamp(38px, 8vw, 120px); padding-top: clamp(82px, 10vw, 145px); padding-bottom: clamp(92px, 11vw, 160px); }
.selection-form-intro { position: sticky; top: 112px; }
.selection-form-intro h2 { max-width: 620px; margin: 0; font-size: clamp(46px, 5.6vw, 78px); font-weight: 500; line-height: .92; letter-spacing: -.065em; }
.selection-form-intro > p:not(.eyebrow) { max-width: 430px; margin: 26px 0 0; color: var(--muted); font-size: 17px; line-height: 1.5; }
.selection-form { min-width: 0; padding: clamp(24px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-form); }
.selection-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 16px; }
.selection-field {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  &.selection-field-wide { grid-column: 1 / -1; }
  & label { font-size: 13px; font-weight: 700; line-height: 1.25; }
  & label > span { margin-left: 3px; color: var(--ink); }
  & input,
  & textarea { background: var(--paper); }
  & input { min-height: 50px; padding: 0 15px; }
  & textarea { min-height: 126px; padding: 14px 15px; resize: vertical; }
}
.selection-field input:focus-visible,
.selection-field textarea:focus-visible { border-color: var(--mint-dark); box-shadow: 0 0 0 3px rgba(54,217,158,.2); }
.selection-field input[aria-invalid="true"],
.selection-field textarea[aria-invalid="true"] { border-color: #a63b30; box-shadow: 0 0 0 2px rgba(166,59,48,.12); }
.selection-field-hint { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.selection-error { margin: 0; color: #8d2f27; font-size: 12px; line-height: 1.35; }
.selection-error[hidden] { display: none; }
.selection-consent-field { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.selection-consent { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 11px; align-items: start; color: var(--muted); font-size: 13px; line-height: 1.4; cursor: pointer; }
.selection-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--mint-dark); }
.selection-consent input:focus-visible { outline: 3px solid var(--mint-dark); outline-offset: 3px; }
.selection-consent input[aria-invalid="true"] { outline: 2px solid #a63b30; outline-offset: 2px; }
.selection-consent a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.selection-required-note { margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.selection-form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.selection-form-actions .button { min-width: 150px; border: 0; cursor: pointer; }
.selection-form-actions .button:hover { background: var(--mint-dark); }
/* About and contacts pages. Selectors stay scoped to preserve the approved templates. */
.page-hero--about {
  --page-hero-copy-width: 1000px;
  --page-hero-title-width: 1000px;
  --page-hero-title-size: clamp(58px, 6.6vw, 100px);
  --page-hero-title-wrap: anywhere;
  --page-hero-lead-width: 650px;
  --page-hero-lead-margin: 28px 0 0;
  --page-hero-lead-size: clamp(18px, 2vw, 24px);
  --page-hero-lead-line-height: 1.42;
  background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.92) 43%, rgba(241,241,237,.56) 68%, rgba(241,241,237,.14) 100%), var(--hero-photo, none);

  & > .page-shell { display: flex; align-items: center; }
}
.page-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 28px; margin-top: 34px; }

.about-purpose { background: var(--white); }
.about-purpose-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: start; gap: clamp(48px, 9vw, 140px); padding-top: clamp(82px, 10vw, 146px); padding-bottom: clamp(88px, 10vw, 150px); }
.about-purpose h2,
.about-section-heading h2,
.contacts-details h2,
.contacts-next-step h2 { max-width: 760px; margin: 0; font-size: clamp(48px, 6.5vw, 92px); font-weight: 500; line-height: .9; letter-spacing: -.065em; overflow-wrap: anywhere; }
.about-purpose-copy { max-width: 650px; padding-top: 4px; }
.about-purpose-copy p { margin: 0; color: var(--muted); font-size: 19px; line-height: 1.52; }
.about-purpose-copy p + p { margin-top: 22px; }

.about-routes { background: var(--mint); color: var(--ink); }
.about-routes > .page-shell { padding-top: clamp(78px, 9vw, 132px); padding-bottom: clamp(84px, 10vw, 144px); }
.about-section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(220px, .46fr); align-items: end; gap: 42px; margin-bottom: 50px; }
.about-section-heading > p { max-width: 320px; margin: 0 0 5px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.about-route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-route {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--card-dark-1);
  & h3 { max-width: 390px; margin: 0; font-size: clamp(30px, 3.2vw, 50px); font-weight: 500; line-height: .94; letter-spacing: -.06em; }
  & p { max-width: 390px; margin: 16px 0 0; color: var(--inverse-muted); font-size: 14px; line-height: 1.5; }
  & > span { align-self: flex-start; margin-top: 28px; border-bottom: 1px solid currentColor; padding-bottom: 4px; font-size: 13px; font-weight: 700; }
}
.about-route:nth-child(3) { background: var(--card-dark-3); }
.about-route:hover { background: var(--white); color: var(--ink); transform: translateY(-3px); }
.about-route:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }
.about-route-primary { background: var(--card-dark-1); color: var(--white); }
.about-route-primary p { color: var(--inverse-muted); }
.about-route:hover p { color: var(--muted); }

.page-hero--contacts {
  --page-hero-copy-width: 780px;
  --page-hero-title-width: 800px;
  --page-hero-title-size: clamp(58px, 7.2vw, 108px);
  --page-hero-title-wrap: anywhere;
  --page-hero-lead-width: 650px;
  --page-hero-lead-margin: 28px 0 32px;
  --page-hero-lead-size: clamp(18px, 2vw, 23px);
  --page-hero-lead-line-height: 1.45;
  background-color: var(--paper);
  background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.93) 31%, rgba(241,241,237,.7) 48%, rgba(241,241,237,.2) 70%, rgba(241,241,237,.06) 100%), var(--hero-photo, none);

  & > .page-shell { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); align-items: center; gap: clamp(44px, 8vw, 126px); }
}

.contacts-details { background: var(--white); }
.contacts-details-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: start; gap: clamp(46px, 9vw, 140px); padding-top: clamp(82px, 10vw, 146px); padding-bottom: clamp(86px, 10vw, 150px); }
.contacts-details h2 { max-width: 620px; }
.contacts-address-block address { max-width: 450px; margin-top: 30px; color: var(--ink); font-style: normal; font-size: 20px; line-height: 1.48; }
.contacts-visit-note { max-width: 390px; margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.contacts-phone-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; }
.contacts-phone-item { min-width: 0; padding: 24px 0 26px; border-top: 1px solid var(--line); }
.contacts-phone-item h3 { max-width: 320px; margin: 0; font-size: clamp(21px, 2vw, 28px); font-weight: 500; line-height: 1.05; letter-spacing: -.045em; }
.contacts-phone-item a { display: inline-block; margin-top: 18px; color: var(--ink); font-size: 18px; font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.contacts-phone-item a:hover { color: var(--mint-dark); }

.contacts-next-step { background: var(--mint); color: var(--ink); }
.contacts-next-step-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 42px; padding-top: clamp(70px, 8vw, 112px); padding-bottom: clamp(76px, 9vw, 126px); }
.contacts-next-step h2 { max-width: 700px; }
.contacts-next-step p:not(.eyebrow) { max-width: 530px; margin: 22px 0 0; font-size: 18px; line-height: 1.48; }
.contacts-next-step-actions { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 20px 28px; }
.contacts-next-step-actions .button-dark:hover { background: var(--mint-dark); color: var(--ink); }
.contacts-next-step-actions .text-link { white-space: nowrap; }
.about-page .request-prototype-note,
.contacts-page .request-prototype-note { margin: -14px 0 22px; padding-left: 12px; border-left: 3px solid var(--mint-dark); color: var(--muted); font-size: 12px; line-height: 1.4; }
.full-bleed-page main { padding-top: 0; }


.cnt h2{font-size: 32px;margin: 32px 0;font-weight: bold;}
.cnt h3{font-size: 21px;margin: 21px 0;font-weight: bold;}
.cnt h4{font-size: 18px;margin: 18px 0;font-weight: bold;}
.cnt p{margin: 20px 0;line-height:21px;}
.cnt ul,.cnt ol{margin: 25px 0;line-height:21px;}
.cnt ul li{margin-left: 25px; list-style: disc;}
.cnt ol li{margin-left: 25px; list-style: decimal;}
.cnt table{margin: 25px 0;line-height:21px;}
.cnt a{color: var(--card-dark-4);}
.cnt em{font-style: italic;}
.cnt>:first-child{margin-top: 0;}
.cnt>:last-child{margin-bottom: 0;}

.table table{width: 100%; border-collapse: collapse;}
.table p{margin: 0;}
.table td{padding: 10px;border: 1px solid #ccc;vertical-align: top;}
.table th{padding: 10px;font-weight: bold;background-color: #ccc;}

/* Responsive rules are grouped by breakpoint to keep the cascade explicit. */
@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto auto; grid-template-areas: "brand actions menu"; gap: 10px; }
  .main-nav {
    position: fixed;
    inset: 0;
    min-height: 100dvh;
    padding: 120px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    border-radius: 0;
    background: var(--white);
    transform: translateY(-110%);
    transition: transform var(--motion-slow);
    & a { font-size: clamp(34px, 7vw, 68px); letter-spacing: -.05em; }
  }
  .menu-open .main-nav { transform: translateY(0); }
  .menu-open .menu-icon { opacity: 0; transform: rotate(45deg) scale(.75); }
  .menu-open .menu-close-icon { opacity: 1; transform: rotate(0) scale(1); }
  .brand, .header-actions, .menu-toggle { position: relative; z-index: 2; }
  .menu-toggle {
    grid-area: menu;
    display: grid;
    place-items: center;
    justify-self: end;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
    cursor: pointer;
  }
  .menu-toggle:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }
  .menu-toggle svg { grid-area: 1 / 1; width: 21px; height: 21px; transition: opacity var(--motion-fast), transform var(--motion-fast); }
  .menu-close-icon { opacity: 0; transform: rotate(-45deg) scale(.75); }
  .hero { padding-top: 150px; background-position: 60% center; }
  .hero-copy { width: min(680px, 72%); }
  .publication-card { flex-basis: calc((100% - 16px) / 2); }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company { grid-template-columns: 1fr; gap: 40px; }
  .company-content, .company-steps { margin-left: 0; margin-right: 0; }
  .company-steps { max-width: 100%; }
  .publishers { grid-template-columns: 1fr; }
  .publisher-visual { min-height: 520px; }

  .content-page main { padding-top: 96px; }
  .periodicals-hero { grid-template-columns: 1fr; min-height: 0; gap: 42px; }
  .periodicals-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .periodicals-list-card { grid-template-columns: 1fr; }
  .periodicals-list-card > figure { min-height: 280px; }
  .periodicals-list-card > div { min-height: 255px; }
  .periodicals-detail-grid,
  .publication-detail-grid { grid-template-columns: minmax(220px, .6fr) minmax(0, 1.4fr); gap: 42px; }
  .publication-detail-cover { min-height: 470px; padding: 28px; }

  .selection-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selection-process-list li:last-child { grid-column: 1 / -1; min-height: 190px; display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 32px; align-items: center; }
  .selection-process-list li:last-child h3 { margin-top: 0; }
  .selection-form-layout { grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr); gap: 42px; }
  .selection-form-intro { position: static; }

  .about-purpose-layout,
  .contacts-details-layout { grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 44px; }
  .about-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-route-primary { grid-column: 1 / -1; min-height: 240px; }
  .page-hero--contacts > .page-shell { grid-template-columns: 1fr; gap: 42px; }
  .page-hero--contacts { --page-hero-copy-width: 840px; }
  .contacts-next-step-inner { grid-template-columns: 1fr; align-items: start; }
  .contacts-next-step-actions { justify-content: flex-start; }

  .full-bleed-page main { padding-top: 0; }
}

@media (max-width: 760px) {
  :root { --radius-lg: 28px; --radius-md: 22px; }
  .site-header { top: 12px; left: 16px; right: 16px; }
  .brand-logo { width: 132px; }
  .site-header > .brand { padding-right: 10px; }
  .header-actions { gap: 6px; }
  .header-search-button, .menu-toggle { width: 50px; height: 50px; }
  .request-link { width: auto; height: 50px; justify-content: center; gap: 7px; padding: 7px 7px 7px 12px; font-size: 12px; }
  .request-link .request-count { width: 30px; height: 30px; font-size: 13px; }
  .smart-search-overlay { padding: 82px 12px 12px; }
  .smart-search-panel { max-height: calc(100dvh - 94px); padding: 24px 18px; border-radius: 28px; }
  .request-drawer-panel { padding: 24px 18px; }
  .request-drawer-header { gap: 14px; padding-bottom: 24px; }
  .request-drawer-header h2 { font-size: 32px; }
  .request-drawer-close { width: 44px; height: 44px; }
  .request-drawer-item { grid-template-columns: 58px minmax(0, 1fr) 38px; gap: 12px; padding: 16px 0; }
  .request-drawer-item img { width: 58px; height: 78px; }
  .request-drawer-item-copy strong { font-size: 18px; }
  .request-form-grid { grid-template-columns: 1fr; }
  .request-form-wide { grid-column: auto; }
  .request-form-actions { grid-template-columns: 1fr; }
  .smart-search-heading h2 { font-size: 42px; }
  .smart-search-form { grid-template-columns: auto minmax(0,1fr); padding: 12px 16px; border-radius: 18px; }
  .smart-search-form input { font-size: 21px; }
  .smart-search-results { padding: 16px 10px 14px; border-radius: 20px; }
  .smart-search-category { max-width: 100%; }
  .smart-search-result { grid-template-columns: minmax(0,1fr) auto; gap: 5px 10px; padding: 12px 6px; }
  .smart-search-result-index { grid-column: 1 / -1; }
  .smart-search-note { font-size: 13px; }
  .section-pad { padding-top: 88px; padding-bottom: 88px; }
  .hero {
    min-height: 760px;
    padding-top: 130px;
    background-position: 66% center;
    background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.94) 52%, rgba(241,241,237,.62) 100%), var(--hero-photo, none);
  }
  .hero-video { background-image: none; }
  .hero-video::after { background: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.94) 52%, rgba(241,241,237,.62) 100%); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(55px, 15vw, 78px); }
  .hero-lead { margin: 24px 0; font-size: 18px; }
  .hero-search { align-items: stretch; border-radius: 25px; padding: 15px; flex-wrap: wrap; }
  .hero-search .search-icon { align-self: center; }
  .hero-search input { min-height: 42px; }
  .hero-search button { width: 100%; }
  .search-hint { margin-left: 0; }
  .hero-actions { align-items: center; flex-direction: row; flex-wrap: wrap; gap: 20px 28px; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .trust-bar div:nth-child(2) { border-right: 0; }
  .trust-bar div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 45px; }
  .heading-side, .heading-note { justify-self: start; }
  .section-heading h2, .company h2, .publisher-copy h2, .download h2 { font-size: clamp(52px, 15vw, 74px); }
  .publication-card { flex-basis: 100%; }
  .publication-card > figure { min-height: 330px; padding: 20px; }
  .publication-track { align-items: flex-start; }
  .publication-card > div { flex: 0 0 auto; min-height: 0; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 280px; }
  .company { min-height: auto; }
  .company-content > p:not(.eyebrow), .publisher-copy > p:not(.eyebrow), .download-copy > p:not(.eyebrow) { font-size: 17px; }
  .company-steps div { grid-template-columns: 48px 1fr; }
  .company-steps span { width: 42px; height: 42px; }
  .publisher-visual { min-height: 430px; padding: 28px; }
  .publisher-visual > p { left: 28px; bottom: 28px; }
  .download { grid-template-columns: 1fr; }
  .download-cover { justify-self: center; width: min(310px, 86vw); }
  .footer-top { flex-direction: column; gap: 35px; }
  .footer-top p { text-align: left; }
  .footer-links { justify-content: flex-start; gap: 24px 28px; }
  .footer-links a { flex: 0 0 calc(50% - 14px); }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .footer-bottom a:last-child { margin-left: 0; }

  .content-page main { padding-top: 82px; }
  .page-shell { padding-left: 18px; padding-right: 18px; }
  .periodicals-hero { padding-top: 58px; padding-bottom: 70px; }
  .periodicals-hero h1 { font-size: clamp(52px, 16vw, 82px); }
  .publication-detail h1 { font-size: clamp(26px, 8vw, 41px); }
  .periodicals-hero-lead { margin-top: 24px; font-size: 18px; }
  .periodicals-section-inner { padding: 72px 18px; }
  .periodicals-section-heading { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 34px; }
  .periodicals-topic-grid { grid-template-columns: 1fr; }
  .periodicals-topic-card { min-height: 220px; }
  .periodicals-topic-card h3 { margin-top: 0; }
  .periodicals-list { grid-template-columns: 1fr; }
  .periodicals-list-card { grid-template-columns: 1fr; min-height: 0; }
  .periodicals-list-card > figure { min-height: 270px; padding: 14px; }
  .periodicals-list-card > figure img { max-height: 230px; }
  .periodicals-list-card > div { min-height: auto; padding: 20px 17px; overflow-wrap: anywhere; }
  .periodicals-list-card > div > h2 { max-width: 100%; overflow-wrap: anywhere; font-size: 18px; }
  .periodicals-list-card > div > div { padding-top: 17px; }
  .publication-detail { padding-top: 46px; padding-bottom: 74px; }
  .publication-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .publication-detail-cover { min-height: 390px; padding: 24px; }
  .publication-detail-cover img { max-height: 340px; }
  .publication-detail-copy { padding-top: 0; }
  .publication-detail-intro { font-size: 18px; }
  .publication-meta { grid-template-columns: 1fr; }
  .publication-detail-actions { align-items: stretch; flex-direction: column; }
  .publication-detail-actions .button,
  .publication-detail-add { width: 100%; }
  .periodicals-related-section .periodicals-section-heading h2 { font-size: clamp(38px, 12vw, 58px); }

  .page-hero--selection {
    --page-hero-title-size: clamp(52px, 16vw, 82px);
    --page-hero-lead-margin: 24px 0 0;
    --page-hero-lead-size: 18px;
    background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.9) 62%, rgba(241,241,237,.62) 100%), var(--hero-photo, none);
    background-position: 62% center;
  }
  .publisher-page .page-hero--selection { background-position: 58% center; }
  .selection-process > .page-shell { padding-top: 72px; padding-bottom: 78px; }
  .selection-section-heading { margin-bottom: 34px; }
  .selection-section-heading h2 { font-size: clamp(46px, 13vw, 66px); }
  .selection-process-list { grid-template-columns: 1fr; }
  .selection-process-list li:last-child { grid-column: auto; min-height: 0; display: flex; align-items: stretch; gap: 0; }
  .selection-process-list li { min-height: 0; }
  .selection-process-list h3,
  .selection-process-list li:last-child h3 { margin-top: 30px; }
  .selection-form-layout { grid-template-columns: 1fr; gap: 34px; padding-top: 78px; padding-bottom: 88px; }
  .selection-form-intro h2 { font-size: clamp(46px, 13vw, 68px); }
  .selection-form { padding: 22px 18px; border-radius: var(--radius-md); }
  .selection-form-grid { grid-template-columns: 1fr; gap: 16px; }
  .selection-field-wide { grid-column: auto; }
  .selection-form-actions .button { width: 100%; }

  .page-hero--about,
  .page-hero--contacts {
    --page-hero-title-size: clamp(52px, 15vw, 82px);
    --page-hero-lead-size: 18px;
    background-image: linear-gradient(90deg, rgba(241,241,237,.98) 0%, rgba(241,241,237,.9) 58%, rgba(241,241,237,.58) 100%), var(--hero-photo, none);
    background-position: 63% center;
  }
  .page-hero--about { --page-hero-lead-margin: 24px 0 0; }
  .page-hero--contacts { --page-hero-lead-margin: 24px 0 28px; }
  .page-hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 28px; }
  .page-hero-actions .button { width: 100%; }
  .about-purpose-layout,
  .contacts-details-layout { grid-template-columns: 1fr; gap: 34px; padding-top: 76px; padding-bottom: 84px; }
  .about-purpose h2,
  .about-section-heading h2,
  .contacts-details h2,
  .contacts-next-step h2 { font-size: clamp(46px, 13vw, 68px); }
  .about-purpose-copy { padding-top: 0; }
  .about-purpose-copy p { font-size: 17px; }
  .about-routes > .page-shell { padding-top: 72px; padding-bottom: 82px; }
  .about-section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
  .about-section-heading > p { max-width: 430px; margin: 0; }
  .about-route-grid { grid-template-columns: 1fr; }
  .about-route-primary { grid-column: auto; min-height: 0; }
  .about-route { min-height: 0; padding: 24px 20px 26px; }
  .about-route h3 { font-size: clamp(30px, 10vw, 46px); }
  .page-hero--contacts > .page-shell { gap: 32px; }
  .page-hero--contacts .button { width: 100%; }
  .contacts-address-block address { margin-top: 24px; font-size: 18px; }
  .contacts-phone-list { grid-template-columns: 1fr; }
  .contacts-phone-item { padding: 21px 0 23px; }
  .contacts-phone-item h3 { font-size: 24px; }
  .contacts-next-step-inner { gap: 30px; padding-top: 72px; padding-bottom: 82px; }
  .contacts-next-step-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .contacts-next-step-actions .button { width: 100%; }
  .contacts-next-step-actions .text-link { white-space: normal; }

  .full-bleed-page main { padding-top: 0; }
  .page-hero > .page-shell {
    min-height: min(100dvh, clamp(830px, calc(1114px - 37.3vw), 1031px));
    padding-top: 130px;
    padding-bottom: 88px;
  }
  .page-hero { min-height: min(100dvh, clamp(830px, calc(1114px - 37.3vw), 1031px)); }
}

@media (max-width: 400px) {
  .site-header { gap: 6px; }
  .brand-logo { width: 112px; }
  .request-link { width: 50px; gap: 0; padding: 7px; font-size: 0; }
}

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