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

/* ═══════════════ 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);
}

/* ── 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 { 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: 64px;
  gap: 16px;
}
.logo { display: flex; flex-direction: column; }
.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: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  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: 38px;
  height: 38px;
  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;
}
.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%;
  min-height: 520px;
  object-fit: cover;
}


/* ── 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);
}
.why-img-wrap img { width: 100%; min-height: 480px; object-fit: cover; }

.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;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gallery-arrows { display: flex; gap: 8px; }
.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: 320px;
  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: 8px; margin-top: 24px; justify-content: center; }
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  background: var(--faint);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.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%; min-height: 500px; object-fit: cover; }

.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 ═══════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--muted); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--faint); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,.15);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2372726a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a098' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}
.form-submit { margin-top: 8px; }
.form-status { margin-top: 12px; font-size: 14px; min-height: 20px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.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-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.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(--nav-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    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: flex-start; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 40px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-img-wrap img { min-height: 380px; }
  .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 img { min-height: 340px; }

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

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

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

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

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }

  /* 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;
}

/* ═══════════════ 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-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  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 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.service-includes li svg {
  color: var(--accent-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

.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-section { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--surface);
}
.faq-item:nth-child(even) { border-right: none; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  user-select: none;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-sage); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--faint);
  transition: transform .3s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--accent-sage); }

.faq-answer {
  padding: 0 28px 24px;
  overflow: hidden;
}
.faq-answer p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* 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 img { height: 320px; }
  .steps-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { border-right: none; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .faq-item:last-child { border-bottom: none; }
}

/* ═══════════════ 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 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.pricing-includes-list li svg {
  color: var(--accent-sage);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing FAQ — dark background variant */
.pricing-faq { padding: 100px 0; }
.pricing-faq-grid {
  border-color: rgba(200,169,110,.2);
}
.pricing-faq-grid .faq-item {
  background: rgba(255,255,255,.04);
  border-color: rgba(200,169,110,.15);
}
.pricing-faq-grid .faq-item summary {
  color: var(--ink-on-dark);
}
.pricing-faq-grid .faq-item summary:hover { color: var(--accent-gold); }
.pricing-faq-grid .faq-item[open] summary { color: var(--accent-gold); }
.pricing-faq-grid .faq-chevron { color: var(--faint-on-dark); }
.pricing-faq-grid .faq-answer p { color: var(--muted-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; }
  .pricing-faq-grid { grid-template-columns: 1fr; }
  .pricing-faq-grid .faq-item { border-right: none; }
  .pricing-faq-grid .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(200,169,110,.15); }
  .pricing-faq-grid .faq-item:last-child { border-bottom: none; }
}
