:root {
  color-scheme: light;
  --anchor-offset: 1px;
  --ivory: #f6f1eb;
  --cream: #fbf8f3;
  --linen: #e7ded2;
  --parchment: #ded1c3;
  --sand: #c8b9a6;
  --taupe: #8b7967;
  --ink: #282a2a;
  --muted: #67635e;
  --red: #7b1e1e;
  --red-dark: #5d1616;
  --sage: #66715e;
  --white: #fffaf4;
  --line: rgba(40, 42, 42, 0.16);
  --shadow: 0 28px 80px rgba(42, 32, 24, 0.18);
  --radius: 22px;
  --radius-lg: 34px;
  --display: Georgia, "Times New Roman", serif;
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

body.nav-open,
body.lightbox-open,
body.modal-open {
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid #1d4ed8;
  outline-offset: 4px;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

#haltung {
  scroll-margin-top: var(--anchor-offset);
}

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.85rem, 3.75vw, 4.9rem);
}

h1 span {
  color: var(--red);
  font-weight: 500;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

button,
summary {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 100;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--red);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 30px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
  width: min(1550px, calc(100% - 78px));
  min-height: 72px;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 44px));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 178px;
}

.brand img {
  display: block;
  width: 46px;
  height: 58px;
  object-fit: contain;
}

.brand strong,
.site-footer strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 38px);
  min-width: 0;
}

.site-nav a,
.header-cta,
.eyebrow,
.text-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: rgba(40, 42, 42, 0.66);
  font-size: clamp(0.82rem, 0.42vw + 0.58rem, 1rem);
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

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

.header-cta {
  min-width: 180px;
  padding: 17px 28px;
  background: var(--red);
  color: var(--white);
  text-align: center;
  border-radius: 999px;
  text-transform: uppercase;
}

.language-switcher {
  position: relative;
}

.language-pill {
  display: inline-flex;
  min-width: 72px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(40, 42, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(40, 42, 42, 0.72);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0;
}

.language-pill::after {
  margin-left: 6px;
  content: "⌄";
  font-size: 0.8rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid rgba(40, 42, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 18px 50px rgba(42, 32, 24, 0.12);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(40, 42, 42, 0.78);
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
}

.language-menu button:hover,
.language-menu button:focus-visible,
.language-menu button[aria-current="true"] {
  background: rgba(123, 30, 30, 0.08);
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 248, 243, 0.62);
  backdrop-filter: blur(14px);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: var(--cream);
  isolation: isolate;
}

.hero-shell {
  position: relative;
  display: flex;
  width: min(100%, 1500px);
  min-height: 100svh;
  margin-inline: auto;
  overflow: hidden;
  background: linear-gradient(120deg, #fdfcf9 0%, #f5f0ea 48%, #ffffff 100%);
  box-shadow: none;
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.68) 0%, rgba(251, 248, 243, 0.38) 42%, rgba(251, 248, 243, 0.08) 100%),
    linear-gradient(0deg, rgba(251, 248, 243, 0.24), rgba(251, 248, 243, 0));
  content: "";
  pointer-events: none;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(650px, 46%);
  min-height: 100svh;
  padding: 172px 0 178px 56px;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

.hero-copy {
  max-width: 650px;
}

.hero-photo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
}

.hero-photo img {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  top: 190px;
  bottom: auto;
  width: clamp(760px, 64vw, 1120px);
  min-width: 0;
  height: auto;
  max-width: none;
  max-height: min(82svh, 760px);
  object-fit: contain;
}

.hero-photo img {
  object-position: right bottom;
  filter: saturate(1.42) sepia(0) contrast(1.24) brightness(1.02);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(251, 248, 243, 0.2) 0%, rgba(251, 248, 243, 0.03) 42%, rgba(251, 248, 243, 0) 100%),
    linear-gradient(90deg, rgba(251, 248, 243, 0.08), rgba(251, 248, 243, 0));
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--red);
  font-size: clamp(0.88rem, 0.28vw + 0.78rem, 1.05rem);
  font-weight: 800;
}

.eyebrow::after {
  width: 54px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.55;
}

.hero-lede {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(40, 42, 42, 0.68);
  font-size: 1.12rem;
  line-height: 1.85;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  min-width: 224px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(123, 30, 30, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(123, 30, 30, 0.24);
  background: rgba(251, 248, 243, 0.52);
  color: var(--red);
  backdrop-filter: blur(14px);
}

.button-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}

.button-outline {
  border-color: rgba(123, 30, 30, 0.35);
  color: var(--red);
  background: rgba(255, 250, 244, 0.35);
}

.button.full {
  width: 100%;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 54px;
  bottom: 70px;
  display: grid;
  max-width: 300px;
  min-width: 300px;
  padding: 22px 84px 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 18px 60px rgba(35, 25, 18, 0.12);
  backdrop-filter: blur(18px);
  color: var(--ink);
}

.hero-note span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-note span i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(123, 30, 30, 0.08);
}

.hero-note strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-note a {
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(231, 222, 210, 0.6);
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
}

.hero-benefits {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  right: auto;
  display: grid;
  width: min(calc(100% - 112px), 1220px);
  min-height: 74px;
  padding: 12px 18px;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 70px rgba(42, 32, 24, 0.08);
  backdrop-filter: blur(18px);
}

.hero-benefits span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 9px;
  align-items: center;
  padding-right: 10px;
  border-right: 1px solid rgba(40, 42, 42, 0.08);
}

.hero-benefits span:last-child {
  border-right: 0;
}

.hero-benefits svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-benefits strong {
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.2;
}

.hero-benefits small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.trust-strip {
  padding-block: 34px;
  background: linear-gradient(180deg, var(--cream), var(--white));
  border-bottom: 0;
}

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

.trust-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(40, 42, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 20px 60px rgba(42, 32, 24, 0.08);
}

.line-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(123, 30, 30, 0.14);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--red);
}

.line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.trust-grid h2 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.trust-grid p {
  font-size: 0.92rem;
}

.section {
  padding-block: 110px;
}

.split-grid,
.story-grid,
.feature-grid,
.guide-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
}

.split-copy p,
.story-copy p,
.feature-copy p,
.guide-copy p,
.contact-grid p {
  max-width: 640px;
  margin-top: 22px;
}

.split-copy h2,
.story-copy h2,
.feature-copy h2,
.guide-grid h2,
.contact-grid h2 {
  max-width: 720px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  color: var(--red);
}

.text-link::after {
  content: "→";
  font-size: 1rem;
}

.savannah-facts {
  display: grid;
  margin-top: 18px;
  gap: 12px;
}

.savannah-facts p {
  margin-top: 0;
  color: rgba(40, 42, 42, 0.74);
  font-size: 0.86rem;
  line-height: 1.62;
}

.savannah-facts strong {
  color: var(--red);
  font-weight: 850;
}

.image-composition {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 14px;
  align-items: end;
}

.image-composition img,
.media-panel img,
.feature-media img,
.animal-card img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-composition img,
.media-panel,
.feature-media,
.animal-card,
.gallery-item,
.gallery-item img,
.contact-panel {
  border-radius: var(--radius);
}

.image-composition img,
.media-panel,
.feature-media,
.animal-card,
.gallery-item {
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(42, 32, 24, 0.1);
}

.image-tall {
  aspect-ratio: 4 / 5;
}

.image-small {
  aspect-ratio: 4 / 4.8;
  margin-bottom: 42px;
  box-shadow: var(--shadow);
}

.story-section {
  background: var(--cream);
}

.media-panel {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.feature-band {
  padding-block: 110px;
  background: var(--linen);
}

.feature-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.large-copy {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.25;
}

.feature-media {
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading p:last-child {
  margin-top: 20px;
}

.section-heading.compact {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.compact .eyebrow {
  justify-content: center;
}

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

.animal-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  background: var(--white);
}

.animal-card img {
  flex: 0 0 360px;
  height: 360px;
}

.animal-card > div {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  background: var(--white);
  padding: 30px;
}

.animal-card h3 {
  margin-bottom: 18px;
}

.dark-section {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(circle at 26% 48%, rgba(231, 222, 210, 0.22), transparent 34%),
    linear-gradient(120deg, #fffdf9 0%, #fbf8f3 100%);
}

.responsibility-shell {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 76px 64px;
}

.responsibility-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.responsibility-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.responsibility-visual {
  align-self: stretch;
  min-height: 660px;
  position: relative;
}

.responsibility-visual img {
  position: absolute;
  left: 50%;
  top: 52%;
  bottom: auto;
  width: min(860px, 150%);
  max-width: none;
  transform: translate(-58%, -50%);
  filter: saturate(1.02) contrast(1.02);
}

.responsibility-copy {
  padding: 0;
}

.responsibility-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.responsibility-copy > .responsibility-legal-note {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  max-width: 620px;
  margin-top: 22px;
  padding: 16px 18px;
  align-items: start;
  border: 1px solid rgba(123, 30, 30, 0.14);
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 14px 36px rgba(42, 32, 24, 0.06);
}

.responsibility-legal-note span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(123, 30, 30, 0.08);
  color: var(--red);
}

.responsibility-legal-note svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.responsibility-legal-note p {
  margin: 0;
  color: rgba(40, 42, 42, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.responsibility-eyebrow {
  gap: 14px;
  font-size: 0.92rem;
  font-weight: 800;
}

.heading-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--red);
}

.heading-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.responsibility-copy h2 {
  max-width: 600px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.98;
}

.responsibility-list {
  display: grid;
  max-width: 100%;
  margin: 26px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
}

.responsibility-list li {
  position: relative;
  min-height: 218px;
  padding: 14px 12px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.responsibility-list li:not(:last-child)::after {
  display: none;
}

.responsibility-list li > span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.responsibility-list i {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--red);
  font-style: normal;
}

.responsibility-list svg,
.responsibility-benefits svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.responsibility-list h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.32;
}

.responsibility-list p {
  color: rgba(40, 42, 42, 0.68);
  font-size: 0.73rem;
  line-height: 1.42;
}

.responsibility-benefits {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 26px 0 0;
  padding: 14px 20px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-radius: 22px;
  background: rgba(231, 222, 210, 0.42);
}

.responsibility-benefits span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding-right: 14px;
  border-right: 1px solid rgba(40, 42, 42, 0.08);
}

.responsibility-benefits span:last-child {
  border-right: 0;
}

.responsibility-benefits svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: var(--red);
}

.responsibility-benefits strong {
  color: rgba(40, 42, 42, 0.78);
  font-size: 0.82rem;
}

.responsibility-benefits small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.process-section {
  padding-block: 92px;
  background:
    radial-gradient(circle at 50% 12%, rgba(231, 222, 210, 0.42), transparent 42%),
    var(--cream);
}

.process-shell {
  width: min(1220px, calc(100% - 44px));
  margin-inline: auto;
}

.process-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 52px;
}

.process-mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.process-mini-brand img {
  width: 34px;
  height: 42px;
  object-fit: contain;
}

.process-top-cta {
  min-width: 186px;
}

.process-section .section-heading {
  max-width: 1100px;
  margin: 0 auto 44px;
}

.process-section .section-heading h2 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.98;
}

.process-section .section-heading h2 span {
  color: var(--red);
  font-style: normal;
}

.process-section .section-heading p:last-child {
  max-width: none;
  margin-top: 18px;
  color: rgba(103, 99, 94, 0.78);
  font-size: 1.08rem;
}

.process-section .section-heading p:last-child strong {
  color: var(--red);
  font-weight: 900;
}

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

.process-list > li {
  position: relative;
  display: flex;
  min-height: 462px;
  padding: 92px 24px 24px;
  flex-direction: column;
  border: 1px solid rgba(40, 42, 42, 0.09);
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.64);
  box-shadow: 0 18px 48px rgba(42, 32, 24, 0.06);
  text-align: center;
}

.process-list > li:not(:last-child)::after {
  display: none;
  content: none;
}

.process-list > li:not(:last-child)::before {
  display: none;
  content: none;
}

.process-list span {
  display: block;
  margin: 0 auto;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
}

.process-list .process-icon {
  position: absolute;
  top: 42px;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0;
  transform: translateX(-50%);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  color: var(--red);
}

.process-list > li > span:first-child {
  position: absolute;
  top: -21px;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 14px 30px rgba(123, 30, 30, 0.24);
}

.process-icon svg,
.process-benefits svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.process-list h3 {
  min-height: 44px;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.process-list h3::after {
  display: block;
  width: 48px;
  height: 1px;
  margin: 14px auto 0;
  background: rgba(123, 30, 30, 0.48);
  content: "";
}

.process-list p {
  max-width: 245px;
  margin-inline: auto;
  color: rgba(40, 42, 42, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

.process-detail-list {
  display: grid;
  margin: auto 0 0;
  padding: 16px 18px;
  gap: 12px;
  border-radius: 0;
  background: transparent;
  color: rgba(40, 42, 42, 0.86);
  font-size: 0.78rem;
  line-height: 1.3;
  list-style: none;
  text-align: left;
}

.process-detail-list li {
  display: grid;
  min-height: 0;
  padding: 0;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.process-list .process-detail-list li:not(:last-child)::before,
.process-list .process-detail-list li:not(:last-child)::after,
.process-detail-list li::before,
.process-detail-list li::after {
  display: none;
  content: none;
}

.process-detail-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.readiness-section {
  padding-block: 96px;
  background: var(--linen);
}

.readiness-shell {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.readiness-intro {
  display: grid;
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.readiness-intro .eyebrow {
  justify-content: center;
}

.readiness-intro h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.98;
}

.readiness-intro p:last-child {
  max-width: 780px;
  margin-top: 20px;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.75;
}

.readiness-checklist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(40, 42, 42, 0.08);
  border-radius: 28px;
  background: rgba(40, 42, 42, 0.08);
  box-shadow: 0 28px 80px rgba(42, 32, 24, 0.08);
}

.readiness-checklist article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 250, 244, 0.78);
}

.readiness-checklist span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.readiness-checklist h3 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.readiness-checklist p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.checklist-paper {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.checklist-paper-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(40, 42, 42, 0.12);
}

.checklist-brand {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-paper h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  font-weight: 600;
  line-height: 0.98;
}

.checklist-paper-hero p:last-child {
  max-width: 700px;
  margin-top: 18px;
  color: rgba(40, 42, 42, 0.72);
  font-size: 1rem;
  line-height: 1.65;
}

.checklist-stamp {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(123, 30, 30, 0.35);
  border-radius: 50%;
  color: var(--red);
  text-align: center;
}

.checklist-stamp strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
}

.checklist-stamp span {
  display: block;
  margin-top: 8px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-notice {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 30px;
  padding: 16px 18px;
  align-items: start;
  border: 1px solid rgba(123, 30, 30, 0.14);
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.72);
  box-shadow: 0 14px 36px rgba(42, 32, 24, 0.06);
}

.checklist-notice span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(123, 30, 30, 0.08);
  color: var(--red);
}

.checklist-notice svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.checklist-notice p {
  margin: 0;
  color: rgba(40, 42, 42, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.checklist-grid article {
  min-height: 236px;
  padding: 22px;
  border: 1px solid rgba(40, 42, 42, 0.1);
  border-radius: 10px;
  background: rgba(255, 250, 244, 0.84);
}

.checklist-grid article > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.checklist-grid span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.checklist-grid em {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(102, 113, 94, 0.13);
  color: var(--sage);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.checklist-grid h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.05;
}

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

.checklist-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.checklist-grid li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "";
}

.checklist-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(123, 30, 30, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(130deg, rgba(123, 30, 30, 0.08), rgba(231, 222, 210, 0.6)),
    rgba(255, 250, 244, 0.92);
}

.checklist-download span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checklist-download h3 {
  margin-bottom: 8px;
  color: rgba(40, 42, 42, 0.92);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.checklist-download p {
  color: rgba(40, 42, 42, 0.74);
  font-size: 0.86rem;
  line-height: 1.5;
}

.checklist-download .button {
  min-width: 280px;
}

.readiness-links {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.readiness-links a {
  position: relative;
  display: grid;
  min-height: 118px;
  align-content: center;
  padding: 24px 76px 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(40, 42, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 250, 244, 0.72);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(42, 32, 24, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.readiness-links a::after {
  position: absolute;
  right: 24px;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(123, 30, 30, 0.22);
  background: rgba(255, 250, 244, 0.86);
  color: var(--red);
  content: "↗";
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.readiness-links a:hover,
.readiness-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(123, 30, 30, 0.28);
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 18px 44px rgba(42, 32, 24, 0.09);
}

.readiness-links a:hover::after,
.readiness-links a:focus-visible::after {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.readiness-links a::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: rgba(123, 30, 30, 0.7);
  content: "";
}

.readiness-links span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.readiness-links small {
  display: block;
  max-width: 430px;
  margin-top: 8px;
  color: rgba(40, 42, 42, 0.62);
  font-size: 0.86rem;
  line-height: 1.45;
}

.process-benefits {
  display: grid;
  max-width: 960px;
  margin: 52px auto 0;
  padding: 22px 36px;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  border-radius: 28px;
  background: rgba(231, 222, 210, 0.46);
}

.process-benefits span {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 14px;
  align-items: center;
}

.process-benefits svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--red);
}

.process-benefits strong {
  color: rgba(40, 42, 42, 0.78);
  font-size: 0.9rem;
}

.process-benefits small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.3;
}

.gallery-section {
  padding-block: 110px;
  background: var(--white);
}

.instagram-follow {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 52px auto 0;
  text-align: center;
}

.instagram-follow p {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(40, 42, 42, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.instagram-link {
  position: relative;
  display: inline-grid;
  width: fit-content;
  min-height: 70px;
  align-items: center;
  grid-template-columns: 44px auto;
  gap: 14px;
  margin-top: 0;
  padding: 12px 58px 12px 14px;
  overflow: hidden;
  border: 1px solid rgba(123, 30, 30, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.96), rgba(246, 241, 235, 0.7)),
    var(--white);
  color: var(--red);
  box-shadow: 0 18px 48px rgba(42, 32, 24, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.instagram-link::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(123, 30, 30, 0.08), rgba(189, 90, 29, 0.05), transparent 62%);
  content: "";
  pointer-events: none;
}

.instagram-link::after {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  content: "↗";
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

.instagram-link:hover,
.instagram-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(123, 30, 30, 0.34);
  box-shadow: 0 24px 58px rgba(42, 32, 24, 0.12);
}

.instagram-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
}

.instagram-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.instagram-link > span:last-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
}

.instagram-link strong {
  color: rgba(40, 42, 42, 0.9);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.instagram-link small {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--linen);
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.04);
}

.guide-section {
  background: var(--ivory);
}

.guide-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: start;
}

.generation-section {
  padding-block: 92px;
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 222, 210, 0.28), transparent 38%),
    linear-gradient(180deg, var(--white), var(--cream));
}

.generation-shell {
  width: min(1480px, calc(100% - 44px));
  margin-inline: auto;
}

.generation-heading {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.generation-heading .eyebrow {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.generation-heading .eyebrow::before,
.generation-heading .eyebrow::after {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: rgba(123, 30, 30, 0.38);
  content: "";
}

.generation-heading h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.98;
}

.generation-heading p:last-child {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(40, 42, 42, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.generation-carousel {
  position: relative;
}

.generation-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
  overflow-x: auto;
  padding: 6px 2px 22px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.generation-grid::-webkit-scrollbar {
  height: 8px;
}

.generation-grid::-webkit-scrollbar-track {
  background: rgba(40, 42, 42, 0.08);
  border-radius: 999px;
}

.generation-grid::-webkit-scrollbar-thumb {
  background: rgba(123, 30, 30, 0.46);
  border-radius: 999px;
}

.generation-card {
  position: relative;
  display: flex;
  flex: 0 0 clamp(258px, 23vw, 314px);
  min-height: 560px;
  padding: 50px 22px 20px;
  flex-direction: column;
  border: 1px solid rgba(40, 42, 42, 0.11);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 244, 0.66)),
    var(--white);
  box-shadow: 0 22px 62px rgba(42, 32, 24, 0.055);
  color: var(--ink);
  scroll-snap-align: start;
  text-align: center;
}

.generation-card.is-featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: 0 24px 72px rgba(123, 30, 30, 0.12);
}

.generation-badge {
  position: absolute;
  top: 16px;
  left: 50%;
  display: inline-flex;
  transform: translateX(-50%);
  padding: 6px 17px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.generation-card h3 {
  margin: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 0.9;
}

.generation-type {
  margin-top: 8px;
  color: rgba(40, 42, 42, 0.94);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.generation-serval {
  display: grid;
  min-height: 66px;
  align-content: center;
  margin-top: 10px;
  gap: 3px;
  color: var(--ink);
}

.generation-serval::before {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  content: "DNA";
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.generation-serval strong {
  font-size: 1rem;
}

.generation-serval span,
.generation-visual p span {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.generation-visual {
  position: relative;
  display: grid;
  min-height: 236px;
  margin: 4px 0 16px;
  place-items: end center;
}

.generation-visual img {
  position: absolute;
  bottom: 6px;
  left: 52%;
  width: auto;
  height: calc(var(--cat-height) * 0.82);
  max-width: 76%;
  background: transparent;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 14px rgba(42, 32, 24, 0.16));
}

.height-ruler {
  position: absolute;
  bottom: 2px;
  left: 7px;
  display: flex;
  width: 25px;
  height: 216px;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid rgba(40, 42, 42, 0.36);
  background-image: repeating-linear-gradient(to bottom, rgba(40, 42, 42, 0.36) 0 1px, transparent 1px 14px);
  background-position: left top;
  background-size: 8px 100%;
  background-repeat: repeat-y;
  color: rgba(40, 42, 42, 0.78);
  font-size: 0.58rem;
  line-height: 1;
  text-align: left;
}

.height-ruler b {
  margin-left: 8px;
  font-weight: 600;
}

.generation-visual p {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  gap: 3px;
  margin: 0;
  text-align: right;
}

.generation-visual p strong {
  font-size: 0.96rem;
}

.generation-card ul {
  display: grid;
  min-height: 74px;
  margin: 0 0 12px;
  padding: 0;
  gap: 3px;
  color: rgba(40, 42, 42, 0.76);
  font-size: 0.75rem;
  line-height: 1.12;
  list-style: none;
  text-align: left;
}

.generation-card li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 5px;
  align-items: start;
}

.generation-card li::before {
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border: 1px solid rgba(40, 42, 42, 0.28);
  border-radius: 50%;
  color: var(--accent);
  content: "";
}

.paw-rating {
  display: flex;
  min-height: 18px;
  justify-content: center;
  gap: 8px;
}

.paw-rating span {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 13px;
  border-radius: 50% 50% 46% 46%;
  background: var(--accent);
  transform: rotate(-8deg);
}

.paw-rating span::before,
.paw-rating span::after {
  position: absolute;
  top: -5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  color: var(--accent);
  content: "";
}

.paw-rating span::before {
  left: 2px;
}

.paw-rating span::after {
  right: 2px;
}

.paw-rating .is-empty {
  border: 1px solid rgba(40, 42, 42, 0.25);
  background: transparent;
}

.paw-rating .is-empty::before,
.paw-rating .is-empty::after {
  border: 1px solid rgba(40, 42, 42, 0.25);
  background: var(--white);
}

.generation-character {
  display: block;
  margin-top: 10px;
  color: rgba(40, 42, 42, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.generation-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(123, 30, 30, 0.18);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 18px 44px rgba(42, 32, 24, 0.14);
  color: var(--red);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.generation-arrow:hover,
.generation-arrow:focus-visible {
  background: var(--red);
  color: var(--white);
}

.generation-arrow-prev {
  left: -18px;
}

.generation-arrow-next {
  right: -18px;
}

.generation-scale {
  display: grid;
  margin: 32px auto 28px;
  grid-template-columns: auto minmax(80px, 1fr) auto minmax(80px, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  color: rgba(40, 42, 42, 0.82);
}

.generation-scale strong {
  color: var(--red);
  font-size: 1rem;
  text-transform: uppercase;
}

.generation-scale strong:last-child {
  color: #637f91;
}

.generation-scale span {
  height: 1px;
  background: linear-gradient(90deg, var(--red), rgba(123, 30, 30, 0.25));
}

.generation-scale p span {
  display: inline;
  height: auto;
  background: none;
}

.generation-scale span:nth-of-type(2) {
  background: linear-gradient(90deg, rgba(102, 113, 94, 0.25), #637f91);
}

.generation-scale p {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.price-orientation {
  max-width: 1060px;
  margin: 56px auto 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.price-orientation-head {
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.price-orientation-head h3 {
  margin-bottom: 12px;
  color: var(--red);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.05;
}

.price-orientation-head p {
  color: rgba(40, 42, 42, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.price-list {
  display: grid;
  max-width: 860px;
  margin: 24px auto 0;
  padding: 0;
  gap: 0;
  border-top: 1px solid rgba(40, 42, 42, 0.12);
  list-style: none;
}

.price-card {
  display: grid;
  min-height: 0;
  padding: 16px 0;
  grid-template-columns: 78px minmax(185px, 225px) minmax(250px, 40ch);
  gap: 18px;
  justify-content: center;
  align-items: baseline;
  border-bottom: 1px solid rgba(40, 42, 42, 0.12);
  background: transparent;
}

.price-card span {
  display: inline-flex;
  width: fit-content;
  min-width: 54px;
  padding: 6px 10px;
  justify-content: center;
  border-radius: 999px;
  background: rgba(123, 30, 30, 0.12);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.price-card p {
  margin: 0;
  max-width: 44ch;
  color: rgba(40, 42, 42, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-card strong {
  color: rgba(40, 42, 42, 0.92);
  font-size: 1rem;
  line-height: 1.32;
}

.price-card p {
  margin-top: 0;
  color: rgba(40, 42, 42, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.price-card.is-featured {
  border-color: rgba(123, 30, 30, 0.28);
  background: transparent;
  box-shadow: none;
}

.generation-support {
  display: grid;
  padding: 24px 28px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-radius: 26px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 20px 70px rgba(42, 32, 24, 0.07);
}

.generation-support article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid rgba(40, 42, 42, 0.1);
}

.generation-support article:last-child {
  border-right: 0;
}

.generation-support span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 900;
}

.generation-support article:first-child span {
  background: var(--red);
  color: var(--white);
}

.generation-support h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.generation-support p {
  color: rgba(40, 42, 42, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.faq-section {
  padding-block: 96px;
  background: var(--white);
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  content: "+";
  color: var(--red);
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  padding-bottom: 24px;
}

.contact-section {
  padding-block: 110px;
  background: var(--linen);
}

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

.contact-panel {
  padding: 38px;
  background: transparent;
  box-shadow: none;
}

.contact-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-panel > a:not(.button) {
  display: block;
  color: var(--red);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1.1;
}

.contact-panel p {
  margin-block: 24px;
}

.contact-panel .button + .button {
  margin-top: 14px;
}

.site-footer {
  padding-block: 56px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto) auto;
  gap: 34px;
  align-items: center;
}

.site-footer p,
.site-footer a,
.site-footer button {
  color: rgba(255, 250, 244, 0.72);
}

.site-footer p {
  margin-top: 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer nav a,
.site-footer nav button {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
}

.site-footer nav button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 244, 0.72);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.site-footer nav button:hover,
.site-footer nav button:focus-visible {
  background: transparent;
  color: var(--white);
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

.legal-modal {
  width: min(780px, calc(100% - 32px));
  max-height: min(820px, calc(100svh - 40px));
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
  color: var(--ink);
}

.legal-modal::backdrop {
  background: rgba(18, 14, 12, 0.62);
  backdrop-filter: blur(12px);
}

.legal-modal-panel {
  position: relative;
  max-height: min(820px, calc(100svh - 40px));
  overflow: auto;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.96), rgba(246, 241, 235, 0.96)),
    var(--white);
  box-shadow: 0 34px 100px rgba(18, 14, 12, 0.24);
}

.legal-modal h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content section {
  padding: 18px;
  border: 1px solid rgba(40, 42, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.legal-content h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-content p {
  font-size: 0.96rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--red);
  font-weight: 700;
}

.legal-warning {
  color: var(--red);
  font-weight: 850;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(40, 42, 42, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--red);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  grid-template-columns: minmax(54px, 1fr) minmax(0, 1120px) minmax(54px, 1fr);
  padding: clamp(16px, 4vw, 30px);
  background: rgba(18, 14, 12, 0.88);
  touch-action: pan-y;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  display: grid;
  grid-column: 2;
  width: min(1120px, 100%);
  height: min(82vh, 820px);
  margin: 0;
  place-items: center;
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-count {
  margin-top: 14px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 244, 0.3);
  background: rgba(255, 250, 244, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-nav {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 250, 244, 0.28);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.1);
  color: var(--white);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.lightbox-next {
  grid-column: 3;
  justify-self: start;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 250, 244, 0.2);
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-panel {
  display: grid;
  width: min(1040px, 100%);
  margin-inline: auto;
  padding: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.98), rgba(246, 241, 235, 0.98)),
    var(--white);
  box-shadow: 0 28px 90px rgba(18, 14, 12, 0.22);
  pointer-events: auto;
}

.cookie-banner .eyebrow,
.cookie-modal .eyebrow {
  margin-bottom: 10px;
  font-size: 0.78rem;
}

.cookie-banner h2,
.cookie-modal h2 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.3;
}

.cookie-banner p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .button,
.cookie-modal-actions .button {
  min-width: 0;
  min-height: 46px;
  padding-inline: 18px;
  font-size: 0.72rem;
}

.cookie-modal {
  width: min(640px, calc(100% - 32px));
  max-height: min(760px, calc(100svh - 40px));
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  color: var(--ink);
}

.cookie-modal::backdrop {
  background: rgba(18, 14, 12, 0.62);
  backdrop-filter: blur(12px);
}

.cookie-modal-panel {
  position: relative;
  display: grid;
  gap: 16px;
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(255, 250, 244, 0.98), rgba(246, 241, 235, 0.98)),
    var(--white);
  box-shadow: 0 34px 100px rgba(18, 14, 12, 0.24);
}

.cookie-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(40, 42, 42, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
}

label.cookie-choice {
  cursor: pointer;
}

.cookie-choice h3 {
  margin: 0 0 6px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.3;
}

.cookie-choice p {
  font-size: 0.84rem;
  line-height: 1.5;
}

.cookie-choice span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  white-space: nowrap;
}

.cookie-choice input {
  width: 24px;
  height: 24px;
  accent-color: var(--red);
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: fixed;
    top: 92px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .language-switcher {
    display: block;
    grid-column: 4;
    justify-self: end;
  }

  .language-menu {
    right: 0;
  }

  .generation-shell {
    width: min(100% - 28px, 920px);
  }

  .generation-grid {
    display: flex;
    padding: 4px 4px 18px;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .generation-card {
    flex-basis: clamp(252px, 42vw, 320px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .generation-arrow-prev {
    left: -6px;
  }

  .generation-arrow-next {
    right: -6px;
  }

  .generation-scale {
    grid-template-columns: auto 1fr auto;
  }

  .generation-scale p:nth-of-type(2),
  .generation-scale > span:nth-of-type(2),
  .generation-scale strong:last-child {
    display: none;
  }

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

  .generation-support article:nth-child(2) {
    border-right: 0;
  }

  .hero {
    padding: 0;
  }

  .hero-shell {
    display: block;
  }

  .hero-panel {
    width: min(640px, 68%);
    min-height: 620px;
    padding: 142px 52px 72px;
  }

  .hero-photo {
    min-height: 520px;
  }

  .hero-photo img {
    right: 0;
    top: 190px;
    bottom: auto;
    width: min(1060px, 124vw);
    max-height: none;
    object-position: right bottom;
  }

  .hero-note {
    right: 32px;
    bottom: 32px;
  }

  .hero-benefits {
    left: 50%;
    right: auto;
    bottom: 36px;
    width: min(calc(100% - 104px), 900px);
    transform: translateX(-50%);
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions .button,
  .button-row .button {
    min-height: 54px;
    padding-inline: 22px;
    font-size: 0.76rem;
  }

  .hero-actions .button-primary,
  .button-row .button-primary {
    min-width: 196px;
  }

  @media (min-width: 901px) {
    .hero-panel {
      min-height: 690px;
    }

    .hero-photo img {
      width: min(1120px, 112vw);
    }
  }

  @media (max-width: 900px) {
    .hero-panel {
      width: min(560px, 72%);
      min-height: 670px;
    }

    .hero-photo img {
      width: min(1020px, 132vw);
    }
  }

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

  .process-shell {
    width: min(100% - 32px, 760px);
  }

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

  .process-list > li {
    min-height: 390px;
    padding: 84px 18px 18px;
  }

  .process-list .process-icon {
    top: 36px;
    width: 48px;
    height: 48px;
  }

  .process-list > li > span:first-child {
    top: -18px;
    left: 50%;
    width: 36px;
    height: 36px;
    transform: translateX(-50%);
  }

  .process-list h3 {
    min-height: 34px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.25;
  }

  .process-list p {
    max-width: none;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .process-detail-list {
    padding: 14px;
    gap: 10px;
    font-size: 0.74rem;
  }

  .process-list > li:not(:last-child)::after {
    display: none;
  }

  .process-list > li:not(:last-child)::before {
    display: none;
  }

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

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

  .checklist-paper-hero,
  .checklist-grid {
    grid-template-columns: 1fr 1fr;
  }

  .checklist-paper {
    padding: 22px;
  }

  .checklist-paper-hero {
    gap: 18px;
    align-items: center;
    padding-bottom: 14px;
  }

  .checklist-paper h3 {
    font-size: clamp(1.95rem, 4.2vw, 3.1rem);
    line-height: 0.96;
  }

  .checklist-paper-hero p:last-child {
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .checklist-stamp {
    width: 106px;
    height: 106px;
  }

  .checklist-stamp strong {
    font-size: 1.9rem;
  }

  .checklist-stamp span {
    margin-top: 4px;
    font-size: 0.62rem;
  }

  .checklist-notice {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin: 16px 0;
    padding: 14px;
  }

  .checklist-notice span {
    width: 30px;
    height: 30px;
  }

  .checklist-notice p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .checklist-download {
    gap: 16px;
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 16px;
  }

  .checklist-download span {
    margin-bottom: 6px;
    font-size: 0.66rem;
  }

  .checklist-download h3 {
    margin-bottom: 6px;
    font-size: 0.96rem;
    line-height: 1.28;
  }

  .checklist-download p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .checklist-download .button {
    min-width: 220px;
    min-height: 50px;
    padding-inline: 20px;
    font-size: 0.76rem;
  }

  .readiness-links {
    grid-template-columns: 1fr;
  }

  .checklist-download {
    flex-direction: column;
    align-items: flex-start;
  }

  .checklist-download .button {
    min-width: 0;
  }

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

  .price-card {
    grid-template-columns: 70px minmax(165px, 210px) minmax(240px, 38ch);
  }

  .trust-grid article:nth-child(3) {
    border-left: 1px solid rgba(40, 42, 42, 0.08);
  }

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

  .copyright {
    grid-column: 1 / -1;
  }

  .split-grid,
  .story-grid,
  .feature-grid,
  .guide-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .story-grid .media-panel {
    order: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --anchor-offset: 1px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 8px 10px;
    gap: 8px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    display: block;
    width: 34px;
    height: 42px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .site-nav {
    top: 82px;
    right: 10px;
    left: 10px;
  }

  .language-pill {
    min-width: 58px;
    min-height: 44px;
    font-size: 0.82rem;
  }

  .language-menu {
    min-width: min(190px, calc(100vw - 28px));
  }

  .hero {
    min-height: auto;
    padding: 0;
    background: var(--cream);
  }

  .hero-shell {
    min-height: auto;
    box-shadow: none;
  }

  .hero-shell::before {
    background:
      linear-gradient(90deg, rgba(251, 248, 243, 0.68) 0%, rgba(251, 248, 243, 0.38) 42%, rgba(251, 248, 243, 0.08) 100%),
      linear-gradient(0deg, rgba(251, 248, 243, 0.24), rgba(251, 248, 243, 0));
  }

  .hero-panel {
    width: 100%;
    min-height: 760px;
    padding: 128px 28px 300px;
  }

  .hero-photo {
    min-height: 100%;
  }

  .hero-photo img {
    right: 0;
    top: 150px;
    bottom: auto;
    width: 820px;
    min-width: 0;
    max-height: none;
    object-position: right bottom;
    filter: saturate(1.42) sepia(0) contrast(1.24) brightness(1.02);
  }

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

  .hero-note {
    right: 18px;
    bottom: 112px;
    left: 18px;
    min-width: 0;
    max-width: none;
    padding-right: 78px;
  }

  .hero-benefits {
    right: auto;
    bottom: 90px;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
    min-height: auto;
    padding: 14px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-radius: 18px;
  }

  .hero-benefits span {
    grid-template-columns: 28px 1fr;
    gap: 0 8px;
    padding-right: 0;
    border-right: 0;
  }

  .hero-benefits svg {
    width: 24px;
    height: 24px;
  }

  .hero-benefits strong {
    font-size: 0.72rem;
  }

  .hero-benefits small {
    font-size: 0.68rem;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
    max-width: 560px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    margin-top: 230px;
    max-width: 360px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 0;
    min-height: 54px;
    padding-inline: 24px;
  }

  .hero-actions .button-primary {
    min-width: 238px;
  }

  .button-secondary {
    width: auto;
    align-self: flex-start;
  }

  .trust-grid,
  .animal-grid,
  .process-list,
  .responsibility-list,
  .readiness-checklist,
  .savannah-facts,
  .price-list,
  .gallery-grid,
  .generation-support,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-grid article,
  .trust-grid article:nth-child(3) {
    min-height: auto;
    padding: 24px;
    border: 1px solid rgba(40, 42, 42, 0.08);
  }

  .section,
  .feature-band,
  .readiness-section,
  .gallery-section,
  .generation-section,
  .contact-section {
    padding-block: 74px;
  }

  .image-composition {
    grid-template-columns: 1fr;
  }

  .image-tall,
  .image-small {
    aspect-ratio: 4 / 3;
    margin: 0;
  }

  .animal-card {
    grid-template-rows: none;
  }

  .animal-card img {
    flex-basis: 300px;
    height: 300px;
  }

  .dark-section {
    min-height: auto;
  }

  .responsibility-shell {
    width: min(100% - 28px, 1120px);
    padding-block: 58px;
  }

  .responsibility-topline {
    margin-bottom: 28px;
  }

  .responsibility-topline .button {
    display: none;
  }

  .responsibility-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .responsibility-visual {
    min-height: 420px;
    order: 2;
  }

  .responsibility-visual img {
    left: 50%;
    top: 52%;
    bottom: auto;
    width: min(720px, 126vw);
    transform: translate(-50%, -50%);
  }

  .responsibility-copy {
    padding: 0;
  }

  .responsibility-copy h2 {
    font-size: 2.35rem;
  }

  .responsibility-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .responsibility-list li {
    min-height: auto;
    padding: 22px;
  }

  .responsibility-list li:not(:last-child)::after {
    display: none;
  }

  .responsibility-benefits {
    margin-left: 0;
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .responsibility-benefits span {
    border-right: 0;
  }

  .process-section {
    padding-block: 64px;
  }

  .process-shell {
    width: min(100% - 28px, 560px);
  }

  .process-topline {
    margin-bottom: 36px;
  }

  .process-top-cta {
    display: none;
  }

  .process-section .section-heading h2 {
    font-size: 2.35rem;
  }

  .readiness-shell {
    width: min(100% - 28px, 560px);
  }

  .readiness-intro h2 {
    font-size: 2.35rem;
  }

  .readiness-checklist article {
    min-height: auto;
    padding: 24px;
  }

  .checklist-paper {
    padding: 18px;
  }

  .checklist-paper-hero,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .checklist-paper-hero {
    gap: 16px;
    padding-bottom: 18px;
    align-items: start;
  }

  .checklist-brand {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .checklist-paper h3 {
    font-size: 2.25rem;
    line-height: 0.96;
  }

  .checklist-paper-hero p:last-child {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .checklist-stamp {
    display: inline-grid;
    width: auto;
    height: auto;
    justify-self: start;
    padding: 8px 12px;
    grid-template-columns: auto auto;
    gap: 8px;
    align-items: baseline;
    border-radius: 999px;
  }

  .checklist-stamp strong {
    font-size: 1.35rem;
  }

  .checklist-stamp span {
    margin-top: 0;
    font-size: 0.58rem;
  }

  .checklist-notice {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    margin: 16px 0;
    padding: 12px;
  }

  .checklist-notice span {
    width: 28px;
    height: 28px;
  }

  .checklist-notice p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .checklist-grid {
    gap: 10px;
  }

  .checklist-grid article {
    min-height: auto;
    padding: 16px;
  }

  .checklist-grid article > div {
    margin-bottom: 12px;
  }

  .checklist-grid span {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .checklist-grid em {
    padding: 5px 9px;
    font-size: 0.62rem;
  }

  .checklist-grid h4 {
    margin-bottom: 10px;
    font-size: 1.28rem;
  }

  .checklist-grid ul {
    gap: 7px;
  }

  .checklist-grid li {
    padding-left: 18px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .checklist-grid li::before {
    width: 7px;
    height: 7px;
    border-width: 1px;
  }

  .checklist-download {
    display: grid;
  }

  .readiness-links {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .checklist-download {
    gap: 14px;
    margin-top: 16px;
    padding: 16px;
    border-radius: 14px;
  }

  .checklist-download span {
    margin-bottom: 6px;
    font-size: 0.62rem;
  }

  .checklist-download h3 {
    margin-bottom: 6px;
    font-size: 1.45rem;
    line-height: 1.05;
  }

  .checklist-download p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .checklist-download .button {
    min-width: 0;
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.76rem;
  }

  .readiness-links a {
    min-height: 0;
    padding: 18px 72px 18px 18px;
    border-radius: 14px;
    align-content: start;
  }

  .readiness-links a::after {
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .readiness-links a::before {
    position: static;
    width: fit-content;
    margin: 4px 0 10px;
    padding: 5px 8px;
    font-size: 0.58rem;
    order: 2;
  }

  .readiness-links span {
    font-size: 0.68rem;
  }

  .readiness-links small {
    max-width: 100%;
    margin-top: 8px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .price-orientation {
    padding: 20px;
  }

  .generation-heading h2 {
    font-size: 2.35rem;
  }

  .generation-card {
    flex-basis: min(82vw, 320px);
    min-height: 650px;
    padding-inline: 22px;
  }

  .generation-arrow {
    width: 42px;
    height: 42px;
  }

  .generation-heading .eyebrow::before,
  .generation-heading .eyebrow::after {
    width: 28px;
  }

  .generation-scale {
    margin-top: 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .generation-scale > span,
  .generation-scale p:nth-of-type(2),
  .generation-scale strong:last-child {
    display: none;
  }

  .generation-support {
    padding: 20px;
  }

  .generation-support article {
    padding-right: 0;
    border-right: 0;
  }

  .process-list {
    gap: 28px;
    border-left: 0;
  }

  .process-list > li {
    min-height: auto;
    padding: 76px 14px 14px;
    border-right: 0;
    border-radius: 14px;
  }

  .process-list > li:not(:last-child)::before,
  .process-list > li:not(:last-child)::after {
    display: none;
  }

  .process-list span {
    margin-bottom: 10px;
  }

  .process-list .process-icon {
    top: 34px;
    width: 54px;
    height: 54px;
  }

  .process-list > li > span:first-child {
    top: -15px;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translateX(-50%);
  }

  .process-list h3 {
    min-height: 0;
    margin-top: 4px;
    margin-bottom: 10px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .process-list .process-icon svg {
    width: 30px;
    height: 30px;
  }

  .process-list h3::after {
    width: 36px;
    margin-top: 8px;
  }

  .process-list p {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .process-detail-list {
    margin-top: 10px;
    padding: 10px 12px;
    gap: 8px;
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .process-detail-list li {
    min-height: 0;
    padding: 0;
    grid-template-columns: 16px 1fr;
    gap: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .process-detail-list svg {
    width: 16px;
    height: 16px;
  }

  .process-benefits {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 72px 14px 18px;
  }

  .lightbox-frame {
    grid-column: 1 / -1;
    width: 100%;
    height: min(72vh, 620px);
  }

  .lightbox img {
    max-width: calc(100vw - 28px);
    max-height: 100%;
  }

  .lightbox-count {
    margin-top: 10px;
  }

  .lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }

  .lightbox-prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
  }

  .lightbox-next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .contact-panel {
    padding: 28px 22px;
  }

  .contact-panel > a:not(.button) {
    font-size: 2rem;
  }

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

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-banner-panel {
    padding: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .cookie-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

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

  .cookie-modal-panel {
    padding: 26px 18px 18px;
  }

  .cookie-choice {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .cookie-choice input {
    justify-self: start;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.28rem;
    line-height: 0.96;
  }

  .hero-shell::before {
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.94) 0%, rgba(251, 248, 243, 0.66) 30%, rgba(251, 248, 243, 0.16) 58%, rgba(251, 248, 243, 0.03) 100%),
      linear-gradient(90deg, rgba(251, 248, 243, 0.16), rgba(251, 248, 243, 0));
  }

  .hero-photo::after {
    background:
      linear-gradient(0deg, rgba(251, 248, 243, 0.2) 0%, rgba(251, 248, 243, 0.03) 42%, rgba(251, 248, 243, 0) 100%),
      linear-gradient(90deg, rgba(251, 248, 243, 0.08), rgba(251, 248, 243, 0));
  }

  .hero-panel {
    min-height: 860px;
    padding: 136px 28px 300px;
  }

  .hero-copy {
    max-width: 520px;
  }

  .hero-photo img {
    right: 0;
    top: 280px;
    width: 760px;
    filter: saturate(1.42) sepia(0) contrast(1.24) brightness(1.02);
  }

  .hero-lede {
    max-width: 430px;
    margin-top: 22px;
    color: rgba(40, 42, 42, 0.72);
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 285px;
    max-width: 340px;
  }

  .hero-actions .button {
    width: min(100%, 330px);
    min-height: 52px;
    padding-inline: 22px;
    justify-content: center;
    font-size: 0.74rem;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    min-width: 0;
  }

  .hero-benefits {
    bottom: 120px;
    left: 20px;
    width: calc(100% - 40px);
    padding: 12px;
    gap: 8px;
  }

  .hero-benefits span {
    grid-template-columns: 26px 1fr;
  }

  .hero-benefits strong {
    font-size: 0.68rem;
  }

  .hero-benefits small {
    font-size: 0.63rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.08rem;
  }

  .hero-panel {
    min-height: 850px;
    padding: 130px 22px 300px;
  }

  .hero-photo img {
    right: 0;
    top: 310px;
    width: 680px;
  }

  .hero-lede {
    max-width: 330px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 300px;
    max-width: 310px;
  }

  .hero-actions .button {
    width: min(100%, 300px);
    min-height: 50px;
  }

  .hero-benefits {
    bottom: 140px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 10px;
  }
}

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

@media (forced-colors: active) {
  .button,
  .nav-toggle,
  .language-pill,
  .modal-close,
  .generation-arrow,
  .cookie-choice,
  .legal-content section {
    border: 1px solid ButtonText;
  }
}
