/* ============================================================
   Waggin Tails Pets Care — JVC, Dubai
   Design system + layout
   Palette + type from research/brand-system.md
   ============================================================ */

:root {
  --bg: #F8FBF7;
  --surface: #FFFFFF;
  --surface-2: #F1F7F1;
  --ink: #1B2926;
  --muted: #66746F;
  --primary: #1F9D7A;
  --primary-deep: #16785D;
  --primary-tint: #E5F4EE;
  --secondary: #2C5573;
  --secondary-deep: #21425A;
  --accent: #F2B84B;
  --accent-deep: #D89B22;
  --border: #DDEBE5;
  --photo-warm: #C6B4A2;
  --focus: #1F9D7A;

  --ff-display: "Manrope", "Nunito Sans", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(18px, 5vw, 56px);
  --radius-s: 12px;
  --radius-m: 20px;
  --radius-l: 30px;
  --shadow-s: 0 2px 10px rgba(27, 41, 38, .06);
  --shadow-m: 0 16px 40px -18px rgba(27, 41, 38, .28);
  --shadow-l: 0 30px 70px -30px rgba(33, 66, 90, .42);
  --ease: cubic-bezier(.4, .14, .2, 1);
}

* { 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(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 { font-family: var(--ff-display); line-height: 1.08; margin: 0; letter-spacing: -.02em; }
.tnum { font-variant-numeric: tabular-nums; letter-spacing: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 116px); }

/* ---- eyebrow / kicker ---- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-display);
  font-weight: 800; font-size: 13px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--primary-deep);
}
.kicker::before {
  content: ""; width: 26px; height: 26px; flex: none;
  background: var(--primary-tint);
  border: 2px solid var(--primary);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--surface);
}
.kicker--light { color: #Bfead9; }
.kicker--light::before { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); box-shadow: inset 0 0 0 4px transparent; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; min-height: 52px; padding: 0 24px;
  border-radius: 100px; border: 2px solid transparent;
  font-family: var(--ff-display); font-weight: 700; font-size: 16px;
  transition: transform .18s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--primary); color: #fff; box-shadow: 0 12px 26px -12px rgba(31,157,122,.8); }
.btn--primary:hover { background: var(--primary-deep); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #4a3608; }
.btn--accent:hover { background: var(--accent-deep); color: #3a2a05; transform: translateY(-2px); }
.btn--ghost { background: var(--surface); color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary-deep); transform: translateY(-2px); }
.btn--ink { background: var(--secondary); color: #fff; }
.btn--ink:hover { background: var(--secondary-deep); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; font-size: 15px; padding: 0 18px; }

/* ============================================================
   LOGO CHIP (logo is non-transparent — masked into a circle)
   ============================================================ */
.logo-chip {
  display: inline-grid; place-items: center;
  background: #fff; border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-s);
  overflow: hidden; flex: none;
}
.logo-chip img {
  width: 118%; height: 118%; object-fit: cover; object-position: center 46%;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248,251,247,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.header.is-stuck { border-color: var(--border); box-shadow: 0 6px 24px -18px rgba(27,41,38,.5); }
.header__bar { display: flex; align-items: center; gap: 18px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand .logo-chip { width: 46px; height: 46px; }
.brand__name { font-family: var(--ff-display); font-weight: 800; font-size: 18px; line-height: 1; letter-spacing: -.01em; }
.brand__sub { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--ff-display); font-weight: 600; font-size: 15px;
  color: var(--ink); padding: 9px 14px; border-radius: 100px;
  transition: background .18s, color .18s;
}
.nav a:hover { background: var(--primary-tint); color: var(--primary-deep); }
.header__cta { display: flex; align-items: center; gap: 10px; }

.navtoggle {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
  align-items: center; justify-content: center;
}
.navtoggle span { position: relative; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.navtoggle span::before, .navtoggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.navtoggle span::before { top: -6px; } .navtoggle span::after { top: 6px; }
.navtoggle[aria-expanded="true"] span { background: transparent; }
.navtoggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.navtoggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 76px 0 0; z-index: 55;
  background: var(--bg);
  padding: 18px var(--gutter) 40px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
.drawer a.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--ff-display); font-weight: 700; font-size: 21px;
  padding: 18px 4px; border-bottom: 1px solid var(--border);
}
.drawer a.drawer__link span { color: var(--primary); }
.drawer__actions { display: grid; gap: 12px; margin-top: 26px; }

/* ============================================================
   HERO  — asymmetric editorial + collage
   ============================================================ */
.hero { position: relative; padding-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(40px, 6vw, 70px); }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(26px, 4vw, 60px); align-items: center; }

.locpill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 14px 7px 10px;
  font-size: 13.5px; font-weight: 600; color: var(--secondary-deep);
  box-shadow: var(--shadow-s);
}
.locpill b { color: var(--primary-deep); }
.locpill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint); }

.hero h1 { font-size: clamp(40px, 7.2vw, 70px); font-weight: 800; margin-top: 22px; }
.hero h1 em { font-style: normal; color: var(--primary); }
.hero__lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--muted); max-width: 30ch; margin-top: 20px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 28px; }
.rating { display: inline-flex; align-items: center; gap: 10px; }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 17px; height: 17px; }
.rating b { font-family: var(--ff-display); font-weight: 800; font-size: 17px; }
.rating span { font-size: 13.5px; color: var(--muted); }
.metaline { font-size: 14px; color: var(--muted); }
.metaline strong { color: var(--ink); font-weight: 700; }

/* collage */
.collage { position: relative; }
.collage__main {
  border-radius: var(--radius-l);
  overflow: hidden; aspect-ratio: 4/4.4;
  box-shadow: var(--shadow-l);
  background: var(--surface-2);
}
.collage__main img { width: 100%; height: 100%; object-fit: cover; }
.collage__ring {
  position: absolute; inset: -14px; border-radius: calc(var(--radius-l) + 14px);
  border: 2px dashed rgba(31,157,122,.4); pointer-events: none;
  z-index: -1;
}
.collage__thumb {
  position: absolute; left: -26px; bottom: 34px;
  width: 158px; aspect-ratio: 5/4; border-radius: 18px; overflow: hidden;
  border: 5px solid #fff; box-shadow: var(--shadow-m);
}
.collage__thumb img { width: 100%; height: 100%; object-fit: cover; }
.collage__badge {
  position: absolute; right: -14px; top: 26px;
  background: #fff; border-radius: 18px; padding: 13px 16px;
  box-shadow: var(--shadow-m); text-align: center; min-width: 104px;
}
.collage__badge .big { font-family: var(--ff-display); font-weight: 800; font-size: 26px; color: var(--secondary); line-height: 1; }
.collage__badge .stars { justify-content: center; margin: 5px 0 2px; }
.collage__badge small { font-size: 11.5px; color: var(--muted); font-weight: 600; }

/* ============================================================
   REASSURANCE STRIP (signature motif)
   ============================================================ */
.reassure { background: var(--secondary-deep); color: #EaF1F6; }
.reassure__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: rgba(255,255,255,.1);
  border-radius: var(--radius-m); overflow: hidden;
  margin-block: clamp(34px, 5vw, 54px);
}
.reassure__item { background: var(--secondary-deep); padding: 26px 22px; display: flex; flex-direction: column; gap: 8px; }
.reassure__item .ico {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  background: rgba(31,157,122,.22); color: #6FE0BC;
  border: 1.5px solid rgba(111,224,188,.4);
}
.reassure__item .ico svg { width: 21px; height: 21px; }
.reassure__item h3 { font-size: 17px; font-weight: 700; color: #fff; }
.reassure__item p { margin: 0; font-size: 14px; color: #A9C2D2; line-height: 1.45; }

/* ============================================================
   SECTION HEADING
   ============================================================ */
.shead { max-width: 60ch; }
.shead h2 { font-size: clamp(29px, 4.6vw, 46px); font-weight: 800; margin-top: 16px; }
.shead p { color: var(--muted); font-size: clamp(16px, 2vw, 18px); margin-top: 14px; }
.shead--center { margin-inline: auto; text-align: center; }

/* ============================================================
   SERVICES — alternating image/text bands
   ============================================================ */
.services { background: var(--surface); }
.band {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4.5vw, 70px); align-items: center;
  margin-top: clamp(40px, 6vw, 72px);
}
.band:first-of-type { margin-top: clamp(38px, 5vw, 60px); }
.band__media { position: relative; }
.band__media .frame {
  border-radius: var(--radius-l); overflow: hidden;
  aspect-ratio: 5/4.3; box-shadow: var(--shadow-m); background: var(--surface-2);
}
.band__media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.band:hover .band__media .frame img { transform: scale(1.04); }
.band__media .tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(4px);
  border-radius: 100px; padding: 8px 16px;
  font-family: var(--ff-display); font-weight: 700; font-size: 14px; color: var(--secondary-deep);
  box-shadow: var(--shadow-s);
}
.band--rev .band__media { order: 2; }
.band__no { font-family: var(--ff-display); font-weight: 800; font-size: 14px; letter-spacing: .12em; color: var(--accent-deep); }
.band h3 { font-size: clamp(25px, 3.4vw, 34px); font-weight: 800; margin-top: 12px; }
.band p { color: var(--muted); margin-top: 14px; }
.feat { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 11px; }
.feat li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.feat li svg { width: 21px; height: 21px; flex: none; color: var(--primary); margin-top: 2px; }
.svc-note {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 18px; padding: 14px 16px; border-radius: 14px;
  background: var(--primary-tint); font-size: 13.5px; color: var(--primary-deep);
}
.svc-note svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 18px; }
.grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 14px;
}
.gcell { position: relative; overflow: hidden; border-radius: 18px; background: var(--surface-2); box-shadow: var(--shadow-s); }
.gcell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gcell button { position: absolute; inset: 0; width: 100%; height: 100%; background: transparent; border: 0; padding: 0; }
.gcell::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(33,66,90,.34));
  opacity: 0; transition: opacity .3s;
}
.gcell:hover img { transform: scale(1.06); }
.gcell:hover::after { opacity: 1; }
.gcell--tall { grid-row: span 2; }
.gcell--wide { grid-column: span 2; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: none;
  align-items: center; justify-content: center;
  background: rgba(20,30,28,.86); backdrop-filter: blur(6px);
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; transition: background .2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__nav.prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media .a-big { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow-m); }
.about__media .a-big img { width: 100%; height: 100%; object-fit: cover; }
.about__media .a-small {
  position: absolute; right: -18px; bottom: -26px; width: 44%;
  border-radius: 20px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-m);
  aspect-ratio: 3/3.4;
}
.about__media .a-small img { width: 100%; height: 100%; object-fit: cover; }
.about p { color: var(--muted); margin-top: 16px; }
.about p strong { color: var(--ink); }
.pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pillars span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 100px;
  padding: 9px 16px; font-family: var(--ff-display); font-weight: 700; font-size: 14.5px; color: var(--secondary-deep);
}
.pillars span i { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); font-style: normal; }

/* ============================================================
   REVIEW QUOTE
   ============================================================ */
.quoteband { background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%); color: #fff; }
.quoteband__grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 4vw, 52px); align-items: center; }
.qscore { text-align: center; }
.qscore .num { font-family: var(--ff-display); font-weight: 800; font-size: 62px; line-height: 1; }
.qscore .stars { color: #FFE6A6; justify-content: center; margin: 8px 0 6px; }
.qscore small { font-size: 13.5px; opacity: .85; display: block; }
.qbody blockquote { margin: 0; font-family: var(--ff-display); font-weight: 700; font-size: clamp(22px, 3.4vw, 34px); line-height: 1.28; letter-spacing: -.01em; }
.qbody figcaption { margin-top: 18px; font-size: 14.5px; opacity: .9; }
.qsep { width: 1px; background: rgba(255,255,255,.25); align-self: stretch; }

/* ============================================================
   CONTACT CONSOLE
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.console {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-l); padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-m);
}
.console h3 { font-size: 23px; font-weight: 800; }
.infolist { display: grid; gap: 4px; margin-top: 20px; }
.inforow { display: flex; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.inforow:last-child { border-bottom: 0; }
.inforow .ic {
  width: 42px; height: 42px; border-radius: 13px; flex: none;
  display: grid; place-items: center; background: var(--primary-tint); color: var(--primary-deep);
}
.inforow .ic svg { width: 20px; height: 20px; }
.inforow .lbl { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.inforow .val { font-family: var(--ff-display); font-weight: 700; font-size: 16.5px; margin-top: 2px; }
.inforow a.val:hover { color: var(--primary-deep); }
.console__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 22px; }

.map {
  border-radius: var(--radius-m); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-s); position: relative; background: var(--surface-2);
}
.map iframe { width: 100%; height: 230px; border: 0; display: block; filter: saturate(1.05); }
.map__label {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255,255,255,.95); border-radius: 100px; padding: 7px 14px;
  font-size: 12.5px; font-weight: 700; color: var(--secondary-deep); box-shadow: var(--shadow-s);
  display: inline-flex; align-items: center; gap: 7px;
}
.map__label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); }

/* form */
.form { display: grid; gap: 16px; margin-top: 20px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--ff-display); font-weight: 700; font-size: 13.5px; }
.field label .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  font-family: var(--ff-body); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--border); border-radius: 13px;
  padding: 13px 15px; width: 100%; transition: border-color .18s, box-shadow .18s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-tint);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d9534f; box-shadow: 0 0 0 4px rgba(217,83,79,.12); }
.field .err { font-size: 12.5px; color: #c0392b; display: none; }
.field.invalid .err { display: block; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__foot { font-size: 12.5px; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.form__foot svg { width: 16px; height: 16px; flex: none; margin-top: 1px; color: var(--primary); }

.formsuccess {
  display: none; text-align: center; padding: 30px 16px;
}
.formsuccess.show { display: block; }
.formsuccess .check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--primary-tint); display: grid; place-items: center; color: var(--primary);
}
.formsuccess .check svg { width: 32px; height: 32px; }
.formsuccess h4 { font-family: var(--ff-display); font-weight: 800; font-size: 22px; }
.formsuccess p { color: var(--muted); margin-top: 8px; font-size: 15px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary-deep); color: #C7D6E0; padding-block: clamp(46px, 6vw, 70px) 30px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: #8FB0C2; }
.footer__about { font-size: 14.5px; color: #A9C2D2; max-width: 34ch; margin-top: 18px; line-height: 1.6; }
.footer__col h4 { font-family: var(--ff-display); font-weight: 800; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; font-size: 14.5px; color: #A9C2D2; margin-bottom: 11px; transition: color .18s; }
.footer__col a:hover { color: #fff; }
.footer__ig {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 100px; padding: 8px 15px; font-weight: 600; font-size: 14px; color: #fff !important;
}
.footer__ig svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: #8FB0C2;
}

/* ============================================================
   MOBILE BOTTOM ACTION BAR
   ============================================================ */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px -18px rgba(27,41,38,.5);
  padding-bottom: env(safe-area-inset-bottom);
}
.actionbar a {
  background: var(--surface); display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 11px 4px 12px; font-family: var(--ff-display); font-weight: 700; font-size: 12px; color: var(--ink);
}
.actionbar a svg { width: 21px; height: 21px; color: var(--primary-deep); }
.actionbar a.is-accent { background: var(--primary); color: #fff; }
.actionbar a.is-accent svg { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav, .header__cta .btn { display: none; }
  .navtoggle { display: flex; }
  .header__cta { gap: 8px; }
  .hero__grid { grid-template-columns: 1fr; }
  .collage { max-width: 460px; margin-inline: auto; width: 100%; }
  .reassure__grid { grid-template-columns: 1fr 1fr; }
  .band, .about__grid, .contact__grid, .quoteband__grid { grid-template-columns: 1fr; }
  .band--rev .band__media { order: 0; }
  .qsep { display: none; }
  .quoteband__grid { gap: 22px; }
  .qscore { display: inline-flex; align-items: center; gap: 18px; text-align: left; }
  .qscore .stars { margin: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
  .actionbar { display: grid; }
  body { padding-bottom: 66px; }
  .drawer { inset-top: 76px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .gcell--wide { grid-column: span 2; }
  .reassure__grid { grid-template-columns: 1fr; }
  .console__actions { grid-template-columns: 1fr; }
  .field--row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 26px; }
  .collage__thumb { width: 120px; left: -12px; bottom: 18px; }
  .collage__badge { right: -6px; padding: 10px 12px; min-width: 88px; }
  .collage__badge .big { font-size: 21px; }
  .hero__actions .btn { flex: 1 1 auto; }
}
