/* ===========================================================
   CORRY & O'HARE VETS, shared stylesheet (all pages)
   =========================================================== */

:root {
  --navy: #153460;
  --navy-soft: #1f4582;
  --navy-deep: #0e2244;
  --pink: #cd4f9b;
  --pink-dark: #b3357f;
  --pink-soft: #f6d9e9;
  --pink-tint: #fbeef5;
  --teal: #2c9aa9;
  --teal-soft: #d9eff2;
  --bg: #fdf6fa;
  --bg-warm: #fbeef5;
  --bg-cool: #f3f5fb;
  --ink: #1a2545;
  --ink-soft: #4c5878;
  --line: #ecdfe7;
  --white: #ffffff;
  --warn: #b67100;

  --font-head: "clother", "Mulish", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius: 28px;
  --radius-lg: 44px;
  --shadow-soft: 0 18px 50px -28px rgba(21,52,96,0.30);
  --shadow-card: 0 24px 60px -32px rgba(21,52,96,0.32);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.6rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.7vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p { color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pink-dark);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--pink);
  border-radius: 4px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn i { font-size: 0.95em; }
.btn-pink { background: var(--pink); color: var(--white); box-shadow: 0 14px 30px -14px rgba(205,79,155,0.7); }
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,0,0,0.25); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid rgba(21,52,96,0.18); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---------- brand circle icons ----------
   Default: pink filled circle, white icon */
.ic-circle, .ic, .price-block h3 .ic, .contact-info .info-row .ic, .about-art .float-card .ic,
.usp .icon, .service-card .ic, .advice-card .big-ic {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  flex: 0 0 auto;
}
/* sizes */
.ic-sm, .contact-info .info-row .ic, .about-art .float-card .ic, .price-block h3 .ic { width: 44px; height: 44px; font-size: 1rem; }
.ic-md, .ic, .service-card .ic { width: 56px; height: 56px; font-size: 1.2rem; }
.ic-lg, .usp .icon { width: 64px; height: 64px; font-size: 1.35rem; }
.ic-xl, .advice-card .big-ic { width: 110px; height: 110px; font-size: 2.2rem; }

/* brand-colour rotation */
.ic-navy { background: var(--navy); color: var(--white); }
.ic-pink { background: var(--pink); color: var(--white); }
.ic-teal { background: var(--teal); color: var(--white); }
.ic-pink-soft { background: var(--pink-soft); color: var(--pink-dark); }
.ic-teal-soft { background: var(--teal-soft); color: var(--teal); }
.ic-navy-soft { background: #eef0fa; color: var(--navy); }

/* USP icons cycle through brand circles */
.usp .item:nth-child(1) .icon { background: var(--pink); color: var(--white); }
.usp .item:nth-child(2) .icon { background: var(--navy); color: var(--white); }
.usp .item:nth-child(3) .icon { background: var(--teal); color: var(--white); }
.usp .item:nth-child(4) .icon { background: var(--pink-soft); color: var(--pink-dark); }

/* advice cards big icons */
.advice-card:nth-child(1) .big-ic { background: var(--pink); color: var(--white); }
.advice-card:nth-child(2) .big-ic { background: var(--navy); color: var(--white); }
.advice-card:nth-child(3) .big-ic { background: var(--teal); color: var(--white); }

/* ---------- header (dark) ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  padding: 22px 0;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
header.site.scrolled {
  padding: 12px 0;
  background: var(--navy-deep);
  box-shadow: 0 14px 40px -28px rgba(0,0,0,0.5);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 54px; transition: height 0.3s ease; }
header.site.scrolled .brand img { height: 44px; }

nav.primary { display: flex; align-items: center; gap: 2px; }
nav.primary > a, nav.primary > .has-sub > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.92);
  border-radius: 10px;
  transition: color 0.2s;
}
nav.primary > a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav.primary > a:hover, nav.primary > .has-sub:hover > a { color: var(--white); }
nav.primary > a:hover::after, nav.primary > a.active::after { transform: scaleX(1); }
nav.primary > a.active { color: var(--white); }
nav.primary .has-sub { position: relative; }
nav.primary .has-sub > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  margin-left: 4px;
  opacity: 0.6;
  position: static;
  background: transparent;
  height: auto;
  transform: none;
}
.burger { color: var(--white); }
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 18px;
  padding: 12px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.has-sub:hover .submenu { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.18s, color 0.18s;
}
.submenu a:hover { background: var(--bg-warm); color: var(--pink-dark); }

/* ---------- WordPress wp_nav_menu() styling ----------
   wp_nav_menu outputs <nav class="primary"><ul class="nav-list"><li class="menu-item">...</li></ul></nav>
   Children of items with sub-pages get class="menu-item-has-children" + <ul class="sub-menu">.
   We mirror the visual treatment of the hand-coded fallback nav above.
*/
nav.primary ul.nav-list,
nav.primary ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.primary ul.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
nav.primary ul.nav-list > li { position: relative; }
nav.primary ul.nav-list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.94rem;
  color: rgba(255,255,255,0.92);
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
nav.primary ul.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
nav.primary ul.nav-list > li > a:hover { color: var(--white); }
nav.primary ul.nav-list > li > a:hover::after,
nav.primary ul.nav-list > li.current-menu-item > a::after,
nav.primary ul.nav-list > li.current-menu-parent > a::after,
nav.primary ul.nav-list > li.current-menu-ancestor > a::after { transform: scaleX(1); }
nav.primary ul.nav-list > li.current-menu-item > a,
nav.primary ul.nav-list > li.current-menu-parent > a,
nav.primary ul.nav-list > li.current-menu-ancestor > a { color: var(--white); }

/* Parent items with children get a small chevron */
nav.primary ul.nav-list > li.menu-item-has-children > a::before {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  margin-left: 4px;
  opacity: 0.6;
  position: static;
  order: 99;
}

/* Sub-menu dropdown */
nav.primary ul.nav-list > li > ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 18px;
  padding: 12px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  display: block;
}
nav.primary ul.nav-list > li:hover > ul.sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
nav.primary ul.sub-menu li { list-style: none; }
nav.primary ul.sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
nav.primary ul.sub-menu a:hover { background: var(--bg-warm); color: var(--pink-dark); }

.header-cta { display: flex; gap: 10px; align-items: center; }
.header-cta .btn { padding: 12px 22px; font-size: 0.9rem; }
.burger { display: none; background: transparent; border: 0; font-size: 1.4rem; color: var(--white); cursor: pointer; padding: 8px 10px; }

/* ---------- mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 100;
  padding: 32px 28px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .mn-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-nav .mn-head img { height: 50px; }
.mobile-nav .close { font-size: 1.6rem; color: var(--navy); background: transparent; border: 0; cursor: pointer; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 0; }
.mobile-nav nav > a, .mobile-nav .mn-parent {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  border-left: 0; border-right: 0; border-top: 0;
  cursor: pointer;
  display: block;
  width: 100%;
}
.mobile-nav .mn-group { border-bottom: 1px solid var(--line); }
.mobile-nav .mn-group .mn-parent { border-bottom: 0; }
.mobile-nav .mn-parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-appearance: none;
  appearance: none;
}
.mobile-nav .mn-parent i {
  font-size: 0.9rem;
  color: var(--pink-dark);
  transition: transform 0.3s ease;
  pointer-events: none; /* let clicks always hit the button */
}
.mobile-nav .mn-group.open .mn-parent i { transform: rotate(180deg); }

/* max-height collapse, reliable cross-browser */
.mobile-nav .mn-children {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav .mn-group.open .mn-children {
  max-height: 500px;
}
.mobile-nav .mn-children a {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 10px 0 10px 20px;
  border-top: 1px solid rgba(236,223,231,0.5);
}
.mobile-nav .mn-children a:first-child { border-top: 0; }
.mobile-nav .mn-group.open .mn-children { padding-bottom: 8px; }
.mobile-nav .mn-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- HERO (homepage video) ---------- */
.hero {
  position: relative;
  min-height: 60vh;
  padding: 50px 0 130px;
  overflow: hidden;
  isolation: isolate;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero .hero-bg video,
.hero .hero-bg .fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: url('../images/hero.jpg') center 30% / cover no-repeat;
}
.hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(21,52,96,0.65) 0%, rgba(21,52,96,0.40) 45%, rgba(21,52,96,0.10) 80%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 140px;
  background: var(--bg);
  clip-path: ellipse(72% 100% at 50% 100%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: calc(60vh - 180px);
}
.hero-copy { max-width: 760px; color: var(--white); }
.hero-copy .eyebrow { color: rgba(255,255,255,0.95); }
.hero-copy .eyebrow::before { background: var(--white); }
.hero-copy h1 {
  color: var(--white);
  margin: 18px 0 22px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--pink-soft);
}
.hero-copy .lede {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- PAGE HERO (inner pages, dark) ---------- */
.page-hero {
  position: relative;
  padding: 70px 0 120px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--white);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(205,79,155,0.22);
  top: -140px; right: -100px;
  filter: blur(80px);
  z-index: -1;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(44,154,169,0.22);
  bottom: -120px; left: -80px;
  filter: blur(80px);
  z-index: -1;
}
.page-hero h1 { margin: 16px 0 14px; color: var(--white); }
.page-hero .lede { font-size: 1.1rem; max-width: 720px; color: rgba(255,255,255,0.85); }
.page-hero .eyebrow { color: var(--pink-soft); }
.page-hero .eyebrow::before { background: var(--pink-soft); }
.breadcrumb { display: none; } /* hidden per Jack feedback */

/* ---------- USP STRIP ---------- */
.usp {
  margin-top: -54px;
  position: relative;
  z-index: 4;
}
.usp .container {
  background: var(--white);
  border-radius: 36px;
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.usp .item { display: flex; gap: 18px; align-items: flex-start; }
.usp h4 { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.usp p { font-size: 0.9rem; line-height: 1.5; }

/* ---------- generic sections ---------- */
section { padding: 110px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { font-size: 1.05rem; }

/* ---------- about ---------- */
.about { padding-top: 140px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.about-art { position: relative; }
.about-art .main-img {
  border-radius: 36px;
  width: 100%;
  height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.about-art .badge {
  position: absolute;
  right: -22px; top: 32px;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.2;
  padding: 14px;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-card);
}
.about-art .badge span { font-size: 1.9rem; display: block; font-weight: 900; margin-bottom: 2px; color: var(--pink-soft); }
.about-art .float-card {
  position: absolute;
  left: -28px; bottom: 36px;
  background: var(--white);
  border-radius: 22px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.about-art .float-card strong { display: block; font-family: var(--font-head); color: var(--navy); }
.about-art .float-card span { font-size: 0.85rem; color: var(--ink-soft); }

.about-copy h2 { margin: 16px 0 22px; }
.about-copy .lede { font-size: 1.06rem; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
.about-copy p + p { margin-top: 14px; }
.about-points {
  list-style: none;
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.about-points li {
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.96rem;
}
.about-points i {
  flex: 0 0 auto;
  margin-top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.65rem;
}
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

/* ============================================================
   BENTO "WHAT WE DO" section (homepage)
   Editorial layout with mixed tile sizes
   ============================================================ */
.what-we-do {
  padding: 130px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--white) 100%);
}
.wwd-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.wwd-head h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.wwd-head h2 em { font-style: normal; color: var(--pink); }
.wwd-head .lede { font-size: 1.05rem; max-width: 480px; }
.wwd-head .link-arrow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
}
.wwd-head .link-arrow i { transition: transform 0.3s; }
.wwd-head .link-arrow:hover i { transform: translateX(4px); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
}
.bento .tile {
  background: var(--white);
  border-radius: 28px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(21,52,96,0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bento .tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.bento .tile .ic-circle { margin-bottom: 14px; }
.bento .tile .num {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--pink-dark);
}
.bento .tile h3 { margin: 8px 0 6px; font-size: 1.18rem; }
.bento .tile p { font-size: 0.92rem; line-height: 1.5; }
.bento .tile .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
  margin-top: 12px;
}
.bento .tile .arrow i { transition: transform 0.3s; }
.bento .tile:hover .arrow i { transform: translateX(4px); }

/* feature tile (image + title) */
.bento .tile.feature {
  grid-column: span 3;
  grid-row: span 2;
  background-color: var(--navy);
  background-image: linear-gradient(180deg, rgba(21,52,96,0.15) 0%, rgba(21,52,96,0.85) 100%), var(--feature-img, url('../images/golden-retriever-being-pet-loyal-partner-friend-2026-03-18-07-56-41-utc.jpg'));
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 38px 36px;
}
.bento .tile.feature h3 { color: var(--white); font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.1; max-width: 320px; }
.bento .tile.feature p { color: rgba(255,255,255,0.85); max-width: 360px; }
.bento .tile.feature .arrow { color: var(--white); font-size: 1rem; }
.bento .tile.feature .num { color: var(--pink-soft); }
.bento .tile.feature .feature-badge {
  position: absolute;
  top: 26px; right: 26px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bento .tile.wide { grid-column: span 3; }
.bento .tile.med { grid-column: span 2; }
.bento .tile.sm { grid-column: span 2; grid-row: span 1; }
.bento .tile.tall { grid-column: span 2; grid-row: span 2; }

.bento .tile.cta {
  background: var(--pink);
  color: var(--white);
  grid-column: span 3;
}
.bento .tile.cta h3 { color: var(--white); }
.bento .tile.cta p { color: rgba(255,255,255,0.85); }
.bento .tile.cta .arrow { color: var(--white); }
.bento .tile.cta .ic-circle { background: rgba(255,255,255,0.15); color: var(--white); }

.bento .tile.dark {
  background: var(--navy);
  color: var(--white);
}
.bento .tile.dark h3 { color: var(--white); }
.bento .tile.dark p { color: rgba(255,255,255,0.78); }
.bento .tile.dark .arrow { color: var(--white); }
.bento .tile.dark .ic-circle { background: rgba(255,255,255,0.1); color: var(--pink-soft); }
.bento .tile.dark .num { color: var(--pink-soft); }

/* ---------- legacy services (services.html grid) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px -28px rgba(21,52,96,0.22);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.service-card .num { font-family: var(--font-head); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.1em; color: var(--pink); }
.service-card h3 { margin: 12px 0 14px; }
.service-card p { font-size: 0.95rem; line-height: 1.55; }
.service-card .ic { margin-bottom: 18px; }
.service-card .arrow {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
.service-card .arrow i { transition: transform 0.3s; }
.service-card:hover .arrow i { transform: translateX(4px); }
.service-card.feature { background: var(--navy); color: var(--white); }
.service-card.feature h3 { color: var(--white); }
.service-card.feature p { color: rgba(255,255,255,0.78); }
.service-card.feature .ic { background: rgba(255,255,255,0.12); color: var(--pink-soft); }
.service-card.feature .arrow { color: var(--white); }
/* services-grid icon rotation */
.services-grid > article:nth-child(6n+1) .ic { background: var(--pink); color: var(--white); }
.services-grid > article:nth-child(6n+2) .ic { background: var(--navy); color: var(--white); }
.services-grid > article:nth-child(6n+3) .ic { background: var(--teal); color: var(--white); }
.services-grid > article:nth-child(6n+4) .ic { background: var(--pink-soft); color: var(--pink-dark); }
.services-grid > article:nth-child(6n+5) .ic { background: var(--teal-soft); color: var(--teal); }
.services-grid > article:nth-child(6n) .ic { background: #eef0fa; color: var(--navy); }

/* ---------- health plan (homepage) ---------- */
.health { padding: 130px 0 140px; position: relative; }
.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.health-art { position: relative; }
.health-art .ph1 {
  width: 100%;
  height: 520px;
  border-radius: 36px;
  background: url('../images/golden-retriever-being-pet-loyal-partner-friend-2026-03-18-07-56-41-utc.jpg') center / cover;
  box-shadow: var(--shadow-card);
  position: relative;
}
.health-art .ph1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,52,96,0) 50%, rgba(21,52,96,0.25) 100%);
  border-radius: 36px;
}
.health-art .badge {
  position: absolute;
  left: -22px; top: 32px;
  width: 86px; height: 86px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-card);
}
.health-art .badge i { color: var(--pink-soft); }
.health-art .price-card {
  position: absolute;
  right: -10px; bottom: -28px;
  background: var(--pink);
  color: var(--white);
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: 0 30px 50px -22px rgba(205,79,155,0.7);
}
.health-art .price-card .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.9; }
.health-art .price-card .price { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; line-height: 1; margin: 6px 0; }
.health-art .price-card .price small { font-size: 0.95rem; font-weight: 700; opacity: 0.9; }
.health-art .price-card .sub { font-size: 0.85rem; opacity: 0.9; }
.health-copy h2 { margin: 16px 0 22px; }
.health-copy .lede { font-size: 1.06rem; color: var(--ink); font-weight: 500; margin-bottom: 18px; }
.health-points {
  list-style: none;
  margin: 28px 0 32px;
  display: grid;
  gap: 14px;
}
.health-points li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 16px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 12px 24px -22px rgba(21,52,96,0.5);
}
.health-points li i {
  width: 28px; height: 28px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.7rem;
  flex: 0 0 auto;
}

/* ---------- team intro (homepage collage) ---------- */
.team-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.team-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
  position: relative;
}
.team-collage .t-photo {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 40px -22px rgba(0,0,0,0.5);
}
.team-collage .t-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-collage .p1 { grid-column: 1 / 2; grid-row: 1 / 3; }
.team-collage .p2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.team-collage .p3 { grid-column: 3 / 4; grid-row: 1 / 2; }
.team-collage .p4 { grid-column: 2 / 3; grid-row: 2 / 3; }
.team-collage .p5 { grid-column: 3 / 4; grid-row: 2 / 3; }
@media (max-width: 1080px) {
  .team-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-collage { grid-template-rows: repeat(2, 200px); }
}
@media (max-width: 680px) {
  .team-collage { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 160px); }
  .team-collage .p1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .team-collage .p2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .team-collage .p3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .team-collage .p4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .team-collage .p5 { grid-column: 2 / 3; grid-row: 3 / 4; }
}

/* ---------- team ---------- */
.team {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  border-radius: 60px;
  margin: 0 16px;
}
.team::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(205,79,155,0.16);
  filter: blur(40px);
}
.team::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(44,154,169,0.18);
  filter: blur(40px);
}
.team .container { position: relative; }
.team h2 { color: var(--white); }
.team .section-head p { color: rgba(255,255,255,0.78); }
.team-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.team-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.team-stats .stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 22px;
  padding: 22px 24px;
}
.team-stats .num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--pink-soft); line-height: 1; }
.team-stats .lbl { margin-top: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.78); }
.team-copy h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin-bottom: 18px; }
.team-copy p { color: rgba(255,255,255,0.82); font-size: 1.02rem; }
.team-copy .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.team-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 28px; padding: 28px; }
.team-card .head { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.team-card .av {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pink);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
}
.team-card .av.t { background: var(--teal); }
.team-card .av.n { background: var(--navy-soft); }
.team-card .lead { font-family: var(--font-head); font-weight: 800; color: var(--white); }
.team-card .sub { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.team-card .row { display: flex; justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.92rem; }
.team-card .row span:first-child { color: rgba(255,255,255,0.7); }
.team-card .row span:last-child { font-weight: 700; color: var(--white); }

/* ---------- team page grid ---------- */
.team-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.team-filter button {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
}
.team-filter button:hover { border-color: var(--pink); color: var(--pink-dark); }
.team-filter button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.team-people {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.person {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  padding: 0 0 26px;
  box-shadow: 0 18px 40px -28px rgba(21,52,96,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.person:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.person .av-wrap {
  background: linear-gradient(135deg, var(--bg-warm), var(--teal-soft));
  padding: 32px 0 26px;
  position: relative;
}
.person .av-wrap::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 26px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.person .av-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--white);
  margin: 0 auto;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}
.person.vet .av-circle { color: var(--pink-dark); }
.person.nurse .av-circle { color: var(--teal); }
.person.support .av-circle { color: var(--navy); }
.person h3 { margin: 22px 18px 6px; font-size: 1.1rem; }
.person .creds { font-size: 0.82rem; color: var(--ink-soft); padding: 0 18px; margin-bottom: 10px; min-height: 38px; }
.person .role-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.person.nurse .role-tag { background: var(--teal); color: var(--white); }
.person.support .role-tag { background: var(--navy); color: var(--white); }

/* ---------- team rich list (team page) ---------- */
.team-section-title {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin: 60px 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.team-section-title::before {
  content: '';
  width: 36px;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
}
.team-section-title:first-of-type { margin-top: 0; }
.team-people-rich { display: grid; gap: 28px; }
.person-rich {
  background: var(--white);
  border-radius: 32px;
  padding: 28px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 16px 40px -28px rgba(21,52,96,0.22);
  transition: transform 0.3s, box-shadow 0.3s;
}
.person-rich:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.person-rich .pr-photo { width: 220px; height: 260px; border-radius: 24px; overflow: hidden; background: var(--bg-warm); }
.person-rich .pr-photo img { width: 100%; height: 100%; object-fit: cover; }
.person-rich .pr-photo-empty { display: grid; place-items: center; background: var(--bg-warm); }
.person-rich .ph-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--pink-dark); font-weight: 700; font-size: 0.85rem; }
.person-rich .ph-placeholder i { font-size: 2rem; }
.person-rich .pr-body .role-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.person-rich.nurse .pr-body .role-tag { background: var(--teal); }
.person-rich.support .pr-body .role-tag { background: var(--navy); }
.person-rich .pr-body h3 { margin: 0 0 6px; font-size: 1.5rem; }
.person-rich .pr-body .creds { color: var(--pink-dark); font-weight: 700; font-size: 0.92rem; margin-bottom: 14px; letter-spacing: 0.02em; }
.person-rich .pr-body p { font-size: 0.98rem; line-height: 1.6; }
@media (max-width: 760px) {
  .person-rich { grid-template-columns: 1fr; gap: 20px; }
  .person-rich .pr-photo { width: 100%; height: 280px; }
}

/* ---------- service tile with image ---------- */
.service-card.has-img { padding: 0; overflow: hidden; }
.service-card.has-img .card-img { height: 180px; background-size: cover; background-position: center; }
.service-card.has-img .card-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card.has-img .card-body .ic { width: 44px; height: 44px; font-size: 1rem; margin-top: -52px; margin-bottom: 14px; position: relative; z-index: 2; box-shadow: 0 8px 18px -8px rgba(21,52,96,0.5); }
.service-card.has-img .card-body h3 { margin: 0 0 10px; }
.service-card.has-img .card-body .num { margin-bottom: 6px; display: block; }

/* ---------- accordion (services details) ---------- */
.accordion { display: grid; gap: 12px; }
.accordion details {
  background: var(--white);
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: 0 18px 40px -28px rgba(21,52,96,0.2);
  transition: box-shadow 0.3s;
}
.accordion details[open] { box-shadow: var(--shadow-card); }
.accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  transition: transform 0.3s, background 0.3s;
}
.accordion details[open] summary::after { content: '\f068'; background: var(--navy); transform: rotate(180deg); }
.accordion .ac-body { padding-top: 14px; color: var(--ink-soft); }
.accordion .ac-body p + p { margin-top: 10px; }

/* ---------- prose blocks ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin: 40px 0 18px; }
.prose h3 { margin: 28px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 18px 24px; color: var(--ink); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--navy); }

/* ---------- price table ---------- */
.price-block {
  background: var(--white);
  border-radius: 32px;
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
  margin-bottom: 28px;
}
.price-block h3 {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  font-size: 1.3rem;
}
.price-list { display: grid; gap: 2px; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-weight: 600; color: var(--navy); }
.price-row .name .note { display: block; font-weight: 400; font-size: 0.88rem; color: var(--ink-soft); margin-top: 2px; }
.price-row .price { font-family: var(--font-head); font-weight: 800; color: var(--pink-dark); font-size: 1.05rem; white-space: nowrap; }

/* alternating header circle colours */
.price-block:nth-child(1) h3 .ic { background: var(--pink); color: var(--white); }
.price-block:nth-child(2) h3 .ic { background: var(--navy); color: var(--white); }
.price-block:nth-child(3) h3 .ic { background: var(--teal); color: var(--white); }
.price-block:nth-child(4) h3 .ic { background: var(--pink); color: var(--white); }
.price-block:nth-child(5) h3 .ic { background: var(--navy); color: var(--white); }
.price-block:nth-child(6) h3 .ic { background: var(--teal); color: var(--white); }

/* ---------- care plans tiers ---------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.tier {
  background: var(--white);
  border-radius: 32px;
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier.featured {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-12px);
}
.tier.featured h3, .tier.featured .price-amount { color: var(--white); }
.tier.featured .price-amount small { color: rgba(255,255,255,0.85); }
.tier.featured li { color: rgba(255,255,255,0.88); }
.tier.featured li i { background: var(--pink); color: var(--white); }
.tier .tier-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tier h3 { font-size: 1.4rem; margin-bottom: 8px; }
.tier .tier-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 22px; }
.tier.featured .tier-sub { color: rgba(255,255,255,0.7); }
.tier .price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
}
.tier .price-amount small { font-size: 1rem; font-weight: 600; color: var(--ink-soft); }
.tier .price-amount .freq { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-top: 4px; }
.tier ul { list-style: none; margin: 26px 0 28px; display: grid; gap: 10px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.94rem; color: var(--ink); }
.tier li i {
  flex: 0 0 auto; margin-top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.6rem;
}

/* ---------- news ---------- */
.news { padding: 130px 0; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(21,52,96,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.news-card .img { height: 220px; background-size: cover; background-position: center; }
.news-card .body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.news-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-dark);
}
.news-card h3 { font-size: 1.2rem; margin: 12px 0 10px; line-height: 1.25; }
.news-card p { font-size: 0.93rem; line-height: 1.55; }
.news-card .read {
  margin-top: 18px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

/* ---------- pet advice trio ---------- */
.advice-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.advice-card {
  background: var(--white);
  border-radius: 36px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 20px 50px -30px rgba(21,52,96,0.32);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.advice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.advice-card .big-ic { margin: 0 auto 22px; }
.advice-card h3 { margin-bottom: 10px; }
.advice-card p { margin-bottom: 22px; }
.advice-card .btn { margin-top: auto; align-self: center; }

/* ---------- widget pages ---------- */
.widget-area {
  background: var(--white);
  border: 2px dashed rgba(21,52,96,0.18);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 18px 50px -32px rgba(21,52,96,0.2);
  margin-bottom: 40px;
}
.widget-area .icon-big {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}
.widget-area h3 { font-size: 1.4rem; margin-bottom: 12px; }
.widget-area p { max-width: 520px; margin: 0 auto; }

/* ---------- contact + form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { background: var(--white); border-radius: 32px; padding: 36px 38px; box-shadow: var(--shadow-card); }
.contact-info h3 { margin-bottom: 22px; font-size: 1.3rem; }
.contact-info .info-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line); }
.contact-info .info-row:first-of-type { border-top: 0; padding-top: 0; }
.contact-info .info-row strong { display: block; font-family: var(--font-head); color: var(--navy); margin-bottom: 4px; }
.contact-info .info-row span, .contact-info .info-row a { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; }
.contact-info .info-row a:hover { color: var(--pink-dark); }
.contact-info .info-row:nth-child(1) .ic { background: var(--pink); color: var(--white); }
.contact-info .info-row:nth-child(2) .ic { background: var(--navy); color: var(--white); }
.contact-info .info-row:nth-child(3) .ic { background: var(--teal); color: var(--white); }
.contact-info .info-row:nth-child(4) .ic { background: var(--pink); color: var(--white); }
.contact-info .info-row:nth-child(5) .ic { background: var(--navy); color: var(--white); }
.contact-info .info-row:nth-child(6) .ic { background: var(--teal); color: var(--white); }

form.cta-form {
  background: var(--white);
  border-radius: 32px;
  padding: 40px 42px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.86rem; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 0;
  border-color: var(--pink);
  background: var(--white);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.form-check input { margin-top: 4px; }
.form-actions { display: flex; gap: 12px; align-items: center; }
.form-note { font-size: 0.85rem; color: var(--ink-soft); }

/* ============================================================
   GRAVITY FORMS, themed to match .cta-form
   Covers GF v2.5+ markup. Works inside <div class="cta-form">
   wrapper or standalone.
   ============================================================ */

/* Wrapper — make it look like our cta-form card when not already inside one */
.gform_wrapper {
  background: var(--white);
  border-radius: 32px;
  padding: 40px 42px;
  box-shadow: var(--shadow-card);
}
/* If the form already sits inside .cta-form, kill the duplicate card */
.cta-form > .gform_wrapper,
.cta-form .gform_wrapper {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}

/* Headings/legends — match section_break and form heading styles */
.gform_wrapper h2,
.gform_wrapper h3,
.gform_wrapper .gsection_title,
.gform_wrapper .gfield--type-section .gfield_label {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  margin: 22px 0 14px;
  padding: 0;
  border-bottom: 0;
  letter-spacing: -0.01em;
}
.gform_wrapper .gsection {
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

/* Form fields list — kill list-style and gap them */
.gform_wrapper .gform_fields,
.gform_wrapper ul.gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

/* Each field row */
.gform_wrapper .gfield {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Labels — bold navy, small */
.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
  padding: 0;
}
.gform_wrapper .gfield_required {
  color: var(--pink-dark);
  margin-left: 4px;
}
.gform_wrapper .gfield_description,
.gform_wrapper .instruction {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* All text-y inputs */
.gform_wrapper .ginput_container input[type="text"],
.gform_wrapper .ginput_container input[type="email"],
.gform_wrapper .ginput_container input[type="url"],
.gform_wrapper .ginput_container input[type="tel"],
.gform_wrapper .ginput_container input[type="number"],
.gform_wrapper .ginput_container input[type="password"],
.gform_wrapper .ginput_container input[type="date"],
.gform_wrapper .ginput_container input[type="time"],
.gform_wrapper .ginput_container input[type="datetime-local"],
.gform_wrapper .ginput_container input[type="search"],
.gform_wrapper .ginput_container select,
.gform_wrapper .ginput_container textarea {
  font-family: var(--font-body);
  font-size: 0.96rem;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.4;
}
.gform_wrapper .ginput_container select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path fill='%231a2545' d='M7 8L0 0h14z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 44px;
}
.gform_wrapper .ginput_container textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 14px;
}
.gform_wrapper .ginput_container input:focus,
.gform_wrapper .ginput_container select:focus,
.gform_wrapper .ginput_container textarea:focus {
  outline: 0;
  border-color: var(--pink);
  background: var(--white);
}

/* Sub-labels (first/last name, etc) */
.gform_wrapper .ginput_complex label,
.gform_wrapper .gfield_label_before_complex,
.gform_wrapper .gform-field-label--type-sub {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 6px 0 0;
}

/* Multi-column layout */
.gform_wrapper .ginput_complex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.gform_wrapper .ginput_complex.ginput_container_address {
  grid-template-columns: 1fr;
}
.gform_wrapper .ginput_complex .ginput_left,
.gform_wrapper .ginput_complex .ginput_right,
.gform_wrapper .ginput_complex .ginput_full {
  width: 100%;
  padding: 0;
}
.gform_wrapper .ginput_complex .ginput_full { grid-column: 1 / -1; }

/* GF column ratios (2.5+ uses grid-column-span classes) */
.gform_wrapper .gfield--width-half        { grid-column: span 6; }
.gform_wrapper .gfield--width-third       { grid-column: span 4; }
.gform_wrapper .gfield--width-two-thirds  { grid-column: span 8; }
.gform_wrapper .gfield--width-quarter     { grid-column: span 3; }
.gform_wrapper .gfield--width-three-quarters { grid-column: span 9; }
.gform_wrapper .gfield--width-full        { grid-column: span 12; }
.gform_wrapper .gform_fields {
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 680px) {
  .gform_wrapper .gform_fields > * { grid-column: span 12 !important; }
  .gform_wrapper .ginput_complex { grid-template-columns: 1fr; }
}

/* Checkbox / radio groups */
.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.gform_wrapper .gchoice,
.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.gform_wrapper .gfield_checkbox input,
.gform_wrapper .gfield_radio input {
  margin-top: 3px;
  accent-color: var(--pink);
  width: 18px;
  height: 18px;
}
.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  font-weight: 500;
  color: var(--ink);
}

/* Consent (single-checkbox tick) */
.gform_wrapper .gfield--type-consent .ginput_container_consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Honeypot — hide the spam field */
.gform_wrapper .gform_validation_container,
.gform_wrapper .gform_honeypot,
.gform_wrapper input[name^="input_"][tabindex="-1"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}

/* Submit button — pink pill, matches .btn-pink */
.gform_wrapper .gform_footer {
  padding: 18px 0 0;
  margin: 0;
  border: 0;
}
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_button,
.gform_wrapper input.gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  background: var(--pink);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 14px 30px -14px rgba(205,79,155,0.7);
  -webkit-appearance: none;
  appearance: none;
}
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_button:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

/* Validation states */
.gform_wrapper .gfield_error .gfield_label { color: var(--pink-dark); }
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
  border-color: var(--pink) !important;
  background: var(--bg-warm);
}
.gform_wrapper .validation_message,
.gform_wrapper .gfield_validation_message {
  font-size: 0.85rem;
  color: var(--pink-dark);
  margin-top: 6px;
  font-weight: 600;
}
.gform_wrapper .validation_error,
.gform_wrapper .gform_submission_error {
  background: var(--bg-warm);
  border: 1px solid var(--pink);
  color: var(--pink-dark);
  padding: 14px 18px;
  border-radius: 14px;
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Confirmation message */
.gform_confirmation_wrapper,
.gform_confirmation_message {
  background: var(--teal-soft);
  border: 1px solid var(--teal);
  color: var(--navy);
  padding: 22px 24px;
  border-radius: 18px;
  font-size: 1rem;
}

/* Progress bar (multi-step forms) */
.gform_wrapper .gf_progressbar_wrapper { margin-bottom: 24px; }
.gform_wrapper .gf_progressbar {
  background: var(--bg-warm);
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}
.gform_wrapper .gf_progressbar_percentage {
  background: var(--pink);
  height: 100%;
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* AJAX spinner */
.gform_wrapper .gform_ajax_spinner {
  margin-left: 10px;
  vertical-align: middle;
}

/* Datepicker tweak (jQuery UI) */
.ui-datepicker {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-card);
  font-family: var(--font-body);
}
.ui-datepicker .ui-state-active {
  background: var(--pink);
  color: var(--white);
  border-radius: 8px;
}

/* ---------- map ---------- */
.map-wrap {
  border-radius: 32px;
  overflow: hidden;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- reviews / VHD placeholder ---------- */
.reviews { background: var(--bg-warm); padding: 110px 0; }
.vhd-placeholder {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 2px dashed rgba(21,52,96,0.18);
  border-radius: 32px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 18px 50px -32px rgba(21,52,96,0.3);
}
.vhd-inner i.fa-star { font-size: 2rem; color: #f3a93d; margin-bottom: 18px; }
.vhd-inner h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--navy); }
.vhd-inner p { max-width: 540px; margin: 0 auto 22px; font-size: 0.96rem; line-height: 1.6; }
.vhd-inner .powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--teal);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- emergencies callout ---------- */
.emerg-callout {
  background: linear-gradient(120deg, #b3357f, #cd4f9b);
  color: var(--white);
  border-radius: 36px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  margin: 0 0 60px;
}
.emerg-callout h2, .emerg-callout p { color: var(--white); }
.emerg-callout p { color: rgba(255,255,255,0.92); margin-top: 8px; }
.emerg-callout .ec-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- memorial gallery ---------- */
.memorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.memorial-card {
  background: var(--white);
  border-radius: 26px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 18px 40px -30px rgba(21,52,96,0.3);
}
.memorial-card .pet-img {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--bg-warm) center / cover;
  margin: 0 auto 16px;
}
.memorial-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.memorial-card .years { font-size: 0.85rem; color: var(--pink-dark); font-weight: 700; margin-bottom: 14px; }
.memorial-card p { font-style: italic; font-size: 0.92rem; line-height: 1.55; }

/* ---------- pre-footer CTA ---------- */
.cta-band {
  position: relative;
  padding: 0 16px;
  margin-top: 0;
}
.cta-band .inner {
  position: relative;
  background-image: url('../images/prefooter.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  padding: 90px 60px;
  overflow: hidden;
}
.cta-band .inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(21,52,96,0.85) 0%, rgba(21,52,96,0.55) 55%, rgba(21,52,96,0.15) 100%);
}
.cta-band .copy { position: relative; max-width: 620px; color: var(--white); }
.cta-band h2 { color: var(--white); margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 30px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer.site { background: var(--white); padding: 90px 0 30px; margin-top: 0; }
footer.site .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
footer.site h5 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 18px;
}
footer.site ul { list-style: none; display: grid; gap: 10px; }
footer.site ul a { color: var(--ink-soft); font-size: 0.95rem; transition: color 0.2s; }
footer.site ul a:hover { color: var(--pink-dark); }
footer .brand-col img { height: 60px; margin-bottom: 22px; }
footer .brand-col p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 22px; }
footer .socials { display: flex; gap: 10px; }
footer .socials a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pink);
  color: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
footer .socials a:nth-child(2) { background: var(--navy); }
footer .socials a:nth-child(3) { background: var(--teal); }
footer .socials a:hover { transform: translateY(-2px); filter: brightness(1.1); }
footer .contact-block li { display: flex; gap: 12px; align-items: flex-start; }
footer .contact-block li > i {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 0.78rem;
  flex: 0 0 auto;
  margin-top: 2px;
}
footer .contact-block li:nth-child(2) > i { background: var(--navy); }
footer .contact-block li:nth-child(3) > i { background: var(--teal); }
footer .contact-block li:nth-child(4) > i { background: var(--pink-soft); color: var(--pink-dark); }
footer .contact-block li a, footer .contact-block li span { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.5; padding-top: 4px; }
footer .bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
footer .bottom a { color: var(--ink-soft); transition: color 0.2s; }
footer .bottom a:hover { color: var(--pink-dark); }
footer .credit a { font-weight: 700; color: var(--navy); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  nav.primary { display: none; }
  .burger { display: inline-flex; }
  .header-cta .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .usp .container { grid-template-columns: 1fr 1fr; }
  .about-grid, .health-grid, .team-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-art .main-img, .health-art .ph1 { height: 420px; }
  .news-grid, .services-grid { grid-template-columns: 1fr 1fr; }
  .team-people { grid-template-columns: 1fr 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier.featured { transform: none; }
  .advice-trio { grid-template-columns: 1fr; }
  footer.site .container { grid-template-columns: 1fr 1fr; }
  .wwd-head { grid-template-columns: 1fr; gap: 24px; }
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .bento .tile.feature { grid-column: span 4; grid-row: span 2; }
  .bento .tile.wide, .bento .tile.cta { grid-column: span 4; }
  .bento .tile.med, .bento .tile.sm { grid-column: span 2; }
  .bento .tile.tall { grid-column: span 2; }
  .emerg-callout { grid-template-columns: 1fr; }
  .memorial-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  header.site { padding: 14px 0; }
  .brand img { height: 44px; }
  .burger { color: var(--white); font-size: 1.5rem; }
  .hero { padding: 32px 0 110px; min-height: 60vh; }
  .hero-inner { min-height: auto; }
  .hero-copy h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-copy .lede { font-size: 1rem; }
  .page-hero { padding: 40px 0 100px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.4rem); }

  /* Buttons: full width on mobile */
  .btn, .hero-ctas .btn, .about-actions .btn, .cta-band .actions .btn, .form-actions .btn, .ec-actions .btn, .mn-cta .btn { width: 100%; justify-content: center; }
  .hero-ctas, .about-actions, .cta-band .actions, .ec-actions, .mn-cta, .team-copy .actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .form-note { text-align: center; }

  /* Icon + text boxes: center on mobile */
  .usp .container { grid-template-columns: 1fr; padding: 28px; }
  .usp .item { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .service-card { text-align: center; align-items: center; }
  .service-card .ic { margin-left: auto; margin-right: auto; }
  .service-card.has-img { text-align: left; align-items: stretch; }
  .service-card.has-img .card-body { text-align: center; align-items: center; }
  .service-card.has-img .card-body .ic { margin-top: -30px; }
  .service-card .arrow { justify-content: center; align-self: center; }
  .bento .tile { text-align: center; align-items: center; }
  .bento .tile .ic-circle { margin-left: auto; margin-right: auto; }
  .bento .tile.feature { text-align: left; align-items: flex-start; }
  .bento .tile.feature h3 { text-align: left; }
  .bento .tile .arrow { justify-content: center; align-self: center; }
  .advice-card { text-align: center; }
  .about-points li { justify-content: center; text-align: left; }
  .about-points { justify-items: center; }

  .news-grid, .services-grid, .team-people, .memorial-grid { grid-template-columns: 1fr; }
  footer.site .container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  footer .brand-col, footer .socials { justify-content: center; }
  footer .socials { display: flex; }
  footer .contact-block li { justify-content: flex-start; text-align: left; }
  footer .bottom { justify-content: center; text-align: center; }
  .cta-band .inner { padding: 60px 26px; border-radius: 30px; text-align: center; }
  .cta-band .copy { margin-left: auto; margin-right: auto; }
  .team { margin: 0 8px; border-radius: 36px; padding: 90px 0; }
  .team-copy h2, .team-copy p { text-align: center; }
  .team-copy .eyebrow { justify-content: center; align-self: center; }
  .about-points { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .price-block { padding: 28px 22px; }
  form.cta-form { padding: 28px 22px; }
  .emerg-callout { padding: 32px; text-align: center; }
  .emerg-callout .eyebrow { justify-content: center; align-self: center; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento .tile, .bento .tile.feature, .bento .tile.wide, .bento .tile.med, .bento .tile.sm, .bento .tile.tall, .bento .tile.cta {
    grid-column: span 1; grid-row: span 1;
  }
  .bento .tile.feature { min-height: 320px; }

  /* Homepage team collage: hide on mobile per Jack feedback */
  .team-collage { display: none; }
  .team-intro-grid { grid-template-columns: 1fr; }
  .team-copy { text-align: center; }
  .team-copy h2 br { display: none; }

  /* Person-rich cards on team page */
  .person-rich { padding: 22px; text-align: center; }
  .person-rich .pr-body .role-tag { align-self: center; }
  .person-rich .pr-body .creds, .person-rich .pr-body h3, .person-rich .pr-body p { text-align: center; }

  /* About float card */
  .about-art .float-card { left: 50%; transform: translateX(-50%); bottom: 18px; }

  /* Section heads center */
  .section-head { text-align: center; }
  .section-head .eyebrow { justify-self: center; }

  /* Eyebrow auto-center when parent is centered */
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .about-copy .eyebrow, .health-copy .eyebrow, .wwd-head .eyebrow { justify-content: center; }
  .about-copy, .health-copy, .wwd-head { text-align: center; }
  .wwd-head .link-arrow { justify-content: center; }
  .health-points li { justify-content: center; text-align: left; }

  /* Health price card sits over image cleaner */
  .health-art .price-card { right: 50%; transform: translateX(50%); bottom: -22px; }

  /* Map height shrinks */
  .map-wrap iframe { height: 280px; }

  /* Mobile nav drawer spacing */
  .mobile-nav nav a { font-size: 1.4rem; }
}
