@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #09283d;
  --ink-soft: #3d5d72;
  --night: #051f32;
  --night-2: #0a3856;
  --teal: #1686bd;
  --teal-dark: #086a9d;
  --mint: #69d2f5;
  --mint-pale: #e1f6fd;
  --aqua: #cfefff;
  --paper: #f5faff;
  --white: #ffffff;
  --line: #d4e6ef;
  --line-dark: rgba(255, 255, 255, .15);
  --amber: #ffc85c;
  --danger: #f0503a;
  --emergency: #ff4b32;
  --emergency-dark: #a82a1c;
  --emergency-bright: #d43c28;
  --shadow-sm: 0 12px 34px rgba(5, 55, 86, .09);
  --shadow-lg: 0 28px 70px rgba(5, 55, 86, .18);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --wrap: min(1180px, calc(100% - 40px));
  --header: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
  font-size: 17.333px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--night);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 104px 0; }
.section--compact { padding: 76px 0; }
.section--white { background: var(--white); }
.section--ink { color: var(--white); background: var(--night); }
.section--mint { background: var(--mint-pale); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.3;
  text-transform: none;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section--ink .eyebrow { color: var(--mint); }

h1, h2, h3, h4 {
  margin-top: 0;
  color: inherit;
  font-weight: 780;
  letter-spacing: -.035em;
  line-height: 1.06;
}

h1 { margin-bottom: 24px; font-size: clamp(2.65rem, 7vw, 5.8rem); }
h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 4.4vw, 4.1rem); }
h3 { margin-bottom: 12px; font-size: clamp(1.25rem, 2vw, 1.65rem); }

p { margin: 0 0 1.15em; }
.lede { color: var(--ink-soft); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.62; }
.section--ink .lede { color: rgba(255,255,255,.72); }
.muted { color: var(--ink-soft); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header);
  border-bottom: 1px solid rgba(10, 82, 124, .12);
  background: rgba(245, 250, 255, .92);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--teal-dark);
  font-family: "Onest", Inter, ui-sans-serif, sans-serif;
  font-size: 1.38rem;
  font-weight: 880;
  letter-spacing: .015em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  paint-order: stroke fill;
  -webkit-text-stroke: 1.5px var(--white);
  text-shadow: 0 2px 12px rgba(8, 106, 157, .24);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(8, 106, 157, .16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links > a:not(.nav-emergency) {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links > a:not(.nav-emergency):hover,
.nav-links > a[aria-current="page"] { color: var(--teal-dark); }

.nav-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.34);
  background: linear-gradient(135deg, var(--emergency-bright), var(--emergency-dark));
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(207, 47, 35, .3), inset 0 1px rgba(255,255,255,.25);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.nav-emergency::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,.18), 0 0 14px rgba(255,255,255,.85);
  animation: emergency-dot 1.45s ease-in-out infinite;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform .2s, opacity .2s;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 87% 10%, rgba(105, 210, 245, .34), transparent 30%),
    linear-gradient(180deg, #f7fbff, #edf7fc);
}

.hero::before {
  position: absolute;
  top: 22px;
  right: 0;
  width: 34vw;
  height: 70%;
  content: "";
  opacity: .36;
  background-image: linear-gradient(rgba(22,134,189,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(22,134,189,.14) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(46px, 7vw, 96px);
}

.hero-copy { max-width: 680px; }
.hero h1 span { color: var(--teal); }
.hero .lede { max-width: 620px; }

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s, background .18s, border-color .18s;
  cursor: pointer;
}

.button:hover { transform: translateY(-2px); }
.button--primary { color: var(--white); background: var(--teal-dark); box-shadow: 0 10px 28px rgba(8,106,157,.24); }
.button--primary:hover { background: var(--night); }
.button--secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.72); }
.button--secondary:hover { border-color: var(--teal); background: var(--white); }
.button--light { color: var(--night); background: var(--mint); }
.button--light:hover { background: var(--white); }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.3); background: transparent; }
.button--outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.button--small { min-height: 44px; padding: 0 17px; font-size: .86rem; }
.button-row--center { justify-content: center; }

.button[href^="tel:"] {
  min-height: 56px;
  padding-inline: 25px;
  border-color: rgba(255,255,255,.38);
  color: var(--white);
  background: linear-gradient(135deg, var(--emergency-bright), var(--emergency-dark));
  box-shadow: 0 13px 30px rgba(207,47,35,.34), inset 0 1px rgba(255,255,255,.26);
}

.button[href^="tel:"]::before { content: "☎"; font-size: 1.08em; }
.button[href^="tel:"]:hover { background: linear-gradient(135deg, #ff826d, #bc241a); box-shadow: 0 16px 34px rgba(207,47,35,.42); }

@keyframes emergency-dot {
  0%, 100% { opacity: .58; transform: scale(.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 650;
}

.hero-note .cross {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint-pale);
  border-radius: 50%;
  font-weight: 900;
}

.hero-visual { position: relative; min-height: 570px; isolation: isolate; }

.hero-photo {
  position: absolute;
  z-index: 1;
  inset: 0 0 50px 34px;
  overflow: hidden;
  background: var(--aqua);
  border-radius: 46% 22px 46% 22px;
  box-shadow: var(--shadow-lg);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-photo::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 65%, rgba(5,31,50,.2));
  pointer-events: none;
}

.siren-reflection {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
  mix-blend-mode: screen;
  border-radius: inherit;
  pointer-events: none;
}

.siren-reflection__wash {
  position: absolute;
  inset: -12%;
  opacity: .12;
  filter: blur(8px) saturate(1.6);
  transform-origin: center;
}

.siren-reflection__wash--blue {
  background:
    radial-gradient(ellipse at 18% 72%, rgba(0, 119, 255, .92) 0, rgba(0, 119, 255, .44) 21%, transparent 49%),
    linear-gradient(108deg, transparent 24%, rgba(93, 197, 255, .58) 45%, transparent 64%);
  animation: siren-sweep-blue 2.2s ease-in-out infinite;
}

.siren-reflection__wash--red {
  background:
    radial-gradient(ellipse at 86% 28%, rgba(255, 22, 55, .88) 0, rgba(255, 22, 55, .4) 21%, transparent 48%),
    linear-gradient(288deg, transparent 25%, rgba(255, 75, 96, .54) 46%, transparent 65%);
  animation: siren-sweep-red 2.2s 1.1s ease-in-out infinite;
}

.urgent-card {
  position: absolute;
  z-index: 4;
  right: -20px;
  bottom: 0;
  width: min(350px, 82%);
  padding: 24px;
  color: var(--white);
  background: var(--night);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.siren-lightbar {
  position: absolute;
  top: -17px;
  right: 25px;
  z-index: 3;
  display: grid;
  width: 126px;
  height: 30px;
  padding: 4px;
  grid-template-columns: 1fr 13px 1fr;
  border: 1px solid rgba(224, 243, 247, .75);
  border-bottom-color: rgba(14, 27, 31, .9);
  background: linear-gradient(180deg, #eff7f8 0, #9aaeb2 40%, #26383c 52%, #788d91 100%);
  border-radius: 9px 9px 5px 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .42), inset 0 1px 1px rgba(255, 255, 255, .9);
  transform: perspective(140px) rotateX(4deg);
  transform-origin: center bottom;
}

.siren-lightbar::before {
  position: absolute;
  top: 2px;
  right: 7px;
  left: 7px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
}

.siren-lens {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 5px 3px 3px 5px;
  box-shadow: inset 0 0 7px rgba(255, 255, 255, .32), inset 0 -4px 8px rgba(0, 0, 0, .35);
}

.siren-lens::before,
.siren-lens::after {
  position: absolute;
  inset: -45% -20%;
  content: "";
  border-radius: 50%;
}

.siren-lens::before {
  background: conic-gradient(from 45deg, transparent 0 24%, rgba(255, 255, 255, .95) 31%, transparent 39% 70%, rgba(255, 255, 255, .42) 78%, transparent 86%);
  animation: siren-rotor .82s linear infinite;
}

.siren-lens::after {
  inset: 2px 4px auto;
  height: 3px;
  background: rgba(255, 255, 255, .46);
  filter: blur(1px);
}

.siren-lens--blue {
  background: linear-gradient(90deg, #061f57, #007cf0 48%, #64c8ff 65%, #052a73);
  animation: siren-bloom-blue 2.2s ease-in-out infinite;
}

.siren-lens--red {
  background: linear-gradient(90deg, #71101a, #ff173c 48%, #ff788b 65%, #7a0718);
  border-radius: 3px 5px 5px 3px;
  animation: siren-bloom-red 2.2s 1.1s ease-in-out infinite;
}

.siren-lightbar__bridge {
  background: linear-gradient(90deg, #24363a, #b8c6c8 46%, #304347);
  box-shadow: inset 0 1px rgba(255, 255, 255, .55), inset 0 -2px rgba(0, 0, 0, .45);
}

@keyframes siren-rotor {
  to { transform: rotate(1turn); }
}

@keyframes siren-bloom-blue {
  0%, 45%, 100% { filter: brightness(.86); box-shadow: inset 0 0 7px rgba(255,255,255,.25), inset 0 -4px 8px rgba(0,0,0,.35), 0 0 3px rgba(0,112,255,.14); }
  11%, 30% { filter: brightness(1.72); box-shadow: inset 0 0 13px rgba(255,255,255,.88), inset 0 -2px 7px rgba(0,0,0,.12), 0 0 22px rgba(0,126,255,1), 0 0 54px rgba(0,126,255,.82); }
}

@keyframes siren-bloom-red {
  0%, 45%, 100% { filter: brightness(.86); box-shadow: inset 0 0 7px rgba(255,255,255,.25), inset 0 -4px 8px rgba(0,0,0,.35), 0 0 3px rgba(255,24,57,.14); }
  11%, 30% { filter: brightness(1.72); box-shadow: inset 0 0 13px rgba(255,255,255,.88), inset 0 -2px 7px rgba(0,0,0,.12), 0 0 22px rgba(255,24,57,1), 0 0 54px rgba(255,24,57,.78); }
}

@keyframes siren-sweep-blue {
  0%, 46%, 100% { opacity: .08; transform: translate3d(-9%, 5%, 0) rotate(-9deg) scale(.94); }
  11%, 30% { opacity: .94; transform: translate3d(6%, -3%, 0) rotate(10deg) scale(1.1); }
}

@keyframes siren-sweep-red {
  0%, 46%, 100% { opacity: .07; transform: translate3d(9%, -5%, 0) rotate(9deg) scale(.94); }
  11%, 30% { opacity: .9; transform: translate3d(-6%, 3%, 0) rotate(-10deg) scale(1.1); }
}

/* Design B: low-profile premium LED lightbar used by the comparison homepage. */
.siren-premium .siren-lightbar {
  top: -14px;
  right: 22px;
  width: 158px;
  height: 25px;
  padding: 3px 5px;
  grid-template-columns: 1fr 8px 1fr;
  border-color: rgba(221,240,248,.7);
  border-bottom-color: rgba(0,0,0,.9);
  background: linear-gradient(180deg, #dbe8ec 0, #5d7178 21%, #111d22 46%, #050a0d 76%, #52666d 100%);
  border-radius: 7px 7px 4px 4px;
  box-shadow: 0 5px 12px rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.12), inset 0 1px rgba(255,255,255,.82);
  transform: perspective(180px) rotateX(2deg);
}

.siren-premium .siren-lightbar::before {
  top: 1px;
  right: 9px;
  left: 9px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.92), transparent);
}

.siren-premium .siren-lightbar::after {
  position: absolute;
  right: -4px;
  bottom: 3px;
  left: -4px;
  height: 4px;
  content: "";
  border-radius: 4px;
  background: linear-gradient(180deg, #26383e, #05090b);
  box-shadow: 0 2px 3px rgba(0,0,0,.46);
}

.siren-premium .siren-lens {
  border-color: rgba(255,255,255,.5);
  border-radius: 4px;
  box-shadow: inset 0 1px 5px rgba(255,255,255,.56), inset 0 -5px 8px rgba(0,0,0,.4);
}

.siren-premium .siren-lens::before {
  inset: -3px -45%;
  border-radius: 0;
  background: linear-gradient(90deg, transparent 22%, rgba(255,255,255,.18) 38%, rgba(255,255,255,.98) 49%, rgba(255,255,255,.2) 60%, transparent 76%);
  animation: siren-led-scan .78s linear infinite;
}

.siren-premium .siren-lens::after {
  inset: 0;
  height: auto;
  border-radius: inherit;
  background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(0,0,0,.52) 8px 10px);
  filter: none;
  opacity: .72;
}

.siren-premium .siren-lens--blue {
  background: linear-gradient(180deg, #8de5ff 0, #068df0 35%, #0054bf 66%, #021c4b 100%);
}

.siren-premium .siren-lens--red {
  background: linear-gradient(180deg, #ffb0b8 0, #ff2850 35%, #ca0631 66%, #4e0010 100%);
}

.siren-premium .siren-lightbar__bridge {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #121d21, #6f858b 50%, #121d21);
  box-shadow: inset 0 1px rgba(255,255,255,.42), inset 0 -2px rgba(0,0,0,.75);
}

@keyframes siren-led-scan {
  from { transform: translateX(-36%); }
  to { transform: translateX(36%); }
}

.urgent-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.urgent-card-label { color: var(--mint); font-size: .8rem; font-weight: 850; letter-spacing: .04em; text-transform: none; }
.urgent-card-status { color: rgba(255,255,255,.67); font-size: .8rem; }
.urgent-card h2 { margin: 0 0 9px; font-size: 1.35rem; line-height: 1.2; letter-spacing: -.02em; }
.urgent-card p { margin: 0 0 16px; color: rgba(255,255,255,.7); font-size: .9rem; }
.urgent-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emergency-bright), var(--emergency-dark));
  border-radius: 999px;
  box-shadow: 0 9px 22px rgba(207,47,35,.33);
  font-size: 1.04rem;
  font-weight: 850;
  text-decoration: none;
}
.urgent-card a::before { content: "☎"; font-size: .98em; }

.trust-strip {
  padding: 23px 0;
  color: var(--white);
  background: var(--teal-dark);
}

.trust-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 28px;
}

.trust-intro { font-weight: 800; line-height: 1.35; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); font-size: .9rem; }
.trust-item b { display: grid; flex: 0 0 auto; width: 29px; height: 29px; place-items: center; color: var(--night); background: var(--mint); border-radius: 50%; font-size: .76rem; }

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, .62fr);
  gap: 48px;
  margin-bottom: 52px;
}

.section-heading h2 { margin-bottom: 0; }
.section-heading p { margin: 0; }

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

.service-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-card:hover { transform: translateY(-4px); border-color: #8dcde9; box-shadow: var(--shadow-sm); }
.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.service-number { display: block; padding-top: 10px; color: var(--teal-dark); font-size: .8rem; font-weight: 850; letter-spacing: .045em; }
.service-icon {
  display: grid;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 8px;
  border: 1px solid #b9def0;
  color: var(--teal-dark);
  background: linear-gradient(145deg, #ffffff, #dff5ff);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(14,118,172,.13), inset 0 1px rgba(255,255,255,.92);
  transition: transform .2s, background-color .2s;
}
.service-icon img { width: 48px; height: 48px; object-fit: contain; filter: saturate(1.25) contrast(1.04); }
.service-icon svg { width: 38px; height: 38px; fill: none; stroke: #159bd2; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.service-icon__accent { stroke: var(--emergency); stroke-width: 2.3; }
.service-icon__wheel { fill: #ffbd4b; stroke: #ffffff; stroke-width: 1.4; }
.service-icon__line--equine path:nth-child(even) { stroke: #ff8d3d; }
.service-icon--split { display: flex; padding: 7px; gap: 2px; }
.service-icon--split img { width: 27px; height: 43px; }
.service-card:hover .service-icon { transform: translateY(-3px) scale(1.035); background: linear-gradient(145deg, #ffffff, #ccefff); }
.service-card h3 { max-width: 290px; }
.service-card p { margin: 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.55; }
.service-card--feature { color: var(--white); background: var(--night); border-color: var(--night); }
.service-card--feature .service-number { color: var(--mint); }
.service-card--feature .service-icon { border-color: rgba(105,210,245,.42); color: var(--mint); background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(54,178,230,.18)); }
.service-card--feature:hover .service-icon { background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(54,178,230,.25)); }
.service-card--feature p { color: rgba(255,255,255,.7); }
.service-card--feature::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  content: "+";
  color: rgba(105,210,245,.14);
  font-size: 10rem;
  font-weight: 200;
  line-height: 1;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 110px);
}

.split-image {
  position: relative;
  min-height: 540px;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split-badge {
  position: absolute;
  right: -26px;
  bottom: 32px;
  max-width: 250px;
  padding: 20px;
  color: var(--night);
  background: var(--amber);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.4;
}

.check-list { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.check-list li::before {
  position: absolute;
  top: .07em;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  content: "✓";
  color: var(--teal-dark);
  background: var(--mint-pale);
  border-radius: 50%;
  font-size: .76rem;
  font-weight: 900;
}

.species-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.species-item {
  padding: 22px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 750;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}

.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  color: var(--white);
  background: rgba(5,31,50,.82);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote-card { padding: 28px; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.quote-mark { margin-bottom: 14px; color: var(--teal); font-family: Georgia, serif; font-size: 2.9rem; line-height: .6; }
.quote-card blockquote { margin: 0 0 22px; color: var(--ink); font-size: 1rem; line-height: 1.62; }
.quote-card cite { color: var(--ink-soft); font-size: .85rem; font-style: normal; font-weight: 750; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.article-card { overflow: hidden; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); transition: transform .2s, box-shadow .2s; }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.article-card > a:first-child { display: block; aspect-ratio: 16/10; overflow: hidden; }
.article-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.article-card:hover img { transform: scale(1.035); }
.article-card-body { padding: 24px; }
.article-meta { margin-bottom: 10px; color: var(--teal-dark); font-size: .78rem; font-weight: 850; letter-spacing: .035em; text-transform: none; }
.article-card h3 { font-size: 1.35rem; line-height: 1.18; }
.article-card h3 a { text-decoration: none; }
.article-card p { margin-bottom: 18px; color: var(--ink-soft); font-size: .92rem; }
.text-link { color: var(--teal-dark); font-size: .9rem; font-weight: 800; }

.contact-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 30px;
}

.contact-panel,
.map-panel { min-height: 470px; border-radius: var(--radius-lg); }
.contact-panel { padding: clamp(30px, 5vw, 56px); color: var(--white); background: var(--night); }
.contact-panel h2 { font-size: clamp(2.25rem, 4vw, 3.65rem); }
.contact-list { display: grid; gap: 22px; margin: 36px 0 0; padding: 0; list-style: none; }
.contact-list small { display: block; margin-bottom: 4px; color: var(--mint); font-size: .76rem; font-weight: 800; letter-spacing: .035em; text-transform: none; }
.contact-list a, .contact-list span { color: var(--white); font-size: 1rem; font-weight: 700; text-decoration: none; }
.contact-list a:hover { color: var(--mint); }
.contact-list a[href^="tel:"] { display: inline-flex; width: fit-content; min-height: 42px; margin-top: 4px; padding: 0 15px; align-items: center; color: var(--white); background: linear-gradient(135deg, var(--emergency-bright), var(--emergency-dark)); border-radius: 999px; box-shadow: 0 8px 20px rgba(207,47,35,.3); }
.contact-list a[href^="tel:"]::before { margin-right: 8px; content: "☎"; }

.map-panel { position: relative; overflow: hidden; border: 1px solid var(--line); background: #dbeef8; }
.map-panel iframe { width: 100%; height: 100%; min-height: 470px; border: 0; }
.map-placeholder { display: grid; min-height: 470px; padding: 35px; place-content: center; text-align: center; background: linear-gradient(135deg, #d8edf8, #eff8fc); }
.map-placeholder::before {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  content: "⌖";
  color: var(--teal-dark);
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 2rem;
}
.map-placeholder h3 { margin-bottom: 9px; }
.map-placeholder p { max-width: 430px; margin: 0 auto 22px; color: var(--ink-soft); font-size: .92rem; }

.site-footer { padding: 68px 0 30px; color: var(--white); background: #041927; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 60px; }
.footer-brand .brand { color: #43b9ea; }
.footer-brand p { max-width: 420px; margin: 18px 0 0; color: rgba(255,255,255,.58); font-size: .9rem; }
.footer-title { margin: 0 0 17px; color: var(--mint); font-size: .78rem; font-weight: 850; letter-spacing: .04em; text-transform: none; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-links button { width: fit-content; padding: 0; border: 0; color: rgba(255,255,255,.7); background: transparent; font-size: .9rem; text-align: left; text-decoration: none; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }
.consumer-protection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.consumer-protection--badge-only { display: flex; justify-content: flex-end; }
.sal-pictogram { display: block; width: 250px; height: 50px; overflow: hidden; background: var(--white); border-radius: 4px; box-shadow: 0 9px 24px rgba(0,0,0,.2); }
.sal-pictogram img { width: 250px; height: 50px; }
.footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin-top: 26px;
  padding: 17px 19px;
  color: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.035);
  border-radius: 12px;
  font-size: .74rem;
  line-height: 1.45;
}
.footer-business strong { color: rgba(255,255,255,.9); }
.footer-business a { color: #73cef1; font-weight: 800; text-decoration: none; }
.footer-business a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.45); font-size: .8rem; }
.legal-id { text-align: right; }

.page-hero {
  padding: 76px 0 68px;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 10%, rgba(105,210,245,.25), transparent 32%),
    var(--night);
}
.page-hero .wrap { max-width: 950px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(2.6rem, 6vw, 5rem); }
.page-hero .lede { max-width: 720px; color: rgba(255,255,255,.68); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: rgba(255,255,255,.62); font-size: .86rem; }
.breadcrumb a { color: var(--mint); }

.blog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.blog-list .article-card { display: grid; grid-template-columns: 210px 1fr; min-height: 220px; }
.blog-list .article-card > a:first-child { height: 100%; aspect-ratio: auto; }
.blog-list .article-card-body { align-self: center; }

.gallery-page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-page a { position: relative; display: block; min-height: 280px; overflow: hidden; border-radius: 18px; }
.gallery-page a:nth-child(7n+1), .gallery-page a:nth-child(7n+5) { grid-column: span 2; }
.gallery-page img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-page a:hover img { transform: scale(1.035); }

.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 280px; align-items: start; justify-content: center; gap: 70px; }
.article-content { color: #213f41; font-size: 1.05rem; line-height: 1.82; }
.article-content > *:first-child { margin-top: 0; }
.article-content h2, .article-content h3 { margin: 2em 0 .7em; color: var(--ink); letter-spacing: -.025em; line-height: 1.22; }
.article-content h2 { font-size: 2rem; }
.article-content h3 { font-size: 1.4rem; }
.article-content p { margin: 0 0 1.25em; }
.article-content ul, .article-content ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article-content li { margin-bottom: .48em; }
.article-content a { color: var(--teal-dark); }
.article-content strong { color: var(--ink); }
.article-note { margin: 40px 0 0; padding: 20px 22px; border-left: 4px solid var(--amber); background: #fff8e9; border-radius: 0 12px 12px 0; color: var(--ink-soft); font-size: .92rem; }
.article-side { position: sticky; top: calc(var(--header) + 28px); padding: 24px; color: var(--white); background: var(--night); border-radius: var(--radius); }
.article-side h2 { margin-bottom: 12px; font-size: 1.45rem; }
.article-side p { color: rgba(255,255,255,.67); font-size: .9rem; }
.article-side .button { width: 100%; }
.article-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; color: rgba(255,255,255,.62); font-size: .86rem; }
.article-author::before { display: grid; width: 38px; height: 38px; place-items: center; content: "FV"; color: var(--night); background: var(--mint); border-radius: 50%; font-size: .72rem; font-weight: 900; }

.legal-content { max-width: 820px; }
.legal-content h2 { margin: 2.1em 0 .65em; font-size: 1.75rem; line-height: 1.2; }
.legal-content h3 { margin: 1.65em 0 .55em; font-size: 1.22rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content a { color: var(--teal-dark); }
.legal-content table { width: 100%; margin: 28px 0; border-collapse: collapse; font-size: .92rem; }
.legal-content th, .legal-content td { padding: 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-content th { background: var(--mint-pale); }
.legal-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 30px 0 42px; }
.legal-summary__item { padding: 20px; border: 1px solid var(--line); background: #f8fcfe; border-radius: 14px; }
.legal-summary__item small { display: block; margin-bottom: 5px; color: #6b8798; font-size: .72rem; font-weight: 800; }
.legal-summary__item strong { display: block; color: var(--ink); line-height: 1.4; }
.legal-note { margin: 30px 0; padding: 18px 20px; color: #36586c; border: 1px solid #c7e1ef; border-left: 4px solid var(--teal); background: #eef9fd; border-radius: 0 13px 13px 0; }
.legal-note p:last-child { margin-bottom: 0; }
.legal-sal-card { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin: 28px 0; padding: 22px; border: 1px solid var(--line); background: #f8fcfe; border-radius: 16px; }
.legal-sal-card .sal-pictogram { flex: 0 0 250px; }
.legal-sal-card p { flex: 1 1 280px; margin: 0; }

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: none;
  max-width: 760px;
  margin-inline: auto;
  padding: 22px;
  color: var(--white);
  background: rgba(4, 25, 39, .97);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner h2 { margin: 0 0 6px; font-size: 1.15rem; letter-spacing: -.01em; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.5; }
.cookie-banner a { color: var(--mint); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cookie-actions .button { min-height: 42px; padding-inline: 16px; font-size: .8rem; }

.lightbox {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(2,16,27,.94);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: 14px; box-shadow: 0 30px 90px rgba(0,0,0,.48); }
.lightbox-close { position: fixed; top: 20px; right: 22px; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid rgba(255,255,255,.3); color: var(--white); background: rgba(0,0,0,.3); border-radius: 50%; font-size: 1.6rem; cursor: pointer; }

.error-page { display: grid; min-height: calc(100vh - var(--header)); place-items: center; padding: 70px 0; text-align: center; }
.error-page .code { color: var(--teal); font-size: clamp(5rem, 18vw, 12rem); font-weight: 900; letter-spacing: -.08em; line-height: .8; }
.error-page h1 { margin: 24px 0 16px; font-size: clamp(2rem, 5vw, 3.7rem); }
.error-page p { max-width: 600px; margin-inline: auto; color: var(--ink-soft); }

@media (max-width: 1040px) {
  .nav-links { gap: 18px; }
  .hero-grid { gap: 45px; }
  .hero-visual { min-height: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-intro { grid-column: 1 / -1; }
  .article-layout { grid-template-columns: minmax(0, 720px); }
  .article-side { position: static; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; }
  .article-side .button { width: auto; }
  .article-author { grid-column: 1 / -1; margin-top: 0; }
  .blog-list .article-card { grid-template-columns: 170px 1fr; }
}

@media (max-width: 820px) {
  :root { --header: 74px; --wrap: min(100% - 28px, 720px); }
  .section { padding: 78px 0; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(245,250,255,.98);
    box-shadow: var(--shadow-sm);
    flex-direction: column;
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a { padding: 8px 0; }
  .nav-emergency { justify-content: center; margin-top: 4px; padding: 0 17px !important; }
  .brand { gap: 9px; font-size: 1.16rem; }
  .brand img { width: 48px; height: 48px; }
  .hero { padding: 52px 0 72px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 540px; }
  .hero-photo { inset: 0 20px 54px 0; }
  .urgent-card { right: 0; }
  .siren-lightbar { right: 18px; transform: perspective(140px) rotateX(4deg) scale(.92); transform-origin: right bottom; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 210px; }
  .gallery-item:first-child { grid-column: 1 / 3; grid-row: auto; }
  .gallery-item:nth-child(2) { grid-column: auto; }
  .quote-grid, .article-grid { grid-template-columns: 1fr; }
  .quote-card { padding: 25px; }
  .article-card { display: grid; grid-template-columns: 240px 1fr; }
  .article-card > a:first-child { height: 100%; aspect-ratio: auto; }
  .species-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .consumer-protection { grid-template-columns: 1fr; }
  .consumer-protection--badge-only { justify-content: flex-start; }
  .blog-list { grid-template-columns: 1fr; }
  .gallery-page { grid-template-columns: repeat(2, 1fr); }
  .gallery-page a:nth-child(n) { grid-column: auto; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.5rem, 13vw, 4.1rem); }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-photo { inset: 0 8px 72px 0; border-radius: 42% 18px 42% 18px; }
  .urgent-card { width: 92%; padding: 19px; }
  .trust-grid, .services-grid { grid-template-columns: 1fr; }
  .trust-intro { grid-column: auto; }
  .service-card { min-height: auto; }
  .service-card__top { margin-bottom: 24px; }
  .split-image, .split-image img { min-height: 400px; }
  .split-badge { right: 12px; bottom: 14px; }
  .species-row { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 290px 210px 210px; }
  .gallery-item:first-child { grid-column: auto; }
  .article-card, .blog-list .article-card { display: block; }
  .article-card > a:first-child, .blog-list .article-card > a:first-child { height: auto; aspect-ratio: 16/10; }
  .contact-panel, .map-panel, .map-panel iframe, .map-placeholder { min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-business { display: grid; gap: 6px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-id { text-align: left; }
  .legal-summary { grid-template-columns: 1fr; }
  .gallery-page { grid-template-columns: 1fr; }
  .gallery-page a { min-height: 250px; }
  .article-side { display: block; }
  .article-side .button { width: 100%; }
  .article-author { margin-top: 22px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 18px; }
  .cookie-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .siren-reflection__wash { opacity: .12; transform: none; }
  .siren-lens { box-shadow: inset 0 0 7px rgba(255,255,255,.3), inset 0 -4px 8px rgba(0,0,0,.35); }
}

/* Veterinary guides: editorial layout inspired by the Note My Guides library. */
.guide-page { background: var(--white); }
.guide-breadcrumb {
  width: min(1440px, calc(100% - 40px));
  margin-inline: auto;
  padding: 34px 0 18px;
  color: #668095;
  font-size: .8rem;
}
.guide-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.guide-breadcrumb li + li::before { margin-right: 7px; color: #9bb0bd; content: "/"; }
.guide-breadcrumb a { color: #45677d; text-decoration: none; }
.guide-breadcrumb a:hover { color: var(--teal-dark); }

.guide-shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 720px) 220px;
  justify-content: center;
  gap: 0 40px;
  width: min(1440px, calc(100% - 40px));
  margin-inline: auto;
  padding: 0 0 100px;
}
.guide-side,
.guide-toc { position: sticky; top: calc(var(--header) + 24px); align-self: start; max-height: calc(100vh - var(--header) - 42px); overflow-y: auto; scrollbar-width: thin; }
.guide-side { padding: 6px 10px 36px 0; }
.guide-side__home { display: block; margin-bottom: 12px; padding: 9px 11px; color: var(--ink); font-size: .88rem; font-weight: 850; text-decoration: none; }
.guide-group { margin: 0; border: 0; }
.guide-group summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  color: #587286;
  border-radius: 9px;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.guide-group summary::-webkit-details-marker { display: none; }
.guide-group summary::before { width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; content: ""; transform: rotate(-45deg); transition: transform .2s; }
.guide-group[open] summary::before { transform: rotate(45deg); }
.guide-group summary:hover { color: var(--ink); background: #f0f7fb; }
.guide-group ul { display: grid; gap: 2px; margin: 0 0 10px; padding: 0 0 0 8px; list-style: none; }
.guide-group a { display: block; padding: 7px 10px; color: #48677b; border-radius: 8px; font-size: .83rem; line-height: 1.4; text-decoration: none; }
.guide-group a:hover { color: var(--ink); background: #f0f7fb; }
.guide-group a[aria-current="page"] { color: #075f91; background: #e0f3fc; font-weight: 800; }
.guide-nav-toggle,
.guide-scrim { display: none; }

.guide-main { min-width: 0; padding-top: 6px; }
.guide-head { padding: 6px 0 27px; border-bottom: 1px solid #deebf2; }
.guide-eyebrow { display: inline-block; margin-bottom: 13px; color: var(--teal-dark); font-size: .8rem; font-weight: 850; letter-spacing: .02em; }
.guide-title { margin-bottom: 0; font-size: clamp(2.15rem, 4.2vw, 3.25rem); line-height: 1.08; letter-spacing: -.04em; text-wrap: balance; }
.guide-standfirst { max-width: 690px; margin: 18px 0 0; color: #3e5d72; font-size: 1.12rem; line-height: 1.65; text-wrap: pretty; }
.guide-meta { display: flex; flex-wrap: wrap; gap: 7px 18px; margin-top: 20px; color: #6c8495; font-size: .76rem; }
.guide-meta span,
.guide-meta time { display: inline-flex; align-items: center; gap: 6px; }
.guide-meta span + span::before,
.guide-meta time::before { width: 4px; height: 4px; content: ""; background: #a4b7c3; border-radius: 50%; }

.guide-prose { color: #304f63; font-size: 1rem; line-height: 1.78; text-wrap: pretty; }
.guide-prose > * + * { margin-top: 1.15em; }
.guide-prose h2 { margin: 2.15em 0 .7em; color: var(--ink); font-size: 1.7rem; line-height: 1.23; letter-spacing: -.028em; scroll-margin-top: calc(var(--header) + 30px); }
.guide-prose h3 { margin: 1.75em 0 .55em; color: var(--ink); font-size: 1.22rem; line-height: 1.3; letter-spacing: -.018em; scroll-margin-top: calc(var(--header) + 30px); }
.guide-prose p { margin: 0 0 1.12em; }
.guide-prose ul,
.guide-prose ol { margin: 0 0 1.35em; padding-left: 1.35em; }
.guide-prose li + li { margin-top: .46em; }
.guide-prose li::marker { color: #6e94aa; }
.guide-prose a { color: var(--teal-dark); font-weight: 700; }
.guide-prose strong { color: var(--ink); }
.guide-prose .guide-intro { margin-top: 27px; color: #28495e; font-size: 1.04rem; }
.guide-steps { margin-block: 1.6em !important; padding: 0 !important; list-style: none; counter-reset: guide-step; }
.guide-steps > li { position: relative; min-height: 38px; padding: 0 0 25px 48px; counter-increment: guide-step; }
.guide-steps > li::before { position: absolute; top: -1px; left: 0; display: grid; width: 31px; height: 31px; place-items: center; color: var(--white); content: counter(guide-step); background: var(--teal); border-radius: 50%; font-size: .8rem; font-weight: 850; }
.guide-steps > li::after { position: absolute; top: 36px; bottom: 5px; left: 15px; width: 1px; content: ""; background: #d6e6ee; }
.guide-steps > li:last-child { padding-bottom: 0; }
.guide-steps > li:last-child::after { display: none; }
.guide-steps strong { display: block; margin-bottom: 3px; }

.guide-callout {
  margin: 1.8em 0;
  padding: 18px 20px;
  border: 1px solid #cfe3ed;
  border-left: 4px solid var(--teal);
  background: #eff9fd;
  border-radius: 0 14px 14px 0;
  font-size: .94rem;
}
.guide-callout strong { display: block; margin-bottom: 4px; }
.guide-callout p:last-child { margin-bottom: 0; }
.guide-callout--urgent { border-color: #ffd3cd; border-left-color: var(--emergency); background: #fff4f2; }
.guide-callout--urgent a { display: inline-flex; align-items: center; min-height: 42px; margin-top: 10px; padding: 0 16px; color: var(--white); background: linear-gradient(135deg, var(--emergency-bright), var(--emergency-dark)); border-radius: 999px; box-shadow: 0 9px 22px rgba(207,47,35,.25); text-decoration: none; }
.guide-disclaimer { margin-top: 2.2em; padding: 18px 20px; color: #557184; border: 1px solid #d7e5ed; background: #f7fbfd; border-radius: 13px; font-size: .88rem; }
.guide-disclaimer strong { display: inline; }
.guide-myths { display: grid; gap: 14px; margin-top: 1.6em; }
.guide-myth { padding: 20px 22px; border: 1px solid #d9e7ef; background: #fbfdff; border-radius: 16px; }
.guide-myth h2 { margin: 5px 0 10px; font-size: 1.25rem; }
.guide-myth__number { color: var(--teal-dark); font-size: .73rem; font-weight: 850; }
.guide-verdict { display: inline-flex; margin: 0 0 10px !important; padding: 4px 10px; color: #8f251b; background: #ffe5e0; border-radius: 999px; font-size: .74rem; font-weight: 850; }
.guide-verdict--partial { color: #74510f; background: #fff1c7; }

.guide-related { margin-top: 3.2em; padding-top: 30px; border-top: 1px solid #dce9f0; }
.guide-related h2 { margin: 0 0 17px; font-size: 1.2rem; }
.guide-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.guide-related-card { display: block; padding: 17px 18px; color: inherit !important; border: 1px solid #d9e7ef; background: #f6fafc; border-radius: 14px; text-decoration: none; transition: transform .2s, border-color .2s, background .2s; }
.guide-related-card:hover { transform: translateY(-3px); border-color: #9ccfe5; background: #edf8fd; }
.guide-related-card span { color: var(--teal-dark); font-size: .72rem; font-weight: 800; }
.guide-related-card h3 { margin: 7px 0 0; font-size: 1rem; }

.guide-toc { padding: 7px 0 36px; }
.guide-toc h2 { margin: 0 0 10px; padding-left: 14px; color: #708796; font-size: .74rem; letter-spacing: .02em; }
.guide-toc ul { margin: 0; padding: 0; border-left: 1px solid #d7e5ed; list-style: none; }
.guide-toc li { margin: 0; }
.guide-toc a { display: block; margin-left: -1px; padding: 6px 0 6px 14px; color: #698091; border-left: 2px solid transparent; font-size: .78rem; line-height: 1.4; text-decoration: none; }
.guide-toc a:hover,
.guide-toc a.is-active { color: var(--teal-dark); border-left-color: var(--teal); }

.guide-library { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 74px 0 104px; }
.guide-library__intro { max-width: 720px; margin-bottom: 50px; }
.guide-library__intro h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.guide-library__intro p { color: var(--ink-soft); font-size: 1.12rem; }
.guide-library-section + .guide-library-section { margin-top: 50px; }
.guide-library-section > h2 { margin-bottom: 17px; padding-bottom: 12px; color: #436277; border-bottom: 1px solid #d8e6ee; font-size: .86rem; letter-spacing: .02em; }
.guide-library-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.guide-library-card { display: flex; flex-direction: column; min-height: 190px; padding: 24px 26px; color: inherit; border: 1px solid #d8e6ee; background: #f8fbfd; border-radius: 18px; text-decoration: none; transition: transform .22s, border-color .22s, background .22s; }
.guide-library-card:hover { transform: translateY(-4px); border-color: #91c9e2; background: #eff8fc; }
.guide-library-card span { color: var(--teal-dark); font-size: .76rem; font-weight: 850; }
.guide-library-card h3 { margin: 12px 0 9px; font-size: 1.28rem; }
.guide-library-card p { margin: 0; color: #526e80; font-size: .91rem; line-height: 1.6; }
.guide-library-card small { margin-top: auto; padding-top: 18px; color: #7b909d; font-size: .73rem; }

@media (max-width: 1320px) {
  .guide-shell { grid-template-columns: 238px minmax(0, 720px); }
  .guide-toc { display: none; }
}

@media (max-width: 900px) {
  .guide-breadcrumb { padding-top: 25px; }
  .guide-shell { grid-template-columns: minmax(0, 720px); width: min(720px, calc(100% - 32px)); }
  .guide-nav-toggle { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin: 0 0 18px; padding: 9px 14px; color: var(--ink); border: 1px solid #d6e5ed; background: #f5fafc; border-radius: 999px; font-size: .82rem; font-weight: 800; cursor: pointer; }
  .guide-nav-toggle::before { content: "☰"; color: var(--teal-dark); }
  .guide-side { position: fixed; z-index: 220; inset: 0 auto 0 0; width: min(330px, 88vw); max-height: none; padding: 86px 18px 32px; background: var(--white); border-right: 1px solid #d4e3eb; box-shadow: 20px 0 55px rgba(5,55,86,.16); transform: translateX(-104%); transition: transform .27s ease; }
  .guide-side.is-open { transform: none; }
  .guide-scrim { position: fixed; z-index: 210; inset: 0; display: block; opacity: 0; background: rgba(3,22,35,.46); pointer-events: none; transition: opacity .27s ease; }
  .guide-scrim.is-open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .guide-breadcrumb { width: calc(100% - 28px); font-size: .74rem; }
  .guide-title { font-size: 2.25rem; }
  .guide-standfirst { font-size: 1.03rem; }
  .guide-related-grid,
  .guide-library-grid { grid-template-columns: 1fr; }
  .guide-library { width: calc(100% - 28px); padding-top: 58px; }
  .guide-library-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .guide-side,
  .guide-scrim,
  .guide-related-card,
  .guide-library-card { transition: none; }
}

.hours { display: grid; gap: 7px; margin-top: 8px; max-width: 300px; }
.hours div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 6px; border-bottom: 1px solid rgba(255, 255, 255, .13); }
.hours div:last-child { border-bottom: 0; padding-bottom: 0; }
.hours span { color: rgba(255, 255, 255, .75); font-size: .92rem; font-weight: 500; }
.hours b { color: var(--white); font-size: .95rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.hours-note { max-width: 300px; margin: 11px 0 0; color: rgba(255, 255, 255, .62); font-size: .82rem; font-weight: 400; line-height: 1.5; }
