/* ============================================================
   Gallagroom Pets Grooming & Spa — design system
   Blush pink + warm oak + grooming-bow green
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #FBF5F2;
  --surface: #FFFFFF;
  --blush: #F4E0D9;
  --blush-soft: #FAEDE8;
  --blush-deep: #ECCFC5;
  --rose: #D7A595;

  /* Wood / warmth */
  --wood: #B07A4E;
  --wood-deep: #8A5A37;
  --sand: #EFE6DC;

  /* Ink */
  --ink: #2A211C;
  --text: #352B25;
  --muted: #837268;
  --border: #EDD8CF;
  --hairline: #F0E2DB;

  /* Accents */
  --sage: #2E8E6F;
  --sage-deep: #246E57;
  --sage-soft: #E4F0EA;
  --gold: #D4A24A;
  --gold-soft: #F4E7CC;

  --focus: #2E8E6F;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(58, 35, 22, 0.05), 0 2px 8px rgba(58, 35, 22, 0.05);
  --shadow-md: 0 6px 18px rgba(74, 44, 28, 0.08), 0 2px 6px rgba(74, 44, 28, 0.05);
  --shadow-lg: 0 26px 60px -18px rgba(74, 44, 28, 0.30), 0 8px 24px -12px rgba(74, 44, 28, 0.18);

  --maxw: 1200px;
  --gutter: clamp(18px, 5vw, 64px);
  --header-h: 76px;
}

/* Theme: warm sand alternative */
html[data-theme="sand"] {
  --bg: #F7F1E8;
  --blush: #ECE0D0;
  --blush-soft: #F3EADD;
  --blush-deep: #E2D2BD;
  --border: #E7D8C3;
  --hairline: #EFE3D2;
}

/* Accent: gold-forward */
html[data-accent="gold"] {
  --sage: #C28A2C;
  --sage-deep: #A06F1E;
  --sage-soft: #F5E9CF;
  --focus: #C28A2C;
}

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2.5px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { margin: 0; font-weight: 600; line-height: 1.04; letter-spacing: -0.01em; }
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ---------- type helpers ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.012em;
}
.eyebrow {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
html[data-accent="gold"] .eyebrow { color: var(--wood-deep); }
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.5;
}
.lead { font-size: clamp(16px, 1.6vw, 18.5px); color: var(--muted); line-height: 1.62; }
.tnum { font-variant-numeric: tabular-nums; letter-spacing: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.005em;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  min-height: 48px;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 8px 18px -8px color-mix(in oklab, var(--sage) 70%, black);
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover { background: #44342b; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--surface); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ---------- chips / badges ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }

/* ---------- section scaffolding ---------- */
.section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.section-head { max-width: 640px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-title { font-size: clamp(33px, 5.4vw, 60px); color: var(--ink); }
.section-sub { margin-top: 18px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
}
.header-inner { display: flex; align-items: center; gap: 20px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.brand-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14.5px; font-weight: 600; color: var(--text);
  padding: 9px 14px; border-radius: var(--r-pill);
  transition: background .18s, color .18s;
}
.nav a:hover { background: var(--blush-soft); color: var(--ink); }
.header-cta { display: flex; align-items: center; gap: 10px; }

.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 14.5px; color: var(--ink);
  padding: 9px 12px; border-radius: var(--r-pill);
}
.header-phone:hover { background: var(--blush-soft); }
.header-phone svg { width: 16px; height: 16px; color: var(--sage-deep); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); }
.burger span { display: block; width: 19px; height: 2px; background: var(--ink); margin: 4px auto; border-radius: 2px; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 55;
  background: color-mix(in oklab, var(--ink) 38%, transparent);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.drawer.open { opacity: 1; visibility: visible; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg);
  padding: calc(var(--header-h) + 14px) 26px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .34s cubic-bezier(.16,1,.3,1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a.dlink {
  font-family: var(--font-display); font-size: 27px; font-weight: 500; color: var(--ink);
  padding: 12px 0; border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-panel a.dlink span.idx { font-family: var(--font-ui); font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .1em; }
.drawer-foot { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.drawer-foot .muted-line { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: calc(var(--header-h) + clamp(24px, 5vw, 60px)); padding-bottom: clamp(40px, 6vw, 80px); position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 8.2vw, 96px);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.018em;
}
.hero h1 em { font-style: italic; color: var(--wood-deep); }
.hero h1 .grn { font-style: italic; color: var(--sage-deep); }
.hero-sub { margin-top: 24px; max-width: 480px; font-size: clamp(16px, 1.7vw, 19px); }
.hero-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; }
.hero-meta .mi { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.hero-meta .mi svg { width: 17px; height: 17px; color: var(--sage-deep); flex: none; }
.hero-meta .div { width: 1px; height: 26px; background: var(--border); }

/* hero visual */
.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.7;
  background: var(--blush);
  border: 6px solid var(--surface);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-blob {
  position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(2px);
}
.hero-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  width: clamp(92px, 13vw, 124px); height: auto;
  filter: drop-shadow(0 10px 22px rgba(74,44,28,.28));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-9px) rotate(2deg); } }
@media (prefers-reduced-motion: reduce) { .hero-badge { animation: none; } }
.hero-rating-card {
  position: absolute;
  top: 20px; right: -14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 15px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px;
}
.hero-rating-card .num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1; }
.hero-rating-card .sub { font-size: 11px; color: var(--muted); font-weight: 600; }

.hero-deco-paw { position: absolute; color: var(--blush-deep); opacity: .8; }

/* ============================================================
   REASSURANCE BAND
   ============================================================ */
.reassure { background: var(--ink); color: #fff; }
.reassure-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.reassure .cell {
  padding: 26px clamp(16px, 2.6vw, 34px);
  display: flex; align-items: center; gap: 14px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.reassure .cell:last-child { border-right: none; }
.reassure .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; flex: none; }
.reassure .ic svg { width: 19px; height: 19px; color: var(--gold); }
.reassure .k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); font-weight: 700; }
.reassure .v { font-size: 15px; font-weight: 700; color: #fff; margin-top: 2px; }
.reassure .v a:hover { color: var(--gold); }

/* ============================================================
   PROOF / REVIEW
   ============================================================ */
.proof { background: var(--blush-soft); }
.proof-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.proof-score { text-align: left; }
.proof-score .big { font-family: var(--font-display); font-weight: 600; font-size: clamp(72px, 13vw, 132px); color: var(--ink); line-height: 0.82; }
.proof-score .stars { font-size: 22px; display: block; margin: 14px 0 8px; }
.proof-score .label { font-size: 14px; color: var(--muted); font-weight: 600; }
.proof-quote { border-left: 3px solid var(--sage); padding-left: 26px; }
.proof-quote blockquote { font-family: var(--font-display); font-weight: 500; font-style: italic; font-size: clamp(23px, 3.3vw, 34px); line-height: 1.2; color: var(--ink); margin: 0; }
.proof-quote .src { margin-top: 18px; font-size: 13.5px; color: var(--muted); font-weight: 600; display: flex; align-items: center; gap: 9px; }
.proof-quote .src .g { width: 18px; height: 18px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.svc-top { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; margin-bottom: clamp(34px, 5vw, 56px); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 28px 28px;
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blush-deep); }
.svc-num { font-family: var(--font-display); font-size: 15px; color: var(--rose); font-weight: 600; }
.svc-ic { width: 50px; height: 50px; border-radius: 14px; background: var(--blush-soft); border: 1px solid var(--border); display: grid; place-items: center; margin: 6px 0 18px; }
.svc-ic svg { width: 25px; height: 25px; color: var(--sage-deep); }
.svc-card h3 { font-size: 22px; color: var(--ink); margin-bottom: 9px; font-weight: 700; font-family: var(--font-ui); letter-spacing: -0.01em; }
.svc-card p { font-size: 14.5px; color: var(--muted); }
.svc-card .tag { margin-top: auto; padding-top: 18px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 6px; }
.svc-note { margin-top: 24px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.svc-note svg { width: 16px; height: 16px; color: var(--wood); flex: none; }

/* ============================================================
   BREEDS (interactive)
   ============================================================ */
.breeds { background: var(--blush); position: relative; overflow: hidden; }
.breeds-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.breed-stage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  display: flex; flex-direction: column;
}
.breed-hero-img { flex: 1; display: grid; place-items: center; position: relative; }
.breed-hero-img::after {
  content: ""; position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%);
  width: 62%; height: 26px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(74,44,28,.16), transparent 70%);
  z-index: 0;
}
.breed-hero-img img { max-height: 320px; width: auto; position: relative; z-index: 1; filter: drop-shadow(0 14px 22px rgba(74,44,28,.18)); transition: opacity .35s ease, transform .45s cubic-bezier(.16,1,.3,1); }
.breed-meta { position: absolute; top: 26px; left: 30px; }
.breed-meta .coat { font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--rose); }
.breed-meta .bname { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 600; color: var(--ink); line-height: 1; margin-top: 4px; }
.breed-desc { position: absolute; right: 30px; bottom: 28px; left: 30px; font-size: 14px; color: var(--muted); max-width: 340px; margin-left: auto; text-align: right; }

.breed-picker { }
.breed-picker .eyebrow { margin-bottom: 16px; }
.breed-picker h2 { font-size: clamp(30px, 4.6vw, 50px); color: var(--ink); margin-bottom: 14px; }
.breed-picker p.intro { color: var(--text); opacity: .82; margin-bottom: 26px; max-width: 440px; }
.breed-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.breed-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 8px 8px 8px; border-radius: var(--r-pill);
  background: var(--surface); border: 1.5px solid var(--border);
  font-size: 13.5px; font-weight: 700; color: var(--text);
  transition: border-color .18s, background .18s, transform .15s, color .18s;
}
.breed-chip img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; background: var(--blush-soft); }
.breed-chip:hover { transform: translateY(-2px); border-color: var(--rose); }
.breed-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.breed-chip.active img { background: rgba(255,255,255,.15); }
.breed-foot { margin-top: 26px; font-size: 13.5px; color: var(--muted); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12px;
  gap: 14px;
}
.gal-item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--blush);
  box-shadow: var(--shadow-sm);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.gal-item:hover img { transform: scale(1.05); }
.gal-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,33,28,.34), transparent 46%);
  opacity: 0; transition: opacity .3s;
}
.gal-item:hover::after { opacity: 1; }
.gal-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .02em; opacity: 0; transform: translateY(6px); transition: .3s; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.gal-item:hover .gal-cap { opacity: 1; transform: none; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(28,18,12,.86); backdrop-filter: blur(8px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s; padding: 24px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: min(94vw, 1000px); max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 100%; max-height: 80vh; border-radius: 14px; box-shadow: var(--shadow-lg); object-fit: contain; }
.lightbox figcaption { color: rgba(255,255,255,.8); font-size: 13.5px; margin-top: 14px; font-weight: 600; }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; transition: background .2s; border: 1px solid rgba(255,255,255,.18); }
.lb-btn:hover { background: rgba(255,255,255,.24); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close { position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); color:#fff; display:grid; place-items:center; border: 1px solid rgba(255,255,255,.18); }
.lb-close:hover { background: rgba(255,255,255,.24); }
.lb-btn svg, .lb-close svg { width: 22px; height: 22px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--blush-soft); position: relative; }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.about-imgs { position: relative; }
.about-imgs .a-main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; border: 5px solid var(--surface); }
.about-imgs .a-main img { width: 100%; height: 100%; object-fit: cover; }
.about-imgs .a-sub { position: absolute; bottom: -28px; right: -18px; width: 46%; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-lg); border: 5px solid var(--surface); aspect-ratio: 1/1; }
.about-imgs .a-sub img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 { font-size: clamp(32px, 5vw, 56px); color: var(--ink); margin-bottom: 22px; }
.about-body p { color: var(--text); opacity: .86; margin-bottom: 16px; font-size: 16.5px; }
.about-stats { display: flex; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.about-stats .st .n { font-family: var(--font-display); font-size: 42px; font-weight: 600; color: var(--ink); line-height: 1; }
.about-stats .st .l { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 6px; }
.about-quote-mark { font-family: var(--font-display); font-size: 120px; color: var(--blush-deep); line-height: 0; position: absolute; top: 40px; left: -10px; z-index: 0; pointer-events: none; }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--ink); color: #fff; }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 70px); }
.visit-info .eyebrow { color: var(--gold); }
.visit-info .eyebrow::before { opacity: .6; }
.visit h2 { font-size: clamp(34px, 5.4vw, 60px); color: #fff; margin: 18px 0 14px; }
.visit-info > p.intro { color: rgba(255,255,255,.7); max-width: 420px; margin-bottom: 30px; }
.contact-rows { display: flex; flex-direction: column; gap: 4px; }
.crow { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); align-items: flex-start; }
.crow:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.crow .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; flex: none; }
.crow .ic svg { width: 19px; height: 19px; color: var(--gold); }
.crow .k { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 700; }
.crow .v { font-size: 16px; font-weight: 600; color: #fff; margin-top: 3px; }
.crow .v a { border-bottom: 1px solid transparent; }
.crow .v a:hover { border-bottom-color: var(--gold); }
.crow .small { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
.visit-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.visit-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.visit-actions .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.map-ph {
  margin-top: 30px; border-radius: var(--r-md); overflow: hidden;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0 12px, transparent 12px 24px),
    rgba(255,255,255,.05);
  border: 1px dashed rgba(255,255,255,.22);
  height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center;
}
.map-ph svg { width: 26px; height: 26px; color: var(--gold); }
.map-ph .t { font-size: 13.5px; font-weight: 700; color: #fff; }
.map-ph .s { font-size: 12px; color: rgba(255,255,255,.5); font-family: ui-monospace, monospace; }

/* form card */
.form-card { background: var(--surface); border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 42px); box-shadow: var(--shadow-lg); color: var(--text); }
.form-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--ink); margin-bottom: 6px; }
.form-card .fc-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text); margin-bottom: 7px; letter-spacing: .01em; }
.field label .req { color: var(--sage-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); background: var(--bg);
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: #b7a99f; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); background: var(--surface); box-shadow: 0 0 0 4px var(--sage-soft); }
.field textarea { resize: vertical; min-height: 92px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0533f; background: #fdf2ef; }
.field .err { font-size: 12px; color: #c0533f; margin-top: 6px; font-weight: 600; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button { padding: 9px 15px; border-radius: var(--r-pill); border: 1.5px solid var(--border); background: var(--bg); font-size: 13px; font-weight: 700; color: var(--text); transition: .15s; }
.seg button.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.form-success { text-align: center; padding: 22px 10px; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: var(--sage-soft); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok svg { width: 32px; height: 32px; color: var(--sage-deep); }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding-block: clamp(48px, 6vw, 76px) 0; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { font-size: 14px; color: var(--muted); }
.foot-col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; font-weight: 700; }
.foot-col a, .foot-col p.fl { display: block; font-size: 14.5px; color: var(--text); padding: 6px 0; font-weight: 500; }
.foot-col a:hover { color: var(--sage-deep); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); display: grid; place-items: center; transition: .2s; }
.social-row a:hover { border-color: var(--ink); transform: translateY(-2px); }
.social-row a svg { width: 19px; height: 19px; color: var(--ink); }
.foot-bottom { margin-top: clamp(40px, 5vw, 60px); border-top: 1px solid var(--hairline); padding: 24px 0 34px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.foot-bottom p { font-size: 12.5px; color: var(--muted); }
.foot-bottom .disc { max-width: 560px; font-size: 11.5px; color: #a89a90; }

/* ============================================================
   FLOATING CALL CHIP + MOBILE BAR
   ============================================================ */
.float-call {
  position: fixed; right: 22px; bottom: 26px; z-index: 50;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--sage); color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 22px; border-radius: var(--r-pill);
  box-shadow: 0 14px 30px -10px color-mix(in oklab, var(--sage) 80%, black);
  opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none;
  transition: opacity .35s, transform .35s, background .2s;
}
.float-call.show { opacity: 1; transform: none; pointer-events: auto; }
.float-call:hover { background: var(--sage-deep); }
.float-call svg { width: 19px; height: 19px; }
.float-call .pulse { position: absolute; left: 16px; width: 19px; height: 19px; border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,255,255,.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,255,255,.45);} 70%{box-shadow:0 0 0 14px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }

.mobile-bar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .hero-sub { margin-inline: auto; }
  .breeds-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .burger { display: block; }
  .reassure-inner { grid-template-columns: 1fr 1fr; }
  .reassure .cell:nth-child(2) { border-right: none; }
  .reassure .cell:nth-child(1), .reassure .cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.10); }
  .header-cta .btn-primary { display: none; }
}

@media (max-width: 680px) {
  :root { --header-h: 66px; }
  .hero { padding-top: calc(var(--header-h) + 26px); text-align: center; }
  .hero-eyebrow, .eyebrow { justify-content: center; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero h1 { font-size: clamp(42px, 13vw, 64px); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .svc-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .about-imgs .a-sub { width: 42%; right: 0; }
  .reassure-inner { grid-template-columns: 1fr; }
  .reassure .cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.10); }
  .reassure .cell:last-child { border-bottom: none; }
  .float-call { display: none; }
  .breed-desc { position: static; text-align: left; margin-top: 14px; max-width: none; }
  .breed-meta { position: static; margin-bottom: 14px; }
  .breed-stage { min-height: 0; }

  /* mobile bottom action bar */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 58;
    background: color-mix(in oklab, var(--surface) 94%, transparent);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(74,44,28,.08);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 8px 4px; border-radius: 12px; min-height: 56px; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--text);
  }
  .mobile-bar a svg { width: 21px; height: 21px; color: var(--sage-deep); }
  .mobile-bar a.primary { background: var(--sage); color: #fff; margin: 0 2px; }
  .mobile-bar a.primary svg { color: #fff; }
  body.has-mobilebar { padding-bottom: 76px; }
}

@media (max-width: 460px) {
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { gap: 22px; }
  .hero-badge { width: 84px; }
}

/* BytesGlue QA map patch */
.bg-map-embed{display:block!important;position:relative!important;width:100%!important;min-height:240px!important;border-radius:12px!important;overflow:hidden!important;background:#e9edf1!important;box-shadow:0 0 0 1px rgba(0,0,0,.08) inset!important}
.bg-map-embed iframe{display:block!important;width:100%!important;min-height:260px!important;border:0!important}
.bg-map-embed + .bg-map-embed,
.bg-map-embed + .pin,
.bg-map-embed + .lbl,
.bg-map-embed + .corner-note,
.bg-map-embed + .placeholder,
.bg-map-embed + .center,
.bg-map-embed + [class*="map-note"],
.bg-map-embed + [class*="map-tag"]{display:none!important}
.map .placeholder .pin,.map-ph .pin,.map-pin,.map-marker,.map-ph__pin,.map-ph__pin .dot,.map-ph__pin .pin,.map-ph .mi{max-width:18px!important;max-height:18px!important;width:18px!important;height:18px!important;box-shadow:none!important}
.map .placeholder .pin svg,.map-ph .pin svg,.map-pin svg,.map-marker svg,.map-ph__pin svg,.map-ph .mi{width:12px!important;height:12px!important}
.map-note,.map-tag,[class*="map-note"],[class*="map-tag"]{display:none!important}
