/* =============================================
   Tiny Tails by Silke — Style Sheet
   Warm, personal, caring dog grooming salon
   ============================================= */

/* ── Design Tokens ─────────────────────────────── */
:root {
  --primary: #8B6841;
  --primary-light: #A8845E;
  --primary-dark: #6E5234;
  --accent: #D4A872;
  --accent-light: #E8C9A0;
  --bg: #FBF8F3;
  --bg-alt: #F3EDE6;
  --bg-warm: #EDE5DA;
  --text: #2C2218;
  --text-muted: #9A8E80;
  --border: #E5DDD3;
  --white: #FEFDFB;

  --font: 'Urbanist', sans-serif;
  --font-heading: 'Quicksand', sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --max-width: 1000px;
  --section-padding: clamp(80px, 12vw, 140px);
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.25, 0, 0.25, 1);

  --shadow-hue: 30 40% 40%;
  --shadow-sm: 0 1px 3px hsl(var(--shadow-hue) / 0.08), 0 2px 8px hsl(var(--shadow-hue) / 0.06);
  --shadow-md: 0 2px 8px hsl(var(--shadow-hue) / 0.08), 0 8px 24px hsl(var(--shadow-hue) / 0.1);
  --shadow-lg: 0 4px 12px hsl(var(--shadow-hue) / 0.06), 0 16px 48px hsl(var(--shadow-hue) / 0.12);

  interpolate-size: allow-keywords;
}

/* ── Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

@media (hover: hover) {
  a:hover { color: var(--primary-light); }
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: 65ch; }

/* ── Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section {
  padding-block: var(--section-padding);
  position: relative;
}

[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  font-family: var(--font);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.gold-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 1rem;
}

/* ── Skip Link ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  z-index: 10000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

@media (hover: hover) {
  .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
  }
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

@media (hover: hover) {
  .btn-whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
}

.btn i { font-size: 1.15em; }

/* ── Navbar ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  background: rgba(251, 248, 243, 0.95);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 80px;
  width: auto;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  padding: 0;
  padding-inline-start: 0;
  text-indent: 0;
  margin: 0;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

@media (hover: hover) {
  .nav-link:hover {
    color: var(--primary);
    background: oklch(from var(--primary) l c h / 0.08);
  }
}

.nav-link.active {
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
}

@media (hover: hover) {
  .nav-phone:hover { color: var(--primary); }
}

.nav-cta {
  padding: 0.6rem 1.25rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
}

@media (hover: hover) {
  .nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay + menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 34, 24, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 998;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100dvh;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 10%, var(--accent) 40%, var(--accent) 60%, transparent 90%);
  opacity: 0.4;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  padding-inline-start: 0;
  text-indent: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

@media (hover: hover) {
  .mobile-nav-link:hover {
    color: var(--primary);
    padding-left: 0.5rem;
  }
}

.mobile-nav-link.active { color: var(--primary); }

.mobile-menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-bottom .nav-phone {
  font-size: 1rem;
}

.mobile-menu-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
}

@media (hover: hover) {
  .mobile-menu-whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: translateY(-1px);
  }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-height) + clamp(2rem, 6vw, 4rem));
  padding-bottom: var(--section-padding);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.1;
}

.hero h1 .accent {
  color: var(--primary);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-muted);
  max-width: 45ch;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: var(--radius-lg);
  z-index: -1;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge i {
  font-size: 1.3rem;
}

/* Paw decoration */
.hero-paw {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.25;
  transform: rotate(15deg);
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

/* ── About / Over Silke ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-image-main {
  width: 80%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: 0;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content h2 {
  margin-bottom: 0.25rem;
}

.about-quote {
  position: relative;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-block: 0.5rem;
}

/* ── Diensten / Services ────────────────────────── */
.services {
  background: var(--bg-alt);
}

.services h2 {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-item {
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.service-item:nth-child(odd) {
  border-right: 1px solid var(--border);
  padding-right: clamp(1.25rem, 2.5vw, 1.75rem);
}

.service-item:nth-child(even) {
  padding-left: clamp(1.25rem, 2.5vw, 1.75rem);
}

.service-item:nth-child(even)::before {
  left: clamp(1.25rem, 2.5vw, 1.75rem);
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.service-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.services-note {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* ── Gallery ────────────────────────────────────── */
.gallery h2 {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gallery-grid {
  columns: 3 200px;
  column-gap: 0.75rem;
}

.gallery-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-cta {
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

/* ── Gallery Page (Masonry) ────────────────────── */
.gallery-page {
  padding-top: 0;
}

.gallery-masonry {
  columns: 3 240px;
  column-gap: 0.75rem;
}

.gallery-masonry-item {
  break-inside: avoid;
  display: block;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (hover: hover) {
  .gallery-masonry-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
  }

  .gallery-masonry-item:hover img {
    transform: scale(1.04);
  }
}

.gallery-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

/* ── Reviews ───────────────────────────────────── */
.reviews {
  background: var(--bg-alt);
  overflow: hidden;
}

.reviews-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.reviews-head .section-label {
  margin-inline: auto;
}

.reviews-head h2 {
  margin-bottom: 1rem;
}

.reviews-rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(44, 34, 24, 0.04), 0 8px 24px rgba(139, 104, 65, 0.08);
}

.reviews-rating-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  line-height: 1;
}

.reviews-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5B544;
  font-size: 1.1rem;
  line-height: 1;
}

.reviews-rating-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-rating-meta img {
  vertical-align: middle;
  display: inline-block;
}

.reviews-swiper {
  position: relative;
  padding-block: 0.5rem 3.25rem;
}

.reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  height: auto;
  box-shadow: 0 1px 2px rgba(44, 34, 24, 0.04), 0 12px 32px rgba(139, 104, 65, 0.07);
  border: 1px solid rgba(212, 168, 114, 0.18);
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0;
  width: 36px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
  opacity: 0.7;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #F5B544;
  font-size: 1rem;
  line-height: 1;
}

.review-body {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  flex-grow: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

.review-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.review-meta time {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-source {
  flex-shrink: 0;
  opacity: 0.85;
}

.reviews-pagination.swiper-pagination {
  bottom: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--text-muted);
  opacity: 0.35;
  margin: 0 !important;
  transition: opacity var(--transition), background var(--transition), width var(--transition);
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
  width: 22px;
  border-radius: 4px;
}

.reviews-nav {
  position: absolute;
  top: calc(50% - 1.75rem);
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 34, 24, 0.08);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

@media (hover: hover) {
  .reviews-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
  }
}

.reviews-nav-prev { left: 0.5rem; }
.reviews-nav-next { right: 0.5rem; }

.reviews-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .reviews-nav {
    display: inline-flex;
  }
}

/* ── CTA Section ───────────────────────────────── */
.cta-section {
  background: var(--bg-warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-paw {
  position: absolute;
  font-size: clamp(4rem, 8vw, 6rem);
  color: var(--accent);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.cta-paw-1 {
  top: 2rem;
  right: clamp(1rem, 5vw, 4rem);
  transform: rotate(20deg);
}

.cta-paw-2 {
  bottom: 1.5rem;
  left: clamp(1rem, 5vw, 4rem);
  transform: rotate(-15deg);
}

.cta-section h2 {
  margin-bottom: 0.75rem;
  margin-inline: auto;
}

.cta-section > .container > p {
  color: var(--text-muted);
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.cta-alt {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.cta-alt a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

@media (hover: hover) {
  .cta-alt a:hover {
    color: var(--primary);
  }
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.75);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  padding-inline-start: 0;
  text-indent: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li {
  list-style: none;
  padding-inline-start: 0;
  text-indent: 0;
}

.footer-links a,
.footer-links button {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-family: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition), padding-left var(--transition);
}

@media (hover: hover) {
  .footer-links a:hover,
  .footer-links button:hover {
    color: var(--accent);
    padding-left: 0.25rem;
  }
}

.footer-logo img {
  height: 72px;
  width: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0.85;
}

.footer-socials a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-socials a[aria-label="Google Bedrijfsprofiel"] {
  background: white;
}

.footer-socials a[aria-label="Google Bedrijfsprofiel"] img {
  padding: 7px;
  object-fit: contain;
}

@media (hover: hover) {
  .footer-socials a:hover {
    transform: translateY(-2px);
    opacity: 1;
  }
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-contact a i {
  color: var(--accent);
  font-size: 1.05rem;
}

@media (hover: hover) {
  .footer-contact a:hover { color: var(--accent); }
}

.footer-bottom {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-agency {
  display: inline-flex;
}

.footer-agency img {
  height: 36px;
  width: auto;
  opacity: 0.7;
  transition: opacity var(--transition);
}

@media (hover: hover) {
  .footer-agency img:hover { opacity: 1; }
}

/* ── Contact Page ───────────────────────────────── */
.contact-section { padding-top: 0; }

.recaptcha-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.recaptcha-disclaimer a {
  color: var(--text-muted);
  text-decoration: underline;
}

.page-banner {
  padding-top: calc(var(--nav-height) + clamp(3rem, 8vw, 5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.page-banner h1 {
  margin-bottom: 0.75rem;
  margin-inline: auto;
}

.page-banner p {
  color: var(--text-muted);
  margin-inline: auto;
  max-width: 50ch;
  line-height: 1.7;
}

.legal {
  max-width: 70ch;
  margin-inline: auto;
}
.legal h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}
.legal h2:first-child {
  margin-top: 0;
}
.legal p,
.legal ul {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.legal ul {
  padding-inline-start: 1.5rem;
}
.legal a {
  color: var(--primary);
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px oklch(from var(--primary) l c h / 0.12);
}

.form-group textarea {
  min-height: 140px;
}

.form-error input,
.form-error textarea {
  border-color: #e53e3e;
}

#form-status {
  min-height: 1rem;
}

.form-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: oklch(from var(--primary) l c h / 0.08);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-notice i {
  font-size: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Checkmark animation ────────────────────────── */
.checkmark-svg {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto;
}

.checkmark-circle {
  stroke: #4bb543;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: checkmark-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: #4bb543;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkmark-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes checkmark-stroke {
  100% { stroke-dashoffset: 0; }
}

/* ── Back to Top ────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 100;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (hover: hover) {
  .back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
}

/* ── Reveal animations (GSAP from() handles all reveals) ─────────── */
/* No CSS hidden states — GSAP sets initial state inline via from() */
/* Content stays visible without JS (progressive enhancement) */

/* Hero entrance — hidden until GSAP fires */
.hero-content > * {
  opacity: 0;
  transform: translateY(20px);
}

.hero-visual {
  opacity: 0;
  transform: scale(1.04);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links,
  .nav-right { display: none; }

  .hamburger { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { align-items: center; }
  .hero-sub { margin-inline: auto; }
  .hero-buttons { justify-content: center; }

  .hero-visual {
    max-width: 420px;
    margin-inline: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image-stack {
    max-width: 360px;
    margin-inline: auto;
  }

  .about-content { align-items: center; }

  .about-quote {
    text-align: left;
    max-width: 50ch;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-item:nth-child(odd) {
    border-right: none;
    padding-right: 0;
  }

  .service-item:nth-child(even) {
    padding-left: 0;
  }

  .service-item:nth-child(even)::before {
    left: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}




/* ── Accessibility ──────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-content > *,
  .hero-visual {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}

@media (prefers-contrast: more) {
  :root {
    --text: #1a1008;
    --text-muted: #5a4e40;
    --border: #bfb5a6;
  }
}

/* ── Print ──────────────────────────────────────── */
@media print {
  .nav, .back-to-top, .mobile-overlay, .mobile-menu { display: none !important; }
  .section { padding-block: 2rem; }
  body { font-size: 12pt; }
}
