/* ==========================================================
   HAPPY PUPPIES — Main Stylesheet
   Premium Dog Care · The Hague
   ========================================================== */

/* ═══════════════ FONTS (self-hosted) ═══════════════ */
/* Place .woff2 files in /assets/fonts/ in the theme root */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-v22-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-v22-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-v22-latin-600italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-v22-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/dm-sans-v17-latin-700.woff2') format('woff2');
}

/* ═══════════════ TOKENS ═══════════════ */
:root {
  /* Backgrounds */
  --bg: #f6f3ed;
  --bg-dark: #171a17;
  --surface: #ffffff;
  --testimonial-bg: #faf8f4;

  /* Text */
  --ink: #1e1e1a;
  --muted: #72726a;
  --faint: #a8a89e;

  /* Light section accent — dusty sage */
  --accent-sage: #7a9e7e;
  --accent-sage-dk: #5c7d60;
  --accent-sage-tint: #f0f5f0;

  /* Dark section accent — warm gold */
  --accent-gold: #c8a96e;
  --accent-gold-dk: #a8884e;

  /* Dark-section text */
  --ink-on-dark: #f0ede6;
  --muted-on-dark: #b0ada6;
  --faint-on-dark: #807d76;

  /* Borders */
  --line: rgba(30,30,26,.10);
  --line-dark: rgba(255,255,255,.12);

  /* Shadows */
  --shadow: 0 8px 32px rgba(30,30,26,.08);
  --shadow-lg: 0 20px 56px rgba(30,30,26,.13);

  /* Shape */
  --r: 16px;
  --r-lg: 24px;

  /* Layout */
  --max: 1200px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Nav */
  --nav-bg: rgba(246,243,237,.88);
  --nav-border: rgba(30,30,26,.08);
}

/* ── Color-scheme hint — native UI (scrollbars, inputs) match theme ── */
html {
  color-scheme: light dark;
}

/* ── Dark theme overrides ── */
html[data-theme="dark"] {
  --bg: #111411;
  --bg-dark: #0c0e0c;
  --surface: #1c1f1c;
  --testimonial-bg: #181b18;
  --ink: #ece8e0;
  --muted: #a0a098;
  --faint: #686862;
  --accent-sage-tint: #1a2e1e;
  --line: rgba(255,255,255,.10);
  --shadow: 0 8px 32px rgba(0,0,0,.30);
  --shadow-lg: 0 20px 56px rgba(0,0,0,.45);
  --nav-bg: rgba(17,20,17,.88);
  --nav-border: rgba(255,255,255,.06);
}


/* ═══════════════ RESET ═══════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }


/* ═══════════════ THEME TRANSITION ═══════════════ */
.theme-t,
.theme-t *,
.theme-t *::before,
.theme-t *::after {
  transition: background-color .4s ease, color .4s ease,
              border-color .4s ease, box-shadow .4s ease !important;
}


/* ═══════════════ UTILITIES ═══════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ═══════════════ FOCUS ═══════════════ */
:focus-visible { outline: 2px solid var(--accent-sage); outline-offset: 2px; }
.why-section :focus-visible,
.site-footer :focus-visible,
.about-space-section :focus-visible,
.about-cta-section :focus-visible,
.about-stats-section :focus-visible { outline-color: var(--accent-gold); }


/* ═══════════════ REVEAL ANIMATION ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════ TYPOGRAPHY ═══════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }


/* ═══════════════ SECTION COMMON ═══════════════ */
.section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 580px;
  margin-top: 12px;
  margin-bottom: 48px;
}


/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-sage       { background: transparent; color: var(--accent-sage); border-color: var(--accent-sage); }
.btn-sage:hover { background: var(--accent-sage); color: #fff; }

.btn-sage-solid       { background: var(--accent-sage); color: #fff; border-color: var(--accent-sage); }
.btn-sage-solid:hover { background: var(--accent-sage-dk); border-color: var(--accent-sage-dk); }

.btn-ghost       { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-cta       { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-cta:hover { border-color: var(--accent-sage); }

.btn-gold       { background: transparent; color: var(--accent-gold); border-color: var(--accent-gold); }
.btn-gold:hover { background: var(--accent-gold); color: var(--bg-dark); }


/* ═══════════════ NAVIGATION ═══════════════ */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nav-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 116px;
  gap: 16px;
}
/* ── Logo ── */
.logo {
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 24px;
  background: transparent;
  transition: background .25s ease;
}

/* Image logo in nav */
.logo-img {
  display: block;
  height: 100px;
  width: auto;
}

/* Dark-mode pill */
html[data-theme="dark"] .nav-bar .logo {
  background: #f6f3ed;
}

@media (max-width: 768px) {
  .nav-inner { height: 72px; }
  .logo-img { height: 52px; }
}

/* Footer text logo (keeps existing column layout) */
.footer-logo .logo {
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  padding: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 999px;
  transition: color .2s, background-color .2s;
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-sage);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta-mobile { display: none !important; }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: all .25s ease;
}
.theme-toggle:hover { border-color: var(--accent-sage); color: var(--accent-sage); }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="dark"]  .icon-moon { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.active span:first-child  { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:last-child   { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════ HERO ═══════════════ */
.hero { padding: 64px 0 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text > p {
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 500px;
  line-height: 1.7;
  color: var(--muted);
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


/* ── Trust Bar ── */
.trust-bar {
  display: flex;
  gap: 12px;
  margin-top: 56px;
  padding-bottom: 64px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trust-bar::-webkit-scrollbar { display: none; }
.trust-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-chip svg { color: var(--accent-sage); flex-shrink: 0; display: block; }


/* ═══════════════ SERVICES ═══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--accent-sage);
}
.service-icon { color: var(--accent-sage); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }


/* ═══════════════ WHY SECTION (DARK) ═══════════════ */
.why-section { background: var(--bg-dark); padding: 120px 0; }
.why-section .section-tag { color: var(--accent-gold); }
.why-section h2 { color: var(--ink-on-dark); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(200,169,110,.3), 0 20px 56px rgba(0,0,0,.4);
  height: 600px;
}
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 80%; display: block; }

.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; }
.why-bullet {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  margin-top: 7px;
}
.why-item h3 { color: var(--ink-on-dark); font-size: 17px; margin-bottom: 4px; }
.why-item p  { color: var(--muted-on-dark); font-size: 14px; line-height: 1.6; }
.why-cta { margin-top: 40px; }


/* ═══════════════ GALLERY ═══════════════ */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}
.gallery-arrows { display: flex; gap: 8px; flex-shrink: 0; margin-left: auto; }
.gallery-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  transition: opacity .2s;
}
.gallery-arrow:hover { opacity: .8; }

.gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-slide {
  min-width: calc(28% - 12px);
  flex-shrink: 0;
  scroll-snap-align: start;
}
.gallery-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 700px;
  width: 700px;
  cursor: zoom-in;
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid rgba(30,30,26,.08);
  font-family: var(--font-body);
}
[data-theme="dark"] .gallery-label {
  background: rgba(0,0,0,.55);
  color: var(--ink);
  border-color: rgba(255,255,255,.1);
}

.gallery-dots { display: flex; gap: 10px; margin-top: 24px; justify-content: center; }
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--faint);
  border: none;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.gallery-dot.active { background: var(--accent-sage); }


/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}
.about-img-wrap img { width: 100%; height: auto; display: block; }

.about-text h2 { margin-bottom: 24px; }
.about-text > p { margin-bottom: 16px; font-size: 15px; line-height: 1.7; color: var(--muted); }

.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--ink);
  border-left: 3px solid var(--accent-sage);
  padding-left: 20px;
  margin: 32px 0;
  line-height: 1.4;
}

.about-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.stat-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}


/* ═══════════════ PRICING ═══════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  padding: 32px 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card.popular {
  border: 2px solid var(--accent-sage);
  background: var(--accent-sage-tint);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--accent-sage);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
}
.price-card h3 { margin-bottom: 8px; }
.price-from {
  display: block;
  font-size: 13px;
  color: var(--faint);
  font-weight: 500;
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.price-unit { font-family: var(--font-body); font-size: 16px; font-weight: 400; color: var(--muted); }

.price-features { margin: 24px 0; flex-grow: 1; display: flex; flex-direction: column; }
.price-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--accent-sage);
}

.pricing-note {
  text-align: center;
  font-style: italic;
  color: var(--faint);
  font-size: 14px;
  margin-top: 36px;
}


/* ═══════════════ TESTIMONIALS ═══════════════ */
.testimonials-section { background: var(--testimonial-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  padding: 28px 24px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.testimonial-stars {
  color: var(--accent-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-dog { font-size: 13px; color: var(--faint); margin-top: 2px; }


/* ═══════════════ CONTACT ═══════════════ */
/* NOTE: Custom form rules (.form-grid, .form-input, etc.) removed —
   Fluent Forms provides its own form styles.                          */

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 20px; height: 20px; color: var(--accent-sage); flex-shrink: 0; margin-top: 2px; }
.contact-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.contact-item a { color: var(--accent-sage-dk); font-weight: 500; transition: color .2s; }
.contact-item a:hover { color: var(--accent-sage); }
.contact-note {
  margin-top: 8px;
  padding: 16px 20px;
  border-radius: var(--r);
  background: var(--accent-sage-tint);
  border: 1px solid rgba(122,158,126,.2);
  font-size: 14px;
  color: var(--accent-sage-dk);
  line-height: 1.6;
}


/* ═══════════════ FLOATING BUTTONS ═══════════════ */
.floating-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.float-btn-wa  { background: var(--accent-sage); }
.float-btn-cal { background: var(--ink); color: var(--bg); }


/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: var(--bg-dark); padding: 64px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo .logo-name { color: var(--ink-on-dark); font-size: 24px; }
.footer-logo .logo-sub  { color: var(--faint-on-dark); }
.footer-tagline {
  color: var(--muted-on-dark);
  font-size: 15px;
  margin-top: 12px;
  font-style: italic;
}
.footer-email {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-on-dark);
  transition: color .2s;
}
.footer-email:hover { color: var(--accent-gold); }
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px 32px;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-nav a {
  font-size: 14px;
  color: var(--muted-on-dark);
  transition: color .2s;
  padding: 4px 0;
  display: inline-block;
}
.footer-nav a:hover { color: var(--accent-gold); }
.footer-bottom {
  border-top: 1px solid rgba(200,169,110,.2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--faint-on-dark);
}
.footer-heart { color: var(--accent-gold); }


/* ═══════════════ RESPONSIVE — 1200 px ═══════════════ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════ RESPONSIVE — 768 px ═══════════════ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav mobile */
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--nav-border);
    z-index: 49;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 0; }
  .nav-link.active::after { display: none; }
  .nav-cta-desktop { display: none !important; }
  .nav-cta-mobile  { display: inline-flex !important; margin-top: 8px; align-self: center; width: 100%; justify-content: center; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 40px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-wrap img { min-height: unset; }
  .trust-bar { margin-top: 40px; padding-bottom: 48px; }

  /* Cards */
  .services-grid { grid-template-columns: 1fr; }

  /* Dark section */
  .why-section { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap { height: 340px; }
  .why-img-wrap img { min-height: unset; }

  /* Gallery */
  .gallery-slide { min-width: 80%; }
  .gallery-card { height: 320px; width: 320px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { transform: rotate(-1deg); }
  .about-img-wrap img { min-height: unset; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; }

  /* Floating */
  .floating-btns { right: 16px; bottom: 16px; }
  .float-btn { padding: 14px 22px; font-size: 15px; }
}

/* ═══════════════ GALLERY LIGHTBOX ═══════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  max-height: 100%;
}
.lightbox-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  transform: scale(.94);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  max-height: 88vh;
}
.lightbox.open .lightbox-img-wrap {
  transform: scale(1);
}
.lightbox-img-wrap img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover {
  background: rgba(255,255,255,.22);
  transform: rotate(90deg);
}
.lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-nav:active { transform: scale(.92); }
.lightbox-counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  z-index: 2;
}

/* ── Lightbox — always show full image on mobile ── */
@media (max-width: 768px) {
  .lightbox { padding: 12px; }
  .lightbox-img-wrap {
    max-height: none;
    overflow: visible;
  }
  .lightbox-img-wrap img {
    max-width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
  }
}

/* ═══════════════ SERVICES PAGE ═══════════════ */

/* Page hero */
.page-hero {
  padding: 80px 0 64px;
  background: var(--bg);
}
.page-hero-inner {
  max-width: 680px;
}
.page-hero-inner h1 {
  margin: 12px 0 20px;
}
.page-hero-inner > p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

/* Service detail sections */
.service-detail { padding: 80px 0; }
.service-detail-alt { background: var(--testimonial-bg); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}
.service-detail-grid.reverse > * {
  direction: ltr;
}

/* ── Boarding image: match height of daycare & walking images ── */
#boarding .service-detail-img {
  aspect-ratio: 952 / 1288;
}
#boarding .service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service detail images */
.service-detail-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.service-detail-text .section-tag { margin-bottom: 8px; }
.service-detail-text h2 { margin-bottom: 20px; }
.service-detail-text > p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-includes {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-includes li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.service-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-sage);
  line-height: 1.5;
}

.service-detail-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.service-price-tag {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
}
.service-price-tag strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 2px;
}

/* How it works */
.how-section { padding: 100px 0; }
.how-sub { color: var(--muted-on-dark) !important; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step-card {
  padding: 36px 28px;
  border-radius: var(--r);
  border: 1px solid rgba(200,169,110,.2);
  background: rgba(255,255,255,.04);
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: .4;
  line-height: 1;
  margin-bottom: 20px;
}
.step-card h3 {
  color: var(--ink-on-dark);
  font-size: 18px;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.7;
}

/* FAQ */
/* ── FAQ accordion (details/summary, JS-animated) ── */
.faq-section { background: var(--bg); }
.faq-section > .container > .reveal {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}
.faq-section > .container > .reveal .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .25s ease,
              background   .25s ease,
              box-shadow   .25s ease;
}
.faq-item[open] {
  background: var(--testimonial-bg);
  border-color: rgba(122, 158, 126, .3);
  box-shadow: var(--shadow);
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color .2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover                   { color: var(--accent-sage); }
.faq-item[open] .faq-question         { color: var(--accent-sage-dk); }
.faq-question span { flex: 1; }
.faq-icon {
  flex-shrink: 0;
  color: var(--accent-sage);
  transition: transform .3s ease;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }

/* Answer — JS (Web Animations API) controls height + opacity */
.faq-answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.faq-answer-inner { padding: 0 24px; }
.faq-answer p {
  padding-bottom: 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.faq-answer strong {
  color: var(--ink);
  font-weight: 600;
}

/* Contact CTA */
.services-cta-section { background: var(--accent-sage-tint); }
.services-cta {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.services-cta h2 { margin: 12px 0 16px; }
.services-cta > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.services-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services page responsive */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 48px 0 40px; }
  .service-detail { padding: 56px 0; }
  .service-detail-grid,
  .service-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-detail-img { order: -1; }
  .service-detail-img img { height: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; gap: 0; }
  .faq-card:last-child { border-bottom: 1px solid var(--line); }
  .faq-col:last-child .faq-card:last-child { border-bottom: none; }
  .faq-question { font-size: 0.9375rem; padding: 16px 20px; }
  .faq-answer-inner { padding: 0 20px; }
}

/* ═══════════════ PRICING PAGE ═══════════════ */

.pricing-page-cards { background: var(--testimonial-bg); }

/* What's included cards */
.pricing-includes-section { background: var(--bg); }

.pricing-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.pricing-includes-card {
  padding: 32px 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-includes-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pricing-includes-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.pricing-includes-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-sage-tint);
  color: var(--accent-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-includes-header h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.pricing-includes-price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--faint);
  font-weight: 500;
}
.pricing-includes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-includes-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.pricing-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-sage);
  line-height: 1.5;
}

/* Pricing FAQ — dark background variant */
.pricing-faq { background: var(--bg-dark); }
.pricing-faq .section-tag        { color: var(--accent-gold); }
.pricing-faq h2                  { color: var(--ink-on-dark); }
.pricing-faq .section-sub        { color: var(--muted-on-dark); }
.pricing-faq .faq-item {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(200, 169, 110, .15);
}
.pricing-faq .faq-item[open] {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(200, 169, 110, .4);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}
.pricing-faq .faq-question                      { color: var(--ink-on-dark); }
.pricing-faq .faq-question:hover                { color: var(--accent-gold); }
.pricing-faq .faq-item[open] .faq-question      { color: var(--accent-gold); }
.pricing-faq .faq-icon                          { color: var(--accent-gold); }
.pricing-faq .faq-answer p                      { color: var(--muted-on-dark); }
.pricing-faq .faq-answer strong                 { color: var(--ink-on-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .pricing-includes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .pricing-includes-grid { grid-template-columns: 1fr; }
}

/* ═══════════════ CONTACT PAGE ═══════════════ */

/* Meet & greet bar */
.contact-meetgreet-bar {
  background: var(--accent-sage-tint);
  border-top: 1px solid rgba(122,158,126,.15);
  border-bottom: 1px solid rgba(122,158,126,.15);
  padding: 28px 0;
}
.contact-meetgreet {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-meetgreet-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-meetgreet-text {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  min-width: 240px;
}
.contact-meetgreet-text strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 4px;
}

/* Light mode: force same dark green appearance as dark mode */
:root:not([data-theme="dark"]) .contact-meetgreet-bar {
  background: #1a2e1e !important;
  border-color: transparent !important;
}
:root:not([data-theme="dark"]) .contact-meetgreet-text {
  color: #a0a098 !important;
}
:root:not([data-theme="dark"]) .contact-meetgreet-text strong {
  color: #ece8e0 !important;
}

/* Form — full width */
.contact-form-section { background: var(--bg); }
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.fluent-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-wrap h2 { margin-bottom: 12px; }
.contact-form-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Info blocks — compact horizontal bar */
.contact-info-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-info-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-info-block:nth-child(even) { border-right: none; }
.contact-info-block:nth-last-child(-n+2) { border-bottom: none; }
.contact-info-block-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--accent-sage-tint);
  color: var(--accent-sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-block-body { flex: 1; min-width: 0; }
.contact-info-block-body h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.contact-info-block-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-sage);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .2s;
}
.contact-wa-btn:hover { background: var(--accent-sage-dk); }
.contact-email-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-sage-dk);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s;
}
.contact-email-link:hover { color: var(--accent-sage); }
.contact-location-note {
  font-size: 12px;
  color: var(--faint);
  font-style: italic;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Map */
.contact-map-section {
  background: var(--bg);
  padding: 0 0 80px;
}
.contact-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  position: relative;
}
.contact-map-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-family: var(--font-body);
  pointer-events: none;
}
.contact-map-label svg { color: var(--accent-sage); }
.contact-map-wrap iframe { display: block; }

/* Responsive */
@media (max-width: 1024px) {
  .contact-info-block:nth-child(2) { border-right: none; }
  .contact-info-block:nth-child(1),
  .contact-info-block:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 768px) {
  .contact-meetgreet { flex-direction: column; align-items: flex-start; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-block { border-right: none; border-bottom: 1px solid var(--line); }
  .contact-info-block:last-child { border-bottom: none; }
  .contact-map-section { padding: 0 0 56px; }
  .contact-hero-td-img img { max-width: 100%; }
}
@media (max-width: 1024px) and (orientation: landscape) {
  .contact-hero-td-img img { max-width: 480px; }
}
@media (max-width: 768px) and (orientation: landscape) {
  .contact-hero-td-img img { max-width: 280px; }
}


/* ═══════════════ ABOUT PAGE ═══════════════ */

/* Intro — photo + text */
.about-intro-section { background: var(--bg); }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: start;
}
.about-intro-img {
  position: relative;
}
.about-intro-img img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  display: block;
  margin-top: 60px;
}
.about-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 20px;
  border-radius: var(--r);
  background: rgba(246,243,237,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30,30,26,.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow);
}
[data-theme="dark"] .about-intro-badge {
  background: rgba(17,20,17,.88);
  border-color: rgba(255,255,255,.1);
}
.about-intro-badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.about-intro-badge-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-sage);
}
.about-intro-text h2 { margin-bottom: 24px; }
.about-intro-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Stats bar */
.about-stats-section {
  background: var(--bg-dark);
  padding: 56px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.about-stat:last-child { border-right: none; }
.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}
.about-stat-label {
  font-size: 13px;
  color: var(--muted-on-dark);
  text-align: center;
  line-height: 1.4;
}

/* Values */
.about-values-section { background: var(--testimonial-bg); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-value-card {
  padding: 32px 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-sage-tint);
  color: var(--accent-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.about-value-card h3 { font-size: 17px; margin-bottom: 10px; }
.about-value-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* The space (dark) */
.about-space-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.about-space-section .section-tag { color: var(--accent-gold); }
.about-space-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-space-text h2 { color: var(--ink-on-dark); margin-bottom: 20px; }
.about-space-text p { font-size: 15px; color: var(--muted-on-dark); line-height: 1.75; margin-bottom: 16px; }
.about-space-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-space-list li {
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  color: var(--muted-on-dark);
  line-height: 1.5;
}
.about-space-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.5;
}
.about-space-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.about-space-img img {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  display: block;
  box-shadow: 0 0 0 1px rgba(200,169,110,.2), 0 16px 40px rgba(0,0,0,.35);
}
.about-space-img-main img { height: auto; }
.about-space-img-secondary img { height: auto; }

/* Pull quote */
.about-pullquote-section { background: var(--bg); }
.about-pullquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.about-pullquote-stars { color: var(--accent-gold); font-size: 22px; letter-spacing: 4px; }
.about-pullquote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}
.about-pullquote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-style: normal;
}
.about-pullquote-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.about-pullquote-dog { font-size: 13px; color: var(--faint); }

/* CTA (dark) */
.about-cta-section {
  background: var(--bg-dark);
  padding: 100px 0;
}
.about-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-cta-inner h2 { color: var(--ink-on-dark); margin-bottom: 20px; }
.about-cta-inner p { font-size: 16px; color: var(--muted-on-dark); line-height: 1.75; margin-bottom: 36px; }
.about-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.about-cta-ghost { color: var(--ink-on-dark); border-color: rgba(255,255,255,.25); }
.about-cta-ghost:hover { background: rgba(255,255,255,.1); }

/* About page responsive */
@media (max-width: 1024px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3),
  .about-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 768px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .about-stat:last-child { border-bottom: none; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-space-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-space-img-main img { height: auto; }
  .about-space-img-secondary img { height: auto; }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
/* Respect users who prefer less animation (vestibular disorders, etc.) */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery-track {
    scroll-behavior: auto;
  }
  .theme-t,
  .theme-t *,
  .theme-t *::before,
  .theme-t *::after {
    transition: none !important;
  }
  .lightbox-img-wrap {
    transform: none;
    transition: none;
  }
  .service-card,
  .price-card,
  .testimonial-card,
  .about-value-card,
  .pricing-includes-card {
    transition: none;
  }
  .float-btn:hover,
  .gallery-arrow:hover,
  .lightbox-close:hover {
    transform: none;
  }
}


/* ═══════════════ POLICY PAGES ═══════════════ */

.policy-hero {
  background: var(--bg-dark);
  padding: 80px 0 72px;
  border-bottom: 1px solid rgba(200,169,110,.15);
}
.policy-hero-inner {
  max-width: 760px;
}
.policy-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
}
.policy-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--ink-on-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.policy-meta-item {
  font-size: 13px;
  color: var(--muted-on-dark);
  font-family: var(--font-body);
}

.policy-body-section {
  background: var(--bg);
  padding: 72px 0 96px;
}
.policy-content {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.policy-content--wide {
  max-width: 100%;
}

.policy-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 40px;
}
.policy-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.policy-block-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--accent-sage-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.policy-block-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.policy-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.policy-block p:last-child { margin-bottom: 0; }
.policy-block a {
  color: var(--accent-sage-dk);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-block a:hover { color: var(--accent-sage); }

.policy-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.policy-contact-list li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}
.policy-contact-list li a {
  color: var(--accent-sage-dk);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 16px;
  padding-left: 20px;
}
.policy-list li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
}
.policy-list li::before {
  content: '–';
  position: absolute;
  left: -16px;
  color: var(--accent-sage);
  font-weight: 700;
}

.policy-alert {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--accent-sage-tint);
  border: 1px solid rgba(122,158,126,.25);
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 16px 0;
}
.policy-alert-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.policy-alert span:last-child { font-size: 14px; color: var(--ink); line-height: 1.65; }

.policy-table-wrapper {
  overflow-x: auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  margin: 16px 0;
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: var(--font-body);
}
.policy-table thead { background: var(--accent-sage-tint); }
.policy-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.policy-table td {
  padding: 12px 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.55;
}
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:hover { background: var(--accent-sage-tint); }

.badge-eu, .badge-ch, .badge-us {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
}
.badge-eu { background: rgba(122,158,126,.15); color: var(--accent-sage-dk); }
.badge-ch { background: rgba(200,169,110,.15); color: #8a6e30; }
.badge-us { background: rgba(200,80,80,.1); color: #9a3535; }

.policy-security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.policy-security-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
}
.policy-security-icon { font-size: 20px; flex-shrink: 0; }
.policy-security-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.policy-security-item strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.policy-security-item span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.policy-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0;
}
.policy-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
}
.policy-card-basis {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--accent-sage-dk);
  background: var(--accent-sage-tint);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.policy-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.policy-rights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.policy-right-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.policy-right-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }

.policy-cookie-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 24px;
  margin-top: 16px;
}
.policy-cookie-box p {
  font-size: 14px;
  margin-bottom: 8px;
}

.policy-pdf-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.policy-pdf-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--accent-sage);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s;
  text-decoration: none;
}
.policy-pdf-actions .btn-primary:hover { background: var(--accent-sage-dk); color: #fff; }
.policy-pdf-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1.5px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  transition: border-color .2s;
  text-decoration: none;
}
.policy-pdf-actions .btn-secondary:hover { border-color: var(--accent-sage); color: var(--accent-sage-dk); }

.policy-pdf-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 16px 0 8px;
}
.policy-pdf-viewer {
  width: 100%;
  height: 680px;
  border: none;
  display: block;
}
.policy-pdf-fallback {
  font-size: 13px;
  color: var(--faint);
  margin-top: 8px;
}

@media (max-width: 768px) {
  .policy-block { padding: 24px 20px; }
  .policy-security-grid { grid-template-columns: 1fr; }
  .policy-cards { grid-template-columns: 1fr; }
  .policy-hero { padding: 56px 0 48px; }
}


/* ═══════════════ PRICING IMAGE BREAK ═══════════════ */
.pricing-image-section {
  padding: 0 0 64px;
}
.pricing-image-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════ CONTACT HERO SPLIT ═══════════════ */
.contact-hero-split {
  padding-bottom: 64px;
}
.contact-hero-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.contact-hero-td-text {
  width: 50%;
  vertical-align: middle;
  padding-right: 48px;
}
.contact-hero-intro {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-hero-td-img {
  width: 50%;
  vertical-align: middle;
}
.contact-hero-td-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}
@media (max-width: 1024px) {
  .contact-hero-table,
  .contact-hero-row,
  .contact-hero-td-text,
  .contact-hero-td-img { display: block; width: 100%; }
  .contact-hero-td-text { padding: 0 0 32px 0; }
  .contact-hero-td-img { padding: 0; }
  .contact-hero-td-img img { height: auto; max-width: 480px; display: block; margin: 0 auto; }
}

/* ═══════════════ FOOTER NAV — 3 COLUMNS ═══════════════ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.footer-nav-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-col--cta {
  gap: 10px;
}
.footer-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.footer-cta-btn--outline {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(255,255,255,.25);
}
.footer-cta-btn--outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}
.footer-cta-btn--solid {
  background: var(--accent-sage);
  color: #1e1e1a !important;
  border-color: var(--accent-sage);
}
.footer-cta-btn--solid:hover {
  background: var(--accent-sage-dk);
  border-color: var(--accent-sage-dk);
  color: #1e1e1a !important;
}
@media (max-width: 768px) {
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-nav-col--cta {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 12px;
  }
  .footer-cta-btn { flex: 1; }
}
@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .footer-nav-col--cta { flex-direction: column; }
  .footer-cta-btn { width: 100%; }
}


/* ═══════════════ REQUEST A SERVICE PAGE ═══════════════ */

.request-hero .page-hero-inner { max-width: 680px; }
.request-hero .page-hero-inner h1 { margin: 12px 0 20px; }
.request-hero .page-hero-inner p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.request-trust-bar {
  background: var(--accent-sage-tint);
  border-top: 1px solid rgba(122,158,126,.15);
  border-bottom: 1px solid rgba(122,158,126,.15);
  padding: 20px 0;
}
.request-trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.request-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-body);
}
.request-trust-item svg {
  color: var(--accent-sage-dk);
  flex-shrink: 0;
}

.request-form-section { background: var(--bg); }
.request-form-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.request-form-header {
  text-align: center;
  margin-bottom: 48px;
}
.request-form-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.request-form-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.request-fluent-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 48px;
}

.request-reassurance-section { background: var(--bg); padding-top: 0; }
.request-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.request-reassurance-item {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.request-reassurance-icon {
  font-size: 32px;
  margin-bottom: 16px;
}
.request-reassurance-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.request-reassurance-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .request-trust-items { gap: 16px; justify-content: flex-start; }
  .request-fluent-wrap { padding: 28px 24px; }
  .request-reassurance-grid { grid-template-columns: 1fr; gap: 16px; }
}


/* ═══════════════════════════════════════════════════════════
   FLUENT FORMS — Theme Override
   Matches Happy Puppies design system
   ═══════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.fluentform,
.ff-form-wrap {
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
}

/* ── Field group spacing ── */
.ff-el-group {
  margin-bottom: 24px !important;
}

/* ── Labels ── */
.ff-el-group label,
.ff-el-group .ff-el-input--label,
.ff-el-group .ff-el-input--label label {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  display: block !important;
  text-align: left !important;
}

/* ── All text inputs, textarea, select ── */
.fluentform input[type="text"],
.fluentform input[type="email"],
.fluentform input[type="tel"],
.fluentform input[type="number"],
.fluentform input[type="url"],
.fluentform input[type="date"],
.fluentform input[type="time"],
.fluentform input[type="password"],
.fluentform textarea,
.fluentform select,
.ff-el-group input[type="text"],
.ff-el-group input[type="email"],
.ff-el-group input[type="tel"],
.ff-el-group input[type="number"],
.ff-el-group input[type="url"],
.ff-el-group input[type="date"],
.ff-el-group input[type="time"],
.ff-el-group input[type="password"],
.ff-el-group textarea,
.ff-el-group select {
  width: 100% !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  background: var(--surface) !important;
  border: 1.5px solid var(--line) !important;
  border-radius: var(--r) !important;
  padding: 13px 16px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color .2s ease, box-shadow .2s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* ── Focus ── */
.fluentform input:focus,
.fluentform textarea:focus,
.fluentform select:focus,
.ff-el-group input:focus,
.ff-el-group textarea:focus,
.ff-el-group select:focus {
  border-color: var(--accent-sage) !important;
  box-shadow: 0 0 0 3px rgba(122,158,126,.15) !important;
  outline: none !important;
}

/* ── Placeholder ── */
.fluentform input::placeholder,
.fluentform textarea::placeholder,
.ff-el-group input::placeholder,
.ff-el-group textarea::placeholder {
  color: var(--faint) !important;
}

/* ── Textarea ── */
.fluentform textarea,
.ff-el-group textarea {
  min-height: 140px !important;
  resize: vertical !important;
  line-height: 1.65 !important;
}

/* ── Select arrow ── */
.fluentform select,
.ff-el-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2372726a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 44px !important;
}

/* ── Radio & Checkbox ── */
.fluentform .ff-el-form-check-label,
.ff-el-group .ff-el-form-check-label {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
}
.fluentform input[type="checkbox"],
.fluentform input[type="radio"],
.ff-el-group input[type="checkbox"],
.ff-el-group input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  accent-color: var(--accent-sage) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

/* ── Required star ── */
.ff-el-is-required .ff-label-content::after,
.ff-el-is-required .ff-el-input--label label::after {
  content: ' *' !important;
  color: var(--accent-sage-dk) !important;
  font-weight: 700 !important;
}

/* ── Submit button ── */
.fluentform .ff-btn,
.fluentform .ff-btn-submit,
.fluentform button[type="submit"],
.ff-btn-submit,
.ff_submit_btn_wrapper .ff-btn {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: var(--accent-sage) !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 14px 36px !important;
  cursor: pointer !important;
  transition: background .2s, transform .15s !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: none !important;
  letter-spacing: .01em !important;
  -webkit-appearance: none !important;
  width: auto !important;
}
.fluentform .ff-btn:hover,
.fluentform .ff-btn-submit:hover,
.fluentform button[type="submit"]:hover,
.ff-btn-submit:hover,
.ff_submit_btn_wrapper .ff-btn:hover {
  background: var(--accent-sage-dk) !important;
  transform: translateY(-1px) !important;
}

/* ── Error state ── */
.ff-el-group input.ff_has_error,
.ff-el-group textarea.ff_has_error,
.ff-el-group select.ff_has_error,
.ff-el-group .ff-el-is-error input,
.ff-el-group .ff-el-is-error textarea {
  border-color: #c0504d !important;
  box-shadow: 0 0 0 3px rgba(192,80,77,.12) !important;
}
.ff-el-group .error,
.ff-el-group .text-danger,
.fluentform .error,
.ff-el-group .ff-field_help_message {
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: #c0504d !important;
  margin-top: 6px !important;
  display: block !important;
}

/* ── Success message ── */
.ff-message-success,
.ff_all_fields_success_message,
.fluentform .ff-message-success {
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--accent-sage-dk) !important;
  background: var(--accent-sage-tint) !important;
  border: 1px solid rgba(122,158,126,.25) !important;
  border-radius: var(--r) !important;
  padding: 16px 20px !important;
  text-align: center !important;
  margin-top: 16px !important;
}

/* ── Multi-step progress bar ── */
.ff_step_progress_bar {
  background: var(--line) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  margin-bottom: 32px !important;
  height: 6px !important;
}
.ff_step_progress_bar .ff_step_progress {
  background: var(--accent-sage) !important;
  height: 6px !important;
  border-radius: 999px !important;
  transition: width .4s ease !important;
}
.ff-step-titles .step-item.current {
  color: var(--accent-sage) !important;
  border-bottom-color: var(--accent-sage) !important;
}

/* Light mode — visible input borders (--line is too faint against --bg) */
:root:not([data-theme="dark"]) .ff-el-group input[type="text"],
:root:not([data-theme="dark"]) .ff-el-group input[type="email"],
:root:not([data-theme="dark"]) .ff-el-group input[type="tel"],
:root:not([data-theme="dark"]) .ff-el-group input[type="number"],
:root:not([data-theme="dark"]) .ff-el-group input[type="url"],
:root:not([data-theme="dark"]) .ff-el-group input[type="date"],
:root:not([data-theme="dark"]) .ff-el-group input[type="time"],
:root:not([data-theme="dark"]) .ff-el-group input[type="password"],
:root:not([data-theme="dark"]) .ff-el-group textarea,
:root:not([data-theme="dark"]) .ff-el-group select,
:root:not([data-theme="dark"]) .fluentform input[type="text"],
:root:not([data-theme="dark"]) .fluentform input[type="email"],
:root:not([data-theme="dark"]) .fluentform input[type="tel"],
:root:not([data-theme="dark"]) .fluentform input[type="date"],
:root:not([data-theme="dark"]) .fluentform textarea,
:root:not([data-theme="dark"]) .fluentform select {
  border-color: rgba(30,30,26,.22) !important;
}

/* ── Dark mode ── */
html[data-theme="dark"] .fluentform input[type="text"],
html[data-theme="dark"] .fluentform input[type="email"],
html[data-theme="dark"] .fluentform input[type="tel"],
html[data-theme="dark"] .fluentform input[type="number"],
html[data-theme="dark"] .fluentform input[type="date"],
html[data-theme="dark"] .fluentform input[type="password"],
html[data-theme="dark"] .fluentform textarea,
html[data-theme="dark"] .fluentform select,
html[data-theme="dark"] .ff-el-group input[type="text"],
html[data-theme="dark"] .ff-el-group input[type="email"],
html[data-theme="dark"] .ff-el-group input[type="tel"],
html[data-theme="dark"] .ff-el-group textarea,
html[data-theme="dark"] .ff-el-group select {
  background: var(--surface) !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
}
html[data-theme="dark"] .fluentform input::placeholder,
html[data-theme="dark"] .fluentform textarea::placeholder {
  color: var(--faint) !important;
}
html[data-theme="dark"] .ff-el-group select,
html[data-theme="dark"] .fluentform select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23686862' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
}
html[data-theme="dark"] .ff-message-success,
html[data-theme="dark"] .ff_all_fields_success_message {
  color: var(--accent-gold) !important;
  background: rgba(200,169,110,.1) !important;
  border-color: rgba(200,169,110,.25) !important;
}

/* ── Select arrow tiling fix ── */
.fluentform select,
.ff-el-group select,
.ff-el-group .ff-select-container select {
  background-size: 16px 16px !important;
  background-repeat: no-repeat !important;
}

/* ── Select dropdown — nuclear fix for dark mode arrow tiling ── */
.ff-el-group select,
.ff-el-group .ff-select-container select,
.fluentform select {
  background-image: none !important;
  background: var(--surface) !important;
  -webkit-appearance: auto !important;
  appearance: auto !important;
}
html[data-theme="dark"] .ff-el-group select,
html[data-theme="dark"] .ff-el-group .ff-select-container select,
html[data-theme="dark"] .fluentform select {
  background: var(--surface) !important;
  background-image: none !important;
  color-scheme: dark !important;
}
