:root {
  --bg: #f3efe7;
  --paper: #fffaf1;
  --ink: #201b16;
  --muted: #75695b;
  --brown-950: #2e2216;
  --brown-850: #3a2b1c;
  --brown-700: #5a3e25;
  --gold: #b57b36;
  --gold-light: #e4b369;
  --olive: #51614a;
  --teal: #2c6063;
  --line: rgba(46, 34, 22, 0.16);
  --shadow: 0 24px 80px rgba(31, 22, 14, 0.18);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Noto Sans Hebrew",
    "Rubik",
    "Assistant",
    "Segoe UI",
    Arial,
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.gate-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.access-note {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  min-height: 34px;
  padding: 7px 18px;
  background: #171511;
  color: #f8ead8;
  font-size: 0.9rem;
  text-align: center;
}

.access-note a {
  color: var(--gold-light);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background: rgba(243, 239, 231, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #3d352c;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(181, 123, 54, 0.12);
  color: var(--brown-950);
}

.site-nav a[aria-current="page"] {
  background: rgba(81, 97, 74, 0.14);
  color: var(--brown-950);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 10px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(46, 34, 22, 0.18), rgba(46, 34, 22, 0.92) 58%),
    var(--brown-950);
  color: #fff8ed;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background:
    linear-gradient(0deg, rgba(228, 179, 105, 0.24), transparent),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0,
      rgba(0, 0, 0, 0.2) 1px,
      transparent 1px,
      transparent 9px
    );
  opacity: 0.26;
  pointer-events: none;
}

.hero-media {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  opacity: 0.9;
}

.hero-media img {
  width: 100%;
  min-height: calc(100svh - 34px);
  object-fit: cover;
  filter: saturate(0.96) contrast(1.06);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 70px clamp(28px, 5vw, 84px) 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
  line-height: 0.95;
  font-weight: 900;
}

.hero-copy {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 248, 237, 0.9);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--gold);
  color: #fffaf1;
  border-color: rgba(255, 255, 255, 0.18);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #c98b43;
}

.button.secondary {
  background: rgba(255, 250, 241, 0.08);
  color: #fff8ed;
  border-color: rgba(255, 250, 241, 0.35);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 250, 241, 0.16);
}

.hero-strip {
  position: absolute;
  right: clamp(18px, 5vw, 84px);
  left: clamp(18px, 5vw, 84px);
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 250, 241, 0.2);
  background: rgba(32, 27, 22, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.22);
}

.hero-strip div {
  min-width: 0;
  padding: 18px;
  border-inline-start: 1px solid rgba(255, 250, 241, 0.14);
}

.hero-strip div:last-child {
  border-inline-start: 0;
}

.hero-strip span {
  display: block;
  color: rgba(255, 248, 237, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-strip strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: #fff8ed;
  font-size: 1rem;
  line-height: 1.35;
}

.section {
  scroll-margin-top: calc(var(--header-h) + 22px);
  padding: clamp(70px, 9vw, 128px) 24px;
}

#top {
  scroll-margin-top: 0;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.04;
  font-weight: 900;
}

.prose p,
.memorial-copy p,
.documents-layout p,
.contact-layout p,
.legal-copy p {
  margin: 0 0 18px;
  color: #4f453b;
  font-size: 1.1rem;
}

.intro-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.62), rgba(255, 250, 241, 0.2)),
    var(--bg);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.founders {
  background: #fffaf1;
}

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

.founder-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f1e6;
}

.founder-card.accent {
  grid-column: 1 / -1;
  background: var(--olive);
  color: #fffaf1;
  border-color: transparent;
}

.founder-index {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.founder-card.accent .founder-index {
  color: #f1c179;
}

.founder-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.05;
}

.founder-card p {
  margin: 0;
  color: #51483e;
  font-size: 1.03rem;
}

.founder-card p + p {
  margin-top: 14px;
}

.founder-card.accent p {
  color: rgba(255, 250, 241, 0.84);
}

.memorial-band {
  background:
    linear-gradient(180deg, rgba(46, 34, 22, 0.96), rgba(59, 43, 28, 0.98)),
    var(--brown-950);
  color: #fffaf1;
}

.memorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.memorial-copy p {
  color: rgba(255, 250, 241, 0.82);
}

.mark-panel {
  margin: 0;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: #2f2317;
  box-shadow: var(--shadow);
}

.mark-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.mark-panel figcaption {
  padding: 16px 18px 18px;
  color: rgba(255, 250, 241, 0.72);
  font-weight: 900;
  text-align: center;
}

.product-section {
  background: var(--bg);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 20px;
}

.product-facts,
.sensory-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: 0 14px 40px rgba(46, 34, 22, 0.08);
}

.fact-list {
  margin: 0;
}

.fact-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.36fr) minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.fact-list div:last-child {
  border-bottom: 0;
}

.fact-list dt {
  color: var(--muted);
  font-weight: 900;
}

.fact-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.sensory-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(81, 97, 74, 0.08), rgba(255, 250, 241, 0.92)),
    #fffaf1;
}

.sensory-panel h3 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.1;
}

.sensory-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.sensory-panel li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(81, 97, 74, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  font-weight: 900;
}

.sensory-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.visuals-section {
  background: #efe4d4;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(280px, 760px);
  gap: 18px;
  align-items: start;
  justify-content: center;
}

.visual-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: 0 18px 60px rgba(46, 34, 22, 0.12);
}

.visual-grid img {
  width: 100%;
  height: min(78vh, 780px);
  object-fit: contain;
  background: #2e2216;
}

.visual-grid figure:first-child img {
  height: min(84vh, 880px);
}

.visual-grid figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-weight: 900;
}

.documents {
  background: #fffaf1;
}

.documents-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.document-links,
.source-list {
  display: grid;
  gap: 14px;
}

.document-links a,
.source-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f1e6;
}

.document-links a:hover,
.source-list a:hover {
  border-color: rgba(181, 123, 54, 0.55);
}

.document-links span,
.source-list span {
  color: var(--muted);
  font-weight: 800;
}

.document-links strong,
.source-list strong {
  color: var(--brown-950);
  font-size: 1.1rem;
  text-align: left;
}

.media {
  background: #f2ebdf;
}

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

.source-list a {
  align-items: flex-start;
  flex-direction: column;
  min-height: 150px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(44, 96, 99, 0.08), transparent 48%),
    var(--bg);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: 0 18px 60px rgba(46, 34, 22, 0.1);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #3e352d;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(46, 34, 22, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 96, 99, 0.14);
}

.contact-form .button {
  width: 100%;
}

.legal-section {
  padding-block: 48px;
  background: #1d1914;
  color: #fffaf1;
}

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

.legal-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.legal-copy p {
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.98rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 24px 34px;
  background: #14120f;
  color: rgba(255, 250, 241, 0.76);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 900;
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(20, 18, 15, 0.78);
  backdrop-filter: blur(10px);
}

.gate[hidden] {
  display: none;
}

.gate-dialog {
  width: min(480px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: var(--radius);
  background: #fffaf1;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.gate-mark {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  object-fit: cover;
}

.gate-dialog h2 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.08;
}

.gate-dialog p {
  margin: 0 0 22px;
  color: var(--muted);
}

.gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gate-actions .secondary {
  color: var(--brown-950);
  border-color: var(--line);
  background: transparent;
}

.vision-hero {
  position: relative;
  min-height: calc(84svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(46, 34, 22, 0.24), rgba(46, 34, 22, 0.92)),
    var(--brown-950);
  color: #fffaf1;
}

.vision-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(181, 123, 54, 0.24), transparent);
  pointer-events: none;
}

.vision-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}

.vision-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(80px, 12vw, 150px);
}

.vision-hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
  font-weight: 900;
}

.vision-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
}

.vision-section {
  background: #fffaf1;
}

.vision-layout,
.promise-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.vision-prose p,
.promise-layout p {
  margin: 0 0 18px;
  color: #4f453b;
  font-size: 1.1rem;
}

.community-pillars {
  background: #efe4d4;
}

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

.pillar-card {
  min-height: 320px;
  padding: 26px;
  border: 1px solid rgba(46, 34, 22, 0.14);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: 0 16px 44px rgba(46, 34, 22, 0.1);
}

.pillar-card:nth-child(2) {
  background: var(--olive);
  color: #fffaf1;
}

.pillar-card:nth-child(3) {
  background: var(--brown-850);
  color: #fffaf1;
}

.pillar-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.pillar-card:nth-child(2) span,
.pillar-card:nth-child(3) span {
  color: var(--gold-light);
}

.pillar-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.06;
}

.pillar-card p {
  margin: 0;
  color: #51483e;
  font-size: 1.03rem;
}

.pillar-card:nth-child(2) p,
.pillar-card:nth-child(3) p {
  color: rgba(255, 250, 241, 0.84);
}

.promise-band {
  background:
    linear-gradient(90deg, rgba(44, 96, 99, 0.1), transparent 48%),
    var(--bg);
}

.promise-layout .button {
  margin-top: 12px;
}

.kit-hero {
  position: relative;
  min-height: calc(90svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(46, 34, 22, 0.12), rgba(46, 34, 22, 0.94)),
    var(--brown-950);
  color: #fffaf1;
}

.kit-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.32;
}

.kit-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kit-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(84px, 12vw, 150px);
}

.kit-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.96;
  font-weight: 900;
}

.kit-hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(1.12rem, 1.8vw, 1.38rem);
}

.kit-intro {
  background: #fffaf1;
}

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

.kit-choices article,
.copy-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f1e6;
}

.kit-choices span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 900;
}

.kit-choices h2,
.copy-grid h3 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.08;
}

.kit-choices p,
.copy-grid p {
  margin: 0;
  color: #51483e;
}

.pharmacy-sheet {
  background: #efe4d4;
}

.pharmacy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.pharmacy-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--brown-950);
  box-shadow: 0 18px 60px rgba(46, 34, 22, 0.16);
}

.pharmacy-visual img {
  width: 100%;
  max-height: min(86vh, 900px);
  object-fit: contain;
  background: var(--brown-950);
}

.pharmacy-visual figcaption {
  padding: 14px 18px;
  color: rgba(255, 250, 241, 0.76);
  font-weight: 900;
  text-align: center;
}

.pharmacy-copy h2,
.origin-layout h2,
.copy-bank h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.04;
  font-weight: 900;
}

.pharmacy-copy p,
.origin-copy p {
  margin: 18px 0 0;
  color: #4f453b;
  font-size: 1.08rem;
}

.kit-facts {
  display: grid;
  margin: 26px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fffaf1;
}

.kit-facts div {
  display: grid;
  grid-template-columns: minmax(110px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.kit-facts div:last-child {
  border-bottom: 0;
}

.kit-facts dt {
  color: var(--muted);
  font-weight: 900;
}

.kit-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.origin-sheet {
  background: #fffaf1;
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.origin-copy {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8f1e6;
}

.origin-copy p:first-child {
  margin-top: 0;
}

.social-section {
  background:
    linear-gradient(180deg, rgba(46, 34, 22, 0.96), rgba(46, 34, 22, 0.9)),
    var(--brown-950);
  color: #fffaf1;
}

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

.social-card {
  position: relative;
  min-height: 360px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: var(--radius);
}

.social-card img {
  width: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 6px;
}

.social-card > img:first-child {
  height: 48%;
  object-fit: cover;
}

.social-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-weight: 900;
}

.social-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.social-card p {
  margin: 14px 0 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: 1.02rem;
  font-weight: 750;
}

.social-card-dark {
  background: var(--brown-950);
}

.social-card-gold {
  background: linear-gradient(180deg, #6d4828, #b57b36);
}

.social-card-gold img {
  height: 45%;
  object-fit: cover;
  object-position: top;
  opacity: 0.86;
}

.social-card-olive {
  aspect-ratio: 9 / 16;
  background: var(--olive);
}

.social-card-light {
  aspect-ratio: 9 / 16;
  background: #fffaf1;
  color: var(--ink);
}

.social-card-light span {
  color: var(--gold);
}

.social-card-light p {
  color: #51483e;
}

.copy-bank {
  background: #f2ebdf;
}

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

@media (max-width: 980px) {
  .site-header {
    padding-inline: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset-inline: 16px;
    top: calc(var(--header-h) - 4px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffaf1;
    box-shadow: 0 18px 50px rgba(46, 34, 22, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-media img {
    min-height: 100%;
    opacity: 0.34;
  }

  .hero-content {
    padding: 82px 24px 280px;
  }

  .hero h1 {
    max-width: 10ch;
  }

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

  .two-column,
  .memorial-layout,
  .product-layout,
  .documents-layout,
  .contact-layout,
  .pharmacy-layout,
  .origin-layout {
    grid-template-columns: 1fr;
  }

  .founder-grid,
  .source-list,
  .pillar-grid,
  .kit-choices,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    min-height: auto;
  }

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

  .vision-layout,
  .promise-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .access-note {
    flex-direction: column;
    gap: 2px;
    font-size: 0.78rem;
  }

  .site-header {
    height: 68px;
  }

  :root {
    --header-h: 68px;
  }

  .hero-content {
    padding: 64px 18px 360px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .vision-hero {
    min-height: auto;
  }

  .vision-hero-content {
    padding-block: 76px 92px;
  }

  .vision-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .kit-hero {
    min-height: auto;
  }

  .kit-hero-content {
    padding-block: 76px 92px;
  }

  .kit-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-strip {
    right: 14px;
    left: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .hero-strip div {
    padding: 13px 14px;
    border-inline-start: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.12);
  }

  .hero-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 62px 18px;
  }

  .section h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .fact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 17px 18px;
  }

  .kit-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sensory-panel ul {
    grid-template-columns: 1fr;
  }

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

  .social-card {
    min-height: 320px;
  }

  .visual-grid img,
  .visual-grid figure:first-child img {
    height: auto;
    max-height: none;
  }

  .document-links a {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 20px;
  }
}
