:root {
  --forest: #14352c;
  --forest-mid: #1f4f42;
  --forest-deep: #0b241d;
  --sage: #d7e6dc;
  --sage-soft: #eef4f0;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --clay: #c65a32;
  --clay-dark: #a44724;
  --gold: #c4a15a;
  --ink: #17211d;
  --muted: #5a6b64;
  --line: rgba(20, 53, 44, 0.12);
  --shadow: 0 22px 50px rgba(11, 36, 29, 0.1);
  --shadow-soft: 0 10px 30px rgba(11, 36, 29, 0.07);
  --radius: 24px;
  --radius-sm: 14px;
  --header: 82px;
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 700;
  font-display: optional;
  src: url("../fonts/fraunces-600.woff2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: optional;
  src: url("../fonts/plus-jakarta-sans.woff2") format("woff2");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1160px, calc(100% - 1.6rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section {
  padding: 4.5rem 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin: 0.7rem 0 0.85rem;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-clay {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 10px 24px rgba(198, 90, 50, 0.28);
}

.btn-clay:hover {
  background: var(--clay-dark);
}

.btn-forest {
  background: var(--forest);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(20, 53, 44, 0.22);
}

.btn-ghost.light {
  color: var(--cream);
  border-color: rgba(246, 241, 232, 0.35);
}

.btn-ghost.light:hover {
  background: rgba(246, 241, 232, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--header);
  display: flex;
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 36, 29, 0.05);
}

.header-inner {
  width: min(1160px, calc(100% - 1.6rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 0.98rem;
  white-space: nowrap;
  z-index: 2;
}

.logo-mark {
  width: 36px;
  height: 36px;
}

.logo span {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--forest);
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--clay);
  transition: width 0.25s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.header-cta {
  min-height: 44px;
  padding: 0 1rem;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  color: #fff;
}

.header-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  position: relative;
  transition: 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  padding: 1.5rem 0 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  max-width: 18ch;
  margin: 0.8rem 0 1.1rem;
}

.hero-support {
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 54ch;
}

.hero-copy .lede {
  max-width: 46ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-row strong {
  color: var(--forest);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: block;
}

.hero-frame {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 36px 36px 120px 36px;
  box-shadow: var(--shadow);
  background: var(--sage);
}

.hero-float {
  display: block;
  position: absolute;
  right: -8px;
  bottom: -18px;
  width: min(42%, 220px);
  height: 210px;
  object-fit: cover;
  border-radius: 28px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow);
  z-index: 2;
}

.hero-badge {
  display: block;
  position: absolute;
  left: 18px;
  bottom: 28px;
  background: var(--paper);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  max-width: 190px;
}

.hero-badge small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.hero-badge strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.blob {
  display: block;
  position: absolute;
  z-index: -1;
  background: var(--sage);
}

.blob-a {
  width: 78%;
  height: 78%;
  right: -8%;
  top: -8%;
  border-radius: 46% 54% 42% 58%;
}

.stats {
  background: var(--forest);
  color: var(--cream);
  padding: 1.6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  text-align: center;
  padding: 0.4rem;
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 560;
}

.stat span {
  color: rgba(246, 241, 232, 0.72);
  font-size: 0.88rem;
}

.cover-grid {
  display: grid;
  gap: 1.1rem;
}

.cover-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, border-color 0.35s ease;
}

.cover-card:hover,
.cover-card.is-active {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 53, 44, 0.28);
}

.cover-card.featured {
  background: linear-gradient(180deg, #16382f 0%, #1f4f42 100%);
  color: var(--cream);
  border-color: transparent;
}

.cover-card.featured .muted,
.cover-card.featured .cover-list li {
  color: rgba(246, 241, 232, 0.82);
}

.cover-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--sage-soft);
}

.cover-card.featured .cover-icon {
  background: rgba(246, 241, 232, 0.12);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 999px;
  padding: 6px 10px;
}

.cover-card h3 {
  font-size: 1.55rem;
}

.muted {
  color: var(--muted);
}

.cover-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.cover-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.cover-list svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.cover-card .btn {
  margin-top: auto;
}

.why {
  background: var(--sage-soft);
}

.feature-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  animation: floaty 4.5s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
  animation-delay: 0.4s;
}

.feature-card:nth-child(3) .feature-icon {
  animation-delay: 0.8s;
}

.feature-card:nth-child(4) .feature-icon {
  animation-delay: 1.2s;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.pet-split {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.pet-photo {
  min-height: 420px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.pet-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.pet-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
}

.pet-card h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0.5rem 0 0.8rem;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 1.4rem;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-weight: 600;
}

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b241d 0%, #1f4f42 58%, #3d4a2a 100%);
  color: var(--cream);
  border-radius: 36px;
  padding: 2.4rem 1.5rem;
}

.cta-grid {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 14ch;
  margin: 0.6rem 0 0.8rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.3rem 0 1.2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.cta-photo {
  width: min(100%, 360px);
  margin-inline: auto;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid rgba(246, 241, 232, 0.16);
}

.guide-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.guide-form input,
.guide-form select {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(246, 241, 232, 0.2);
  background: rgba(246, 241, 232, 0.08);
  color: var(--cream);
  padding: 0 14px;
}

.guide-form option {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 0.75rem;
  max-width: 560px;
  margin-top: 1.3rem;
}

.contact-form label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--forest);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: #d7e6dc;
}

.contact-form .form-note {
  color: var(--forest-mid);
}

.reviews {
  background: var(--sage-soft);
}

.review-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.stars {
  color: #d4a017;
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}

.review-card p {
  font-size: 0.98rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.1rem;
}

.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong {
  display: block;
  font-size: 0.95rem;
}

.reviewer span {
  color: var(--muted);
  font-size: 0.82rem;
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
  font-size: inherit;
}

.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.15rem 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--ink);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--sage);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-panel p {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.internal-links {
  display: grid;
  gap: 0.9rem;
}

.resource-card {
  display: block;
  background: var(--paper);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  border-color: var(--forest);
}

.resource-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.page-hero {
  padding: 3.2rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  max-width: 16ch;
  margin: 0.6rem 0 0.9rem;
}

.article {
  background: var(--paper);
  border-radius: 28px;
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.article h2 {
  font-size: 1.6rem;
  margin: 1.4rem 0 0.6rem;
}

.article ul {
  margin: 0.8rem 0 1rem 1.15rem;
}

.article li {
  margin: 0.35rem 0;
}

.article p + p {
  margin-top: 0.9rem;
}

.article a {
  color: var(--clay);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article a:hover {
  color: var(--clay-dark);
}

.prose {
  max-width: 760px;
}

.prose.center-block {
  margin-inline: auto;
}

.prose p + p,
.prose ul + p,
.prose p + ul,
.prose ol + p,
.prose p + ol {
  margin-top: 0.95rem;
}

.prose h3 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.7rem;
}

.prose ul,
.dot-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.prose ul li,
.dot-list li {
  padding-left: 1.35rem;
  position: relative;
}

.prose ul li::before,
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.topic-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.topic-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
}

.topic-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.two-col {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.panel {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
}

.panel h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  padding-left: 0;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.site-footer {
  background: var(--forest-deep);
  color: rgba(246, 241, 232, 0.82);
  padding: 3rem 0 1.4rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.disclaimer {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(246, 241, 232, 0.62);
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  text-align: center;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible {
  transform: none;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (min-width: 760px) {
  .topic-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (min-width: 980px) {
  .hero-grid,
  .cta-grid,
  .faq-layout,
  .pet-split {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .cover-grid,
  .review-grid,
  .internal-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .pet-split.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .pet-split.reverse .pet-photo {
    order: 2;
  }

  .hero-copy h1 {
    max-width: 18ch;
  }
}

@media (max-width: 1079px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    margin: 0;
    z-index: 60;
    background: var(--forest-deep);
    color: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }

  .nav a {
    color: var(--cream);
    font-size: 1.4rem;
    font-family: var(--font-serif);
  }

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

  .nav .header-cta {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    margin-top: 0.4rem;
  }

  .nav.is-open {
    transform: none;
  }
}

@media (max-width: 759px) {
  .hero-visual {
    min-height: 0;
    content-visibility: auto;
    contain-intrinsic-size: 240px;
  }

  .hero-frame {
    height: 240px;
  }

  .hero-float,
  .blob {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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