/* ============================================================
   Eagle Pet Group — Shared stylesheet
   Brand carried over from Existing/index.html
   ============================================================ */

:root {
  --burgundy:       #8B1A2F;
  --burgundy-dark:  #5c1020;
  --burgundy-light: #a82438;
  --burgundy-pink:  #d4b0b8;
  /* Accent colour for burgundy text sitting on a dark background — lighter
     and more saturated than --burgundy so it reads against charcoal. */
  --burgundy-on-dark: #ec8aa0;
  --charcoal:       #151517;
  --charcoal-2:     #1f1f22;
  --mid-grey:       #6b6b6e;
  --silver:         #a8a8ae;
  --line:           #e8e5df;
  --pale:           #f5f2ec;
  --paper:          #faf8f3;
  --white:          #ffffff;
  --cream:          #f0ebe1;

  --display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ──────────── BILINGUAL VISIBILITY ────────────
   Both EN and zh-Hant content lives in every page.
   CSS hides whichever doesn't match the active html[lang]. */
html[lang="en"] [lang="zh-Hant"] { display: none !important; }
html[lang="zh-Hant"] [lang="en"] { display: none !important; }
/* Better CJK rendering when the page is in Chinese.
   Apply line-height only to body text — putting it on body itself cascades
   through every element (including absolutely-positioned images) and can
   break aspect-ratio sizing in some browsers. */
html[lang="zh-Hant"] body {
  font-family: 'Jost', 'PingFang HK', 'PingFang TC', 'Microsoft JhengHei', 'Hiragino Sans CNS', sans-serif;
}
html[lang="zh-Hant"] p,
html[lang="zh-Hant"] li,
html[lang="zh-Hant"] td,
html[lang="zh-Hant"] .about-block-body,
html[lang="zh-Hant"] .principle-body,
html[lang="zh-Hant"] .hero-desc,
html[lang="zh-Hant"] .section-intro {
  line-height: 1.75;
}
html[lang="zh-Hant"] h1, html[lang="zh-Hant"] h2, html[lang="zh-Hant"] h3, html[lang="zh-Hant"] h4 {
  font-family: 'Outfit', 'PingFang HK', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  letter-spacing: 0;
  line-height: 1.35;
}
/* CJK line-breaking — use `line-break: strict` (NOT `word-break: keep-all`).
   `keep-all` refuses to break CJK at all, which can force a long headline
   onto one line and blow out its grid column (pushing the image off-screen).
   `strict` follows the CSS / JLREQ rules: keeps tight pairs like 獸醫
   together where possible but still allows sensible breaks elsewhere.
   Buttons / badges that are intentionally short stay on `keep-all`. */
html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2,
html[lang="zh-Hant"] h3,
html[lang="zh-Hant"] h4,
html[lang="zh-Hant"] .product-positioning,
html[lang="zh-Hant"] .hv-title,
html[lang="zh-Hant"] .hero-eyebrow,
html[lang="zh-Hant"] .breadcrumbs,
html[lang="zh-Hant"] .article-meta,
html[lang="zh-Hant"] .section-label,
html[lang="zh-Hant"] .teaser-label,
html[lang="zh-Hant"] .read-more,
html[lang="zh-Hant"] .principle-num,
html[lang="zh-Hant"] .about-block-num,
html[lang="zh-Hant"] .footer-brand-line,
html[lang="zh-Hant"] .footer-channel,
html[lang="zh-Hant"] p,
html[lang="zh-Hant"] li {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}
/* Truly short labels (1–4 chars typically) — safe to use `keep-all`. */
html[lang="zh-Hant"] .btn,
html[lang="zh-Hant"] .nav-links a,
html[lang="zh-Hant"] .product-category-tag,
html[lang="zh-Hant"] .featured-tag,
html[lang="zh-Hant"] .vohc-badge,
html[lang="zh-Hant"] .cat-tile,
html[lang="zh-Hant"] .region-pill,
html[lang="zh-Hant"] .brand-stat {
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}

/* Defensive: grid items shouldn't grow past their column's fr allocation
   just because they contain a long CJK string with no break opportunities.
   Without this, a long Chinese headline can push the text column wider and
   collapse the image column to zero width. */
.hero-grid > *,
.brand-grid > *,
.about-grid > *,
.contact-grid > *,
.product-page-inner > * {
  min-width: 0;
}

/* Language toggle in the nav */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}
.nav-lang .lang-btn {
  background: transparent;
  border: none;
  padding: 0.35rem 0.55rem;
  color: var(--mid-grey);
  cursor: pointer;
  border-radius: 999px;
  font: inherit;
  letter-spacing: inherit;
  transition: color 0.2s, background 0.2s;
}
.nav-lang .lang-btn:hover { color: var(--charcoal); }
.nav-lang .lang-btn.active {
  color: var(--paper);
  background: var(--charcoal);
}
.nav-lang .lang-sep { color: var(--silver); }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}
::selection { background: var(--burgundy); color: var(--white); }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }

em { font-style: normal; }
h1 em, h2 em, h3 em, h4 em,
.marquee-track em, .footer-col em, .hv-title em, .metric-value em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}
.on-dark em { color: var(--burgundy-on-dark); }
/* Any burgundy accent text (em / .num / .section-label / link hover) sitting
   on a dark section uses the lighter on-dark variant for legibility. */
.section.dark em,
.section.dark h1 em,
.section.dark h2 em,
.section.dark h3 em,
.section.dark h4 em,
.commitment h3 em,
.section.dark .section-label,
.section.dark .brand-stat .num {
  color: var(--burgundy-on-dark);
}
.section.dark .section-label::before { background: var(--burgundy-on-dark); }
.brands-left h2 em { color: var(--burgundy-on-dark); }
.clinics-tags-header h3 em { color: var(--burgundy-on-dark); }
.partner-card:hover { border-color: var(--burgundy-on-dark); }
footer em, .site-footer em { color: var(--burgundy-on-dark); }

/* ──────────── PAGE LOADER ──────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
#loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
/* Set on <html> by the inline head-script when the splash has already been
   shown in this browser session — prevents a flash on every re-navigation. */
html.splash-skip #loader { display: none !important; }
.loader-mark {
  font-family: var(--display);
  color: var(--paper);
  display: flex; align-items: center; gap: 0.7rem;
}
.loader-mark .lm-logo-wrap {
  display: inline-block; line-height: 0;
  overflow: hidden;
  filter: brightness(0) invert(1); /* keep the EAGLE mark vibrant on dark */
}
.loader-mark .lm-logo-wrap img {
  height: 72px; width: auto; display: block;
  transform: translateY(110%); opacity: 0;
  animation: loaderRiseIn 0.9s var(--ease-out) 0.05s forwards;
}
@keyframes loaderRiseIn { to { transform: translateY(0); opacity: 1; } }
.loader-bar {
  position: absolute; bottom: 0; left: 0;
  height: 1px; background: var(--burgundy);
  width: 0;
  animation: loaderFill 1.4s var(--ease-out) 0.3s forwards;
}
@keyframes loaderFill { to { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .loader-mark .lm-logo-wrap img { animation: none; transform: none; opacity: 1; }
  .loader-bar { animation: none; width: 100%; }
}

/* ──────────── NAV ──────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 3rem;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(21,21,23,0.06);
  transition: padding 0.35s var(--ease);
}
.site-nav.scrolled { padding: 0.7rem 3rem; }
.nav-logo {
  display: flex; align-items: center; gap: 0.7rem;
  text-decoration: none;
}
.nav-logo img { height: 38px; width: auto; }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a.current { color: var(--burgundy); }
.nav-links a.current::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--burgundy);
}
.nav-cta {
  font-size: 0.78rem; font-weight: 500;
  color: var(--paper) !important;
  background: var(--charcoal);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 0.55rem;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--burgundy); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, top 0.3s, opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 18px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 18px; transform: rotate(-45deg); }

/* ──────────── BUTTONS ──────────── */
.btn {
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 500;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--charcoal); color: var(--paper); }
.btn-primary:hover { background: var(--burgundy); transform: translateY(-1px); }
.btn-primary .arrow {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--paper); color: var(--charcoal);
  display: grid; place-items: center;
  font-size: 0.7rem;
  transition: transform 0.35s var(--ease);
}
.btn-primary:hover .arrow { transform: translateX(2px); }
.btn-secondary {
  background: transparent; color: var(--charcoal);
  border-color: rgba(21,21,23,0.2);
}
.btn-secondary:hover { background: var(--charcoal); color: var(--paper); border-color: var(--charcoal); }
.btn-burgundy { background: var(--burgundy); color: var(--paper); }
.btn-burgundy:hover { background: var(--burgundy-dark); transform: translateY(-1px); }

/* ──────────── HERO ──────────── */
.hero {
  min-height: 92vh; position: relative;
  padding: 9rem 3rem 5rem;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  max-width: var(--container); margin: 0 auto;
  align-items: center;
  min-height: 75vh;
}
/* Hero headline word-cycle (typewriter effect on the burgundy accent word).
   JS sets min-width to the widest word in the cycle so swaps don't reflow
   the headline. The blinking caret is a ::after pseudo-element. */
.hero-cycle {
  display: inline-block;
  text-align: left;
  white-space: nowrap;
  vertical-align: baseline;
}
.hero-cycle::after {
  content: '';
  display: inline-block;
  width: 0.06em;
  height: 0.82em;
  margin-left: 0.08em;
  vertical-align: baseline;
  background: currentColor;
  opacity: 0.85;
  animation: hero-cycle-blink 1s steps(2, jump-none) infinite;
}
@keyframes hero-cycle-blink {
  0%, 49% { opacity: 0.85; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-cycle::after { animation: none; opacity: 0; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--burgundy);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding: 0.4rem 0.9rem;
  background: rgba(139,26,47,0.07);
  border: 1px solid rgba(139,26,47,0.15);
  border-radius: 999px;
}
.hero-eyebrow .pulse-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 0 rgba(139,26,47,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139,26,47,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(139,26,47,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,26,47,0); }
}

h1.hero-title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.8vw, 5.4rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
.hero-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.7;
  color: var(--mid-grey);
  max-width: 480px; margin-bottom: 2.4rem;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 180px 180px 20px 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #3a2020 0%, #1a0d10 100%);
  line-height: 0; /* neutralise any inherited line-height on the abs-positioned image */
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.95) saturate(0.97) contrast(1.03);
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(21,21,23,0.55) 100%);
}
.hero-visual-label {
  position: absolute; bottom: 1.8rem; left: 1.8rem; right: 1.8rem;
  z-index: 3;
  color: var(--paper);
  line-height: 1.4; /* restore for the label text */
}
.hv-title {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 300;
  letter-spacing: -0.01em;
}
.hv-sub {
  font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.08em;
  opacity: 0.8; margin-top: 0.3rem;
  text-transform: uppercase;
}

/* ──────────── MARQUEE / TRUST STRIP ──────────── */
.trust-strip {
  background: var(--charcoal);
  color: var(--paper);
  padding: 1.1rem 3rem;
  font-family: var(--display);
  font-weight: 300;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.01em;
}
.trust-strip .dot-sep {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--burgundy-pink);
  vertical-align: middle;
  margin: 0 0.9rem;
}

/* ──────────── SECTIONS ──────────── */
section { position: relative; }

.section {
  padding: 7rem 3rem;
  background: var(--paper);
}
.section.dark {
  background: var(--charcoal);
  color: var(--paper);
}
.section.cream {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-inner { max-width: var(--container); margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.3rem;
}
.section-label::before {
  content: ''; width: 22px; height: 1px; background: var(--burgundy);
}
.section.dark .section-label { color: var(--burgundy-pink); }
.section.dark .section-label::before { background: var(--burgundy-pink); }

h1, h2, h3, h4 { color: var(--charcoal); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--paper); }

h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
h3 {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 0.7rem;
}
.section-intro {
  font-size: 1rem; font-weight: 300;
  line-height: 1.7; color: var(--mid-grey);
  max-width: 620px;
}
.section.dark .section-intro { color: rgba(250,248,243,0.7); }
p { line-height: 1.7; }

/* ──────────── PRINCIPLES / CARDS ──────────── */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.principle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.4rem 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.principle:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.1);
  border-color: rgba(139,26,47,0.25);
}
.principle-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--burgundy);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.principle-title {
  font-family: var(--display);
  font-size: 1.45rem; font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.7rem;
  line-height: 1.15;
}
.principle-body {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.65; color: var(--mid-grey);
}

/* ──────────── FEATURED BRAND ──────────── */
.brand-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.brand-stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin: 3rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.brand-stat {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--paper);
  line-height: 1.3;
}
.brand-stat .num {
  font-size: 1.6rem;
  color: var(--burgundy-pink);
  font-weight: 500;
  display: block;
  margin-bottom: 0.2rem;
}
.brand-card {
  position: relative;
  background: linear-gradient(170deg, #f8f4ee 0%, #ebe4d6 100%);
  border-radius: 24px;
  padding: 2.5rem 2.2rem;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.5);
  overflow: hidden;
  color: var(--charcoal);
}
.brand-card::before {
  content: 'MP';
  position: absolute; top: -30px; right: -20px;
  font-family: var(--display);
  font-size: 16rem; font-weight: 300;
  color: rgba(139,26,47,0.06);
  line-height: 0.9;
}
.brand-card-logo {
  font-family: var(--display);
  font-size: 1.9rem; font-weight: 500;
  color: var(--burgundy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.brand-card-logo .small {
  display: block;
  font-family: var(--mono);
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--charcoal);
  margin-top: 0.35rem;
  text-transform: uppercase;
}
.brand-card-flag {
  position: absolute; top: 2.2rem; right: 2.2rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  padding: 0.35rem 0.7rem;
  background: rgba(21,21,23,0.06);
  border-radius: 999px;
  text-transform: uppercase;
}
.brand-card-visual {
  aspect-ratio: 1;
  border-radius: 16px;
  background: #fff;
  margin-top: 1.6rem; margin-bottom: 1.4rem;
  overflow: hidden;
  position: relative;
  display: grid; place-items: center;
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(21,21,23,0.05);
}
.brand-card-visual img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card-meta {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}

/* ──────────── CATEGORY TILES ──────────── */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.cat-tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  text-decoration: none;
  color: var(--charcoal);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.cat-tile:hover {
  transform: translateY(-3px);
  border-color: var(--burgundy);
  background: var(--paper);
}
.cat-tile .arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cat-tile:hover .arrow {
  background: var(--burgundy); color: var(--paper); border-color: var(--burgundy);
}

/* ──────────── ABOUT ──────────── */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 5rem;
  align-items: flex-start;
}
.about-quote {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--charcoal);
  padding: 1.2rem 0 1.2rem 1.6rem;
  border-left: 2px solid var(--burgundy);
  margin-top: 2rem;
}
.about-quote-attr {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-top: 0.9rem;
  font-weight: 500;
}
.about-blocks { display: flex; flex-direction: column; }
.about-block {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 2rem;
}
.about-block:first-child { padding-top: 0; }
.about-block-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  font-weight: 500;
  padding-top: 0.45rem;
}
.about-block-title {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 400;
  margin-bottom: 0.65rem; line-height: 1.15;
  letter-spacing: -0.015em;
}
.about-block-body {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.7; color: var(--mid-grey);
}

/* ──────────── PARTNERS / DARK GRID ──────────── */
.partners-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3.5rem;
}
.partner-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.2rem 1.9rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.partner-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--burgundy);
  transform: translateY(-3px);
}
.partner-card h3 { color: var(--paper); margin-bottom: 0.8rem; }
.partner-card p {
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.65; color: rgba(250,248,243,0.65);
}

/* ──────────── COMMITMENT CALLOUT ──────────── */
.commitment {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.commitment::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(139,26,47,0.22), transparent 60%);
  pointer-events: none;
}
.commitment > * { position: relative; z-index: 2; }
.commitment h3 {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 300;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.commitment h3 em { color: var(--burgundy-pink); }
.commitment p {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(250,248,243,0.78);
  line-height: 1.7;
}

/* ──────────── TEASERS (FIND A CLINIC / LEARN) ──────────── */
.teaser-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.teaser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.5rem 2.2rem;
  text-decoration: none;
  color: var(--charcoal);
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.4s;
}
.teaser:hover {
  transform: translateY(-4px);
  border-color: rgba(139,26,47,0.25);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.1);
}
.teaser-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.teaser h3 {
  font-size: 1.6rem; line-height: 1.15;
}
.teaser p {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.65; color: var(--mid-grey);
}
.teaser .read-more {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}

/* ──────────── CONTACT ──────────── */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.3fr;
  gap: 5rem;
  align-items: flex-start;
}
.pet-owner-line {
  background: rgba(139,26,47,0.06);
  border-left: 2px solid var(--burgundy);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.pet-owner-line a { color: var(--burgundy); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.contact-info { display: flex; flex-direction: column; }
.contact-info-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 40px 1fr;
  gap: 1.2rem;
  align-items: center;
}
.contact-info-item:first-child { border-top: 1px solid var(--line); }
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 0.85rem;
}
.contact-info-detail strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact-info-detail span {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 400;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.3rem;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.08);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(139,26,47,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.8rem;
  gap: 1rem; flex-wrap: wrap;
}
.form-note {
  font-size: 0.75rem; font-weight: 300;
  color: var(--mid-grey);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.form-note svg { color: var(--burgundy); }
#form-success { display: none; text-align: center; padding: 3rem 2rem; }
#form-success .check {
  width: 60px; height: 60px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--paper);
  display: grid; place-items: center;
  font-size: 1.8rem;
}

/* ──────────── CURSOR FOLLOWER ──────────── */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-dot.visible { opacity: 1; }
.cursor-dot.hover {
  width: 40px; height: 40px;
  background: rgba(139,26,47,0.2);
}
@media (hover: none), (max-width: 700px) {
  .cursor-dot { display: none; }
}

/* ──────────── BACK TO TOP ──────────── */
.back-top {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 100;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease), background 0.3s;
  border: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--burgundy); }
.back-top svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ──────────── BRAND CARD 3D TILT BASE ──────────── */
.brand-card {
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

/* ──────────── MAGNETIC BUTTON BASE ──────────── */
.btn-primary { will-change: transform; }

/* ──────────── PAGE INTRO ──────────── */
.page-intro {
  padding: 9rem 3rem 4rem;
  background: var(--paper);
  position: relative;
}
.page-intro-inner { max-width: var(--container); margin: 0 auto; }
.page-intro h1 {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 1.3rem;
  max-width: 900px;
}
.page-intro p {
  font-size: 1.05rem; font-weight: 300;
  color: var(--mid-grey);
  max-width: 720px;
  line-height: 1.7;
}
.breadcrumbs {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 1.4rem;
}
.breadcrumbs a { color: var(--burgundy); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ──────────── CATALOGUE ──────────── */
.cat-jump {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 2rem 0 0;
}
.cat-jump a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.cat-jump a:hover {
  background: var(--burgundy); color: var(--paper); border-color: var(--burgundy);
}

.cat-section {
  padding: 5rem 3rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.cat-section:nth-of-type(even) { background: var(--pale); }
.cat-section-inner { max-width: var(--container); margin: 0 auto; }
.cat-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; margin-bottom: 3rem;
  flex-wrap: wrap;
}
.cat-head h2 { margin-bottom: 0; }
.cat-head .cat-desc {
  font-size: 0.95rem; font-weight: 300;
  color: var(--mid-grey);
  max-width: 480px; line-height: 1.65;
}

.product-entry {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.product-entry:last-child { border-bottom: none; }
.product-entry .product-img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  min-height: 280px;
}
.product-entry .product-img img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.product-entry .product-img.placeholder {
  background: var(--cream);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--mid-grey);
  padding: 1.5rem;
  text-transform: uppercase;
}
.product-head {
  display: flex; align-items: center; gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0.7rem;
}
.product-name {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
}
.product-category-tag {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(139,26,47,0.08);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.featured-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--charcoal);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.vohc-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--burgundy);
  color: var(--paper);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
}
.vohc-badge .vohc-mark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0;
}
.product-positioning {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 1.3rem;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.product-block { margin-bottom: 1.1rem; }
.product-block h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-block p {
  font-size: 0.92rem; font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
}

.dual-paths {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1.4rem;
}
.dual-path {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
}
.dual-path.clinics {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--paper);
}
.dual-path h5 {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.dual-path.clinics h5 { color: var(--burgundy-pink); }
.dual-path p {
  font-size: 0.86rem; font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal);
}
.dual-path.clinics p { color: rgba(250,248,243,0.75); }

.product-cta-row {
  display: flex; gap: 0.7rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.product-note {
  margin-top: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: var(--paper);
  border-left: 2px solid var(--burgundy);
  border-radius: 8px;
}
.product-note p {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}
.product-page .product-note { margin-top: 2rem; }

/* ──────────── PRODUCT PAGE (featured) ──────────── */
.product-page {
  padding: 8rem 3rem 5rem;
  background: var(--paper);
}
.product-page-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery {
  position: sticky; top: 6rem;
}
.product-gallery .product-main-img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  aspect-ratio: 1;
  display: grid; place-items: center;
  padding: 2.5rem;
  overflow: hidden;
}
.product-gallery .product-main-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-thumbs .product-thumb img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.product-thumbs .product-thumb {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  aspect-ratio: 1;
  display: grid; place-items: center;
  padding: 0.5rem;
  overflow: hidden;
}
.product-detail h1.product-name-h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--charcoal);
  margin: 0.5rem 0 0.8rem;
}
.product-detail .product-positioning {
  font-size: 1.3rem; line-height: 1.4;
  margin-bottom: 2rem;
}
.product-detail .product-block { margin-bottom: 1.4rem; }
.product-detail .product-block p { font-size: 0.95rem; line-height: 1.75; }
.product-page .dual-paths { margin: 2rem 0; }
.product-page .product-cta-row { margin-top: 2rem; }

/* ──────────── FIND A CLINIC ──────────── */
.clinic-search {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin: 2.5rem 0 1rem;
}
.clinic-search input {
  flex: 1; min-width: 220px;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  outline: none;
}
.clinic-search input:focus { border-color: var(--burgundy); box-shadow: 0 0 0 4px rgba(139,26,47,0.08); }
.region-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 0 0 2.5rem;
}
.region-pill {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.region-pill.active, .region-pill:hover {
  background: var(--burgundy); color: var(--paper); border-color: var(--burgundy);
}
.region-block {
  margin-bottom: 3rem;
}
.region-block h2 {
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.clinic-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
}
.clinic-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  transition: border-color 0.25s, transform 0.3s var(--ease);
}
.clinic-item:hover { border-color: rgba(139,26,47,0.25); transform: translateY(-2px); }
.clinic-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.clinic-item .meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}
.clinic-item .contact-line { font-size: 0.88rem; color: var(--charcoal); }
.empty-placeholder {
  padding: 2rem;
  background: var(--cream);
  border: 1px dashed rgba(139,26,47,0.3);
  border-radius: 14px;
  font-size: 0.9rem;
  color: var(--mid-grey);
  text-align: center;
}
.partner-cta {
  margin-top: 4rem;
  padding: 2.6rem 2.4rem;
  background: var(--charcoal);
  color: var(--paper);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.partner-cta h2 {
  font-size: 1.7rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.partner-cta p {
  font-size: 0.92rem; font-weight: 300;
  color: rgba(250,248,243,0.7);
  line-height: 1.6;
  max-width: 520px;
}

/* ──────────── LEARN HUB / ARTICLES ──────────── */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.learn-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2.4rem 2.2rem;
  text-decoration: none;
  color: var(--charcoal);
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), border-color 0.25s, box-shadow 0.4s;
}
.learn-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,26,47,0.25);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.1);
}
.learn-card .tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.learn-card h2 {
  font-size: 1.6rem; line-height: 1.18;
  margin-bottom: 0;
}
.learn-card p {
  font-size: 0.92rem; font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.65;
}
.learn-card .read-more {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}

.article {
  padding: 8rem 3rem 5rem;
  background: var(--paper);
}
.article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.article h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0.8rem 0 1.4rem;
  color: var(--charcoal);
}
.article .article-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.8rem;
}
.article-lead {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.article-hero {
  margin: 1.5rem 0 2.5rem;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream);
}
.article-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}
.article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.article h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  font-weight: 400;
}
.article h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
}
.article ul, .article ol {
  margin: 0 0 1.4rem 1.4rem;
  padding-left: 1rem;
}
.article ul li, .article ol li {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.article .article-cta {
  margin-top: 2.5rem;
  padding: 2rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  align-items: center;
}
.article .article-cta p {
  flex: 1; min-width: 200px;
  margin: 0; font-size: 0.95rem;
  color: var(--mid-grey);
}
.article a.inline-link {
  color: var(--burgundy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ──────────── FOOTER ──────────── */
.site-footer {
  background: var(--charcoal);
  color: var(--paper);
  padding: 5rem 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(139,26,47,0.15), transparent 60%);
  pointer-events: none;
}
.footer-inner {
  max-width: var(--container); margin: 0 auto;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}
.footer-brand img { height: 36px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
/* The first column of the footer-grid holds the logo image directly (without
   a wrapping .footer-brand class). Constrain it to match the header logo. */
.footer-grid > .footer-col:first-child > img {
  height: 38px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a {
  color: rgba(250,248,243,0.7);
  text-decoration: none;
  font-size: 0.88rem; font-weight: 300;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--paper); }
.footer-col p {
  color: rgba(250,248,243,0.7);
  font-size: 0.88rem; font-weight: 300;
  line-height: 1.65;
  max-width: 320px;
}
.footer-channel {
  color: rgba(250,248,243,0.85);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
  font-style: italic;
}
.footer-brand-line {
  color: rgba(250,248,243,0.6);
  font-size: 0.82rem;
  margin-top: 0.6rem;
}
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.8rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(250,248,243,0.5);
}

/* ──────────── REVEAL ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ──────────── RESPONSIVE ──────────── */
@media (max-width: 1024px) {
  .nav-lang { margin-left: 0; margin-top: 0.8rem; align-self: flex-start; }
  .hero-grid, .brand-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .principles-grid, .partners-grid, .cat-tiles { grid-template-columns: 1fr 1fr; }
  .brand-stat-band { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .commitment { grid-template-columns: 1fr; gap: 1.5rem; }
  .partner-cta { grid-template-columns: 1fr; }
  .product-page-inner { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-entry { grid-template-columns: 220px 1fr; gap: 2rem; }
  .teaser-grid { grid-template-columns: 1fr; }
  .learn-grid { grid-template-columns: 1fr; }
  .clinic-list { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 1.5rem 2rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  /* Mobile drawer: items are stacked vertically. No grey separator lines —
     they read as noise on a content-light drawer; use spacing instead. */
  .nav-links a {
    padding: 0.65rem 0;
    border-bottom: 0;
    width: 100%;
    font-size: 1rem;
  }
  .nav-links li { width: 100%; list-style: none; }
  /* Current-page indicator is a bottom underline by default — in the mobile
     stacked drawer that overlaps the next item and looks like a strike-through.
     Hide the underline and indicate the active page with colour instead. */
  .nav-links a.current::after { display: none; }
  .nav-links a.current { color: var(--burgundy); }
  /* Contact pill: keep it as a pill, do NOT stretch full-width. */
  .nav-links a.nav-cta,
  .nav-links li:last-child a.nav-cta {
    width: auto;
    align-self: flex-start;
    padding: 0.7rem 1.4rem;
    border-bottom: none;
    margin-top: 0.7rem;
    background: var(--charcoal);
    color: var(--paper) !important;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
  }
  .nav-links a.nav-cta:hover { background: var(--burgundy); }
  /* Language toggle row stays compact and doesn't pretend to be a full-width link */
  .nav-links li.nav-lang { border-bottom: none; }
  .nav-lang .lang-btn { width: auto; border-bottom: none; }
  .nav-toggle { display: block; }
  .site-nav { padding: 0.9rem 1.3rem; }
  .site-nav.scrolled { padding: 0.7rem 1.3rem; }
}
@media (max-width: 700px) {
  .hero { padding: 7rem 1.3rem 3rem; }
  .section, .article, .product-page, .cat-section, .page-intro { padding-left: 1.3rem; padding-right: 1.3rem; }
  .section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .article { padding-top: 6.5rem; padding-bottom: 4rem; }
  .page-intro { padding-top: 7rem; padding-bottom: 3rem; }
  .product-page { padding-top: 6.5rem; padding-bottom: 4rem; }
  .principles-grid, .partners-grid, .cat-tiles { grid-template-columns: 1fr; }
  .brand-stat-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dual-paths { grid-template-columns: 1fr; }
  .product-entry { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-entry .product-img { max-width: 280px; }
  .trust-strip { padding: 1rem 1.3rem; font-size: 0.85rem; }
  .commitment { padding: 1.8rem 1.4rem; }
  .partner-cta { padding: 1.8rem 1.4rem; }
  .footer-brand img { height: 32px; }
  .site-footer { padding: 3.5rem 1.3rem 2rem; }
  h1.hero-title { font-size: 2.6rem; }
}

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