/* ============================================================
   Manzanita Animal Hospital — Design System
   Warm & friendly · Kingman, AZ · Caring for pets since 1967
   ============================================================ */

:root {
  /* Brand palette — matched to manzanitavets.com (blue & white) */
  --forest:      #1586db;   /* primary brand blue */
  --forest-700:  #0f6fc0;
  --forest-900:  #0a3f6b;   /* deep navy-blue (footer / dark headings) */
  --sage:        #58a6e2;   /* mid sky blue */
  --sage-200:    #c8e3f7;
  --sage-50:     #eaf4fc;
  --terracotta:  #1c4fa3;   /* brand red accent */
  --terracotta-600:#163f86;
  --amber:       #f2b134;   /* gold (review stars) */
  --cream:       #f6f9fc;   /* page background (cool white) */
  --sand:        #e7f1fb;   /* pale blue band */
  --sand-2:      #dceaf7;
  --ink:         #3a4046;   /* body text (warm gray, like #444343) */
  --ink-soft:    #5d656d;
  --muted:       #8a9097;
  --line:        #e1e8f0;
  --white:       #ffffff;

  /* Type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --r-xl: 40px;
  --shadow-sm: 0 4px 14px rgba(35,48,42,.06);
  --shadow:    0 14px 40px rgba(35,48,42,.10);
  --shadow-lg: 0 30px 70px rgba(35,48,42,.16);

  --container: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
/* Default size for inline icons (overridden by sized .ic/.pill/social containers) */
.icon { width: 1.1em; height: 1.1em; flex-shrink: 0; fill: currentColor; vertical-align: -0.16em; }
h3 .icon, h4 .icon { margin-right: .2em; }
a { color: var(--forest); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--terracotta-600); }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--forest-900); line-height: 1.12; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

.container { width: min(var(--container), 92%); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
.bg-cream { background: var(--cream); }
.bg-sand  { background: linear-gradient(180deg, var(--cream), var(--sand) 120%); }
.bg-sage  { background: var(--sage-50); }
.bg-forest{ background: var(--forest); color: #eaf3ee; }
.bg-forest h1,.bg-forest h2,.bg-forest h3 { color: #fff; }
.text-center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; font-size: .78rem; color: var(--terracotta-600);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--terracotta); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }
.lead.center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--forest); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-weight: 800; font-size: .98rem;
  padding: .92rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  box-shadow: 0 10px 24px rgba(46,94,78,.22); line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 16px 32px rgba(46,94,78,.30); }
.btn--accent { --bg: var(--terracotta); box-shadow: 0 10px 24px rgba(28,79,163,.30); }
.btn--accent:hover { background: var(--terracotta-600); box-shadow: 0 16px 34px rgba(28,79,163,.38); }
.btn--ghost { --bg: transparent; --fg: var(--forest); border: 2px solid var(--sage-200); box-shadow: none; }
.btn--ghost:hover { border-color: var(--forest); background: var(--sage-50); color: var(--forest); transform: translateY(-2px); }
.btn--white { --bg: #fff; --fg: var(--forest-900); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Header ---------- */
.topbar {
  background: var(--forest-900); color: #d7e7df; font-size: .85rem; font-weight: 600;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; }
.topbar a { color: #eaf3ee; }
.topbar a:hover { color: #fff; }
.topbar__info { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__info span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__socials { display: flex; gap: .35rem; }
.topbar__socials a {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.10); transition: background .2s;
}
.topbar__socials a:hover { background: var(--terracotta); }
.topbar__socials svg { width: 14px; height: 14px; fill: #fff; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(251,247,241,.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 112px; }
.brand { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.brand__logo {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, var(--sage), var(--forest));
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.brand__logo svg { width: 30px; height: 30px; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--forest-900); line-height: 1.05; }
.brand__name span { display: block; font-family: var(--font-body); font-weight: 700; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--terracotta-600); }

.menu { display: flex; align-items: center; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .72rem; border-radius: 999px;
  font-weight: 700; font-size: .94rem; color: var(--ink);
}
.menu > li > a:hover, .menu > li.current > a { color: var(--forest); background: var(--sage-50); }
.menu > li.has-sub > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .6; }
.submenu {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: .5rem;
  box-shadow: var(--shadow); list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s var(--ease);
}
.menu > li.has-sub:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: .55rem .8rem; border-radius: var(--r-sm); font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.submenu li a:hover { background: var(--sage-50); color: var(--forest); }
.nav__cta { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; }

/* mobile nav */
.hamburger { display: none; width: 46px; height: 46px; border: 0; background: var(--forest); border-radius: 12px; cursor: pointer; position: relative; }
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 22px; height: 2.5px; background: #fff; border-radius: 3px; transform: translate(-50%,-50%); transition: .25s var(--ease);
}
.hamburger span::before { top: -7px; }
.hamburger span::after  { top: 7px; }
body.nav-open .hamburger span { background: transparent; }
body.nav-open .hamburger span::before { top: 0; transform: translate(-50%,-50%) rotate(45deg); }
body.nav-open .hamburger span::after  { top: 0; transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(160deg, #eef6fd 0%, #e2effb 55%, #d7e9f7 100%); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 0; }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; padding: clamp(3rem,6vw,5.5rem) 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff; border: 1px solid var(--line);
  padding: .45rem .9rem; border-radius: 999px; font-weight: 800; font-size: .82rem; color: var(--forest);
  box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.hero__badge svg { width: 16px; height: 16px; fill: var(--terracotta); }
.hero h1 { margin-bottom: .4em; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__cta { margin-top: 1.7rem; }
.hero__trust { margin-top: 2rem; display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.hero__trust .stat { display: flex; flex-direction: column; }
.hero__trust .stat b { font-family: var(--font-head); font-size: 1.7rem; color: var(--forest); line-height: 1; }
.hero__trust .stat span { font-size: .82rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/4.4;
  box-shadow: var(--shadow-lg); background: linear-gradient(150deg, var(--sage), var(--forest));
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__floating {
  position: absolute; bottom: 22px; left: -26px; background: #fff; border-radius: var(--r);
  padding: .9rem 1.1rem; box-shadow: var(--shadow); display: flex; align-items: center; gap: .8rem; z-index: 3;
}
.hero__floating .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-50); display: grid; place-items: center; }
.hero__floating .ic svg { width: 24px; height: 24px; fill: var(--forest); }
.hero__floating b { display: block; font-family: var(--font-head); color: var(--forest-900); }
.hero__floating small { color: var(--muted); font-weight: 700; }

/* paw pattern divider */
.wave { display: block; width: 100%; height: auto; }

/* ---------- Info strip cards ---------- */
.infostrip { margin-top: -2.5rem; position: relative; z-index: 5; }
.infocards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.infocard {
  background: #fff; border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow);
  border: 1px solid var(--line); display: flex; gap: 1rem; align-items: flex-start; transition: transform .25s var(--ease);
}
.infocard:hover { transform: translateY(-5px); }
.infocard .ic { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: grid; place-items: center; background: var(--sage-50); }
.infocard .ic svg { width: 28px; height: 28px; fill: var(--forest); }
.infocard.is-emergency .ic { background: #e3edfb; }
.infocard.is-emergency .ic svg { fill: var(--terracotta-600); }
.infocard h3 { font-size: 1.1rem; margin-bottom: .2em; }
.infocard p { margin: 0; font-size: .92rem; color: var(--ink-soft); }
.infocard a { font-weight: 800; }

/* ---------- Services grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.svc-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.7rem; overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.svc-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, var(--sage), var(--terracotta)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .ic { width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; background: var(--sage-50); margin-bottom: 1.1rem; transition: background .25s; }
.svc-card:hover .ic { background: var(--sand); }
.svc-card .ic svg { width: 36px; height: 36px; fill: var(--forest); }
.svc-card h3 { margin-bottom: .35em; }
.svc-card p { font-size: .95rem; color: var(--ink-soft); margin-bottom: .9em; }
.svc-card .more { font-weight: 800; font-size: .9rem; color: var(--terracotta-600); display: inline-flex; align-items: center; gap: .35rem; }
.svc-card .more::after { content: "→"; transition: transform .2s; }
.svc-card:hover .more::after { transform: translateX(4px); }

/* feature list with checks */
.checks { list-style: none; padding: 0; }
.checks li { position: relative; padding-left: 2rem; margin-bottom: .7rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--sage-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231586db'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/0.85rem no-repeat;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.media-frame {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--sage), var(--forest));
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-badge {
  position: absolute; bottom: -20px; right: -10px; background: var(--terracotta); color: #fff;
  border-radius: var(--r); padding: 1rem 1.3rem; box-shadow: var(--shadow); text-align: center; font-family: var(--font-head);
}
.media-badge b { display: block; font-size: 2rem; line-height: 1; }
.media-badge span { font-size: .78rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }

/* ---------- Team ---------- */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card__photo { aspect-ratio: 1; background: linear-gradient(150deg, var(--sage-200), var(--sage)); position: relative; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__body { padding: 1.2rem 1.3rem 1.5rem; }
.team-card__body h3 { margin-bottom: .05em; }
.team-card__role { color: var(--terracotta-600); font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .6em; }
.team-card__body p { font-size: .92rem; color: var(--ink-soft); margin: 0; }

/* full team bios */
.bio { display: grid; grid-template-columns: 230px 1fr; gap: 2rem; align-items: start; padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.bio + .bio { margin-top: 1.6rem; }
.bio__photo { border-radius: var(--r); overflow: hidden; aspect-ratio: 1; background: linear-gradient(150deg, var(--sage-200), var(--sage)); box-shadow: var(--shadow-sm); }
.bio__photo img { width: 100%; height: 100%; object-fit: cover; }
.bio h3 { margin-bottom: .1em; }
.bio__role { color: var(--terracotta-600); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; margin-bottom: .9em; }
.bio p { font-size: .96rem; }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(330px, 1fr); gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; padding: .5rem .25rem 1.5rem; scrollbar-width: thin; }
.testi-track::-webkit-scrollbar { height: 8px; }
.testi-track::-webkit-scrollbar-thumb { background: var(--sage-200); border-radius: 999px; }
.testi {
  scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative;
}
.testi__quote { font-size: 3.4rem; font-family: var(--font-head); color: var(--sage-200); line-height: .6; height: 1.2rem; }
.testi p { font-size: 1rem; color: var(--ink); }
.testi__stars { color: var(--amber); letter-spacing: 2px; margin-bottom: .4rem; }
.testi__author { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.testi__avatar { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--forest); color: #fff; display: grid; place-items: center; font-family: var(--font-body); font-weight: 800; font-size: .88rem; line-height: 1; letter-spacing: .03em; }
.testi__author b { color: var(--forest-900); }
.testi__author span { display:block; font-size: .8rem; color: var(--muted); }

/* ---------- Emergency band ---------- */
.emergency-band { background: linear-gradient(135deg, var(--terracotta), var(--terracotta-600)); color: #fff; position: relative; overflow: hidden; }
.emergency-band h2 { color: #fff; }
.emergency-band .container { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.emergency-band .ic-pulse { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.18); display: grid; place-items: center; flex-shrink: 0; }
.emergency-band .ic-pulse svg { width: 34px; height: 34px; fill: #fff; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: #eaf3ee; border-radius: var(--r-xl); padding: clamp(2.5rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfe0d7; max-width: 55ch; margin-inline: auto; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; color: #eaf3ee; overflow: hidden; background-color: var(--forest); background-image: linear-gradient(100deg, rgba(8,45,80,.93) 0%, rgba(11,68,120,.84) 48%, rgba(20,110,200,.55) 100%), var(--hero-bg, none); background-size: cover; background-position: center; }
.page-hero__inner { position: relative; z-index: 2; padding: clamp(3rem,6vw,5rem) 0 clamp(3.5rem,7vw,5.5rem); }
.page-hero h1 { color: #fff; margin-bottom: .25em; }
.page-hero p { color: #cfe0d7; max-width: 58ch; margin: 0; }
.breadcrumb { display: flex; gap: .5rem; flex-wrap: wrap; font-size: .85rem; font-weight: 700; margin-bottom: 1.2rem; color: #a9c6ba; }
.breadcrumb a { color: #d7e7df; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { opacity: .6; }
.page-hero__paws { position: absolute; inset: 0; z-index: 1; opacity: .12; }

/* ---------- Content layouts ---------- */
.content { max-width: 760px; }
.content h2 { margin-top: 1.6em; }
.content h3 { color: var(--forest); margin-top: 1.5em; }
.content > :first-child { margin-top: 0; }
.with-aside { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); position: sticky; top: 128px; }
.aside-card + .aside-card { margin-top: 1.4rem; }
.aside-card h3 { margin-top: 0; font-size: 1.15rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .94rem; }
.hours-list li:last-child { border-bottom: 0; }
.hours-list li.closed span:last-child { color: var(--terracotta-600); font-weight: 700; }
.hours-list li b { font-weight: 700; color: var(--forest-900); }

.callout { background: var(--sage-50); border-left: 4px solid var(--forest); border-radius: var(--r); padding: 1.3rem 1.5rem; margin: 1.6rem 0; }
.callout--warn { background: #e9f1fb; border-left-color: var(--terracotta); }
.callout p:last-child { margin-bottom: 0; }

.pill-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: .8rem; margin: 1.4rem 0; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: .9rem 1.1rem; font-weight: 700; color: var(--forest-900); display: flex; align-items: center; gap: .6rem; }
.pill svg { width: 22px; height: 22px; fill: var(--terracotta); flex-shrink: 0; }

/* FAQ accordion */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .85rem; overflow: hidden; transition: box-shadow .2s; }
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__q { cursor: pointer; list-style: none; padding: 1.15rem 1.4rem; font-weight: 800; font-family: var(--font-head); font-size: 1.08rem; color: var(--forest-900); display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .plus { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--terracotta); border-radius: 2px; left: 50%; top: 50%; transition: transform .25s var(--ease); }
.faq__q .plus::before { width: 14px; height: 2.5px; transform: translate(-50%,-50%); }
.faq__q .plus::after  { width: 2.5px; height: 14px; transform: translate(-50%,-50%); }
.faq__item[open] .faq__q .plus::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }
.faq__a p:last-child { margin-bottom: 0; }

/* Forms / cards generic */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: .35rem; color: var(--forest-900); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-50); background: #fff; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

/* download list */
.dl-list { list-style: none; padding: 0; margin: 0; }
.dl-list li { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.3rem; margin-bottom: .8rem; }
.dl-list li b { color: var(--forest-900); display: flex; align-items: center; gap: .7rem; }
.dl-list li b svg { width: 24px; height: 24px; fill: var(--terracotta); }

/* resource / link cards */
.link-card { display:block; background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; height:100%; }
.link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.link-card .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--sage-50); display:grid; place-items:center; margin-bottom: 1rem; }
.link-card .ic svg { width: 26px; height: 26px; fill: var(--forest); }
.link-card h3 { font-size: 1.1rem; margin-bottom: .25em; }
.link-card p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* memorial */
.memorial-card { background:#fff; border:1px solid var(--line); border-left: 5px solid var(--sage); border-radius: var(--r); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.memorial-card .rainbow { font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--terracotta-600); }

/* Newsletter inline */
.newsletter { background: var(--sand); border-radius: var(--r-xl); padding: clamp(2rem,4vw,3rem); display:grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items:center; }
.newsletter form { display:flex; gap:.7rem; flex-wrap: wrap; }
.newsletter input { flex:1; min-width: 200px; padding: .9rem 1.1rem; border:1.5px solid var(--line); border-radius: 999px; font-family:inherit; font-size:1rem; background:#fff; }
.newsletter input:focus { outline:0; border-color: var(--sage); box-shadow:0 0 0 4px rgba(111,156,137,.18); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-900); color: #bcd2c8; padding-top: clamp(3rem,6vw,4.5rem); }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer a { color: #bcd2c8; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { font-size: .92rem; margin-top: 1rem; color: #9fbbae; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; font-size: .94rem; }
.footer-contact { font-size: .94rem; font-style: normal; line-height: 1.9; }
.footer-contact a { font-weight: 700; color: #fff; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s, transform .2s; }
.footer-socials a:hover { background: var(--terracotta); transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 1.4rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: #8aa89b; }
.footer-bottom a { color: #8aa89b; }

/* map */
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }

/* reveal animation */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 640px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.divider-paws { text-align:center; color: var(--sage-200); font-size: 1.2rem; letter-spacing: .6rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 960px) {
  .menu, .nav__cta .btn--ghost { display: none; }
  .hamburger { display: block; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { max-width: 460px; margin-inline: auto; width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .with-aside { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .newsletter { grid-template-columns: 1fr; }

  /* mobile menu panel */
  .mobile-menu {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); background: var(--cream);
    z-index: 200; transform: translateX(100%); transition: transform .32s var(--ease);
    box-shadow: var(--shadow-lg); overflow-y: auto; padding: 1.5rem 1.3rem 3rem;
  }
  body.nav-open .mobile-menu { transform: translateX(0); }
  .mobile-menu__head { display:flex; justify-content: space-between; align-items:center; margin-bottom: 1.2rem; }
  .mobile-menu__close { width: 42px; height: 42px; border-radius: 12px; border:0; background: var(--sand); font-size: 1.4rem; cursor: pointer; color: var(--forest-900); }
  .mobile-menu ul { list-style: none; padding: 0; margin: 0; }
  .mobile-menu > ul > li { border-bottom: 1px solid var(--line); }
  .mobile-menu > ul > li > a { display:block; padding: .85rem .4rem; font-weight: 800; font-size: 1.05rem; color: var(--forest-900); }
  .mobile-menu .sub { padding-left: .9rem; padding-bottom: .6rem; }
  .mobile-menu .sub a { display:block; padding: .4rem; color: var(--ink-soft); font-weight: 600; }
  .mobile-menu .btn { width: 100%; margin-top: 1.2rem; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(27,58,48,.4); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .3s; }
  body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
}
@media (min-width: 961px) { .mobile-menu, .nav-overlay { display: none; } }
@media (max-width: 720px) {
  body { font-size: 16px; }
  .infocards { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; gap: 1.2rem; }
  .bio__photo { max-width: 200px; }
  .topbar__info { display: none; }
  .hero__floating { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .emergency-band .container { flex-direction: column; text-align: center; }
}

/* Manzanita logo (transparent PNG) */
.brand__img { height: 84px; width: auto; display: block; }
.site-footer .brand__img { background: #fff; padding: 9px 13px; border-radius: 14px; box-shadow: var(--shadow-sm); }
@media (max-width: 960px) { .nav { min-height: 92px; } .brand__img { height: 64px; } }
@media (max-width: 720px) { .brand__img { height: 54px; } }

/* Google reviews badge / summary */
.gbadge { display: inline-flex; align-items: center; gap: .55rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.15rem; font-weight: 800; color: var(--forest-900); box-shadow: var(--shadow-sm); font-size: .96rem; }
.gbadge .gstars { color: var(--amber); letter-spacing: 1px; }
.gbadge b { color: var(--forest); }
.greviews { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; background: var(--sage-50); border: 1px solid var(--sage-200); border-radius: var(--r-lg); padding: 1.5rem 2rem; margin: 0 auto 2.4rem; max-width: 640px; text-align: center; }
.greviews .gscore { font-family: var(--font-head); font-size: 2.6rem; color: var(--forest); line-height: 1; }
.greviews .gstars { color: var(--amber); letter-spacing: 2px; font-size: 1.1rem; }
.greviews .gmeta { font-weight: 700; color: var(--ink-soft); font-size: .92rem; }

/* Hero rotating slideshow */
.hero__slides { position: relative; }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.3s ease; }
.hero__slide.is-active { opacity: 1; }
.hero__dots { position: absolute; left: 0; right: 0; bottom: 16px; z-index: 3; display: flex; gap: 7px; justify-content: center; }
.hero__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all .3s var(--ease); box-shadow: 0 1px 3px rgba(0,0,0,.3); }
.hero__dots span.is-active { background: #fff; width: 22px; border-radius: 5px; }

/* Service-card animal photo thumbnails */
.svc-thumb { width: 74px; height: 74px; border-radius: 18px; object-fit: cover; display: block; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm); }
.svc-card:hover .svc-thumb { transform: translateY(-1px); }

/* Article cards & featured images */
.article-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .25s var(--ease),box-shadow .25s;height:100%}
.article-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.article-card>img{width:100%;aspect-ratio:16/10;object-fit:cover;display:block}
.article-card__body{padding:1.3rem 1.4rem 1.5rem;display:flex;flex-direction:column;flex:1}
.article-card__badge{font-weight:800;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--terracotta-600);margin-bottom:.5rem}
.article-card h3{font-size:1.14rem;margin-bottom:.35em}
.article-card p{font-size:.92rem;color:var(--ink-soft);margin:0}
.article-card .more{margin-top:auto;padding-top:.9rem;font-weight:800;color:var(--terracotta-600);font-size:.9rem}
.article-img{width:100%;aspect-ratio:16/9;object-fit:cover;border-radius:var(--r-lg);margin-bottom:1.6rem;box-shadow:var(--shadow-sm)}

/* Article category menu (sidebar) */
.cat-menu{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.4rem 1.5rem;box-shadow:var(--shadow-sm);align-self:start;position:sticky;top:128px}
.cat-menu h3{font-size:1.1rem;margin:0 0 .8rem}
.cat-tree{list-style:none;margin:0;padding:0}
.cat-tree>li{border-top:1px solid var(--line);padding:.55rem 0}
.cat-tree>li:first-child{border-top:0}
.cat-tree .cat-top{font-weight:800;color:var(--forest-900);font-size:.98rem}
.cat-tree .cat-top:hover{color:var(--forest)}
.cat-tree ul{list-style:none;margin:.4rem 0 .2rem;padding:0 0 0 .9rem}
.cat-tree ul li{margin:.2rem 0}
.cat-tree ul a{font-size:.88rem;color:var(--ink-soft);font-weight:600}
.cat-tree ul a:hover{color:var(--terracotta-600)}
@media(max-width:1200px){.cat-menu{position:static}}

/* Full-width hero slider (alternate homepage) */
.hero--full{position:relative;overflow:hidden;min-height:68vh;display:flex;align-items:center;color:#fff;background:var(--forest)}
.hero__slides--full{position:absolute;inset:0;z-index:0}
.hero--full .hero__overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(100deg,rgba(8,42,74,.86) 0%,rgba(11,68,120,.6) 50%,rgba(20,110,200,.2) 100%)}
.hero--full .hero__dots{z-index:2}
.hero--full .container{position:relative;z-index:3}
.hero__content{max-width:660px;padding:5rem 0}
.hero--full h1{color:#fff}
.hero--full h1 em{color:#bcd9f5;font-style:italic}
.hero--full .lead{color:#eaf3ee}
.hero--full .hero__trust{margin-top:2rem}
.hero--full .hero__trust .stat b{color:#fff}
.hero--full .hero__trust .stat span{color:rgba(255,255,255,.82)}
.hero--full .btn--ghost{color:#fff;border-color:rgba(255,255,255,.6)}
.hero--full .btn--ghost:hover{background:rgba(255,255,255,.14);color:#fff;border-color:#fff}
@media(max-width:720px){.hero--full{min-height:75vh}.hero__content{padding:3.5rem 0}}

/* Open/closed status colors on the hero hours badge */
.hero__floating.is-open .ic{background:#e3f5ea}
.hero__floating.is-open .ic svg{fill:#1f9d55}
.hero__floating.is-open b{color:#1f9d55}
.hero__floating.is-closed .ic{background:#e3edfb}
.hero__floating.is-closed .ic svg{fill:#0a3f6b}
.hero__floating.is-closed b{color:#0a3f6b}
