/* ============================================================
   WOOFY'S DOG GROOMING — demo build by Nimblesite
   Playbook fingerprint: warm, caring, trust-led. Bricolage
   Grotesque + General Sans; oat cream / denim ink / sky blue,
   warm coral pop; light centered hero + rounded photo band,
   Master-Groomer trust strip; soft 20px radius, full pills,
   circular photo frames; gallery of work. Facts from their own
   public listings + Facebook. Owner Janette — NZ Master Groomer,
   the first on the Kāpiti Coast. Differs from Choice Pies and
   Thai Marina on all six axes.
   ============================================================ */

:root {
  --cream:  #f6f1e9;
  --cream-2:#fbf7f0;
  --blush:  #f3e3da;
  --ink:    #22303f;
  --mut:    #6c7683;
  --blue:   #4b83c4;
  --blue-d: #35648f;
  --coral:  #ec8a68;
  --line:   #e6ddd0;
  --disp: "Bricolage Grotesque", Georgia, serif;
  --sans: "General Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --pad: clamp(20px, 5vw, 48px);
  --r: 20px;
  --shadow: 0 14px 34px -18px rgba(34,48,63,.4);
}

* { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 1.06rem; line-height: 1.65; color: var(--ink); background: var(--cream); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
:focus { outline: none; }
:focus-visible { outline: 3px solid var(--blue-d); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.page { max-width: 1060px; margin-inline: auto; padding-inline: var(--pad); }

.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--disp); font-weight: 600; font-size: 1.02rem; line-height: 1; padding: .95rem 1.7rem; border-radius: 999px; background: var(--blue); color: #fff; box-shadow: var(--shadow); transition: background .2s, transform .2s; }
.btn:hover { background: var(--blue-d); transform: translateY(-1px); }
.btn.coral { background: var(--coral); color: #3a2016; }
.btn.coral:hover { background: #e17651; color: #fff; }
.btn.ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); box-shadow: none; }
.btn.ghost:hover { background: var(--ink); color: var(--cream); }

/* util + mast */
.util { background: var(--ink); color: #cdd6df; font-size: .92rem; }
.util .page { display: flex; justify-content: space-between; gap: 1rem; padding-block: .5rem; flex-wrap: wrap; }
.util b { color: var(--coral); }
.util a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.mast { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--cream) 92%, transparent); backdrop-filter: blur(9px); border-bottom: 1px solid var(--line); }
.mast .page { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 78px; }
.wordmark { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--disp); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; color: var(--ink); }
.wordmark .paw { width: 30px; height: 30px; color: var(--coral); }
.mast nav { display: flex; align-items: center; gap: clamp(.9rem, 2.4vw, 1.9rem); font-weight: 600; font-size: .98rem; }
.mast nav a:not(.btn) { padding: .3rem 0; border-bottom: 2.5px solid transparent; }
.mast nav a:not(.btn):hover, .mast nav a[aria-current="page"] { border-bottom-color: var(--coral); }
.mast .btn { padding: .68rem 1.2rem; font-size: .95rem; box-shadow: none; }
@media (max-width: 780px) { .mast nav a:not(.btn) { display: none; } }

/* centered hero + rounded photo band */
.hero { padding-block: clamp(2.8rem, 7vw, 5rem) clamp(1.6rem, 4vw, 2.6rem); text-align: center; background: radial-gradient(120% 80% at 50% 0%, var(--cream-2) 0%, var(--cream) 62%); }
.hero .kicker { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--disp); font-weight: 600; color: var(--blue-d); font-size: 1rem; background: var(--blush); padding: .4rem 1rem; border-radius: 999px; }
.hero h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(2.4rem, 1.3rem + 4.6vw, 4.2rem); line-height: 1.02; letter-spacing: -.025em; margin: 1rem auto 0; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--coral); }
.hero .lead { color: var(--mut); max-width: 54ch; margin: 1.1rem auto 0; font-size: 1.14rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 1.8rem; }
.photo-band { margin-top: clamp(2rem, 5vw, 3rem); }
.photo-band .frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 21/8; }
.ph-wide { width: 100%; height: 100%; background:
    radial-gradient(circle at 30% 40%, rgba(75,131,196,.16), transparent 45%),
    radial-gradient(circle at 72% 60%, rgba(236,138,104,.18), transparent 45%),
    var(--blush); display: grid; place-items: center; color: var(--blue-d); font-family: var(--disp); font-style: italic; font-size: 1.05rem; }

/* trust strip */
.trust { background: var(--ink); color: #eaf0f6; }
.trust .page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; padding-block: clamp(1.6rem, 3.5vw, 2.4rem); }
@media (max-width: 720px) { .trust .page { grid-template-columns: 1fr; gap: 1.4rem; } }
.trust .item { display: flex; gap: .8rem; align-items: flex-start; }
.trust .item svg { width: 26px; height: 26px; color: var(--coral); flex: none; margin-top: 2px; }
.trust .item b { font-family: var(--disp); display: block; font-size: 1.05rem; }
.trust .item span { color: #aeb9c4; font-size: .95rem; }

/* sections */
.sec { padding-block: clamp(2.6rem, 6vw, 4.6rem) 0; }
.sec:last-of-type { padding-bottom: clamp(2.6rem, 6vw, 4.6rem); }
.sec-kicker { font-family: var(--disp); font-weight: 600; color: var(--blue-d); font-size: 1rem; }
h2.title { font-family: var(--disp); font-weight: 700; font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); line-height: 1.08; letter-spacing: -.02em; margin-top: .5rem; max-width: 24ch; }
.lead2 { color: var(--mut); max-width: 60ch; margin-top: 1rem; }
.center { text-align: center; }
.center h2.title, .center .lead2 { margin-inline: auto; }

/* service cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; margin-top: clamp(1.8rem, 4vw, 2.6rem); }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }
.card { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem 1.7rem; box-shadow: var(--shadow); }
.card .ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--blush); color: var(--blue-d); margin-bottom: 1rem; }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; }
.card p { color: var(--mut); font-size: .98rem; margin-top: .4rem; }

/* price list */
.pricing { margin-top: clamp(1.8rem, 4vw, 2.6rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 820px) { .pricing { grid-template-columns: 1fr; } }
.plist { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem 1.8rem; box-shadow: var(--shadow); }
.plist h3 { font-family: var(--disp); font-weight: 700; font-size: 1.35rem; }
.plist h3 small { font-family: var(--sans); font-weight: 500; color: var(--mut); font-size: .85rem; display: block; margin-top: .2rem; }
.plist ul { list-style: none; padding: 0; margin-top: 1rem; }
.plist li { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.plist li:last-child { border-bottom: 0; }
.plist li b { font-weight: 600; }
.plist li i { color: var(--mut); font-style: normal; font-size: .9rem; display: block; }
.plist li span { font-family: var(--disp); font-weight: 600; color: var(--blue-d); white-space: nowrap; }

/* gallery — circular / rounded frames */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: clamp(1.8rem, 4vw, 2.6rem); }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gallery { grid-template-columns: 1fr; } }
.gitem { text-align: center; }
.gitem .ph { aspect-ratio: 1; border-radius: 24px; overflow: hidden; background:
    radial-gradient(circle at 40% 35%, rgba(75,131,196,.18), transparent 50%),
    radial-gradient(circle at 68% 70%, rgba(236,138,104,.2), transparent 50%),
    var(--blush); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; place-items: center; color: var(--blue-d); font-family: var(--disp); font-style: italic; }
.gitem.round .ph { border-radius: 50%; }
.gitem .cap { margin-top: .7rem; font-size: .95rem; color: var(--mut); }
.gitem .cap b { font-family: var(--disp); color: var(--ink); font-weight: 600; }

/* quote */
.band { margin-top: clamp(2.6rem, 6vw, 4.6rem); background: var(--blue); color: #fff; }
.band .page { padding-block: clamp(2.4rem, 5.5vw, 3.6rem); text-align: center; }
.band .q { font-family: var(--disp); font-weight: 600; font-size: clamp(1.4rem, 1.1rem + 1.8vw, 2rem); line-height: 1.25; max-width: 34ch; margin-inline: auto; }
.band .q::before { content: "\201C"; }
.band .q::after { content: "\201D"; }
.band cite { display: block; margin-top: 1rem; font-style: normal; color: #dce8f4; font-size: .95rem; }

/* CTA band */
.cta { margin-top: clamp(2.6rem, 6vw, 4.6rem); }
.cta .page { background: var(--ink); color: #eaf0f6; border-radius: var(--r); padding: clamp(2rem, 5vw, 3.2rem); text-align: center; }
.cta h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem); line-height: 1.1; max-width: 22ch; margin-inline: auto; }
.cta p { color: #aeb9c4; margin-top: .7rem; max-width: 50ch; margin-inline: auto; }
.cta .btn { margin-top: 1.5rem; }

/* prose, note, contact */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; margin-top: clamp(1.4rem, 3vw, 2.2rem); }
@media (max-width: 800px) { .two { grid-template-columns: 1fr; } }
.two.narrow { grid-template-columns: 1.2fr .8fr; }
@media (max-width: 800px) { .two.narrow { grid-template-columns: 1fr; } }
.prose { color: var(--mut); max-width: 62ch; }
.prose p + p { margin-top: 1rem; }
.prose b { color: var(--ink); }
.note { border: 2px dashed var(--line); background: var(--cream-2); border-radius: var(--r); padding: 1.2rem 1.4rem; color: var(--mut); font-size: .95rem; }
.note b { color: var(--ink); }
.portrait { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4/5; }
.portrait .ph { width: 100%; height: 100%; background:
    radial-gradient(circle at 45% 35%, rgba(75,131,196,.16), transparent 50%),
    var(--blush); display: grid; place-items: center; color: var(--blue-d); font-family: var(--disp); font-style: italic; text-align: center; padding: 1rem; }
.contact-card { background: var(--cream-2); border: 2px solid var(--ink); border-radius: var(--r); padding: 1.7rem 1.8rem; box-shadow: var(--shadow); }
.contact-card h3 { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; }
.contact-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed var(--line); flex-wrap: wrap; }
.contact-card dl div:last-child { border-bottom: 0; }
.contact-card dt { color: var(--mut); }
.contact-card dd { font-weight: 600; text-align: right; }
.contact-card .btn { width: 100%; justify-content: center; margin-top: 1.1rem; }

/* footer */
.foot { margin-top: clamp(2.6rem, 6vw, 4.6rem); background: var(--ink); color: #cdd6df; }
.foot .page { padding-block: 2.1rem 1.5rem; }
.foot .row { display: flex; flex-wrap: wrap; gap: .6rem 2rem; justify-content: space-between; font-size: .95rem; }
.foot .wm { font-family: var(--disp); font-weight: 700; color: #fff; }
.foot a { text-decoration: underline; text-underline-offset: 3px; }
.foot .credit { margin-top: 1.2rem; font-size: .85rem; opacity: .75; }
