/* ============================================================
   K9 Clip N Clean Mobile Dog Grooming — brand stylesheet
   Sunpeak Digital v3 pipeline. Quicksand (display) + Nunito (body).
   Brand mauve #8e6f93, dark header, small-medium rounded corners.
   Dependency-free motion (CSS transitions + IntersectionObserver).
   ============================================================ */
:root {
  --mauve: #8e6f93;
  --mauve-dark: #6f5473;
  --mauve-light: #a889ad;
  --secondary: #ebebeb;
  --ground: #fdfdfc;
  --ground-alt: #f6f5f6;
  --ink: #1a1a1a;
  --muted: #59565c;
  --header-bg: #0d0d0d;
  --header-bg-2: #191919;
  --white: #fdfdfd;
  --shadow-soft: 0 8px 24px rgba(20, 14, 22, .09);
  --shadow-lift: 0 16px 40px rgba(20, 14, 22, .18);
  --radius: 10px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='%23ffffff' fill-opacity='.035' transform='translate(40 44) rotate(-22)'%3E%3Cellipse cx='-14' cy='-8' rx='5' ry='7.4'/%3E%3Cellipse cx='-4.6' cy='-15' rx='5' ry='7.4'/%3E%3Cellipse cx='5.6' cy='-15' rx='5' ry='7.4'/%3E%3Cellipse cx='15' cy='-8' rx='5' ry='7.4'/%3E%3Cellipse cx='0' cy='6.5' rx='12' ry='10.2'/%3E%3C/g%3E%3C/svg%3E");
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Nunito', sans-serif; color: var(--ink); background: var(--ground);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; font-size: 16.5px;
}
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; font-weight: 500; color: var(--ink); margin: 0 0 16px; line-height: 1.18; }
h1 { font-size: clamp(34px, 5.2vw, 54px); font-weight: 500; }
h2 { font-size: clamp(26px, 3.2vw, 36px); }
h3 { font-size: clamp(19px, 2.1vw, 24px); font-weight: 500; }
h4 { font-size: 17px; font-weight: 600; }
p { line-height: 1.75; color: var(--muted); margin: 0 0 15px; }
a { color: var(--mauve); text-decoration: none; }
img { max-width: 100%; display: block; }
picture { display: contents; }
ul { padding: 0; margin: 0; }
li { list-style: none; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.center-text { text-align: center; max-width: 720px; margin: 0 auto 24px; }
.section { padding: clamp(60px, 8vw, 96px) 0; }
.section.alt { background: var(--ground-alt); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--mauve); color: #fff; padding: 10px 16px; border-radius: 8px; z-index: 500; transition: top .2s ease; }
.skip-link:focus { top: 12px; }

/* eyebrow: small-caps mauve label with hairline rule (replaces old Roboto eyebrows) */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  text-transform: uppercase; letter-spacing: .22em; font-size: 12.5px; font-weight: 600;
  font-family: 'Quicksand', sans-serif; color: var(--mauve); margin: 0 0 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; border-radius: 2px; background: var(--mauve); flex: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 30px; height: 2px; border-radius: 2px; background: var(--mauve); flex: none; }

/* buttons */
.btn {
  display: inline-block; padding: 15px 30px; border-radius: var(--radius); font-weight: 700;
  font-family: 'Nunito', sans-serif; cursor: pointer; border: 1.5px solid transparent; font-size: 15px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mauve); color: #fff; box-shadow: 0 6px 18px rgba(142, 111, 147, .35); }
.btn-primary:hover { background: var(--mauve-dark); box-shadow: 0 12px 26px rgba(142, 111, 147, .4); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.75); color: #fff; }
.btn-outline:hover { border-color: var(--mauve-light); color: var(--mauve-light); }
.section .btn-outline, .site-footer .btn-outline { border-color: var(--mauve); color: var(--mauve); }
.section .btn-outline:hover { background: var(--mauve); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ------------------------------------------------ header ---- */
.site-header {
  position: sticky; top: 0; background: var(--header-bg); z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08); transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 22px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 24px; transition: padding .3s ease; }
.site-header.scrolled .header-inner { padding: 8px 24px; }
.logo img { height: 60px; width: auto; transition: height .3s ease; }
.site-header.scrolled .logo img { height: 48px; }
.desktop-nav { display: none; align-items: center; gap: 24px; }
.desktop-nav > a, .dropdown > button {
  color: #fff; font-weight: 600; font-size: 14.5px; font-family: 'Nunito', sans-serif; position: relative; padding: 8px 0;
  background: none; border: none; cursor: pointer; white-space: nowrap;
}
.desktop-nav > a::after, .dropdown > button::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; border-radius: 2px;
  background: var(--mauve-light); transform: scaleX(0); transform-origin: right;
  transition: transform .32s var(--ease);
}
.desktop-nav > a:hover::after, .dropdown:hover > button::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .tel { color: var(--mauve-light); }
.desktop-nav .tel::after { background: var(--mauve-light); }
.dropdown { position: relative; }
.dropdown > button span { font-size: 10px; margin-left: 3px; }
.dropdown ul {
  margin: 0; padding: 10px; position: absolute; top: 100%; left: -10px;
  background: var(--white); box-shadow: var(--shadow-lift); border-radius: var(--radius); min-width: 230px;
  border-top: 3px solid var(--mauve);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .28s var(--ease), visibility .22s;
  max-height: 66vh; overflow-y: auto;
}
.dropdown:hover ul, .dropdown:focus-within ul { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown ul li a { display: block; padding: 9px 12px; border-radius: 8px; white-space: nowrap; color: var(--ink); font-size: 14.5px; font-weight: 600; transition: background .15s ease, padding-left .2s ease; }
.dropdown ul li a:hover { background: var(--ground-alt); color: var(--mauve-dark); padding-left: 16px; }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-nav {
  position: fixed; inset: 0; background: var(--header-bg); background-image: var(--paw);
  transform: translateX(100%); transition: transform .4s var(--ease); z-index: 200; overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: 60px 26px 40px; }
.mobile-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 32px; cursor: pointer; color: #fff; min-width: 44px; min-height: 44px; }
.mobile-heading { font-family: 'Quicksand', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 12px; letter-spacing: .22em; color: var(--mauve-light); margin: 24px 0 6px; }
.mobile-nav ul { margin: 0 0 6px; }
.mobile-nav ul li a { display: block; padding: 10px 0; font-size: 16.5px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 600; }
.mobile-nav .tel { display: block; margin: 24px 0 14px; font-weight: 700; color: var(--mauve-light); font-size: 18px; }
@media (min-width: 1080px) {
  .desktop-nav { display: flex; }
  .hamburger { display: none; }
}

/* ------------------------------------------------------- hero ---- */
.hero {
  position: relative; background-size: cover; background-position: center; padding: 128px 0 88px;
  color: #fff; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(13,13,13,.72) 0%, rgba(13,13,13,.55) 45%, rgba(13,13,13,.8) 100%);
}
.hero-small { padding: 96px 0 64px; }
.hero .eyebrow { color: var(--mauve-light); }
.hero .eyebrow::before, .hero .eyebrow.center::after { background: var(--mauve-light); }
.hero h1 { color: #fff; max-width: 820px; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: rgba(255,255,255,.92); max-width: 560px; margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-inner { max-width: 680px; }

/* homepage editorial hero with a right-side photo panel */
.hero-home { padding: 0; }
.hero-home::before { display: none; }
.hero-home-grid { display: grid; grid-template-columns: 1fr; }
.hero-home-copy {
  position: relative; background: var(--header-bg); background-image: var(--paw);
  color: #fff; padding: 130px 24px 70px;
}
.hero-home-copy .wrap-inner { max-width: 620px; margin: 0 auto; }
.hero-home-media { position: relative; min-height: 280px; }
.hero-home-media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.hero-home-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,.05), rgba(13,13,13,.35)); }
@media (min-width: 900px) {
  .hero-home-grid { grid-template-columns: 1.05fr .95fr; min-height: 620px; }
  .hero-home-copy { padding: 150px 48px 70px 0; display: flex; align-items: center; }
  .hero-home-copy .wrap-inner { margin: 0 0 0 auto; padding-left: 48px; }
  .hero-home-media { min-height: 100%; }
  .hero-home-media img { min-height: 100%; }
}

/* ---------------------------------------------------- service cards ---- */
.card-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-top: 40px; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  width: 100%; max-width: 340px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ground-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { flex: 1; font-size: 15px; }
.link-cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--mauve); margin-top: 6px; font-size: 14.5px; background: none; border: none; cursor: pointer; font-family: 'Nunito', sans-serif; padding: 0; }
.link-cta:hover { color: var(--mauve-dark); }

/* -------------------------------------------------------- about ---- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
@media (min-width: 860px) { .about-grid { grid-template-columns: .8fr 1.2fr; gap: 56px; } }
.about-supporting { display: flex; gap: 12px; margin-top: 16px; }
.about-supporting img { width: 33.3%; border-radius: 8px; aspect-ratio: 1/1; object-fit: cover; }

/* --------------------------------------------------- 3-step process ---- */
.steps { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px; text-align: center; box-shadow: var(--shadow-soft); }
.step-icon { width: 56px; height: 56px; margin: 0 auto 18px; color: var(--mauve); }
.step-icon svg { width: 100%; height: 100%; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; }

/* ------------------------------------------------------- gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 8px; }
@media (min-width: 620px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.g-item { display: block; border: none; padding: 0; margin: 0; background: none; cursor: pointer; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--shadow-soft); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.g-item:hover img { transform: scale(1.08); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; background: rgba(10,8,10,.92); opacity: 0; transition: opacity .3s ease; }
.lightbox.open { opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff; cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lb-close { top: 18px; right: 18px; width: 44px; height: 44px; font-size: 26px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--mauve); }

/* ----------------------------------------------------- testimonials ---- */
.testimonials { text-align: center; }
.testimonials h2 { margin-bottom: 30px; }
.review-embed-wrap { min-height: 500px; }
.review-embed-wrap iframe { min-height: 500px; }
@media (min-width: 760px) { .review-embed-wrap, .review-embed-wrap iframe { min-height: 600px; } }

/* ------------------------------------------------------------- faq ---- */
.faq-list { max-width: 820px; margin: 34px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-list details { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 4px 22px; }
.faq-list summary { cursor: pointer; padding: 18px 30px 18px 0; font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 16.5px; position: relative; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 14px; font-size: 24px; color: var(--mauve); transition: transform .25s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { padding-bottom: 18px; margin: 0; font-size: 15px; }

/* --------------------------------------------------------- pricing ---- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
@media (min-width: 780px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-soft); }
.pricing-card h3 { margin-bottom: 4px; }
.pricing-card .tier-range { font-size: 13.5px; color: var(--mauve); font-weight: 700; margin-bottom: 16px; display: block; }
.price-row { display: flex; align-items: baseline; gap: 8px; padding: 9px 0; border-bottom: 1px dashed rgba(0,0,0,.09); font-size: 15px; }
.price-row:last-of-type { border-bottom: none; }
.p-name { color: var(--ink); font-weight: 600; }
.p-dots { flex: 1; }
.p-amount { color: var(--mauve-dark); font-weight: 700; }
.pricing-note { font-size: 13px; color: var(--muted); margin: 12px 0 0; font-style: italic; }
.pricing-callout { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); margin-top: 28px; text-align: center; }
.pricing-callout h3 { margin-bottom: 10px; }
.big-dog-note { background: var(--ground-alt); border-left: 4px solid var(--mauve); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin-top: 28px; }
.big-dog-note p { margin: 0; font-size: 15px; }

/* -------------------------------------------------------- contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 18px; }
.contact-map { display: flex; flex-direction: column; gap: 20px; }
.contact-map iframe { width: 100%; height: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.contact-details { display: flex; flex-direction: column; gap: 16px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 22px; }
.detail-item { display: flex; align-items: flex-start; gap: 14px; }
.detail-item svg { width: 24px; height: 24px; color: var(--mauve); flex: none; margin-top: 2px; }
.detail-item p { margin: 0; font-size: 15px; }
.detail-item strong { display: block; color: var(--ink); font-family: 'Quicksand', sans-serif; font-weight: 600; margin-bottom: 2px; }
.hours-list { display: flex; flex-direction: column; gap: 4px; font-size: 15px; }

/* --------------------------------------------------- big-dog / notes ---- */
.notice-box { background: var(--ground-alt); border-radius: var(--radius-lg); padding: 22px 26px; margin: 24px 0; border-left: 4px solid var(--mauve); }
.notice-box p { margin: 0; }
.notice-box .link-cta { display: inline; text-decoration: underline; }

/* ------------------------------------------------------- area page CTA ---- */
.area-cta h3 { margin-bottom: 10px; }

/* ---------------------------------------------------------- footer ---- */
.site-footer { background: var(--header-bg); color: rgba(255,255,255,.82); padding-top: 64px; background-image: var(--paw); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 24px; } }
.footer-logo { height: 52px; margin-bottom: 14px; }
.site-footer p { color: rgba(255,255,255,.68); font-size: 14.5px; }
.site-footer h4 { color: #fff; font-family: 'Quicksand', sans-serif; font-size: 15px; letter-spacing: .04em; margin-bottom: 14px; }
.site-footer ul li { margin-bottom: 9px; }
.site-footer ul li a { color: rgba(255,255,255,.72); font-size: 14.5px; transition: color .2s ease, padding-left .2s ease; }
.site-footer ul li a:hover { color: var(--mauve-light); padding-left: 3px; }
.hours-ftr li { display: flex; justify-content: space-between; gap: 10px; font-size: 14px; color: rgba(255,255,255,.7); }
.footer-contact { margin-top: 12px; font-size: 14.5px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s ease, transform .2s ease; }
.social-icon:hover { background: var(--mauve); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 26px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--mauve-light); }

/* ----------------------------------------------------------- modal ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,13,13,.72); z-index: 300; display: flex;
  align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity .28s ease, visibility .28s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg); position: relative; width: 100%; max-width: 560px;
  max-height: 96vh; overflow: hidden; box-shadow: var(--shadow-lift);
  transform: translateY(16px) scale(.98); transition: transform .3s var(--ease);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 8px; right: 8px; z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  background: var(--ground-alt); border: none; font-size: 24px; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.modal-close:hover { background: var(--secondary); }
.modal-form-wrap { padding: 20px; max-height: 90vh; overflow-y: auto; }

/* --------------------------------------------------------- legal ---- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { margin-top: 8px; }
.prose h3 { margin-top: 30px; color: var(--mauve-dark); }
.prose p { font-size: 15.5px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; }
.prose ul li { list-style: disc; margin-bottom: 6px; font-size: 15.5px; color: var(--muted); }

/* --------------------------------------------------- hidden pages ---- */
.hidden-page-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--header-bg); background-image: var(--paw); padding: 40px 20px; }
.hidden-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px 34px; max-width: 520px; width: 100%; text-align: center; box-shadow: var(--shadow-lift); }
.hidden-logo { height: 56px; margin: 0 auto 22px; }
.star-picker { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.star-option { display: block; padding: 14px; border-radius: var(--radius); background: var(--ground-alt); font-weight: 700; color: var(--ink); font-size: 16px; transition: background .2s ease, transform .2s ease; }
.star-option:hover { background: var(--secondary); transform: translateY(-1px); }

/* -------------------------------------------------------- scroll reveal ---- */
@supports (animation-timeline: view()) or (display: block) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------- misc utility ---- */
.plain-list li { display: inline-block; margin: 0 14px 8px 0; }
.plain-list a { font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip { background: var(--white); border-radius: 999px; padding: 8px 18px; font-size: 14px; font-weight: 700; box-shadow: var(--shadow-soft); color: var(--mauve-dark); }

@media (max-width: 480px) {
  .hero { padding: 108px 0 64px; }
  .section { padding: 52px 0; }
}
