/* =========================================================
   Woof Woof Grooming & Shop. Poster / editorial composition.
   Type is the design. Color blocking and asymmetry over cards.
   ========================================================= */

:root {
  --pink: #d64389;
  --pink-deep: #b8336f;
  --teal: #0ba8a1;
  --teal-deep: #088a84;
  --ink: #1a1a1a;
  --ink-soft: #4d4d4d;
  --paper: #fbf8f6;
  --paper-pure: #ffffff;
  --line: #1a1a1a;
  --r: 0px;
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --gut: clamp(20px, 3vw, 40px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Quicksand', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* --- Type system. Quicksand to keep brand voice, pushed to extremes. --- */
.display {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.025em;
}
.tag {
  font-family: 'Quicksand', system-ui, sans-serif;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.num {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.script {
  font-family: 'Caveat', 'Quicksand', cursive;
  font-weight: 500;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.vline { display: inline-block; height: 1px; background: var(--ink); vertical-align: middle; }

/* =========================================================
   Top bar. Sits absolute over hero, no chrome.
   ========================================================= */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  font-size: .8rem;
  text-transform: uppercase;
}
.brand img { height: 38px; width: auto; }
.brand-name {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px;
}
.brand-name b { font-weight: 700; }
.brand-name small {
  font-weight: 500;
  letter-spacing: .2em;
  font-size: .65rem;
  color: var(--ink-soft);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.menu a {
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  color: #fff;
}
.menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: #fff;
  transition: right .25s cubic-bezier(.2,.7,.2,1);
}
.menu a:hover::after { right: 0; }
.menu .call {
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  letter-spacing: .12em;
  border-radius: 0;
  transition: background .2s, color .2s;
}
.menu .call:hover { background: var(--teal); color: #fff; }
.menu .call::after { display: none; }

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  background: var(--ink);
  border: 0;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: #fff;
  transition: transform .2s;
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 17px; }
.menu-toggle span:nth-child(3) { top: 22px; }

/* =========================================================
   Hero. Asymmetric 6/4 split, pink right panel, type left.
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--paper);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  min-height: 100vh;
}
.hero-left {
  position: relative;
  padding: 130px var(--pad) 60px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-right {
  position: relative;
  background: var(--pink);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 130px 40px 90px;
  text-align: center;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>");
  background-repeat: no-repeat;
  background-position: 12% 18%, 82% 28%, 24% 78%, 78% 72%, 50% 90%;
  background-size: 48px, 64px, 38px, 54px, 42px;
  opacity: .16;
  pointer-events: none;
}
.hero-right .stars-top {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  letter-spacing: .35em;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.hero-right .tagline {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.4);
  max-width: 280px;
}
.hero-right .est {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: .65rem;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 8px 14px;
  z-index: 2;
  box-shadow: 0 6px 14px -4px rgba(0,0,0,.18);
}

/* Mobile-only teal stamp on the hero */
.hero-stamp { display: none; }
.hero-right .logo-disc {
  position: relative;
  width: 70%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.25);
}
.hero-right .logo-disc img {
  width: 70%;
}
.hero-right .badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-weight: 600;
  letter-spacing: .22em;
  font-size: .68rem;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.5);
  padding: 8px 14px;
  z-index: 2;
}
.hero-right .vert {
  position: absolute;
  left: 22px;
  bottom: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: .35em;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.hero h1 {
  margin: 0 0 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 5.4vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.025em;
  color: var(--ink);
}
.hero h1 span { display: block; }
.hero h1 .l1 {
  font-weight: 600;
  font-size: .65rem;
  letter-spacing: .28em;
  line-height: 1.2;
  margin-bottom: 26px;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.hero h1 .l2 { color: var(--ink); }
.hero h1 .l2 em { font-style: normal; color: var(--pink); }
.hero h1 .l3 { color: var(--teal); }
.hero h1 .l3 em {
  font-style: normal;
  color: var(--pink);
  font-weight: 700;
  font-size: .55em;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 10px;
}

.hero-meta {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-weight: 500;
  font-size: .92rem;
  color: var(--ink-soft);
}
.hero-meta > div {
  padding: 18px 24px 18px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta > div + div {
  border-left: 1px solid #d8d4d1;
  padding-left: 24px;
}
.hero-meta b {
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-meta a { line-height: 1.45; }
.hero-meta a:hover { color: var(--pink); }
.hero-meta .phone {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  line-height: 1.1;
}
.hero-meta .phone:hover { color: var(--pink); }

/* =========================================================
   Marquee strip
   ========================================================= */
.marquee {
  background: var(--teal);
  color: #fff;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--teal-deep);
  border-bottom: 1px solid var(--teal-deep);
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  will-change: transform;
}
.marquee span {
  font-weight: 700;
  font-size: clamp(1.05rem, 2.2vw, 1.7rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.marquee span::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>") no-repeat center / contain;
  transform: rotate(-8deg);
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* =========================================================
   Story. Editorial: drop cap, narrow column, pulled stat.
   ========================================================= */
.story {
  padding: clamp(70px, 9vw, 110px) 0;
  background: var(--paper);
  position: relative;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 6.5fr) minmax(0, 4.5fr);
  gap: var(--gut);
  align-items: stretch;
}
.story-num {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: start;
  padding-top: 6px;
}
.story-num b { color: var(--pink); }
.story-body { max-width: 56ch; }
.story-body h2 {
  font-size: clamp(1.7rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 28px;
  color: var(--ink);
}
.story-body h2 i { font-style: normal; color: var(--pink); }
.story-body p {
  font-size: .98rem;
  color: var(--ink-soft);
  margin: 0 0 1.2em;
}
.story-body p:first-of-type::first-letter {
  font-family: 'Quicksand', serif;
  font-weight: 700;
  font-size: 3.6em;
  line-height: .85;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--pink);
}
.story-side {
  border-left: 1px solid var(--ink);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
}
.story-side small + .img-block,
.story-side .img-block { margin-top: 22px; }
.story-side .stat {
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.story-side .stat b {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: .42em;
  letter-spacing: .04em;
}
.story-side .stat-stars {
  margin-top: 10px;
  color: var(--teal);
  font-size: 1.05rem;
  letter-spacing: .35em;
}
.story-side small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}
.story-side .img-block {
  flex: 1;
  min-height: 320px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--teal) 100%);
  overflow: hidden;
  position: relative;
}
.story-side .img-block img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =========================================================
   Services. Numbered menu. No icons. Type-driven.
   ========================================================= */
.services {
  background: var(--paper-pure);
  padding: clamp(60px, 8vw, 95px) 0 0;
  border-top: 1px solid var(--ink);
}
.svc-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: clamp(40px, 7vw, 80px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
  gap: 24px;
}
.svc-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.6vw, 3.8rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.025em;
}
.svc-head h2 b { color: var(--pink); }
.svc-head p {
  margin: 0;
  font-size: .92rem;
  color: var(--ink-soft);
  max-width: 40ch;
  justify-self: end;
  text-align: right;
}

.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr minmax(0, 40%);
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 3.4vw, 36px) 0;
  border-bottom: 1px solid var(--ink);
  transition: padding .35s cubic-bezier(.2,.7,.2,1), background .25s;
  position: relative;
}
.svc-row:hover { background: var(--paper); padding-left: 16px; padding-right: 16px; }
.svc-row .n {
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-soft);
}
.svc-row h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
  transition: color .25s, transform .35s cubic-bezier(.2,.7,.2,1);
}
.svc-row:hover h3 { color: var(--pink); transform: translateX(8px); }
.svc-row p {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-soft);
  max-width: 36ch;
}

.svc-foot {
  padding: clamp(40px, 6vw, 60px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .92rem;
  color: var(--ink-soft);
}
.svc-foot a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .8rem;
  color: var(--ink);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 4px;
}
.svc-foot a:hover { color: var(--pink); }

/* =========================================================
   Shop strip. Full bleed teal panel.
   ========================================================= */
.shop {
  background: var(--teal);
  color: #fff;
  padding: clamp(60px, 9vw, 105px) 0;
  position: relative;
  overflow: hidden;
}
.shop::before, .shop::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.shop::before {
  width: 480px; height: 480px;
  background: var(--pink);
  right: -180px; top: -180px;
  opacity: .25;
}
.shop::after {
  width: 360px; height: 360px;
  border: 2px solid rgba(255,255,255,.18);
  left: -120px; bottom: -120px;
}
.shop-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gut);
  align-items: center;
}
.shop h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.022em;
}
.shop h2 b { color: #ffd6e8; }
.shop p {
  font-size: .98rem;
  max-width: 44ch;
  opacity: .92;
  margin: 0 0 26px;
}
.shop .inline-call {
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #fff;
}
.shop .inline-call:hover { color: #ffd6e8; border-color: #ffd6e8; }
.shop-words {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.shop-words div {
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.shop-words div small {
  font-weight: 500;
  font-size: .55em;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}

/* =========================================================
   Praise. One huge pull-quote + smaller quote fragments.
   ========================================================= */
.praise {
  padding: clamp(60px, 9vw, 105px) 0;
  background: var(--paper);
  position: relative;
}
.praise-head {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 80px);
}
.praise-head .stars-line {
  font-size: 1.1rem;
  letter-spacing: .35em;
  color: var(--pink);
  margin-bottom: 12px;
}
.praise-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}
.praise-head h2 b { color: var(--teal); }
.praise-head small {
  display: block;
  margin-top: 14px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.praise-head small a { border-bottom: 1px solid var(--ink-soft); }
.praise-head small a:hover { color: var(--pink); border-color: var(--pink); }

.bigq {
  max-width: 22ch;
  margin: 0 auto 60px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  text-align: center;
  color: var(--ink);
}
.bigq::before, .bigq::after {
  font-family: 'Caveat', cursive;
  color: var(--pink);
  font-weight: 600;
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -.15em;
  padding: 0 .15em;
}
.bigq::before { content: '“'; }
.bigq::after  { content: '”'; }
.bigq-by {
  display: block;
  margin-top: 30px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.quotes-fragments {
  columns: 3;
  column-gap: 36px;
}
.quotes-fragments figure {
  margin: 0 0 40px;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
  break-inside: avoid;
  color: var(--ink-soft);
  line-height: 1.5;
  position: relative;
}
.quotes-fragments figure::before {
  content: '★ ★ ★ ★ ★';
  display: block;
  color: var(--pink);
  font-size: .72rem;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.quotes-fragments figure q {
  display: block;
  margin: 0 0 16px;
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
  line-height: 1.5;
  quotes: '«' '»';
}
.quotes-fragments figure q::before,
.quotes-fragments figure q::after { color: var(--pink); font-weight: 600; }
.quotes-fragments figcaption {
  padding-top: 12px;
  border-top: 1px solid #e2dfdc;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.quotes-fragments figcaption::after {
  content: 'Google';
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--pink);
}

/* =========================================================
   Contact. Poster footer. Address as type, not card.
   ========================================================= */
.contact {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 90px) 0 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: clamp(40px, 6vw, 70px);
  align-items: start;
}
.contact-poster .tag { color: var(--pink); margin-bottom: 18px; display: block; }
.contact-poster h2 {
  margin: 0 0 30px;
  font-size: clamp(1.6rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.contact-poster h2 b { color: var(--teal); }
.contact-poster .row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  align-items: baseline;
}
.contact-poster .row:last-of-type { border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-poster .row b {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.55);
}
.contact-poster .row p, .contact-poster .row a {
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -.005em;
}
.contact-poster .row a:hover { color: var(--pink); }

.contact-map {
  aspect-ratio: 4 / 3.4;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
}
.contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }
.contact-map .badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--pink);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 10px 16px;
  z-index: 1;
}

.contact-foot {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.contact-foot .mini-brand { display: flex; gap: 10px; align-items: center; }
.contact-foot .mini-brand img { height: 22px; width: auto; filter: brightness(0) invert(1); opacity: .8; }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.rv.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  /* ====== Mobile hero: pink poster ====== */
  .hero {
    background: var(--pink);
    color: #fff;
    min-height: 0;
    overflow: hidden;
    position: relative;
    padding-top: 70px;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>"),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='white'><ellipse cx='14' cy='22' rx='5.5' ry='7.5'/><ellipse cx='26' cy='13' rx='5.5' ry='7.5'/><ellipse cx='38' cy='13' rx='5.5' ry='7.5'/><ellipse cx='50' cy='22' rx='5.5' ry='7.5'/><path d='M32 27c-9 0-15 7.5-15 15.5 0 7 5.5 11 13 11h4c7.5 0 13-4 13-11 0-8-6-15.5-15-15.5z'/></svg>");
    background-repeat: no-repeat;
    background-position: 6% 12%, 88% 22%, 14% 62%, 84% 78%;
    background-size: 36px, 52px, 30px, 44px;
    opacity: .13;
    pointer-events: none;
    z-index: 0;
  }

  /* Topbar sits on pink: white text, white burger with pink lines */
  .topbar {
    background: transparent;
    border-bottom: 0;
    padding: 16px var(--pad);
  }
  .topbar .brand img {
    height: 34px;
    background: #fff;
    padding: 4px;
    border-radius: 50%;
  }
  .brand-name b { color: #fff; }
  .brand-name small { color: rgba(255,255,255,.8); }
  .menu-toggle { background: #fff; }
  .menu-toggle span { background: var(--pink); }

  .menu { display: none; }
  .menu-toggle { display: block; }

  /* Dropdown menu still drops in a white panel for legibility */
  .topbar.open .menu {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper-pure);
    flex-direction: column;
    align-items: stretch;
    padding: 14px var(--pad) 22px;
    border-bottom: 1px solid var(--ink);
    gap: 0;
    box-shadow: 0 30px 50px -20px rgba(0,0,0,.18);
  }
  .topbar.open .menu a {
    color: var(--ink);
    font-size: .82rem;
    letter-spacing: .2em;
    padding: 16px 0;
    border-bottom: 1px solid #eaeaea;
  }
  .topbar.open .menu a:last-of-type { border-bottom: 0; }
  .topbar.open .menu a::after { display: none; }
  .topbar.open .menu .call {
    color: #fff;
    text-align: center;
    margin-top: 10px;
    padding: 14px 18px;
    border-bottom: 0;
  }
  .topbar.open .menu .call:hover { background: var(--teal); }

  .menu-toggle.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  /* Re-flow: pink panel content shows first (logo disc), text content under it */
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .hero-right {
    order: 0;
    background: transparent;
    padding: 30px 30px 0;
    min-height: 0;
    gap: 16px;
  }
  .hero-right::before { display: none; }
  .hero-right .logo-disc {
    width: 140px;
    max-width: 140px;
  }
  .hero-right .stars-top { display: none; }
  .hero-right .tagline { display: none; }
  /* Teal stamp visible on mobile, anchored to the hero (not the right panel) */
  .hero-right .est {
    position: fixed;
    display: none;
  }

  .hero-left {
    order: 1;
    padding: 16px 28px 36px;
    text-align: center;
    align-items: center;
    color: #fff;
  }
  .hero h1 {
    text-align: center;
    color: #fff;
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  .hero h1 .l1 {
    color: rgba(255,255,255,.85);
    margin-bottom: 24px;
  }
  .hero h1 .l2 { color: #fff; }
  .hero h1 .l2 em { color: #ffd6e8; }
  .hero h1 .l3 { color: #fff; }
  .hero h1 .l3 em {
    display: inline-block;
    background: var(--teal);
    color: #fff;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    margin-left: 10px;
    font-weight: 700;
  }
  /* Stars row after the headline */
  .hero h1::after {
    content: '★ ★ ★ ★ ★';
    display: block;
    color: #fff;
    font-size: .95rem;
    letter-spacing: .35em;
    margin-top: 26px;
    font-weight: 400;
  }

  /* Meta strip inverted for pink background */
  .hero-meta {
    margin-top: 28px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.55);
    border-bottom: 1px solid rgba(255,255,255,.55);
    color: rgba(255,255,255,.92);
    font-size: .88rem;
    text-align: left;
  }
  .hero-meta > div {
    padding: 16px 18px 16px 0;
  }
  .hero-meta > div + div {
    border-left-color: rgba(255,255,255,.3);
    padding-left: 18px;
  }
  .hero-meta b { color: #fff; }
  .hero-meta a { color: #fff; }
  .hero-meta a:hover { color: #ffd6e8; }
  .hero-meta .phone { color: #fff; }
  .hero-meta .phone:hover { color: #ffd6e8; }

  /* Teal stamp at the top right corner of the hero on mobile */
  .hero-stamp {
    display: inline-block;
    position: absolute;
    top: 76px;
    right: var(--pad);
    z-index: 3;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 8px 12px;
    box-shadow: 0 6px 14px -4px rgba(0,0,0,.25);
    transform: rotate(-4deg);
  }
  .hero-stamp b { font-weight: 700; }
  .hero-stamp small { font-weight: 500; letter-spacing: .18em; opacity: .9; }

  /* Marquee */
  .marquee { padding: 16px 0; }

  /* Story stacks. Side column becomes a horizontal block under text. */
  .story { padding: clamp(60px, 10vw, 90px) 0; }
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-num {
    writing-mode: horizontal-tb;
    transform: none;
    align-self: start;
    font-size: .72rem;
    padding-top: 0;
  }
  .story-side {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--ink);
    padding-top: 28px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px 28px;
    align-items: center;
  }
  .story-side .stat { grid-column: 1; }
  .story-side .stat-stars { grid-column: 2; margin-top: 0; align-self: end; }
  .story-side small { grid-column: 1 / -1; margin-top: -8px; }
  .story-side .img-block {
    grid-column: 1 / -1;
    margin-top: 8px;
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }

  /* Services */
  .services { padding: clamp(60px, 9vw, 90px) 0 0; }
  .svc-head { grid-template-columns: 1fr; align-items: start; margin-bottom: 28px; }
  .svc-head p { justify-self: start; text-align: left; }
  .svc-row { grid-template-columns: 38px 1fr; padding: 22px 0; }
  .svc-row:hover { padding-left: 0; padding-right: 0; background: transparent; }
  .svc-row:hover h3 { transform: none; }
  .svc-row p { display: none; }
  .svc-foot { padding: 30px 0; }

  /* Shop */
  .shop { padding: clamp(60px, 10vw, 90px) 0; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop::before { width: 280px; height: 280px; right: -100px; top: -100px; }
  .shop::after { width: 200px; height: 200px; left: -80px; bottom: -80px; }

  /* Praise */
  .praise { padding: clamp(60px, 10vw, 90px) 0; }
  .quotes-fragments { columns: 2; column-gap: 28px; padding-top: 30px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-poster .row { grid-template-columns: 90px 1fr; padding: 14px 0; gap: 14px; }
  .contact-map { aspect-ratio: 4 / 3; }
}
@media (max-width: 560px) {
  .quotes-fragments { columns: 1; }
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .hero-meta > div { padding: 14px 0; }
  .hero-meta > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.3);
    padding-left: 0;
  }
  .hero-stamp { top: 70px; padding: 6px 10px; font-size: .62rem; }
  .topbar .brand-name small { display: none; }
  .brand { font-size: .72rem; }
  .story-side {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .story-side .stat { grid-column: 1; }
  .story-side .stat-stars { grid-column: 1; }
  .story-side small { grid-column: 1; margin-top: 0; }
  .story-side .img-block { grid-column: 1; }
  .contact-poster .row { grid-template-columns: 1fr; gap: 4px; }
  .contact-poster .row b { font-size: .6rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
