@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/Pretendard-Regular.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/Pretendard-Medium.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/Pretendard-SemiBold.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/Pretendard-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/Pretendard-ExtraBold.woff2") format("woff2");
}

@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/Pretendard-Black.woff2") format("woff2");
}

:root {
  --ink: #1d1d1f;
  --blue: #006edc;
  --sky: #1677c8;
  --glow: #8fc7ed;
  --paper: #ffffff;
  --wash: #f5f5f7;
  --line: #e5e7eb;
  --white: #ffffff;
  --ink-80: rgba(29, 29, 31, 0.8);
  --ink-60: rgba(29, 29, 31, 0.62);
  --ink-45: rgba(29, 29, 31, 0.44);
  --cta-gradient: var(--blue);
  --font-serif: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --font-display: "Archivo Black", sans-serif;
  --r-card: 8px;
  --r-card-lg: 14px;
  --r-pill: 100px;
  --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 10px 28px rgba(0, 0, 0, 0.12);
  --shadow-btn: none;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 240ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

.page-shell {
  width: 100%;
  margin: 0;
  background: var(--paper);
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.container--narrow {
  max-width: 760px;
}

.container--question {
  max-width: 840px;
}

.site-header {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 24px;
}

.pill-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 10px 10px 10px 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-pill);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.pill-nav__logo img {
  height: 22px;
  width: auto;
}

.pill-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0 0 0 8px;
  padding: 0;
}

.pill-nav__links a {
  color: var(--ink-60);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--dur) var(--ease);
}

.pill-nav__links a:hover,
.pill-nav__links a.is-active {
  color: var(--ink);
  font-weight: 600;
}

.pill-nav .btn {
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.btn span {
  font-family: var(--font-mono);
  font-weight: 500;
  transition: transform var(--dur) var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover span {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--cta-gradient);
  box-shadow: var(--shadow-btn);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--sky);
  color: var(--blue);
}

.btn--sm {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 14px;
}

.btn--lg {
  min-height: 56px;
  padding: 18px 36px;
  font-size: 17px;
}

.hero {
  position: relative;
  min-height: 770px;
  background: var(--paper);
}

.hero__image {
  width: 100%;
  min-height: 770px;
  object-fit: cover;
  object-position: center top;
}

.hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.46) 31%, rgba(255, 255, 255, 0) 56%);
}

.hero__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__copy {
  position: absolute;
  left: 0;
  bottom: 80px;
  max-width: 620px;
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
}

.eyebrow--dark {
  color: var(--glow);
}

.hero h1 {
  min-height: 2.08em;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(52px, 5.4vw, 86px);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.05;
  text-wrap: balance;
}

.hero h1 [data-rotating-question] {
  display: inline-block;
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}

.hero h1 [data-rotating-question].is-out {
  opacity: 0;
  transform: translateY(18px);
}

.hero__lead {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--ink-80);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.62;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mini-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 286px;
  padding: 12px 16px 12px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mini-card--omega {
  top: 132px;
  right: 84px;
}

.mini-card--biotics {
  top: 568px;
  right: 200px;
}

.mini-card img {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.mini-card div {
  min-width: 0;
}

.mini-card p,
.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card p {
  margin: 0 0 6px;
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.mini-card strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.2;
}

.mini-card span {
  width: fit-content;
  margin-top: 8px;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: var(--cta-gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

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

.section--wash {
  background: var(--wash);
}

.band {
  padding: 88px 0;
}

.band--ink {
  background: var(--ink);
  color: var(--white);
}

.stats-grid,
.absent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stats-intro {
  max-width: 760px;
  margin-bottom: 52px;
}

.stats-intro h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.16;
  text-wrap: balance;
}

.stats-grid article {
  padding: 0 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.stats-grid strong {
  display: block;
  color: var(--glow);
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats-grid p,
.signature-label {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.stats-grid--promise article {
  min-height: 178px;
}

.stats-grid--promise h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.25;
}

.stats-grid--promise p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.72;
  text-transform: none;
}

.declarations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 40px;
}

.declaration {
  padding-top: 32px;
  border-top: 2px solid var(--ink);
}

.declaration span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.declaration h2,
.section-heading h2,
.split-heading h2,
.band h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.16;
  text-wrap: balance;
}

.declaration h2 {
  margin-top: 20px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.16;
}

.band .stats-intro h2 {
  margin: 12px 0 0;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
}

.declaration p {
  max-width: 440px;
  margin: 20px 0 0;
  color: var(--ink-80);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.brand-story__summary {
  max-width: 940px;
}

.brand-story__summary h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.18;
  text-wrap: balance;
}

.brand-story__summary p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ink-80);
  font-size: 17px;
  line-height: 1.82;
}

.brand-story__panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-top: 58px;
  padding: 36px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.22);
  border-bottom: 1px solid var(--line);
}

.brand-story__panel p {
  max-width: 720px;
  margin: 0;
  color: var(--ink-80);
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.7;
}

.brand-story__panel strong {
  color: var(--blue);
}

.brand-story__panel h3 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.24;
}

.brand-story__panel em {
  color: var(--blue);
  font-style: normal;
}

.brand-story__lines {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
  max-width: 760px;
}

.brand-story__lines span {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--ink-80);
  font-size: 16px;
  line-height: 1.5;
}

.brand-story__lines strong {
  color: var(--ink);
}

.brand-photo {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: center;
  margin-top: 56px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
}

.brand-photo h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.28;
  text-wrap: balance;
}

.brand-photo p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--ink-60);
  line-height: 1.7;
}

.brand-photo img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: right center;
  border-radius: 10px;
}

.brand-story-link {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-story-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 133, 255, 0.42);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand-story-link__cta {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-heading {
  margin-bottom: 48px;
}

.section-heading--center {
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-60);
  font-size: 16px;
  line-height: 1.7;
}

.dialogue {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(24px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card);
}

.dialogue .reveal {
  transition-duration: 620ms;
}

.dialogue .reveal:not(.is-visible) {
  transform: translateY(34px) scale(0.98);
}

.bubble {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
}

.bubble--left {
  align-self: flex-start;
}

.bubble--right {
  align-self: flex-end;
  align-items: flex-end;
}

.packet__label {
  padding: 0 6px;
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.bubble p {
  margin: 0;
  padding: 14px 18px;
  border-radius: 20px 20px 20px 6px;
  background: var(--wash);
  border: 1px solid var(--line);
  color: var(--ink-80);
  font-size: 15px;
  line-height: 1.6;
}

.bubble--right p {
  border: 0;
  border-radius: 20px 20px 6px 20px;
  background: var(--ink);
  color: var(--white);
}

.packet {
  align-self: flex-end;
  width: min(100%, 360px);
}

.packet__label {
  margin: 0 0 6px;
  text-align: right;
}

.packet__card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px 20px 6px 20px;
  box-shadow: var(--shadow-float);
}

.packet__card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--wash);
  border-bottom: 1px dashed var(--line);
}

.packet__card header strong {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  letter-spacing: -0.02em;
}

.packet__card div > span {
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.packet__card > div {
  padding: 18px;
}

.packet__card h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
}

.packet__card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.packet__card li,
.combo-card li {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--wash);
  color: var(--ink-80);
  font-size: 13px;
  font-weight: 500;
}

.packet__card p {
  margin: 16px 0 0;
  color: var(--ink-45);
  font-size: 12.5px;
  line-height: 1.6;
}

.question-card {
  min-height: 300px;
  padding: 40px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card);
}

.question-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.question-dots span {
  width: 12px;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  transition: all var(--dur) var(--ease);
}

.question-dots span.is-current {
  width: 28px;
  background: var(--blue);
}

.question-dots span.is-done {
  width: 28px;
  background: var(--sky);
}

.question-kicker {
  margin: 0;
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.question-card h3 {
  margin: 12px 0 28px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.question-result p {
  margin: 0 0 24px;
  color: var(--ink-80);
  line-height: 1.7;
}

.question-result .note {
  color: var(--ink-45);
  font-size: 12.5px;
  line-height: 1.6;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.text-link {
  padding: 0;
  background: transparent;
  color: var(--ink-45);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--ink-80);
  cursor: pointer;
  font-weight: 500;
  line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.chip:hover {
  transform: translateY(-2px);
}

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.combo-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease);
}

.combo-card:hover {
  transform: translateY(-2px);
}

.combo-card > span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.combo-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.combo-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.combo-card p {
  margin: 0;
  color: var(--ink-45);
  font-size: 12.5px;
  line-height: 1.6;
}

.combo-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.band--signature {
  padding: 120px 0;
  text-align: center;
}

.signature-number {
  display: block;
  color: var(--glow);
  font-family: var(--font-mono);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.band--signature h2,
.band .section-heading h2 {
  color: var(--white);
}

.band--signature h2 {
  max-width: 760px;
  margin: 40px auto 0;
  font-size: 40px;
  line-height: 1.25;
}

.signature-meta {
  margin: 20px 0 0;
  color: var(--glow);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
}

.signature-label {
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.principle-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.principle-card span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.absent-grid span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.principle-card h3 {
  margin: 20px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.principle-card p {
  margin: auto 0 0;
  color: var(--ink-60);
  font-size: 13.5px;
  line-height: 1.6;
}

.pharmacist-section {
  overflow: hidden;
}

.pharmacist-stage {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}

.pharmacist-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.16;
  text-wrap: balance;
}

.pharmacist-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 22px 0 30px;
  color: var(--ink-80);
  font-size: 17px;
  line-height: 1.8;
}

.pharmacist-marquee {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  height: 620px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.pharmacist-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: pharmacistScrollUp 18s linear infinite;
}

.pharmacist-rail--down {
  animation-name: pharmacistScrollDown;
}

.pharmacist-rail--late {
  animation-duration: 22s;
}

.pharmacist-marquee:hover .pharmacist-rail {
  animation-play-state: paused;
}

.pharmacist-card {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
}

.pharmacist-avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  font-style: italic;
}

.pharmacist-avatar--sky {
  background: var(--blue);
}

.pharmacist-avatar--green {
  background: #1f7a68;
}

.pharmacist-avatar--navy {
  background: #2f3440;
}

.pharmacist-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.3;
}

.pharmacist-card p {
  margin: 8px 0 0;
  color: var(--ink-60);
  font-size: 14px;
}

.pharmacist-card small {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 10px;
  background: var(--wash);
  border-radius: var(--r-pill);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

@keyframes pharmacistScrollUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

@keyframes pharmacistScrollDown {
  from {
    transform: translateY(-50%);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pharmacist-rail {
    animation: none;
  }

  .pharmacist-rail--down {
    transform: translateY(-20%);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-category + .product-category {
  margin-top: 72px;
}

.product-category__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-category__head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.product-category__head p {
  margin: 0;
  color: var(--ink-45);
  font-size: 15px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.product-card img,
.product-card__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--wash);
}

.product-card img {
  object-fit: cover;
}

.product-card__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 245, 247, 0.92)),
    var(--wash);
  color: var(--ink);
}

.product-card__placeholder strong {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 800;
  line-height: 1;
}

.product-card__placeholder small {
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__placeholder--hm strong {
  color: var(--blue);
}

.product-card span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-card h3 {
  margin: -8px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
}

.product-card p {
  min-height: 20px;
  margin: -6px 0 0;
  color: var(--ink-60);
  font-size: 14px;
}

.product-card a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  color: var(--ink-45);
  font-size: 14px;
  font-weight: 700;
  transition: color var(--dur) var(--ease);
}

.product-card a span {
  color: inherit;
  transition: transform var(--dur) var(--ease);
}

.product-card:hover a {
  color: var(--blue);
}

.product-card:hover a span {
  transform: translateX(3px);
}

.mono-link {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.absent-grid article {
  padding: 0 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.absent-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.absent-grid span {
  color: var(--glow);
  font-size: 32px;
}

.absent-grid h3 {
  margin: 24px 0 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.absent-grid p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.pharmacy-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.map-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: linear-gradient(145deg, #fbfbfd 0%, #f0f2f5 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
}

.map-card__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
}

.pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 6px rgba(33, 159, 232, 0.18);
}

.pin--a {
  top: 28%;
  left: 44%;
}

.pin--b {
  top: 40%;
  left: 52%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(30, 86, 214, 0.16);
}

.pin--c {
  top: 58%;
  left: 38%;
}

.pin--d {
  top: 68%;
  left: 60%;
}

.pin--e {
  top: 50%;
  left: 30%;
  background: var(--blue);
}

.pharmacy-list {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.pharmacy-search {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.pharmacy-search span {
  color: var(--ink-45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pharmacy-search input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.pharmacy-search input:focus {
  border-color: rgba(33, 159, 232, 0.55);
  box-shadow: 0 0 0 4px rgba(33, 159, 232, 0.12);
}

.pharmacy-list [data-pharmacy-list] {
  flex: 1;
  max-height: min(46vh, 420px);
  margin-top: 8px;
  overflow-y: auto;
  padding-right: 10px;
  overscroll-behavior: contain;
  scrollbar-color: rgba(29, 29, 31, 0.32) transparent;
  scrollbar-width: thin;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 28px), transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 28px), transparent 100%);
}

.pharmacy-list [data-pharmacy-list]::-webkit-scrollbar {
  width: 6px;
}

.pharmacy-list [data-pharmacy-list]::-webkit-scrollbar-track {
  background: transparent;
}

.pharmacy-list [data-pharmacy-list]::-webkit-scrollbar-thumb {
  background: rgba(29, 29, 31, 0.28);
  border-radius: 999px;
}

.pharmacy-list .chip-row {
  gap: 8px;
}

.pharmacy-list .chip {
  min-height: 36px;
  padding: 9px 14px;
  font-size: 14px;
}

.pharmacy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.pharmacy-row h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
}

.pharmacy-row p {
  margin: 4px 0 0;
  color: var(--ink-45);
  font-size: 13px;
}

.pharmacy-row div:last-child {
  text-align: right;
}

.pharmacy-row span {
  display: block;
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
}

.pharmacy-row small {
  display: block;
  margin-top: 4px;
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 12px;
}

.pharmacy-list .btn {
  align-self: flex-start;
  margin-top: 24px;
}

.pharmacy-empty {
  margin: 18px 0 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-45);
  font-size: 14px;
  line-height: 1.7;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.column-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.column-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.column-card:nth-child(1) img {
  object-position: 65% center;
}

.column-card:nth-child(2) img {
  object-position: 76% center;
}

.column-card:nth-child(3) img {
  object-position: 58% center;
}

.column-card div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
}

.column-card span {
  color: var(--sky);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.column-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.3;
}

.column-card p {
  margin: 0;
  color: var(--ink-60);
  font-size: 14px;
  line-height: 1.6;
}

.column-card a {
  margin-top: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.subpage-hero {
  position: relative;
  min-height: 520px;
  padding: 176px 0 104px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 31, 58, 0.94) 0%, rgba(8, 31, 58, 0.78) 46%, rgba(8, 31, 58, 0.28) 100%),
    url("assets/hero.png") right center / cover no-repeat;
}

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

.subpage-hero--paper::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 48%, rgba(255, 255, 255, 0.3) 100%),
    url("assets/hero.png") right center / cover no-repeat;
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 18px 0 0;
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 900;
  line-height: 1.05;
  text-wrap: balance;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.8;
}

.subpage-hero--paper p:not(.eyebrow) {
  color: var(--ink-60);
}

.story-flow {
  display: grid;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}

.story-flow article {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.story-flow article:first-child {
  border-top: 2px solid var(--ink);
}

.story-flow span,
.page-number {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-flow h2,
.page-cta h2,
.article-feature h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.18;
  text-wrap: balance;
}

.story-flow p {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--ink-60);
  font-size: 18px;
  line-height: 1.9;
}

.statement-stack {
  display: grid;
  gap: 18px;
  margin-top: 52px;
}

.statement-stack article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.statement-stack h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.3;
}

.statement-stack p {
  margin: 10px 0 0;
  color: var(--ink-60);
  line-height: 1.75;
}

.page-cta {
  padding: 64px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card);
}

.page-cta p {
  max-width: 620px;
  margin: 18px auto 28px;
  color: var(--ink-60);
  line-height: 1.75;
}

.catalog-note {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-45);
  font-size: 14px;
}

.plan-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.plan-intro-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.plan-intro-grid h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.25;
}

.plan-intro-grid p {
  margin: 0;
  color: var(--ink-60);
  line-height: 1.7;
}

.pharmacy-page-copy {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--ink-60);
  line-height: 1.8;
}

.article-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-card);
}

.article-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.article-feature p {
  margin: 18px 0 26px;
  color: var(--ink-60);
  line-height: 1.8;
}

.note-list {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.note-list article {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.note-list h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 25px;
}

.note-list p {
  margin: 8px 0 0;
  color: var(--ink-60);
  line-height: 1.65;
}

.note-list a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.company-hero {
  min-height: 440px;
  padding-bottom: 88px;
}

.company-hero h1 {
  max-width: 860px;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 800;
}

.company-document {
  padding-top: 76px;
}

.company-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.company-menu {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-menu p {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-menu a {
  display: block;
  padding: 12px 14px;
  border-left: 2px solid transparent;
  color: var(--ink-60);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.company-menu a:hover,
.company-menu a.is-active {
  background: var(--wash);
  border-left-color: var(--blue);
  color: var(--ink);
}

.company-content {
  display: grid;
  gap: 96px;
  min-width: 0;
}

.company-panel {
  scroll-margin-top: 112px;
}

.company-story-flow {
  max-width: none;
  margin: 0;
}

.company-story-flow h2 {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
}

.company-statement-stack {
  margin-top: 42px;
}

.company-statement-stack article {
  padding: 26px;
}

.company-panel--intro {
  padding: 72px 48px;
  background: var(--wash);
  text-align: center;
}

.company-logo-mark {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-bottom: 58px;
}

.company-logo-mark img {
  height: 62px;
  width: auto;
}

.company-logo-mark span {
  color: var(--ink-60);
  font-size: 15px;
  font-weight: 600;
}

.company-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-60);
  font-size: 20px;
  line-height: 1.75;
}

.company-lead strong {
  color: var(--ink);
  font-weight: 800;
}

.company-copy {
  max-width: 680px;
  margin: 38px auto 0;
  color: var(--ink-60);
  font-size: 18px;
  line-height: 1.95;
}

.company-section-title {
  margin-bottom: 44px;
  text-align: center;
}

.company-section-title::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 22px;
  background: var(--line);
}

.company-section-title h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.company-section-title span {
  display: block;
  margin-top: 8px;
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-section-title--left {
  text-align: left;
}

.company-center-text {
  margin: 0 0 44px;
  color: var(--ink-60);
  font-size: 18px;
  text-align: center;
}

.philosophy-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

.philosophy-types article {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-align: center;
}

.philosophy-types strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
}

.philosophy-types p {
  margin: 0;
  color: var(--ink-60);
  line-height: 1.7;
}

.giver-note {
  max-width: 700px;
  margin: 62px auto 0;
  text-align: center;
}

.giver-note p {
  margin: 0;
  color: var(--ink-60);
  font-size: 18px;
  line-height: 1.9;
}

.giver-note > strong {
  display: block;
  margin: 26px 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.giver-note h3 {
  margin: 34px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 25px;
  line-height: 1.45;
}

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

.core-value-grid article {
  min-height: 230px;
  padding: 32px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  text-align: center;
}

.core-value-grid span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(0, 110, 220, 0.32);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
}

.core-value-grid h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 800;
}

.core-value-grid p {
  margin: 0;
  color: var(--ink-60);
  line-height: 1.75;
}

.company-timeline {
  position: relative;
  display: grid;
  gap: 54px;
  max-width: 900px;
  margin: 72px auto 0;
  padding: 0;
  list-style: none;
}

.company-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.company-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
}

.company-timeline li::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #4aa3ff;
  border: 4px solid var(--paper);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(74, 163, 255, 0.15);
}

.company-timeline li:nth-child(odd) .timeline-card {
  grid-column: 1;
  text-align: right;
}

.company-timeline li:nth-child(even) .timeline-card {
  grid-column: 2;
}

.timeline-card time {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 800;
}

.timeline-card p,
.timeline-card strong {
  display: block;
  margin: 0 0 14px;
  color: var(--ink-60);
  font-size: 18px;
  line-height: 1.7;
}

.timeline-card strong {
  color: #2f95ee;
  font-weight: 800;
}

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

.partner-grid article {
  padding: 28px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.partner-grid span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.partner-grid h3 {
  margin: 16px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
}

.partner-grid p {
  margin: 0;
  color: var(--ink-60);
  line-height: 1.75;
}

.partner-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
}

.partner-form label {
  display: grid;
  gap: 8px;
}

.partner-form span {
  color: var(--ink-60);
  font-size: 13px;
  font-weight: 700;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  outline: 0;
  resize: vertical;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: rgba(0, 110, 220, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 110, 220, 0.08);
}

.partner-form__wide {
  grid-column: 1 / -1;
}

.partner-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.partner-actions p {
  margin: 0;
  color: var(--ink-45);
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}

.site-footer {
  padding: 80px 0 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.7fr 1fr;
  gap: 56px;
}

.site-footer img {
  height: 24px;
  width: auto;
}

.site-footer p {
  max-width: 280px;
  margin: 20px 0 24px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer h2 {
  margin: 0 0 4px;
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-info dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.footer-info div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
}

.footer-info dt,
.footer-info dd {
  margin: 0;
  line-height: 1.6;
}

.footer-info dt {
  color: var(--ink-45);
  font-size: 13px;
  font-weight: 700;
}

.footer-info dd {
  color: var(--ink-80);
  font-size: 14px;
}

.footer-contact div {
  grid-template-columns: 72px 1fr;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-45);
  font-family: var(--font-mono);
  font-size: 12px;
}

.footer-bottom span:last-child {
  text-align: right;
}

.reveal {
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1120px) {
  .pill-nav__links {
    gap: 18px;
  }

  .mini-card--omega {
    right: 48px;
  }

  .mini-card--biotics {
    top: 540px;
    right: 120px;
  }

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

@media (max-width: 880px) {
  .container {
    width: min(100% - 32px, 640px);
  }

  .site-header {
    top: 16px;
  }

  .pill-nav {
    padding: 10px 10px 10px 18px;
  }

  .pill-nav__links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__image {
    min-height: 760px;
    object-position: 54% top;
  }

  .hero__wash {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.9) 58%, var(--paper) 100%);
  }

  .hero__copy {
    right: 0;
    bottom: 44px;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .product-category__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mini-card {
    display: none;
  }

  .section,
  .band {
    padding: 72px 0;
  }

  .stats-grid,
  .declarations,
  .brand-photo,
  .brand-story__panel,
  .brand-story__lines,
  .company-layout,
  .philosophy-types,
  .core-value-grid,
  .partner-grid,
  .partner-form,
  .statement-stack article,
  .catalog-note,
  .plan-intro-grid,
  .article-feature,
  .note-list article,
  .combo-grid,
  .absent-grid,
  .pharmacy-layout,
  .column-grid,
  .footer-grid,
  .pharmacist-stage {
    grid-template-columns: 1fr;
  }

  .stats-grid article,
  .absent-grid article {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .stats-grid article:first-child,
  .absent-grid article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .pharmacy-list [data-pharmacy-list] {
    max-height: 340px;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .brand-photo img {
    aspect-ratio: 4 / 3;
  }

  .subpage-hero {
    min-height: 480px;
    padding: 148px 0 76px;
  }

  .subpage-hero::before,
  .subpage-hero--paper::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 100%),
      url("assets/hero.png") right center / cover no-repeat;
  }

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

  .subpage-hero p:not(.eyebrow) {
    color: var(--ink-60);
  }

  .page-cta {
    padding: 44px 28px;
  }

  .statement-stack article,
  .note-list article {
    gap: 14px;
  }

  .company-menu {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .company-menu p {
    grid-column: 1 / -1;
  }

  .company-content {
    gap: 72px;
  }

  .company-panel--intro {
    padding: 52px 28px;
  }

  .philosophy-types article {
    aspect-ratio: auto;
    border-radius: var(--r-card);
  }

  .company-timeline {
    gap: 36px;
    margin-top: 52px;
  }

  .company-timeline::before {
    left: 8px;
  }

  .company-timeline li {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 38px;
  }

  .company-timeline li::before {
    left: 8px;
  }

  .company-timeline li:nth-child(odd) .timeline-card,
  .company-timeline li:nth-child(even) .timeline-card {
    grid-column: 1;
    text-align: left;
  }

  .partner-form__wide {
    grid-column: auto;
  }

  .partner-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-actions p {
    text-align: left;
  }

  .pharmacist-marquee {
    height: 520px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 420px);
  }

  .pill-nav .btn {
    padding-inline: 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero__image {
    min-height: 720px;
    object-position: 52% top;
  }

  .hero__lead {
    font-size: 18px;
  }

  .mini-card {
    display: none;
  }

  .brand-story__summary h2 {
    font-size: 36px;
  }

  .brand-story__panel p {
    font-size: 20px;
  }

  .declaration h2,
  .section-heading h2,
  .split-heading h2 {
    font-size: 34px;
  }

  .pharmacist-marquee {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    height: 480px;
  }

  .pharmacist-rail--late {
    display: none;
  }

  .pharmacist-card {
    min-height: 160px;
    padding: 18px;
  }

  .brand-photo h3,
  .question-card h3 {
    font-size: 25px;
  }

  .footer-info div,
  .footer-contact div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .question-card {
    padding: 28px 22px;
  }

  .principle-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid strong {
    font-size: 56px;
  }
}
