/* ================================================================
   SHAMPOOCHIE — Cute, Friendly, Casual Redesign
   Palette: Blush #E8A0B0 · Plum #4A1D35 · Cream #FFF8F4 · Sage #7FA882
   ================================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #2D1420;
  background: #FFF8F4;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ---------- TOKENS ---------- */
:root {
  --pink:       #E8A0B0;
  --pink-d:     #D4849A;
  --pink-l:     #F5CEDA;
  --plum:       #4A1D35;
  --plum-m:     #6B3555;
  --cream:      #FFF8F4;
  --cream-d:    #F5EDE6;
  --sage:       #7FA882;
  --sage-d:     #5F8A62;
  --white:      #FFFFFF;
  --text:       #2D1420;
  --text-m:     #5C3A4A;
  --text-l:     #9B7A87;
  --border:     rgba(74,29,53,.1);
  --r-sm:       10px;
  --r:          18px;
  --r-lg:       26px;
  --r-xl:       36px;
  --r-pill:     100px;
  --sh-sm:      0 2px 12px rgba(74,29,53,.08);
  --sh:         0 6px 28px rgba(74,29,53,.12);
  --sh-lg:      0 16px 56px rgba(74,29,53,.16);
  --t:          .22s ease;
}

/* ---------- LAYOUT ---------- */
.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ---------- TYPOGRAPHY ---------- */
.section-label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink-d);
  display: block;
  margin-bottom: .4rem;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--plum);
}
.section-heading em { font-style: italic; color: var(--pink-d); }
.section-sub {
  margin-top: .7rem;
  color: var(--text-m);
  font-size: 1.05rem;
  max-width: 54ch;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header .section-sub { margin-inline: auto; }
.section-header--light .section-label { color: var(--plum-m); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: .7rem 1.6rem;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn--pill { border-radius: var(--r-pill); }
.btn--lg { padding: .85rem 2.1rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--pink { background: var(--pink); color: var(--plum); border-color: var(--pink); }
.btn--pink:hover { background: var(--pink-d); border-color: var(--pink-d); transform: translateY(-2px); box-shadow: var(--sh); }

.btn--plum { background: var(--plum); color: var(--white); border-color: var(--plum); }
.btn--plum:hover { background: var(--plum-m); border-color: var(--plum-m); transform: translateY(-2px); box-shadow: var(--sh); }

.btn--ghost { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.25); border-color: var(--white); transform: translateY(-2px); }

.btn--white { background: var(--white); color: var(--plum); border-color: var(--white); }
.btn--white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--sh); }

.btn--outline-plum { background: transparent; color: var(--plum); border-color: var(--plum); }
.btn--outline-plum:hover { background: var(--plum); color: var(--white); transform: translateY(-2px); box-shadow: var(--sh); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset-block-start: 0; inset-inline: 0;
  z-index: 1000;
  background: rgba(255,248,244,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.nav.is-scrolled { box-shadow: var(--sh); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-paw { font-size: 1.3rem; }
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--plum);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex-wrap: nowrap;
}
.nav__links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-m);
  padding: .4rem .75rem;
  border-radius: var(--r-pill);
  transition: all var(--t);
  white-space: nowrap;
}
.nav__links a:hover { color: var(--plum); background: var(--cream-d); }
.nav__phone { display: none !important; } /* hidden on desktop, shown on mobile */
.nav__cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  border-radius: var(--r-pill) !important;
  padding: .45rem 1.1rem !important;
  font-weight: 700 !important;
  margin-left: .4rem;
}
.nav__cta:hover { background: var(--plum-m) !important; transform: translateY(-1px); box-shadow: var(--sh-sm); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--plum); border-radius: 2px;
  transition: all var(--t);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
@keyframes polaroidFloat1 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%       { transform: rotate(-6deg) translateY(-10px); }
}
@keyframes polaroidFloat2 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50%       { transform: rotate(4deg) translateY(-12px); }
}
@keyframes polaroidFloat3 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%       { transform: rotate(3deg) translateY(-8px); }
}
@keyframes polaroidFloat4 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%       { transform: rotate(-5deg) translateY(-11px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero {
  position: relative;
  padding-top: 66px;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4rem 3.5rem;
  flex: 1;
}

/* ---- Left column ---- */
.hero__content { max-width: 560px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,160,176,.18);
  border: 1px solid rgba(232,160,176,.5);
  color: var(--plum);
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .9rem .3rem .45rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.4rem;
}
.hero__tbr-mini {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 1.4rem;
}
.hero__heading-highlight {
  font-style: italic;
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.hero__heading-highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), #f5c2ce);
  border-radius: 2px;
}

/* Stat row */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.hero__stat { text-align: center; }
.hero__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--plum);
  line-height: 1.1;
}
.hero__stat span {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-l);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.hero__stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(74,29,53,.15);
  flex-shrink: 0;
}

.hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.08rem);
  color: var(--text-l);
  margin-bottom: 1.8rem;
  line-height: 1.65;
  max-width: 480px;
}
.hero__sub strong { color: var(--plum); }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.8rem;
}

/* Plum button variant */
.btn--plum {
  background: var(--plum);
  color: var(--white);
  border: 2px solid var(--plum);
}
.btn--plum:hover {
  background: #5c2441;
  border-color: #5c2441;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,29,53,.3);
}
/* Outline-plum button variant */
.btn--outline-plum {
  background: transparent;
  color: var(--plum);
  border: 2px solid var(--plum);
}
.btn--outline-plum:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}

/* Trust badges row */
.hero__trust-badges {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}
.hero__trust-badges img {
  height: 42px;
  width: auto;
  object-fit: contain;
  opacity: .85;
}
.hero__badge-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--plum);
  background: rgba(74,29,53,.06);
  border: 1px solid rgba(74,29,53,.16);
  padding: .28rem .8rem;
  border-radius: var(--r-pill);
}
.hero__badge-pill--accent {
  background: rgba(232,160,176,.2);
  border-color: rgba(232,160,176,.55);
  color: #8a2a50;
}

/* ---- Right column: Polaroids ---- */
.hero__polaroids {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__polaroid-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 38%, #fbd5df 0%, #E8A0B0 55%, #d0849a 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .55;
}
.hero__polaroid {
  position: absolute;
  background: #fff;
  padding: 10px 10px 42px 10px;
  box-shadow: 0 10px 38px rgba(74,29,53,.16), 0 2px 8px rgba(74,29,53,.07);
  border-radius: 3px;
  transition: transform .3s ease, box-shadow .3s ease, z-index 0s;
  cursor: default;
}
.hero__polaroid:hover {
  z-index: 10 !important;
  box-shadow: 0 20px 60px rgba(74,29,53,.28);
}
.hero__polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}
.hero__polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: .68rem;
  font-weight: 800;
  color: var(--plum);
  opacity: .65;
}

.hero__polaroid--1 {
  width: 178px; height: 218px;
  top: 22px; left: 22px;
  transform: rotate(-6deg);
  z-index: 3;
  animation: polaroidFloat1 5s ease-in-out infinite;
}
.hero__polaroid--1:hover { transform: rotate(0deg) scale(1.04) !important; }

.hero__polaroid--2 {
  width: 158px; height: 193px;
  top: 50px; right: 14px;
  transform: rotate(4deg);
  z-index: 4;
  animation: polaroidFloat2 5.5s ease-in-out infinite .8s;
}
.hero__polaroid--2:hover { transform: rotate(0deg) scale(1.04) !important; }

.hero__polaroid--3 {
  width: 152px; height: 188px;
  bottom: 50px; left: 50px;
  transform: rotate(3deg);
  z-index: 2;
  animation: polaroidFloat3 4.8s ease-in-out infinite 1.5s;
}
.hero__polaroid--3:hover { transform: rotate(0deg) scale(1.04) !important; }

.hero__polaroid--4 {
  width: 168px; height: 208px;
  bottom: 18px; right: 24px;
  transform: rotate(-5deg);
  z-index: 3;
  animation: polaroidFloat4 5.2s ease-in-out infinite 2.2s;
}
.hero__polaroid--4:hover { transform: rotate(0deg) scale(1.04) !important; }

/* ---- Ticker strip ---- */
.hero__ticker {
  background: var(--plum);
  overflow: hidden;
  padding-block: .9rem;
  white-space: nowrap;
}
.hero__ticker-track {
  display: inline-flex;
  gap: 2.2rem;
  animation: ticker 30s linear infinite;
}
.hero__ticker-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .03em;
  flex-shrink: 0;
}
.hero__ticker-dot { opacity: .5; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--white);
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.3;
}
.trust-item small { font-weight: 400; color: var(--text-l); display: block; font-size: .75rem; }
.trust-item__badge { height: 48px; width: auto; object-fit: contain; }
.trust-item__badge--circle { height: 42px; border-radius: 50%; }
.trust-item__icon { font-size: 1.6rem; }
.trust-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--plum);
  padding-block: 1.2rem;
}
.stats-strip__inner {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 8vw, 5rem);
  flex-wrap: wrap;
}
.stat { text-align: center; color: var(--white); }
.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--pink-l);
  line-height: 1;
}
.stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- DISCOUNT BANNER ---------- */
.discount-banner {
  background: linear-gradient(135deg, var(--pink) 0%, #D4849A 100%);
  padding-block: 2.5rem;
  position: relative;
  overflow: hidden;
}
.discount-banner::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -80px; right: 5%;
}
.discount-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.discount-banner__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.discount-banner__emoji { font-size: 2.4rem; flex-shrink: 0; }
.discount-banner__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: .2rem;
}
.discount-banner__left p { color: var(--plum); opacity: .85; font-size: .95rem; }
.discount-banner__right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.discount-banner__refer {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--plum);
}
.discount-banner__refer-icon { font-size: 1.4rem; }
.discount-banner__refer strong { display: block; }

/* ---------- ABOUT / PILLARS ---------- */
.about { padding-block: 5rem; background: var(--cream); }
.about__container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.about__photo-stack { position: relative; padding: 1.5rem 1rem 3rem 1rem; }
.about__photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about__photo--main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
}
.about__photo--sm {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  bottom: 0;
  right: -1rem;
  border-radius: var(--r);
  border: 4px solid var(--cream);
  z-index: 2;
  overflow: hidden;
}
.about__photo--sm img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-badge {
  position: absolute;
  top: 1rem;
  left: -.5rem;
  background: var(--white);
  color: var(--plum);
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: var(--r-pill);
  box-shadow: var(--sh);
  z-index: 3;
}
.about__intro {
  color: var(--text-m);
  font-size: 1.05rem;
  margin-block: .75rem 1.75rem;
  line-height: 1.65;
}

.pillars { display: flex; flex-direction: column; gap: 1.1rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.2rem;
  border: 1.5px solid var(--border);
  transition: all var(--t);
}
.pillar:hover { border-color: var(--pink); box-shadow: var(--sh-sm); transform: translateX(4px); }
.pillar__icon { font-size: 1.6rem; flex-shrink: 0; margin-top: .1rem; }
.pillar h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--plum); margin-bottom: .2rem; font-weight: 700; }
.pillar p { font-size: .9rem; color: var(--text-m); line-height: 1.55; }

/* ---------- GALLERY ---------- */
.gallery { padding-block: 5rem; background: var(--cream-d); }

.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gf {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  padding: .45rem 1.1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border);
  color: var(--text-m);
  background: var(--white);
  cursor: pointer;
  transition: all var(--t);
}
.gf:hover, .gf.is-active { background: var(--plum); color: var(--white); border-color: var(--plum); }

/* Masonry grid using CSS columns */
.gallery__grid {
  columns: 4;
  column-gap: 1rem;
}
.gi {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 5;
}
.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gi:hover img { transform: scale(1.04); }
.gi::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(74,29,53,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--t);
  border-radius: var(--r);
}
.gi:hover::after { opacity: 1; }
.gi.is-hidden { display: none; }

.gallery__load-more { text-align: center; margin-top: 2rem; }
.gallery__cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox__img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox__img { max-width: 100%; max-height: 90vh; border-radius: var(--r); object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background var(--t);
}
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t);
  line-height: 1;
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.25); }

/* ---------- AWARD ---------- */
.award {
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--plum) 0%, #3A1528 100%);
}
.award__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.award__badge-wrap { flex-shrink: 0; text-align: center; }
.award__badge-img {
  width: clamp(140px, 20vw, 200px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.4));
}
.award__text { flex: 1; min-width: 280px; }
.award__text .section-label { color: var(--pink); }
.award__text .section-heading { color: var(--white); }
.award__text p { color: rgba(255,255,255,.75); margin-top: 1rem; line-height: 1.7; }
.award__text strong { color: var(--white); }
.award__badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.award__cert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.award__cert img { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; }
.award__cert--text { }
.award__cert-icon { font-size: 2.2rem; }

/* ---------- REVIEWS ---------- */
.reviews { padding-block: 5rem; background: var(--cream); }
.reviews__stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
}
.stars { font-size: 1.2rem; }
.reviews__score { font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text-m); font-weight: 600; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--pink); }
.review-card--featured { border-color: var(--pink); background: linear-gradient(180deg, #fff 0%, #fff8fc 100%); }
.review-card__stars { font-size: 1rem; }
.review-card blockquote {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.review-card cite {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--plum);
  font-style: normal;
}
.review-card__dog {
  font-size: .78rem;
  color: var(--text-l);
  font-family: 'DM Sans', sans-serif;
}
.reviews__cta { text-align: center; }

/* ---------- SERVICES ---------- */
.services { padding-block: 5rem; background: linear-gradient(180deg, var(--plum) 0%, #2D0E1E 100%); }
.services .section-heading { color: var(--white); }
.services .section-label { color: var(--pink); }
.services .section-sub { color: rgba(255,255,255,.65); margin-inline: auto; }
.services__price-note {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: .5rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.scard {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
  transition: all var(--t);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.scard--featured { border-color: var(--pink); background: linear-gradient(180deg,#fff 0%,#fff5f8 100%); }
.scard__badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--pink);
  color: var(--plum);
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .22rem .85rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.scard__emoji { font-size: 2rem; margin-bottom: .6rem; }
.scard h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: .2rem;
}
.scard__tag { font-size: .82rem; color: var(--text-l); font-style: italic; margin-bottom: 1rem; }
.scard__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .38rem;
  font-size: .88rem;
  color: var(--text-m);
  margin-bottom: 1.2rem;
}
.scard__free { color: var(--plum) !important; font-weight: 700; }
.scard__price {
  background: var(--cream);
  border-radius: var(--r);
  padding: .7rem .9rem;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}
.scard__price-row {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  padding-block: .18rem;
}
.scard__price-row + .scard__price-row { border-top: 1px solid var(--border); padding-top: .38rem; margin-top: .18rem; }
.scard__price-row span:first-child { color: var(--text-m); }
.scard__price-row span:last-child { font-weight: 700; color: var(--plum); }
.services__footer-note {
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}
.services__footer-note a { color: var(--pink-l); text-decoration: underline; }

/* ---------- BOOKING ---------- */
.booking { padding-block: 5rem; background: var(--cream-d); }
.booking__container {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}
.booking__info .section-label { margin-bottom: .4rem; }
.booking__info .section-heading { margin-bottom: .75rem; }
.booking__body { color: var(--text-m); margin-bottom: 1.5rem; line-height: 1.7; }
.booking__contacts { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.25rem; }
.bcontact {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 1rem;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--t);
}
a.bcontact:hover { border-color: var(--pink); transform: translateX(4px); box-shadow: var(--sh-sm); }
.bcontact__icon { font-size: 1.5rem; flex-shrink: 0; }
.bcontact strong { display: block; font-size: .88rem; color: var(--plum); font-weight: 700; font-family: 'DM Sans', sans-serif; }
.bcontact div { font-size: .88rem; color: var(--text-m); line-height: 1.4; }
.booking__offer-note {
  background: linear-gradient(135deg, var(--pink-l), #fdeef2);
  border: 1.5px solid var(--pink);
  border-radius: var(--r-lg);
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--plum);
  margin-bottom: 1.5rem;
}

.booking__dogs-strip {
  display: flex;
  gap: .5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 120px;
}
.booking__dogs-strip img {
  flex: 1;
  width: 0;
  height: 100%;
  object-fit: cover;
}

.booking__form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  box-shadow: var(--sh);
  border: 1.5px solid var(--border);
}
.booking__form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--plum);
  margin-bottom: .2rem;
}
.booking__form-sub { font-size: .85rem; color: var(--text-l); margin-bottom: 1.5rem; }
.frow { display: flex; flex-direction: column; gap: .9rem; }
.frow--2 { flex-direction: row; gap: .9rem; }
.frow--2 .fg { flex: 1; min-width: 0; }
.fg { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .9rem; }
.fg label {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--plum);
}
.fg input, .fg select, .fg textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  background: var(--cream);
  color: var(--text);
  font-size: .95rem;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(74,29,53,.08);
  background: var(--white);
}
.fg textarea { resize: vertical; min-height: 80px; }
.fg--check { flex-direction: row; align-items: flex-start; gap: .5rem; cursor: pointer; font-size: .88rem; color: var(--text-m); margin-bottom: 1rem; }
.fg--check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--plum); flex-shrink: 0; }
.form__privacy { text-align: center; font-size: .78rem; color: var(--text-l); margin-top: .65rem; }
.form__privacy a { color: var(--plum); text-decoration: underline; }

.booking__success { text-align: center; padding: 2rem 1rem; }
.booking__success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.booking__success h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--plum); margin-bottom: .75rem; }
.booking__success p { color: var(--text-m); margin-bottom: 1.5rem; line-height: 1.65; }

/* ---------- LOCAL / MAP ---------- */
.local { padding-block: 5rem; background: var(--cream); }
.local__container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.local__areas {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-block: .75rem 1.25rem;
}
.local__areas span {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-m);
  padding: .25rem .7rem;
  border-radius: var(--r-pill);
}
.local__address {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  background: var(--cream-d);
  border-radius: var(--r);
  padding: 1rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-m);
  line-height: 1.55;
}
.local__address-icon { font-size: 1.3rem; flex-shrink: 0; }
.local__address strong { color: var(--plum); display: block; font-family: 'DM Sans', sans-serif; font-size: .88rem; margin-bottom: .15rem; }
.local__address span { display: block; }

.hours-card { background: var(--white); border-radius: var(--r-lg); padding: 1.4rem; border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.hours-card__heading { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--plum); margin-bottom: .9rem; }
.hours-card__list { display: flex; flex-direction: column; gap: 0; }
.hours-card__list li { display: flex; justify-content: space-between; font-size: .88rem; padding-block: .45rem; border-bottom: 1px solid var(--border); }
.hours-card__list li:last-child { border-bottom: none; }
.hours-card__list li.open span:first-child { font-weight: 700; color: var(--plum); }
.closed { color: var(--text-l); font-style: italic; }
.hours-card__tip { font-size: .78rem; color: var(--sage-d); font-weight: 700; margin-top: .75rem; font-family: 'DM Sans', sans-serif; }

.local__map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--border); }
.local__map iframe { display: block; width: 100%; }
.local__directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .75rem;
  background: var(--plum);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--t);
}
.local__directions:hover { background: var(--plum-m); }

/* ---------- FAQ ---------- */
.faq { padding-block: 5rem; background: var(--cream-d); }
.faq__list { max-width: 720px; margin-inline: auto; margin-bottom: 2rem; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: 1.1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--plum);
  cursor: pointer;
  transition: color var(--t);
}
.faq__q:hover { color: var(--plum-m); }
.faq__chevron { font-size: 1.1rem; color: var(--pink-d); transition: transform var(--t); flex-shrink: 0; }
.faq__q[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }
.faq__a { padding-bottom: 1.2rem; font-size: .95rem; color: var(--text-m); line-height: 1.7; }
.faq__a a { color: var(--plum); font-weight: 700; text-decoration: underline; }
.faq__cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: .9rem; }
.faq__cta p { color: var(--text-m); }

/* ---------- CONTACT ---------- */
.contact { padding-block: 5rem; background: var(--white); }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.ccard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  padding: 1.75rem 1rem;
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--t);
}
.ccard:hover { background: var(--plum); color: var(--white); transform: translateY(-4px); box-shadow: var(--sh); }
.ccard:hover .ccard__label { color: rgba(255,255,255,.6); }
.ccard:hover .ccard__value { color: var(--white); }
.ccard__icon { font-size: 1.8rem; }
.ccard__label { font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-l); transition: color var(--t); }
.ccard__value { font-weight: 700; color: var(--plum); font-size: .85rem; line-height: 1.4; transition: color var(--t); word-break: break-all; }

/* ---------- FOOTER ---------- */
.footer { background: linear-gradient(180deg, var(--plum) 0%, #1E0812 100%); color: rgba(255,255,255,.65); position: relative; }
.footer__wave { line-height: 0; }
.footer__wave svg { display: block; width: 100%; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.footer__brand p { font-size: .88rem; margin-bottom: .25rem; }
.footer__addr { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: .25rem; }
.footer__badges { display: flex; gap: .75rem; align-items: center; margin-top: 1rem; }
.footer__badges img { height: 40px; width: auto; object-fit: contain; opacity: .8; }
.footer__col h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: .9rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer__col a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer__col a:hover { color: var(--pink-l); }
.footer__hours { margin-top: 1.25rem; }
.footer__hours strong { display: block; color: var(--white); font-size: .88rem; margin-bottom: .3rem; }
.footer__hours p { font-size: .84rem; }
.footer__bottom { text-align: center; padding-block: 1.25rem; font-size: .8rem; color: rgba(255,255,255,.3); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--plum);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--sh);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: all var(--t);
  z-index: 900;
  text-decoration: none;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--plum-m); transform: translateY(-2px); }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet — ≤ 1024px */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero__container { grid-template-columns: 1fr; text-align: center; padding-block: 5rem 3rem; }
  .hero__content { max-width: 600px; margin-inline: auto; }
  .hero__stats, .hero__ctas, .hero__trust-badges { justify-content: center; }
  .hero__polaroids { display: none; } /* hidden on tablet/mobile — photos appear in gallery */

  .about__container { grid-template-columns: 1fr; }
  .about__photo-col { display: none; } /* removed on tablet — photos in gallery */

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { columns: 3; }
  .contact__grid { grid-template-columns: repeat(3, 1fr); }

  .booking__container { grid-template-columns: 1fr; }
  .booking__dogs-strip { display: none; }
  .local__container { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile — ≤ 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
    position: fixed;
    top: 66px; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .3rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh);
    z-index: 999;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: .7rem 1rem; border-radius: var(--r); text-align: center; }
  .nav__phone { display: flex !important; background: var(--cream-d); color: var(--plum) !important; font-weight: 700 !important; justify-content: center; }
  .nav__cta { margin-left: 0; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__container { padding-block: 2.5rem 2rem; }
  .hero__heading { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero__stats { gap: .9rem; }
  .hero__stat strong { font-size: 1.2rem; }

  /* Trust bar — 2-column grid so 5 items display as 2+2+1 */
  .trust-divider { display: none; }
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 1.25rem;
    justify-items: start;
  }

  /* Gallery */
  .gallery__grid { columns: 2; }

  /* Stats */
  .stats-strip__inner { gap: 1.5rem 3rem; }

  /* Discount */
  .discount-banner__inner { flex-direction: column; align-items: stretch; }
  .discount-banner__right { width: 100%; flex-direction: column; gap: .9rem; align-items: stretch; }
  .discount-banner__right .btn { width: 100%; justify-content: center; }

  /* Form */
  .frow--2 { flex-direction: column; }

  /* Contact */
  .contact__grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* Narrow tablet / large phone — ≤ 580px */
@media (max-width: 580px) {
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
}

/* Small mobile — ≤ 480px */
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .gallery__grid { columns: 2; column-gap: .5rem; }
  .gi { margin-bottom: .5rem; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .stats-strip__inner { gap: 1rem 2rem; }
  .booking__form-wrap { padding: 1.5rem; }
}

/* ================================================================
   ENTRANCE ANIMATIONS
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {
  .scard, .review-card, .ccard, .pillar {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .45s ease, transform .45s ease,
                box-shadow var(--t), border-color var(--t),
                background var(--t);
  }
  .scard.in, .review-card.in, .ccard.in, .pillar.in {
    opacity: 1; transform: translateY(0);
  }
  .scard:nth-child(2), .review-card:nth-child(2), .ccard:nth-child(2) { transition-delay: .07s; }
  .scard:nth-child(3), .review-card:nth-child(3), .ccard:nth-child(3) { transition-delay: .14s; }
  .scard:nth-child(4), .review-card:nth-child(4), .ccard:nth-child(4) { transition-delay: .21s; }
  .review-card:nth-child(5) { transition-delay: .28s; }
  .review-card:nth-child(6) { transition-delay: .35s; }
  .pillar:nth-child(2) { transition-delay: .08s; }
  .pillar:nth-child(3) { transition-delay: .16s; }
  .pillar:nth-child(4) { transition-delay: .24s; }
}

/* ---------- GALLERY PAGE ---------- */
.gallery-hero {
  position: relative;
  padding-top: 66px;
  padding-bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, #C07090 0%, #7A3560 40%, #4A1D35 75%);
  overflow: hidden;
}
.gallery-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.gallery-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 4rem 5rem;
  text-align: center;
}
.gallery-hero__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 1.2rem;
  transition: color var(--t);
  text-decoration: none;
}
.gallery-hero__back:hover { color: var(--white); }
.gallery-hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .8rem;
}
.gallery-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 50ch;
  margin-inline: auto;
}

.gallery--page { padding-top: 3rem; }
.gallery--page .gallery__filters { margin-bottom: 1.5rem; }

.gallery__count {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--text-l);
  margin-bottom: 1.5rem;
}

/* Active nav link */
.nav__link--active {
  color: var(--plum) !important;
  font-weight: 700 !important;
}

/* Gallery book CTA */
.gallery-book-cta {
  background: var(--plum);
  padding-block: 3.5rem;
}
.gallery-book-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.gallery-book-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: .4rem;
}
.gallery-book-cta p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
}
.gallery-book-cta__btns { display: flex; gap: .75rem; flex-wrap: wrap; }

@media (max-width: 768px) {
  .gallery-book-cta__inner { flex-direction: column; text-align: center; }
  .gallery-book-cta__btns { justify-content: center; }
  .gallery-hero__inner { padding-block: 3rem 4rem; }
}
