/* ============================================================
   GLOW — Gen-Z Med-Spa & Wellness Bar · Design System
   Peach / Pink / Lime · chunky rounded type · sticker energy
   ============================================================ */

:root {
  /* ---- Palette ---- */
  --peach-100: #fff1e8;
  --peach-200: #ffdcc7;
  --peach-300: #ffc09f;
  --peach-400: #ff9e6d;
  --pink-300: #ffb4d6;
  --pink-400: #ff6fae;
  --pink-500: #ff3d8b;
  --lime-200: #e9ffb0;
  --lime-300: #cdf95f;
  --lime-400: #aef228;
  --grape-500: #7b3ff2;
  --grape-600: #5a23c4;
  --sky-300: #9fe6ff;

  --cream: #fff8f3;
  --paper: #fffdfb;
  --white: #ffffff;
  --ink: #2a1726;
  --ink-soft: #6b4d62;
  --muted: #9a7e92;
  --line: rgba(122, 63, 100, 0.12);

  /* ---- Type ---- */
  --display: "Fredoka", "Baloo 2", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;

  /* ---- Shape & motion ---- */
  --r-sm: 16px;
  --r: 24px;
  --r-lg: 38px;
  --r-xl: 52px;
  --shadow-sm: 0 6px 20px rgba(255, 109, 174, 0.14);
  --shadow: 0 18px 46px rgba(123, 63, 242, 0.14);
  --shadow-lg: 0 34px 80px rgba(123, 63, 242, 0.22);
  --glow-pink: 0 14px 40px rgba(255, 61, 139, 0.42);
  --glow-lime: 0 14px 40px rgba(174, 242, 40, 0.46);
  --glow-grape: 0 14px 40px rgba(123, 63, 242, 0.4);
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1); /* springy overshoot */
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1100px 600px at 88% -8%, rgba(255, 180, 214, 0.4), transparent 60%),
    radial-gradient(900px 560px at 6% 8%, rgba(205, 249, 95, 0.32), transparent 58%),
    var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.05rem; }
p { color: var(--ink-soft); }
.hl { color: var(--pink-500); position: relative; white-space: nowrap; }
.hl-lime { color: var(--grape-600); }
em { font-style: normal; color: var(--grape-600); }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; position: relative; }
.tint-peach { background: linear-gradient(180deg, var(--peach-100), var(--cream)); }
.tint-grape { background: radial-gradient(900px 500px at 80% 0%, rgba(159, 230, 255, 0.5), transparent 60%), linear-gradient(160deg, #2a1530, #3a1c4a); }
.tint-grape h2, .tint-grape h3, .tint-grape p, .tint-grape .eyebrow { color: #fff; }

/* ---------- Eyebrow / sticker tags ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--display); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--grape-600);
  background: var(--white);
  border: 2px solid var(--line);
  padding: 0.4rem 0.95rem; border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.eyebrow.center { display: inline-flex; }

/* ---------- Buttons (oversized pills) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  padding: 1rem 1.9rem; border-radius: 100px; cursor: pointer;
  border: 2.5px solid transparent;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease-soft), background 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.45s var(--ease); display: inline-block; }
.btn:hover .arr { transform: translateX(5px) rotate(2deg); }
.btn-solid { background: linear-gradient(135deg, var(--pink-400), var(--pink-500)); color: #fff; box-shadow: var(--glow-pink); }
.btn-solid:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 22px 54px rgba(255, 61, 139, 0.5); }
.btn-lime { background: linear-gradient(135deg, var(--lime-300), var(--lime-400)); color: #243a00; box-shadow: var(--glow-lime); }
.btn-lime:hover { transform: translateY(-4px) rotate(1deg); box-shadow: 0 22px 54px rgba(174, 242, 40, 0.55); }
.btn-grape { background: linear-gradient(135deg, var(--grape-500), var(--grape-600)); color: #fff; box-shadow: var(--glow-grape); }
.btn-grape:hover { transform: translateY(-4px); box-shadow: 0 22px 54px rgba(123, 63, 242, 0.5); }
.btn-ghost { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--pink-400); color: var(--pink-500); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--grape-600); }
.btn-light:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 0.75rem 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.site-header.scrolled {
  background: rgba(255, 248, 243, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(123, 63, 242, 0.1);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.brand-orb {
  width: 38px; height: 38px; border-radius: 50%;
  background: conic-gradient(from 220deg, var(--pink-400), var(--peach-400), var(--lime-400), var(--grape-500), var(--pink-400));
  box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
  animation: spin 14s linear infinite;
}
.brand-orb span { width: 13px; height: 13px; border-radius: 50%; background: var(--white); }
.brand-mark { font-family: var(--display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.03em; color: var(--ink); }
.brand-dot { color: var(--pink-500); }
@keyframes spin { to { transform: rotate(360deg); } }

.nav-links { display: flex; gap: 0.4rem; }
.nav-links a {
  font-family: var(--display); font-weight: 500; font-size: 1rem;
  padding: 0.5rem 1rem; border-radius: 100px; color: var(--ink-soft);
  transition: color 0.25s, background 0.25s, transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: var(--white); transform: translateY(-2px); }
.nav-links a.active { color: var(--grape-600); background: var(--white); box-shadow: var(--shadow-sm); }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.nav-phone svg { width: 16px; height: 16px; color: var(--pink-500); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: var(--white); border: 2px solid var(--line); border-radius: 14px; padding: 11px 9px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; border-radius: 3px; background: var(--ink); transition: transform 0.35s var(--ease), opacity 0.25s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(46px); z-index: 0; opacity: 0.7; }
.blob-1 { width: 420px; height: 420px; background: var(--pink-300); top: -120px; right: -80px; }
.blob-2 { width: 360px; height: 360px; background: var(--lime-300); bottom: -140px; left: -90px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero-copy h1 { margin: 1rem 0 1.2rem; }
.hero-tag { font-size: 1.18rem; max-width: 30rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin: 1.7rem 0 1.6rem; }
.hero-trust { display: flex; align-items: center; gap: 0.8rem; font-size: 0.96rem; color: var(--ink-soft); }
.avatars { display: flex; }
.avatars span {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 0.85rem; color: #fff;
  border: 2.5px solid var(--cream); margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }
.avatars span:nth-child(1){ background: var(--pink-400);} .avatars span:nth-child(2){ background: var(--grape-500);}
.avatars span:nth-child(3){ background: var(--peach-400);} .avatars span:nth-child(4){ background: var(--lime-400); color:#243a00;}
.hero-trust b { color: var(--ink); }

.hero-media { position: relative; }
.frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.frame-tilt { transform: rotate(-2deg); }
.frame img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }
.hero-media .frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(255, 61, 139, 0.16)); }

/* stickers floating on hero */
.sticker {
  position: absolute; z-index: 4;
  background: #fff; border-radius: var(--r); padding: 0.7rem 1rem;
  box-shadow: var(--shadow); font-family: var(--display); font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.sticker-glow { top: 6%; left: -6%; color: var(--grape-600); }
.sticker-glow .emoji { font-size: 1.3rem; }
.sticker-rating { bottom: 9%; right: -5%; flex-direction: column; align-items: flex-start; background: linear-gradient(135deg, var(--lime-300), var(--lime-400)); color: #243a00; }
.sticker-rating .stars { font-size: 0.85rem; letter-spacing: 1px; }
.sticker-rating b { font-size: 1.3rem; line-height: 1; }
.sticker-price { bottom: -3%; left: 8%; background: linear-gradient(135deg, var(--pink-400), var(--pink-500)); color: #fff; flex-direction: column; align-items: flex-start; }
.sticker-price small { font-size: 0.7rem; opacity: 0.85; }
.sticker-price b { font-size: 1.5rem; line-height: 1; }
.spark { position: absolute; z-index: 3; color: var(--grape-500); font-size: 1.6rem; }
.spark-1 { top: 2%; right: 18%; } .spark-2 { bottom: 22%; left: -4%; color: var(--pink-400); }

/* ============================================================ MARQUEE */
.marquee { background: var(--ink); color: #fff; overflow: hidden; padding: 0.9rem 0; transform: rotate(-1.4deg); margin: 1rem 0; }
.marquee-track { display: flex; gap: 2.4rem; width: max-content; animation: scroll-x 26s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 600; font-size: 1.2rem; display: inline-flex; align-items: center; gap: 2.4rem; white-space: nowrap; }
.marquee .dot { color: var(--lime-400); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================ STATS */
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat { background: #fff; border-radius: var(--r-lg); padding: 1.8rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); border: 2px solid var(--line); position: relative; }
.stat:nth-child(2){ background: linear-gradient(160deg, var(--peach-100), #fff);}
.stat:nth-child(3){ background: linear-gradient(160deg, var(--lime-200), #fff);}
.stat:nth-child(4){ background: linear-gradient(160deg, var(--pink-300), #fff);}
.stat .n { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--grape-600); line-height: 1; }
.stat .n .suf { color: var(--pink-500); }
.stat .l { font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ============================================================ SECTION HEADS */
.sec-head { max-width: 40rem; margin-bottom: 2.6rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin: 0.8rem 0 0.7rem; }
.split-head { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: end; max-width: none; }
.split-head p { font-size: 1.05rem; }

/* ============================================================ TREATMENT CARDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.tcard {
  background: #fff; border-radius: var(--r-lg); padding: 1.8rem; border: 2px solid var(--line);
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease-soft);
}
.tcard:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow); }
.tcard .ic { width: 60px; height: 60px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 1.1rem; box-shadow: var(--shadow-sm); }
.tcard .ic svg { width: 30px; height: 30px; color: #fff; }
.tcard:nth-child(3n+1) .ic { background: linear-gradient(135deg, var(--pink-400), var(--pink-500)); }
.tcard:nth-child(3n+2) .ic { background: linear-gradient(135deg, var(--grape-500), var(--grape-600)); }
.tcard:nth-child(3n+3) .ic { background: linear-gradient(135deg, var(--lime-300), var(--lime-400)); }
.tcard:nth-child(3n+3) .ic svg { color: #243a00; }
.tcard h3 { margin-bottom: 0.5rem; }
.tcard .price { display: inline-block; margin-top: 1rem; font-family: var(--display); font-weight: 600; color: var(--grape-600); background: var(--peach-100); padding: 0.3rem 0.85rem; border-radius: 100px; }
.tcard .blob-bg { position: absolute; width: 130px; height: 130px; border-radius: 50%; filter: blur(30px); opacity: 0.4; top: -40px; right: -30px; background: var(--pink-300); z-index: 0; }
.tcard > * { position: relative; z-index: 1; }

/* ============================================================ SPLIT FEATURE */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature.flip .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media .frame { border-radius: var(--r-lg); border-width: 5px; }
.feature-media .frame img { aspect-ratio: 4/4.6; object-fit: cover; }
.feature-badge {
  position: absolute; bottom: -18px; right: -14px; z-index: 4;
  background: var(--white); border-radius: var(--r); padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 0.7rem;
}
.feature-badge .pic { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--grape-500), var(--pink-400)); display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; }
.feature-badge b { display: block; font-family: var(--display); }
.feature-badge small { color: var(--muted); font-size: 0.78rem; }
.check-list { display: grid; gap: 0.9rem; margin: 1.6rem 0; }
.check-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-weight: 500; color: var(--ink); }
.check-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--lime-300), var(--lime-400)); display: grid; place-items: center; margin-top: 1px; }
.check-list .tick svg { width: 14px; height: 14px; color: #243a00; }

/* ============================================================ STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background: #fff; border-radius: var(--r-lg); padding: 2rem 1.6rem; border: 2px dashed var(--line); position: relative; transition: transform 0.5s var(--ease); }
.step:hover { transform: translateY(-6px); border-style: solid; }
.step .num { counter-increment: step; font-family: var(--display); font-weight: 700; font-size: 2.6rem; color: var(--pink-400); line-height: 1; }
.step .num::before { content: "0" counter(step); }
.step h3 { margin: 0.5rem 0; }

/* ============================================================ TESTIMONIALS */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: #fff; border-radius: var(--r-lg); padding: 1.9rem; border: 2px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease); }
.quote:hover { transform: translateY(-6px) rotate(1deg); }
.quote .stars { color: var(--pink-500); letter-spacing: 2px; font-size: 1.05rem; }
.quote p { font-size: 1.04rem; color: var(--ink); margin: 0.7rem 0 1.2rem; }
.quote .who { display: flex; align-items: center; gap: 0.7rem; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 700; color: #fff; }
.quote:nth-child(1) .av { background: var(--pink-400);} .quote:nth-child(2) .av { background: var(--grape-500);} .quote:nth-child(3) .av { background: var(--peach-400);}
.quote .who b { display: block; font-family: var(--display); }
.quote .who small { color: var(--muted); }

/* ============================================================ MEMBERSHIP */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.plan { background: #fff; border-radius: var(--r-lg); padding: 2rem; border: 2px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.5s var(--ease); }
.plan:hover { transform: translateY(-8px); }
.plan.featured { background: var(--ink); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); transform: scale(1.02); }
.plan.featured:hover { transform: scale(1.02) translateY(-8px); }
.plan.featured h3, .plan.featured .price-big { color: #fff; }
.plan.featured p, .plan.featured li { color: rgba(255,255,255,0.82); }
.plan .tag-pop { align-self: flex-start; font-family: var(--display); font-weight: 600; font-size: 0.78rem; padding: 0.25rem 0.8rem; border-radius: 100px; background: linear-gradient(135deg, var(--lime-300), var(--lime-400)); color: #243a00; margin-bottom: 0.8rem; }
.plan .price-big { font-family: var(--display); font-weight: 700; font-size: 2.8rem; line-height: 1; margin: 0.6rem 0; color: var(--grape-600); }
.plan .price-big small { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.plan ul { display: grid; gap: 0.7rem; margin: 1.2rem 0 1.6rem; }
.plan li { display: flex; gap: 0.55rem; font-weight: 500; font-size: 0.96rem; }
.plan li::before { content: "✦"; color: var(--pink-400); }
.plan.featured li::before { color: var(--lime-400); }
.plan .btn { margin-top: auto; }

/* ============================================================ CTA BAND */
.cta-band { text-align: center; padding: clamp(3.5rem, 7vw, 6rem) 0; }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { margin: 0.7rem auto 0.8rem; max-width: 22ch; }
.cta-band p { max-width: 40ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }
.cta-band .hero-actions { justify-content: center; }

/* ============================================================ BLOG */
.featured-post { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; background: #fff; border-radius: var(--r-xl); padding: 1.2rem; border: 2px solid var(--line); box-shadow: var(--shadow); margin-bottom: 2.8rem; }
.featured-post .fp-media { border-radius: var(--r-lg); overflow: hidden; }
.featured-post .fp-media img { aspect-ratio: 16/12; object-fit: cover; }
.featured-post .fp-body { padding: 1rem 1.4rem 1rem 0.6rem; }
.post-cat { display: inline-flex; font-family: var(--display); font-weight: 600; font-size: 0.78rem; padding: 0.25rem 0.8rem; border-radius: 100px; background: var(--peach-100); color: var(--grape-600); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post { background: #fff; border-radius: var(--r-lg); border: 2px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.5s var(--ease); }
.post:hover { transform: translateY(-7px) rotate(-1deg); }
.post .p-thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.post .p-thumb .post-cat { position: absolute; top: 0.9rem; left: 0.9rem; background: #fff; }
.post .p-body { padding: 1.4rem; }
.post .meta { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-bottom: 0.5rem; }
.post h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.post .more, .featured-post .more { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--display); font-weight: 600; color: var(--pink-500); margin-top: 0.8rem; }
.post .more svg, .featured-post .more svg { transition: transform 0.4s var(--ease); }
.post:hover .more svg { transform: translateX(4px); }

/* ============================================================ FILTER (services) */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.4rem; justify-content: center; }
.filter-btn {
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding: 0.6rem 1.3rem; border-radius: 100px; cursor: pointer;
  background: #fff; border: 2px solid var(--line); color: var(--ink-soft);
  transition: transform 0.3s var(--ease), background 0.25s, color 0.25s;
}
.filter-btn:hover { transform: translateY(-3px); }
.filter-btn.active { background: linear-gradient(135deg, var(--grape-500), var(--grape-600)); color: #fff; border-color: transparent; box-shadow: var(--glow-grape); }
.svc-card.hide { display: none; }
.svc-card { display: flex; flex-direction: column; }
.svc-card .svc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
.svc-card .cat-pill { font-family: var(--display); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.2rem 0.7rem; border-radius: 100px; background: var(--lime-200); color: #3a5400; }
.svc-card .dur { font-size: 0.85rem; color: var(--muted); margin: 0.6rem 0; display: inline-flex; align-items: center; gap: 0.35rem; }
.svc-card .svc-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; }

/* ============================================================ CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.form-card { background: #fff; border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.6rem); border: 2px solid var(--line); box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1.05rem; border-radius: var(--r-sm); border: 2px solid var(--line);
  background: var(--cream); transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink-400); box-shadow: 0 0 0 4px rgba(255, 111, 174, 0.16); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
[data-form-note] { margin-top: 0.9rem; font-weight: 600; color: var(--grape-600); min-height: 1.2rem; }
[data-form-note].show { animation: pop 0.5s var(--ease); }
@keyframes pop { 0% { transform: scale(0.85); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

.info-card { background: #fff; border-radius: var(--r-lg); padding: 1.8rem; border: 2px solid var(--line); box-shadow: var(--shadow-sm); margin-bottom: 1.4rem; }
.info-card h3 { margin-bottom: 1rem; }
.info-row { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 0.9rem; }
.info-row .ic2 { flex: none; width: 38px; height: 38px; border-radius: 12px; background: var(--peach-100); display: grid; place-items: center; }
.info-row .ic2 svg { width: 18px; height: 18px; color: var(--grape-600); }
.info-row b { font-family: var(--display); display: block; }
.info-row span { color: var(--ink-soft); font-size: 0.95rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-table tr.today td { color: var(--grape-600); }
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--line); box-shadow: var(--shadow-sm); }
.map-card svg { display: block; width: 100%; height: auto; }

/* ============================================================ PAGE HERO (sub pages) */
.page-hero { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin: 0.9rem auto 0.7rem; max-width: 16ch; }
.page-hero p { max-width: 44ch; margin: 0 auto; font-size: 1.1rem; }

/* ============================================================ FOOTER */
.site-footer { background: var(--ink); color: #fff; margin-top: 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2rem; padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.site-footer .brand-mark { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.66); margin: 1rem 0 1.2rem; max-width: 30ch; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: transform 0.4s var(--ease), background 0.25s; }
.footer-social a:hover { transform: translateY(-4px) rotate(-6deg); background: var(--pink-500); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }
.footer-col h4 { font-family: var(--display); color: #fff; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.66); padding: 0.32rem 0; transition: color 0.25s, transform 0.25s; }
.footer-col a:hover { color: var(--lime-400); transform: translateX(4px); }
.footer-nap { font-style: normal; color: rgba(255,255,255,0.66); line-height: 1.9; }
.footer-nap a:hover { color: var(--lime-400); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-disclaimer { background: rgba(0,0,0,0.3); color: rgba(255,255,255,0.5); font-size: 0.8rem; text-align: center; padding: 1rem 1.5rem; line-height: 1.6; }

/* ============================================================ REVEAL / MOTION */
.reveal { opacity: 0; transform: translateY(28px) scale(0.97); transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

.float-a { animation: floaty 5s ease-in-out infinite; }
.float-b { animation: floaty 6.5s ease-in-out infinite 0.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.wobble:hover { animation: wob 0.5s ease; }
@keyframes wob { 0%,100%{transform:translateY(-4px) rotate(-1deg);} 25%{transform:translateY(-4px) rotate(2.5deg);} 75%{transform:translateY(-4px) rotate(-2.5deg);} }
.spin-slow { animation: spin 18s linear infinite; }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .feature, .featured-post, .contact-grid, .split-head { grid-template-columns: 1fr; }
  .feature.flip .feature-media { order: 0; }
  .grid-3, .steps, .quotes, .plans, .post-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-8px); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0.3rem;
    position: absolute; top: 72px; left: 1.2rem; right: 1.2rem; z-index: 99;
    background: #fff; border-radius: var(--r-lg); padding: 1rem; box-shadow: var(--shadow-lg); border: 2px solid var(--line);
  }
  .nav.open .nav-links a { font-size: 1.1rem; padding: 0.7rem 1rem; }
  .grid-3, .steps, .quotes, .plans, .post-grid, .grid-2 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1; }
}
@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
}

/* ============================================================ REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
