/* ==========================================================================
   Sweet Beans Grooming: Design System v3
   "Refined Professional": black & gold boutique identity, restructured
   around clear trust signals, scannable structure, and measured typography
   for a polished local-service business presence in Seattle.
   ========================================================================== */

:root {
  --ink:          #0E0C09;
  --ink-2:        #1B160F;
  --cream:        #FAF8F2;
  --cream-2:      #F1EAD9;
  --line:         #E3DAC2;
  --line-dark:    rgba(247,243,233,0.13);
  --muted:        #6B6254;
  --muted-dark:   rgba(247,243,233,0.62);
  --gold:         #C9A646;
  --gold-dark:    #A4822F;
  --gold-deep:    #7A5F23;
  --gold-tint:    rgba(201,166,70,0.12);
  --white:        #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(14,12,9,.08);
  --shadow: 0 20px 50px rgba(14,12,9,.16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

::selection { background: var(--gold); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
svg { display: block; }

/* --- Accessibility: skip link --- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- Accessibility: visible keyboard focus (matches Franky's own
   focus-visible standard -- 2px solid gold, offset). Mouse/touch clicks
   don't get the ring (:focus-visible skips those), only real keyboard
   navigation does. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.on-dark a:focus-visible, .section-dark a:focus-visible,
.on-dark button:focus-visible, .section-dark button:focus-visible {
  outline-color: var(--cream);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
em, .ital { font-style: italic; font-weight: 400; }

h1 { font-size: clamp(2.5rem, 4.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.28rem; }

p { margin: 0 0 1em; color: var(--muted); }
.lede { font-size: 1.14rem; line-height: 1.7; max-width: 540px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 14px; height: 14px;
  background: var(--gold-dark);
  display: inline-block;
  flex-shrink: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='16' rx='6.2' ry='5.4'/%3E%3Cellipse cx='5.2' cy='8.6' rx='2.6' ry='3.2' transform='rotate(-18 5.2 8.6)'/%3E%3Cellipse cx='10.4' cy='4.8' rx='2.5' ry='3.1' transform='rotate(-6 10.4 4.8)'/%3E%3Cellipse cx='15.8' cy='4.9' rx='2.5' ry='3.1' transform='rotate(6 15.8 4.9)'/%3E%3Cellipse cx='20.6' cy='8.7' rx='2.6' ry='3.2' transform='rotate(18 20.6 8.7)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cellipse cx='12' cy='16' rx='6.2' ry='5.4'/%3E%3Cellipse cx='5.2' cy='8.6' rx='2.6' ry='3.2' transform='rotate(-18 5.2 8.6)'/%3E%3Cellipse cx='10.4' cy='4.8' rx='2.5' ry='3.1' transform='rotate(-6 10.4 4.8)'/%3E%3Cellipse cx='15.8' cy='4.9' rx='2.5' ry='3.1' transform='rotate(6 15.8 4.9)'/%3E%3Cellipse cx='20.6' cy='8.7' rx='2.6' ry='3.2' transform='rotate(18 20.6 8.7)'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.section-dark .eyebrow, .on-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before, .on-dark .eyebrow::before { background: var(--gold); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .container { padding: 0 22px; } }

.section { padding: 104px 0; }
@media (max-width: 900px) { .section { padding: 76px 0; } }
@media (max-width: 600px) { .section { padding: 60px 0; } }
.section-tight { padding-top: 0; }

.section-light  { background: var(--cream); }
.section-alt    { background: var(--cream-2); }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-dark p { color: var(--muted-dark); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.section-head { max-width: 620px; margin: 0 0 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { margin: 0; }

/* --- Buttons & links --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 30px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; transition: transform .22s ease; flex-shrink: 0; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.on-dark .btn-outline, .section-dark .btn-outline { color: var(--cream); border-color: rgba(247,243,233,0.4); }
.on-dark .btn-outline:hover, .section-dark .btn-outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-sm { padding: 11px 20px; font-size: 0.82rem; }

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.link-cta svg { width: 14px; height: 14px; transition: transform .25s ease; }
.link-cta:hover { gap: 13px; color: var(--gold-dark); border-color: var(--gold-dark); }
.link-cta:hover svg { transform: translateX(2px); }
.section-dark .link-cta { color: var(--cream); border-color: rgba(247,243,233,0.45); }
.section-dark .link-cta:hover { color: var(--gold); border-color: var(--gold); }

/* --- Utility bar --- */
.topbar {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line-dark);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted-dark);
  gap: 16px;
}
.topbar-loc { display: flex; align-items: center; gap: 7px; }
.topbar-loc svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.topbar-loc a:hover { color: var(--cream); }
.topbar-contact { display: flex; align-items: center; gap: 22px; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; transition: color .15s ease; }
.topbar-contact a:hover { color: var(--gold); }
.topbar-contact svg { width: 13px; height: 13px; flex-shrink: 0; }
@media (max-width: 700px) { .topbar-loc span.full { display: none; } }
@media (max-width: 560px) { .topbar-contact .topbar-mail { display: none; } }

/* --- Nav --- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav-wrap.scrolled { border-color: var(--line-dark); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 11px; }
.nav-logo { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.nav-links a {
  color: var(--muted-dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 9px; margin: -9px; }
@media (max-width: 859px) { .nav-links { display: none; } .nav-toggle { display: block; } }

/* --- Mobile nav panel --- */
.mobile-panel { display: none; position: fixed; inset: 0; background: var(--ink); z-index: 60; padding: 20px 24px; overflow-y: auto; }
.mobile-panel.open { display: block; }
.mobile-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 10px 0 32px; }
.mobile-links { display: flex; flex-direction: column; gap: 26px; font-size: 1.5rem; font-family: var(--font-display); }
.mobile-links a { color: var(--cream); }
.mobile-links a:hover { color: var(--gold); }
.mobile-divider { height: 1px; background: var(--line-dark); margin: 28px 0; }
.mobile-contact { display: flex; flex-direction: column; gap: 14px; font-size: 0.95rem; color: var(--muted-dark); }
.mobile-contact a { display: flex; align-items: center; gap: 10px; }
.mobile-contact svg { width: 16px; height: 16px; color: var(--gold); }

/* --- Hero --- */
.hero { padding: 64px 0 0; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 84px;
}
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lede { margin-bottom: 30px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}
.hero-badge svg { width: 13px; height: 13px; color: var(--gold-dark); }

.hero-visual { position: relative; }
.hero-panel {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 72% 18%, rgba(201,166,70,0.30), transparent 56%), linear-gradient(165deg, #1A150E 0%, var(--ink) 70%);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-panel.photo-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(14,12,9,0.74), transparent 50%);
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-panel.logo-fill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 56px 40px;
  text-align: center;
}
.hero-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 14px 32px rgba(0,0,0,0.4));
}
.hero-divider {
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
}
.hero-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,233,0.72);
}
.panel-caption {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  z-index: 2;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,243,233,0.55);
}

/* --- Trust strip --- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; }
.trust-item span { font-size: 0.86rem; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }
@media (max-width: 860px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); padding: 22px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item:nth-child(odd) { border-right: none; }
}

/* --- Feature grid (replaces numbered index list) --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon svg { width: 21px; height: 21px; color: var(--gold-dark); }
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.92rem; margin: 0; }

/* --- Pull quote --- */
.quote { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-mark { width: 30px; height: 24px; color: var(--gold); margin: 0 auto 18px; }
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 22px;
}
.section-light .quote-text, .section-alt .quote-text { color: var(--ink); }
.quote-attrib {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-light .quote-attrib, .section-alt .quote-attrib { color: var(--gold-deep); }

/* --- Real results (before/after photo) --- */
.results-frame {
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  outline: 1px solid rgba(201,166,70,0.35);
  outline-offset: -1px;
  box-shadow: var(--shadow);
}
.results-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Split (copy + visual) sections --- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.split.reverse .split-art { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-art { order: 0; }
}
.split-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-2);
}
.split-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }

/* --- Gallery (matted photo frames) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.gallery-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.gallery-frame-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  outline: 1px solid rgba(201,166,70,0.4);
  outline-offset: -1px;
}
.gallery-frame-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-frame-wide { grid-column: 1 / -1; }
.gallery-frame-wide .gallery-frame-photo { aspect-ratio: 3/2; }
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery-frame-wide { grid-column: auto; }
}

/* --- Checklist --- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; color: var(--ink); }
.checklist svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }

/* --- Pricing preview cards (home) --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.price-card .badge {
  position: absolute; top: -12px; left: 30px;
  background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.price-card .name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); margin-bottom: 14px; }
.price-card .price small { font-family: var(--font-body); font-size: 0.7rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.price-card p { font-size: 0.92rem; flex-grow: 1; }
.price-card .link-cta { margin-top: 6px; }

/* --- Full service cards (services page) --- */
.service-list { display: grid; gap: 22px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px;
}
@media (max-width: 600px) { .service-card { padding: 28px 22px; } }
.service-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.service-card-head .name { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.5rem; margin: 0; }
.service-card-head .badge {
  /* --gold-dark on --gold-tint measures ~3.3:1 -- fails the 4.5:1 text
     minimum at this size/weight. --gold-deep is the palette's own
     small-text/high-contrast step (~5.5:1 on this background). */
  background: var(--gold-tint); color: var(--gold-deep);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.service-card-head .price { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); }
.service-card-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; }
@media (max-width: 760px) { .service-card-body { grid-template-columns: 1fr; } }
.service-card-body p { font-size: 0.96rem; }
.service-time { font-size: 0.82rem; color: var(--muted); margin-top: 12px; display: flex; align-items: center; gap: 7px; }
.service-time svg { width: 14px; height: 14px; color: var(--gold-dark); }
.service-includes { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.88rem; color: var(--muted); }
.service-includes li { display: flex; gap: 8px; }
.service-includes svg { width: 14px; height: 14px; color: var(--gold-dark); margin-top: 3px; flex-shrink: 0; }
.size-grid { display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-start; margin-bottom: 14px; }
.size-chip {
  display: flex; flex-direction: column; gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.84rem;
  transition: border-color .2s ease, background .2s ease;
}
.size-chip .l { color: var(--muted); }
.size-chip .p { color: var(--ink); font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.size-chip:hover { border-color: var(--gold); background: var(--cream-2); }

.care-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.care-path-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 210px;
}
.care-path-card .tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.care-path-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.care-path-card p { margin: 0; font-size: 0.9rem; }
.care-path-card:hover { border-color: var(--gold); background: var(--cream-2); }
@media (max-width: 980px) { .care-path-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .care-path-grid { grid-template-columns: 1fr; } }

/* --- Add-ons --- */
.addon-card {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.addon-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(107,98,84,0.18); }
.addon-row:last-child { border-bottom: none; }
.addon-row .name { font-weight: 600; font-size: 1rem; }
.addon-row .price { font-family: var(--font-display); color: var(--gold-deep); font-size: 1.05rem; }
.addon-row .price small { font-family: var(--font-body); font-size: 0.7rem; color: var(--muted); }

/* --- Process steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr; gap: 30px; } }
.process-step { position: relative; padding-right: 24px; }
.process-step::after {
  content: "";
  position: absolute;
  top: 22px; right: -1px; width: 100%; height: 1px;
  background: var(--line-dark);
}
.process-step:last-child::after { display: none; }
@media (max-width: 860px) { .process-step::after { display: none; } }
.process-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 18px;
}
.process-step h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; margin: 0; max-width: 240px; }

/* --- Policy cards --- */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 760px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
}
.policy-card .tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.policy-card h3 { margin-bottom: 12px; }
.policy-card p { margin: 0; font-size: 0.93rem; }

/* --- FAQ --- */
.faq-list { display: grid; gap: 14px; max-width: 760px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.06rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, border-color .2s ease;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--gold-dark); }
.faq-item[open] .faq-icon { transform: rotate(45deg); border-color: var(--gold); }
.faq-item p { margin: 16px 0 0; font-size: 0.94rem; }

/* --- Care guide (nail trims + bath/groom chart) --- */
.care-tip {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.care-tip .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.care-tip .icon svg { width: 21px; height: 21px; color: var(--gold-dark); }
.care-tip h3 { font-size: 1.05rem; margin-bottom: 6px; }
.care-tip p { margin: 0; font-size: 0.93rem; }
@media (max-width: 560px) { .care-tip { flex-direction: column; padding: 24px; } }

.care-chart {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.care-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.care-row:last-child { border-bottom: none; }
.care-row.head {
  background: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.care-row .breed { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.care-row.head .breed, .care-row.head span { color: var(--gold); }
.care-row span:not(.breed) { font-size: 0.86rem; color: var(--muted); }
.care-chart-note { margin-top: 16px; font-size: 0.82rem; color: var(--muted); }
@media (max-width: 760px) {
  .care-row { grid-template-columns: 1fr; gap: 4px; padding: 18px 22px; }
  .care-row.head { display: none; }
  .care-row .breed { font-size: 1rem; margin-bottom: 6px; }
  .care-row span:not(.breed)::before { content: attr(data-label) ": "; font-weight: 600; color: var(--ink); }
}

/* --- Visit / map --- */
.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) { .visit-grid { grid-template-columns: 1fr; gap: 30px; } }
.visit-address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin: 6px 0 26px;
  line-height: 1.5;
}
.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.visit-map iframe { width: 100%; height: 320px; display: block; border: 0; }
.visit-map-embed { background: var(--cream); }
.map-note { margin: 10px 14px 14px; font-size: 0.78rem; color: var(--muted); }
.visit-map a { display: block; }
.visit-map svg { width: 100%; height: 320px; display: block; transition: opacity 0.2s ease; }
.visit-map a:hover svg { opacity: 0.92; }

/* --- CTA band --- */
.cta-band {
  text-align: center;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(201,166,70,0.18), transparent 55%);
}
.cta-band h2 { color: var(--white); max-width: 620px; margin: 0 auto 16px; position: relative; }
.cta-band p { max-width: 460px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }
.section-dark .cta-band { background: var(--ink-2); border: 1px solid var(--line-dark); }
@media (max-width: 600px) { .cta-band { padding: 48px 26px; } }

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: block; margin-bottom: 16px; }
.footer-logo { width: 200px; height: auto; display: block; }
.footer-about p { max-width: 270px; font-size: 0.9rem; color: var(--muted-dark); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.footer-social a:hover { background: rgba(247,243,233,0.08); border-color: rgba(247,243,233,0.4); }
.footer-social svg { width: 16px; height: 16px; color: var(--gold); }
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201,166,70,0.7);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-links a { color: var(--muted-dark); font-size: 0.94rem; transition: color .15s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.8rem; color: var(--muted-dark);
}

/* --- Booking page (Cal.com embed) --- */
.booking-card {
  background:
    linear-gradient(180deg, rgba(201,166,70,0.12), rgba(201,166,70,0) 34%),
    var(--ink);
  border: 1px solid rgba(201,166,70,0.28);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(14,12,9,.24);
  overflow: hidden;
  padding: 8px;
}
.booking-embed {
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 8px);
  background: var(--cream);
}
.booking-embed iframe {
  display: block;
  width: 100%;
  background: var(--cream);
}
@media (max-width: 480px) {
  .booking-embed { min-height: 620px; }
}

/* --- Reveal animation --- */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}
