/* ============================================================
   Pet Station Kennels & Cattery — Design System
   Palette keyed to the brand logo (fresh green + warm accents)
   ============================================================ */

:root {
  --bg:        #FFFFFF;
  --surface:   #F4F8F0;
  --surface-2: #EEF5E8;
  --text:      #1F2A24;
  --muted:     #5C6B62;
  --primary:   #54B23E;
  --primary-d: #459433;
  --secondary: #2B7A33;
  --accent:    #F4C430;
  --pink:      #F6A6B8;
  --pink-bg:   #FDF1F4;
  --pink-d:    #C76B82;
  --border:    #E2EBDD;
  --focus:     #2B7A33;

  --shadow-sm: 0 1px 3px rgba(31,42,36,.06), 0 1px 2px rgba(31,42,36,.04);
  --shadow-md: 0 8px 24px rgba(31,42,36,.08), 0 2px 6px rgba(31,42,36,.04);
  --shadow-lg: 0 24px 60px rgba(31,42,36,.14), 0 6px 16px rgba(31,42,36,.06);
  --shadow-grn:0 16px 40px rgba(84,178,62,.30);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --container: 1180px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(64px, 9vw, 124px);

  --ff-display: "Poppins", system-ui, sans-serif;
  --ff-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--secondary);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface); }
.section--pink { background: var(--pink-bg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 16px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.eyebrow--pink { color: var(--pink-d); }
.eyebrow--pink::before { background: var(--pink-d); }
.eyebrow--center { justify-content: center; }

.section-head { max-width: 660px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
}
.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .22s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-grn);
}
.btn--primary:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn--ghost {
  background: #fff;
  color: var(--secondary);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-d); transform: translateY(-2px); }
.btn--light {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255,255,255,.26); transform: translateY(-2px); }
.btn--pink { background: var(--pink-d); color: #fff; box-shadow: 0 16px 40px rgba(199,107,130,.28); }
.btn--pink:hover { background: #b35975; transform: translateY(-2px); }
.btn--sm { min-height: 44px; font-size: 15px; padding: 0 20px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 86px;
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { height: 60px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: var(--surface); color: var(--secondary); }
.header__cta { display: flex; align-items: center; gap: 10px; }
.header__call {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  color: var(--secondary); padding: 10px 8px;
}
.header__call svg { width: 18px; height: 18px; color: var(--primary); }
.header__call:hover { color: var(--primary-d); }

.burger {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  position: relative;
}
.burger span {
  position: absolute; left: 13px; right: 13px; height: 2.3px;
  background: var(--secondary); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.mobile-nav {
  position: fixed; inset: 86px 0 0 0;
  background: var(--bg);
  z-index: 55;
  padding: 18px var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
body.menu-open .mobile-nav { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--ff-display); font-weight: 600; font-size: 20px;
  color: var(--secondary);
  padding: 16px 6px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,38,24,.62) 0%, rgba(20,38,24,.30) 38%, rgba(20,38,24,.55) 100%),
    linear-gradient(105deg, rgba(20,38,24,.72) 0%, rgba(20,38,24,.18) 60%, rgba(20,38,24,0) 85%);
}
.hero__inner {
  min-height: min(86vh, 760px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(70px, 12vw, 130px);
  color: #fff;
}
.hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-display); font-weight: 600; font-size: 13px;
  letter-spacing: .02em;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
  padding: 8px 15px; border-radius: 999px;
  color: #fff;
}
.hero__pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 6vw, 70px);
  font-weight: 800;
  max-width: 16ch;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero h1 .hl { color: var(--accent); }
.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,.94);
  max-width: 50ch;
  line-height: 1.55;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__note {
  margin-top: 26px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: rgba(255,255,255,.9);
}
.hero__note svg { width: 18px; height: 18px; color: var(--accent); }

/* ---------- Trust strip ---------- */
.trust {
  position: relative;
  margin-top: -38px;
  z-index: 5;
}
.trust__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust__item {
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust__item:last-child { border-right: none; }
.trust__ico {
  width: 44px; height: 44px; margin: 0 auto 12px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--surface);
  color: var(--primary);
}
.trust__ico svg { width: 24px; height: 24px; }
.trust__item b {
  display: block;
  font-family: var(--ff-display); font-weight: 700; font-size: 15.5px;
  color: var(--secondary); line-height: 1.25;
}
.trust__item span { font-size: 13px; color: var(--muted); }

/* ---------- Services grid ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
  overflow: hidden;
}
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--primary); transform: scaleY(0); transform-origin: top;
  transition: transform .25s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4e4cb; }
.svc:hover::after { transform: scaleY(1); }
.svc__ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--surface-2);
  color: var(--primary);
  margin-bottom: 18px;
}
.svc__ico svg { width: 27px; height: 27px; }
.svc h3 { font-size: 20px; font-weight: 700; margin-bottom: 7px; }
.svc p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.svc__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-family: var(--ff-display); font-weight: 600; font-size: 14px;
  color: var(--primary);
}
.svc__link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.svc:hover .svc__link svg { transform: translateX(4px); }
.svc--feature { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.svc--feature h3, .svc--feature .svc__link { color: #fff; }
.svc--feature p { color: rgba(255,255,255,.82); }
.svc--feature .svc__ico { background: rgba(255,255,255,.16); color: #fff; }
.svc--feature::after { background: var(--accent); }

/* ---------- Feature split (boarding / cattery) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.feature--rev .feature__media { order: 2; }
.feature__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__badge {
  position: absolute; left: 22px; bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 11px 18px 11px 12px;
  font-family: var(--ff-display); font-weight: 700; font-size: 14px;
  color: var(--secondary);
  box-shadow: var(--shadow-md);
}
.feature__badge .chip {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: #5a4500;
}
.feature__badge .chip svg { width: 18px; height: 18px; }
.feature h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 800; }
.feature__lead { margin-top: 18px; color: var(--muted); font-size: 18px; }
.checks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; }
.checks .tick {
  flex: 0 0 26px; width: 26px; height: 26px; margin-top: 1px;
  border-radius: 50%; background: var(--surface-2); color: var(--primary);
  display: grid; place-items: center;
}
.checks .tick svg { width: 15px; height: 15px; }
.feature--pink .checks .tick { background: #fbe1e8; color: var(--pink-d); }
.price-tag {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.feature--pink .price-tag { background: #fff; border-color: #f6dde4; }
.price-tag .from { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.price-tag .amt { font-family: var(--ff-display); font-weight: 800; font-size: 30px; color: var(--secondary); }
.feature--pink .price-tag .amt { color: var(--pink-d); }
.price-tag .per { font-size: 14px; color: var(--muted); }
.price-tag small { flex-basis: 100%; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.feature__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Why / safety ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px;
}
.why {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
}
.why__ico {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(140deg, var(--primary), var(--secondary));
  color: #fff;
}
.why__ico svg { width: 28px; height: 28px; }
.why h3 { font-size: 20px; margin-bottom: 8px; }
.why p { color: var(--muted); font-size: 15px; }

/* ---------- Vet band ---------- */
.vet {
  background: linear-gradient(135deg, #224b27 0%, #2B7A33 60%, #357f3c 100%);
  color: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
}
.vet__body { padding: clamp(34px, 5vw, 60px); }
.vet .eyebrow { color: var(--accent); }
.vet .eyebrow::before { background: var(--accent); }
.vet h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; }
.vet p { margin-top: 16px; color: rgba(255,255,255,.86); font-size: 17px; }
.vet__list { list-style: none; padding: 0; margin: 24px 0 30px; display: grid; gap: 12px; }
.vet__list li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; }
.vet__list svg { width: 20px; height: 20px; color: var(--accent); flex: 0 0 auto; }
.vet__media { position: relative; min-height: 320px; }
.vet__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Adoptions ---------- */
.adopt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.adopt {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .25s ease;
}
.adopt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.adopt__img { aspect-ratio: 4 / 3; overflow: hidden; }
.adopt__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.adopt:hover .adopt__img img { transform: scale(1.05); }
.adopt__body { padding: 20px 22px 24px; }
.adopt__body h3 { font-size: 21px; }
.adopt__meta { display: flex; gap: 8px; margin: 10px 0 14px; flex-wrap: wrap; }
.tag {
  font-family: var(--ff-display); font-weight: 600; font-size: 12px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--surface-2); color: var(--secondary);
}
.tag--pink { background: var(--pink-bg); color: var(--pink-d); }
.adopt__body p { font-size: 14.5px; color: var(--muted); }

/* ---------- Locations ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.loc {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.loc__map {
  height: 200px; position: relative;
  background:
    repeating-linear-gradient(45deg, #eef3ea 0 14px, #e7efe1 14px 28px);
  display: grid; place-items: center;
  border-bottom: 1px solid var(--border);
}
.loc__map .pin {
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-weight: 600; font-size: 13px; color: var(--secondary);
  background: rgba(255,255,255,.85); padding: 12px 16px; border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.loc__map .pin svg { width: 26px; height: 26px; color: var(--primary); }
.loc__body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.loc__tag {
  align-self: flex-start;
  font-family: var(--ff-display); font-weight: 600; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--primary);
  background: var(--surface-2); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px;
}
.loc h3 { font-size: 22px; }
.loc__addr { color: var(--muted); font-size: 15px; margin-top: 8px; }
.loc__rows { margin: 18px 0 0; display: grid; gap: 10px; }
.loc__row { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.loc__row svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 auto; margin-top: 2px; }
.loc__row .closed { color: var(--pink-d); font-weight: 600; }
.loc__cta { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 44px auto 0; display: grid; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden;
}
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: none; border: none; text-align: left;
  font-family: var(--ff-display); font-weight: 600; font-size: 17.5px; color: var(--secondary);
}
.faq__q .ico {
  flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface-2); color: var(--primary);
  display: grid; place-items: center; transition: transform .25s ease, background .2s ease;
}
.faq__q .ico svg { width: 17px; height: 17px; }
.faq__item.open .faq__q .ico { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; isolation: isolate; border-radius: var(--r-xl); overflow: hidden; }
.cta-band__bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(130deg, var(--primary) 0%, var(--secondary) 100%);
}
.cta-band__deco {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background:
    radial-gradient(circle at 88% 18%, rgba(244,196,48,.5), transparent 38%),
    radial-gradient(circle at 12% 90%, rgba(246,166,184,.45), transparent 42%);
}
.cta-band__inner { padding: clamp(44px, 7vw, 84px) var(--gutter); text-align: center; color: #fff; }
.cta-band h2 { color: #fff; font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; max-width: 18ch; margin-inline: auto; }
.cta-band p { margin: 18px auto 0; max-width: 52ch; color: rgba(255,255,255,.92); font-size: 18px; }
.cta-band__actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--primary { background: #fff; color: var(--secondary); box-shadow: 0 16px 40px rgba(0,0,0,.18); }
.cta-band .btn--primary:hover { background: #f3f3f3; }

/* ---------- Footer ---------- */
.footer { background: #16241a; color: #cdd9cf; padding-block: clamp(48px, 7vw, 80px) 28px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand img { height: 74px; width: auto; margin-bottom: 18px; background: #fff; border-radius: 18px; padding: 8px; }
.footer__brand p { font-size: 14.5px; color: #9fb3a4; max-width: 34ch; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #cdd9cf; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.footer__socials a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer__socials svg { width: 19px; height: 19px; }
.footer__col h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 16px; letter-spacing: .02em; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer__col a { font-size: 14.5px; color: #aebfb1; transition: color .18s ease; }
.footer__col a:hover { color: #fff; }
.footer__col .line { display: flex; gap: 10px; font-size: 14px; color: #aebfb1; align-items: flex-start; }
.footer__col .line svg { width: 17px; height: 17px; color: var(--primary); flex: 0 0 auto; margin-top: 3px; }
.footer__bar {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #8aa091;
}

/* ---------- Mobile action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px rgba(31,42,36,.08);
}
.action-bar .btn { flex: 1; }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: flex-end; justify-content: center;
  padding: 0;
}
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(20,38,24,.55); backdrop-filter: blur(3px); animation: fade .25s ease; }
.modal__sheet {
  position: relative;
  width: 100%; max-width: 560px;
  background: #fff;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  max-height: 94vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: slideUp .32s cubic-bezier(.4,0,.2,1);
}
@media (min-width: 640px) {
  .modal { align-items: center; padding: 24px; }
  .modal__sheet { border-radius: var(--r-xl); animation: pop .3s cubic-bezier(.4,0,.2,1); }
}
@keyframes fade { from { opacity: 0; } }
@keyframes slideUp { from { transform: translateY(40px); opacity: .6; } }
@keyframes pop { from { transform: scale(.96); opacity: 0; } }
.modal__head {
  padding: 26px 28px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.modal__head .eyebrow { margin-bottom: 10px; }
.modal__head h3 { font-size: 25px; font-weight: 800; }
.modal__head p { color: var(--muted); font-size: 14.5px; margin-top: 6px; }
.modal__close {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--muted); display: grid; place-items: center;
  transition: background .18s ease, color .18s ease;
}
.modal__close:hover { background: var(--text); color: #fff; }
.modal__close svg { width: 18px; height: 18px; }
.modal__body { padding: 24px 28px 30px; }

/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--ff-display); font-weight: 600; font-size: 13.5px; color: var(--secondary);
}
.field label .req { color: var(--pink-d); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 15.5px; color: var(--text);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 13px;
  background: #fff; transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(84,178,62,.16);
}
.field.invalid input, .field.invalid select { border-color: var(--pink-d); box-shadow: 0 0 0 3px rgba(199,107,130,.14); }
.field .err { font-size: 12.5px; color: var(--pink-d); display: none; }
.field.invalid .err { display: block; }
.form-foot { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.form-foot .alt { text-align: center; font-size: 13.5px; color: var(--muted); }
.form-foot .alt a { color: var(--secondary); font-weight: 600; }

/* success state */
.form-success { display: none; text-align: center; padding: 14px 4px 8px; }
.form-success.show { display: block; animation: pop .35s ease; }
.form-success .badge {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--surface-2); color: var(--primary); display: grid; place-items: center;
}
.form-success .badge svg { width: 40px; height: 40px; }
.form-success h3 { font-size: 24px; font-weight: 800; }
.form-success p { color: var(--muted); margin-top: 10px; font-size: 15px; }
.form-success .ref { margin-top: 18px; font-size: 13px; color: var(--muted); }
.form-success .ref b { color: var(--secondary); font-family: var(--ff-display); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__card { grid-template-columns: repeat(3, 1fr); }
  .trust__item:nth-child(3) { border-right: none; }
  .trust__item:nth-child(n+4) { border-top: 1px solid var(--border); }
  .trust__item:nth-child(4) { border-right: 1px solid var(--border); }
}
@media (max-width: 920px) {
  .nav, .header__call { display: none; }
  .burger { display: block; }
  .header__cta .btn { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .vet { grid-template-columns: 1fr; }
  .vet__media { min-height: 260px; order: -1; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .feature, .feature--rev { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: -1; }
  .feature__media { aspect-ratio: 16 / 11; }
  .adopt-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .loc-grid { grid-template-columns: 1fr; }
  .action-bar { display: flex; }
  body { padding-bottom: 76px; }
  .trust { margin-top: 28px; }
  .trust__card { grid-template-columns: 1fr 1fr; }
  .trust__item { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .trust__item:nth-child(odd) { border-left: none; }
  .trust__item:nth-child(even) { border-right: none; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-top: none; }
  .trust__item:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero__inner { min-height: auto; padding-block: 90px 64px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bar { justify-content: center; text-align: center; }
}
@media (max-width: 420px) {
  .brand img { height: 48px; }
  .header__inner { min-height: 72px; }
  .mobile-nav { inset: 72px 0 0 0; }
}
