/* =========================================================
   You Dirty Dog Grooming — site styles
   Palette pulled from the shop: blush walls, warm wood,
   checkered floor, sunflowers — plus "custom color" pops.
   ========================================================= */
:root {
  --cream: #FFF8F2;
  --paper: #FFFFFF;
  --blush-50: #FDF1F2;
  --blush-100: #F9DFE2;
  --blush-200: #F2C3C9;
  --rose: #B83A5E;        /* primary action */
  --rose-dark: #962A4A;
  --ink: #2B2130;         /* text / checker dark */
  --ink-soft: #5E5363;
  --line: #EADCDC;
  --wood: #8A5A3B;
  --sun: #F6B82C;         /* sunflower */
  --teal: #1F9A8F;
  --violet: #7B5CD6;
  --sky: #3F8FE0;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 32px;
  --shadow-sm: 0 1px 2px rgba(43,33,48,.06), 0 2px 8px rgba(43,33,48,.05);
  --shadow: 0 10px 30px -10px rgba(43,33,48,.18);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--rose); text-underline-offset: 3px; }
a:hover { color: var(--rose-dark); }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 100, "WONK" 0;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

.wrap { width: min(var(--wrap), 100% - 40px); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-sm { padding: 56px 0; }
.bg-white { background: var(--paper); }
.bg-blush { background: var(--blush-50); }
.bg-ink { background: var(--ink); color: #F5EEF2; }
.bg-ink h2, .bg-ink h3 { color: #fff; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* Eyebrow with color dots — the "playful" signature */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 34px; height: 8px; border-radius: 8px;
  background: linear-gradient(90deg, var(--sun) 0 33%, var(--teal) 33% 66%, var(--violet) 66%);
}
.bg-ink .eyebrow { color: var(--sun); }

.squiggle { position: relative; white-space: nowrap; }
.squiggle::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: -.12em; height: .32em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 17 1 32 7 T 62 7 T 92 7 T 118 5' fill='none' stroke='%23F6B82C' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  z-index: -1;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  font: 700 1rem/1 var(--font-body); text-decoration: none; cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 6px 18px -6px rgba(184,58,94,.55); }
.btn-primary:hover { background: var(--rose-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--sun); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Checker strip (the shop floor) */
.checker {
  height: 18px;
  background-color: var(--ink);
  background-image:
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%),
    linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%);
  background-size: 18px 18px;
  background-position: 0 0, 9px 9px;
}

/* ---------- Header ---------- */
.announce {
  background: var(--ink); color: #fff; font-size: .9rem; text-align: center; padding: 9px 16px;
}
.announce strong { color: var(--sun); }
.announce a { color: #fff; font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,242,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); flex: none; }
.brand img { height: 60px; width: auto; }
.brand-footer img { height: auto; width: 220px; max-width: 100%; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blush-100); color: var(--rose); flex: none;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; letter-spacing: -.01em; }
.brand-sub { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft); margin-top: 5px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; white-space: nowrap; padding: 10px 14px; border-radius: 999px;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem;
}
.nav-links a:hover { background: var(--blush-100); color: var(--ink); }
.nav-links a[aria-current="page"] { background: var(--blush-100); color: var(--rose); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav-phone:hover { color: var(--rose); }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 0;
  background: var(--blush-100); color: var(--ink); cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; margin: auto; }

@media (max-width: 1200px) {
  .nav-phone { display: none; }
}
@media (max-width: 1000px) and (min-width: 881px) {
  .nav-links a { padding: 10px 10px; font-size: .92rem; }
  .brand-sub { display: none; }
}
@media (max-width: 880px) {
  .nav-toggle { display: grid; }
  .nav-cta .btn { display: none; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--cream); padding: 12px 20px 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-links .mobile-only { display: block; }
}
.mobile-only { display: none; }
.nav-links .mobile-only .btn { width: 100%; margin-top: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; list-style: none; padding: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-sm);
}
.badge i { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-style: normal; }
.badge svg { width: 15px; height: 15px; }
.badge .c-sun { background: #FDEBC0; color: #8A5A00; }
.badge .c-teal { background: #D2EFEC; color: #11645C; }
.badge .c-violet { background: #E6DEFA; color: #4E36A0; }

.hero-art { position: relative; aspect-ratio: 1 / 1.02; }
.hero-photo {
  position: absolute; inset: 4% 4% 4% 8%;
  border-radius: 46% 54% 42% 58% / 52% 44% 56% 48%;
  overflow: hidden; box-shadow: var(--shadow);
  border: 8px solid #fff;
}
.hero-photo { background: var(--blush-100); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; }
.blob { position: absolute; border-radius: 50%; filter: blur(0); z-index: -1; }
.blob-1 { width: 42%; aspect-ratio: 1; background: var(--sun); top: -2%; right: -4%; opacity: .9; }
.blob-2 { width: 30%; aspect-ratio: 1; background: var(--teal); bottom: 2%; left: -2%; opacity: .85; }
.blob-3 { width: 18%; aspect-ratio: 1; background: var(--violet); bottom: 18%; right: -3%; }
.hero-card {
  position: absolute; left: -2%; top: 10%; background: #fff; border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow); display: flex; gap: 12px; align-items: center;
  max-width: 260px;
}
.hero-card .medal { width: 44px; height: 44px; border-radius: 50%; background: var(--sun); display: grid; place-items: center; flex: none; color: var(--ink); }
.hero-card .medal svg { width: 24px; height: 24px; }
.hero-card strong { display: block; font-size: .95rem; line-height: 1.25; }
.hero-card span { font-size: .8rem; color: var(--ink-soft); }
.hero-card-2 { left: auto; right: 0; top: auto; bottom: 6%; }
.stars { color: var(--sun); letter-spacing: 2px; font-size: 1rem; line-height: 1; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 480px; width: 100%; margin: 12px auto 0; }
}

/* Page hero (inner pages) */
.page-hero { padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.page-hero .lead { margin-bottom: 0; }
.page-hero::after {
  content: ""; position: absolute; right: -80px; top: -60px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sun) 0 22%, transparent 23%),
              radial-gradient(circle at 70% 60%, var(--teal) 0 16%, transparent 17%),
              radial-gradient(circle at 40% 80%, var(--violet) 0 11%, transparent 12%);
  opacity: .9; z-index: 0; pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.crumbs { font-size: .9rem; color: var(--ink-soft); margin-bottom: 12px; }
.crumbs a { color: var(--ink-soft); }
@media (max-width: 700px) { .page-hero::after { width: 200px; height: 200px; right: -90px; top: -70px; opacity: .6; } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.section-head { margin-bottom: 48px; }
.section-head.split { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; }
.section-head .lead { margin-bottom: 0; }

.card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card { display: flex; flex-direction: column; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .icon {
  width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; margin-bottom: 22px;
}
.service-card .icon svg { width: 34px; height: 34px; }
.service-card p { color: var(--ink-soft); }
.service-card .price { margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.service-card .price b { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink); }
.service-card .price small { display: block; font-size: .75rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.arrow-link { font-weight: 700; text-decoration: none; display: inline-flex; gap: 6px; align-items: center; }
.arrow-link svg { width: 18px; height: 18px; transition: transform .15s; }
.arrow-link:hover svg { transform: translateX(3px); }
.tint-sun { background: #FDEBC0; color: #7A4F00; }
.tint-teal { background: #D2EFEC; color: #11645C; }
.tint-violet { background: #E6DEFA; color: #4E36A0; }
.tint-rose { background: var(--blush-100); color: var(--rose-dark); }
.tint-sky { background: #DCEBFB; color: #1F5FA3; }

.service-card.color-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #F25F8B, var(--sun), var(--teal), var(--sky), var(--violet));
}

/* Feature list */
.feature { text-align: left; }
.feature .icon { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; }
.feature .icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.bg-ink .feature p { color: #CFC3CC; }

/* Split media */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.reverse > :first-child { order: 0; } }
.photo-stack { position: relative; padding: 0 0 12% 12%; }
.photo-stack img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.photo-stack .front { position: absolute; left: 0; bottom: 0; width: 52%; border: 8px solid #fff; border-radius: 26px; }
.photo-stack .back { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.checklist { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist li::before {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%;
  background: var(--teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* Photo strip */
.photo-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.photo-strip a { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; background: var(--blush-100); }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.photo-strip a:hover img { transform: scale(1.05); }
.photo-strip a:nth-child(even) { transform: translateY(18px); }
@media (max-width: 760px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } .photo-strip a:nth-child(n+4) { display: none; } .photo-strip a:nth-child(even) { transform: none; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 26px 12px; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1; margin-bottom: 8px; }
.stat span { font-size: .92rem; color: #CFC3CC; }
.stat:nth-child(1) b { color: var(--sun); }
.stat:nth-child(2) b { color: #6FD6CC; }
.stat:nth-child(3) b { color: #B6A1F2; }
.stat:nth-child(4) b { color: #F59AB5; }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { margin: 0; background: #fff; border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.review blockquote { margin: 0; font-size: 1.02rem; }
.review footer { margin-top: auto; display: flex; align-items: center; gap: 12px; font-weight: 700; }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.review.featured { grid-column: span 2; background: var(--rose); color: #fff; border: 0; }
.review.featured blockquote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.35; }
.review.featured .stars { color: var(--sun); }
.review.featured .avatar { background: #fff; color: var(--rose); }
@media (max-width: 980px) { .reviews { grid-template-columns: 1fr 1fr; } .review.featured { grid-column: 1 / -1; } }
@media (max-width: 640px) { .reviews { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); color: #fff; padding: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #D9CED6; margin: 0; }
.cta-band .btn-row { justify-content: flex-end; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; }
.cta-band::before { width: 240px; height: 240px; background: var(--rose); right: -70px; top: -90px; opacity: .7; }
.cta-band::after { width: 120px; height: 120px; background: var(--sun); right: 160px; bottom: -60px; opacity: .8; }
.cta-band > * { position: relative; z-index: 1; }
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; } .cta-band .btn-row { justify-content: flex-start; } }

/* Info / hours */
.info-card { background: #fff; border-radius: var(--radius-lg); padding: 30px; border: 1px solid var(--line); }
.info-card h3 { display: flex; align-items: center; gap: 12px; font-size: 1.25rem; }
.info-card h3 .icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.info-card h3 svg { width: 20px; height: 20px; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.hours td:last-child { text-align: right; font-weight: 700; white-space: nowrap; padding-left: 12px; }
.hours tr:last-child td { border-bottom: 0; }
.hours tr.today td { color: var(--rose); }
.hours tr.today td:first-child::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--rose); margin-right: 8px; vertical-align: 2px; }
.note { font-size: .92rem; background: var(--blush-50); border-radius: var(--radius-sm); padding: 12px 14px; margin-top: 16px; }
.contact-lines { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.contact-lines a { color: var(--ink); font-weight: 700; text-decoration: none; }
.contact-lines a:hover { color: var(--rose); }
.contact-lines small { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); font-weight: 700; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 340px; background: var(--blush-100); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.pill-list li { padding: 7px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .92rem; font-weight: 600; }

/* ---------- Pricing ---------- */
.price-nav { position: sticky; top: 78px; z-index: 20; background: rgba(255,248,242,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.price-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 12px 0; overflow-x: auto; scrollbar-width: none; }
.price-nav ul::-webkit-scrollbar { display: none; }
.price-nav a { display: block; white-space: nowrap; padding: 8px 16px; border-radius: 999px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .95rem; border: 1px solid var(--line); background: #fff; }
.price-nav a:hover { border-color: var(--rose); color: var(--rose); }

.price-block { scroll-margin-top: 160px; }
.price-block + .price-block { margin-top: 28px; }
.price-block .card { padding: clamp(24px, 4vw, 44px); }
.price-head { display: flex; gap: 20px; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; margin-bottom: 18px; }
.price-head .left { display: flex; gap: 18px; align-items: center; flex: 1 1 460px; min-width: 0; }
.price-head .icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; flex: none; }
.price-head .icon svg { width: 30px; height: 30px; }
.price-head h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0; }
.price-head p { margin: 4px 0 0; color: var(--ink-soft); }
.from { text-align: right; }
.from small { display: block; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft); }
.from b { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.includes { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.includes li { font-size: .9rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; background: var(--blush-50); }
.menu { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; }
.menu li { display: flex; align-items: baseline; gap: 10px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.menu li .name { font-weight: 600; }
.menu li .name small { display: block; font-weight: 400; color: var(--ink-soft); font-size: .88rem; }
.menu li .dots { flex: 1; }
.menu li .amt { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; white-space: nowrap; }
@media (max-width: 720px) { .menu { grid-template-columns: 1fr; } .from { text-align: left; } }

.policy { display: flex; gap: 18px; align-items: flex-start; padding: 24px; border-radius: var(--radius); background: #FFF3D6; border: 1px solid #F3DCA2; }
.policy .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sun); display: grid; place-items: center; flex: none; }
.policy .icon svg { width: 22px; height: 22px; }
.policy p { margin: 0; }
.policy strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--blush-200); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 60px 22px 24px; position: relative;
  font-weight: 700; font-size: 1.08rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%;
  background: var(--blush-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23962A4A' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 24px 22px; color: var(--ink-soft); }
.faq .answer p:last-child { margin-bottom: 0; }

.mat-scale { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 16px 0 6px; }
.mat-scale div { border-radius: 14px; padding: 14px; font-size: .88rem; color: var(--ink); }
.mat-scale b { display: block; font-family: var(--font-display); font-size: 1rem; }
@media (max-width: 640px) { .mat-scale { grid-template-columns: 1fr 1fr; } }

/* Team */
.team { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.team-card { padding: 26px 22px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.team-card h3 { font-size: 1.2rem; margin: 0; }
.team-card .role { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--rose); margin: 4px 0 12px; }
.team-card p { font-size: .95rem; color: var(--ink-soft); }
.team-card .includes { justify-content: center; margin-top: auto; }
.team-card .includes li { font-size: .78rem; padding: 5px 10px; }
.team-avatar { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1100px) { .team { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team { grid-template-columns: 1fr; } }

/* Values */
.value-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; margin-bottom: 10px; }

/* ---------- Gallery ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter { padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font: 600 .95rem var(--font-body); color: var(--ink); cursor: pointer; }
.filter[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.gallery { columns: 3 280px; column-gap: 18px; }
.gallery figure { break-inside: avoid; margin: 0 0 18px; border-radius: var(--radius); overflow: hidden; position: relative; background: #fff; border: 1px solid var(--line); }
.gallery figure[hidden] { display: none; }
.gallery img { width: 100%; min-height: 120px; background: var(--blush-100); }
.gallery figcaption { padding: 12px 16px; font-size: .92rem; font-weight: 600; display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.gallery figcaption span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; padding: 4px 9px; border-radius: 999px; }
.ph {
  display: grid; place-items: center; text-align: center; padding: 20px; color: var(--ink);
  font-size: .85rem; font-weight: 600;
}
.ph svg { width: 54px; height: 54px; opacity: .55; margin: 0 auto 8px; }
.ph.r1 { aspect-ratio: 4/5; } .ph.r2 { aspect-ratio: 1/1; } .ph.r3 { aspect-ratio: 4/3; }

.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.book-card { position: relative; overflow: hidden; }
.book-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, #F25F8B, var(--sun), var(--teal), var(--sky), var(--violet)); }
.steps { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 18px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.steps .step-n { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; flex: none; }
.steps strong { display: block; }
.steps p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Form ---------- */
.form { display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
.field label .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(184,58,94,.14); }
.choice-group { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.choice-group legend { font-weight: 700; font-size: .92rem; margin-bottom: 8px; padding: 0; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; }
.choice span { display: inline-block; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-weight: 600; font-size: .95rem; cursor: pointer; }
.choice input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.choice input:focus-visible + span { outline: 3px solid var(--sky); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; }
.form-status { padding: 14px 16px; border-radius: 12px; font-weight: 600; display: none; }
.form-status.show { display: block; background: #D2EFEC; color: #0E5750; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #CFC3CC; padding: 72px 0 28px; font-size: .96rem; }
.site-footer a { color: #F5EEF2; text-decoration: none; }
.site-footer a:hover { color: var(--sun); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-grid h4 { font-family: var(--font-body); color: #fff; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand-sub { color: #B6A9B2; }
.site-footer .brand-mark { background: rgba(255,255,255,.1); color: #F59AB5; }
.footer-bottom { margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: #A99BA5; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating mobile call bar */
.call-bar { display: none; }
@media (max-width: 680px) {
  .call-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
    position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 60;
    background: #fff; padding: 8px; border-radius: 999px; box-shadow: 0 10px 30px rgba(43,33,48,.25);
  }
  .call-bar .btn { padding: 12px 10px; font-size: .95rem; }
  body { padding-bottom: 76px; }
}

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
