/* ============================================
   THE MATADOR – Premium Red & Black
   ============================================ */

:root {
  /* Red & Black palette */
  --color-black: #0a0a0a;
  --color-black-soft: #111111;
  --color-surface: #161616;
  --color-surface-elevated: #1c1c1c;
  --color-border: #2a2a2a;
  --color-red: #b91c1c;
  --color-red-bright: #dc2626;
  --color-red-dim: #7f1d1d;
  --color-red-muted: rgba(185, 28, 28, 0.15);
  --color-text: #fafafa;
  --color-text-muted: #a3a3a3;
  --color-text-dim: #737373;

  /* Typography – premium */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing – generous for premium feel */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;
  --space-5xl: 6rem;
  --section-padding-y: clamp(4rem, 10vw, 7rem);
  --section-padding-x: clamp(1.25rem, 4vw, 2.5rem);
  --container-max: 1140px;

  /* Layout */
  --header-height: 80px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-snappy: 0.25s;
  --duration-normal: 0.4s;
  --duration-slow: 0.6s;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-black);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

a {
  color: var(--color-red-bright);
  text-decoration: none;
  transition: color var(--duration-snappy), border-color var(--duration-snappy), background var(--duration-snappy);
}
a:hover { color: var(--color-text); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-red);
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.875rem;
  transition: top var(--duration-normal) var(--ease-out);
}
.skip-link:focus { top: var(--space-md); }

/* ============================================
   LAYOUT – Sections
   ============================================ */
.section {
  position: relative;
  padding: var(--section-padding-y) var(--section-padding-x);
}
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  margin-bottom: var(--space-md);
}
.section-title {
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}
.section-intro {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration-normal), background var(--duration-normal);
}
.header.scrolled { border-bottom-color: var(--color-border); }
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--color-text);
}
.logo img {
  height: 70px;
  width: auto;
  filter: brightness(1);
  transition: filter var(--duration-snappy);
}
.logo:hover img { filter: brightness(1.1); }
.nav-list {
  display: flex;
  gap: var(--space-2xl);
}
.nav-list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  position: relative;
}
.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-red-bright);
  transition: width var(--duration-normal) var(--ease-out);
}
.nav-list a:hover { color: var(--color-text); }
.nav-list a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-snappy);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(90deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; opacity: 0; }

@media (max-width: 768px) {
  .header-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .logo img {
    height: 30px;
  }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-black-soft);
    padding: var(--space-2xl);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--duration-normal) var(--ease-out), opacity var(--duration-normal), visibility var(--duration-normal);
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-list { flex-direction: column; gap: var(--space-lg); align-items: flex-start; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--section-padding-x) var(--space-3xl);
  overflow-x: hidden;
  overflow-y: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.35) 0%, rgba(8, 8, 8, 0.7) 45%, rgba(5, 5, 5, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  padding: 0 var(--space-md);
}
.hero-tagline {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-body);
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 0.2s forwards;
}
.hero-title {
  margin: 0 0 var(--space-xs);
  color: var(--color-text);
  font-size: clamp(3rem, 8.5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(28px);
  animation: heroReveal 0.9s var(--ease-out) 0.3s forwards;
}
.hero-subtitle {
  margin: 0 0 var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.85s var(--ease-out) 0.4s forwards;
}
.hero-text {
  margin: 0 0 var(--space-2xl);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.85s var(--ease-out) 0.5s forwards;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  padding: var(--space-md) var(--space-lg);
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.8s var(--ease-out) 0.65s forwards;
}
.hero-trust-stars {
  color: #fbbf24;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  letter-spacing: 0.08em;
}
.hero-trust-rating {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text);
}
.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-muted);
  opacity: 0.7;
}
.hero-trust-reviews,
.hero-trust-exp {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 500;
  color: var(--color-text-muted);
}
.hero-cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.8s var(--ease-out) 0.8s forwards;
}
.hero .btn-primary {
  padding: 1.125rem 2.5rem;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(220, 38, 38, 0.35), 0 4px 20px rgba(0, 0, 0, 0.25);
  /* Both animations: heroReveal makes button visible, heroBtnGlow adds pulse */
  animation: heroReveal 0.8s var(--ease-out) 0.8s forwards, heroBtnGlow 2.8s ease-in-out 1.6s infinite;
  transition: transform 0.25s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.25s;
}
.hero .btn-primary:hover {
  background: var(--color-red-bright);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 0 42px rgba(220, 38, 38, 0.55), 0 8px 32px rgba(185, 28, 28, 0.4);
  animation-play-state: paused;
}
.hero .btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.4), 0 2px 12px rgba(0, 0, 0, 0.3);
  transition-duration: 0.1s;
}
.hero .btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 0 32px rgba(220, 38, 38, 0.5);
}
@keyframes heroBtnGlow {
  0%, 100% { box-shadow: 0 0 28px rgba(220, 38, 38, 0.35), 0 4px 20px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 0 36px rgba(220, 38, 38, 0.5), 0 6px 24px rgba(0, 0, 0, 0.3); }
}
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: heroReveal 0.7s var(--ease-out) 1s forwards;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-red-bright), transparent);
  border-radius: 2px;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform var(--duration-snappy), box-shadow var(--duration-normal), background var(--duration-snappy), color var(--duration-snappy);
}
.btn-primary {
  background: var(--color-red);
  color: var(--color-text);
}
.btn-primary:hover {
  background: var(--color-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(185, 28, 28, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--color-red-bright);
  border: 2px solid var(--color-red);
}
.btn-secondary:hover {
  background: var(--color-red-muted);
  color: var(--color-text);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ============================================
   SECTION: EXPERIENCE / OVER ONS – WOW layout
   ============================================ */
.section-about {
  padding: 0;
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

/* Hero block – no image, centered text, larger section */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 200px;
  padding: var(--space-4xl) 0 var(--space-2xl);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}
.about-hero-content {
  text-align: center;
  padding: var(--space-3xl) var(--section-padding-x);
  max-width: 640px;
  margin: 0 auto;
}
.about-hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  margin-bottom: var(--space-md);
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .about-hero-title { white-space: normal; }
}
.about-hero-tagline {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
  font-weight: 400;
}
.about-hero-summary {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Content row: stacked images + text */
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) var(--section-padding-x) var(--section-padding-y);
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: var(--space-4xl);
  align-items: start;
}
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
  }
  .about-visuals { order: 1; }
  .about-content { order: 2; }
}
.about-visuals {
  position: relative;
  min-height: 380px;
}
.about-img-main {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}
.about-img-main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 62%;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--color-black);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.about-img-accent img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .about-img-accent {
    bottom: -20px;
    right: 20px;
    width: 56%;
  }
}
.about-content {
  min-width: 0;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.about-pillar h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  margin: 0 0 var(--space-sm);
}
.about-pillar p {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.about-intro {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 var(--space-lg);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.about-features li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: var(--space-md);
}
.about-features li:last-child { margin-bottom: 0; }
.about-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--color-red-dim);
  border-radius: 50%;
}
.about-features li strong {
  font-weight: 600;
  color: var(--color-text);
}

/* ============================================
   SECTION: DIENSTEN (Services) – Two-column price list
   ============================================ */
.section-services {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.services-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  line-height: 1.2;
}

.services-header .services-desc {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 auto var(--space-lg);
  max-width: 440px;
}

.services-header::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin: var(--space-lg) auto 0;
  background: var(--color-red-bright);
  border-radius: 2px;
  opacity: 0;
  transition: width 0.5s var(--ease-out) 0.2s, opacity 0.3s 0.2s;
}
.services-header.animate-in::after {
  width: 48px;
  opacity: 1;
}

.services-category {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  letter-spacing: 0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.services-col:first-child {
  padding-right: var(--space-3xl);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .services-col {
    margin-left: 0;
  }
  .services-col:first-child {
    padding-right: 0;
    border-right: none;
  }
}

.services-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-left: 50px;
}

.service-item {
  margin: 0;
}

.service-title {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.3;
}

.service-item .service-desc {
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SECTION: REVIEWS
   ============================================ */
.section-reviews {
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
}
.reviews-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}
.reviews-badges span {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}
/* Infinite sliding reviews carousel */
.reviews-slider-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: var(--space-2xl);
}
.reviews-track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: reviews-slide 75s linear infinite;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes reviews-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 auto;
  width: min(340px, 85vw);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: var(--space-xl);
  transition: border-color var(--duration-normal), transform var(--duration-normal);
}
.review-card:hover {
  border-color: var(--color-red-dim);
  transform: translateY(-3px);
}
.review-stars {
  color: var(--color-red-bright);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}
.review-card h4 {
  margin: 0 0 var(--space-xs);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
}
.review-card time {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  margin-bottom: var(--space-sm);
}
.review-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ============================================
   SECTION: PICTURES (Gallery)
   ============================================ */
.section-pictures {
  background: var(--color-black-soft);
  border-top: 1px solid var(--color-border);
}
.section-pictures .section-header {
  margin-bottom: var(--space-3xl);
}
.section-pictures .section-label {
  margin-bottom: var(--space-sm);
  letter-spacing: 0.22em;
}
.section-pictures .section-title {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-pictures .section-intro {
  margin-top: var(--space-lg);
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.05s);
}
.gallery-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  pointer-events: none;
  transition: border-color var(--duration-normal), box-shadow var(--duration-normal);
}
.gallery-item:hover::after {
  border-color: var(--color-red-dim);
  box-shadow: inset 0 0 0 1px var(--color-red-muted);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ============================================
   SECTION: CONTACT
   ============================================ */
.section-contact {
  background: var(--color-black);
  border-top: 1px solid var(--color-border);
}
.section-contact .section-inner {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--section-padding-x);
  padding-right: var(--section-padding-x);
}
.section-contact .section-header {
  margin-bottom: var(--space-2xl);
}
/* Contact: minimal, type-led (no card) */
.contact-minimal {
  margin: 0 0 var(--space-3xl);
  text-align: center;
}
.contact-minimal-line,
.contact-minimal-links {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}
.contact-minimal-line {
  margin-bottom: var(--space-sm);
}
.contact-minimal-line a,
.contact-minimal-links a {
  color: var(--color-text-muted);
  font-weight: 400;
  text-decoration: none;
  transition: color var(--duration-snappy);
}
.contact-minimal-line a:hover,
.contact-minimal-links a:hover {
  color: var(--color-text);
}
.contact-minimal-sep {
  margin: 0 var(--space-sm);
  color: var(--color-text-dim);
  font-weight: 300;
  user-select: none;
}
@media (max-width: 420px) {
  .contact-minimal-line {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }
  .contact-minimal-sep { display: none; }
}

/* Opening times + Contact form row */
.contact-form-hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-2xl);
  margin: 0 0 var(--space-3xl);
  align-items: start;
}
@media (max-width: 600px) {
  .contact-form-hours-row {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}
.contact-opening-block,
.contact-form-block {
  min-width: 0;
}
.contact-opening-block h3,
.contact-form-feedback {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.contact-form-block h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  margin: 0 0 var(--space-md);
}
.opening-hours {
  margin: 0;
  padding: 0;
  list-style: none;
}
.opening-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.opening-note {
  margin-top: var(--space-md);
  font-size: 0.8125rem;
  color: var(--color-text-dim);
  font-style: italic;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-row {
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color var(--duration-snappy), box-shadow var(--duration-snappy);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-dim);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-red-dim);
  box-shadow: 0 0 0 3px var(--color-red-muted);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .btn {
  align-self: flex-start;
  margin-top: var(--space-sm);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Google Map */
.contact-map-wrap {
  margin: 0 0 var(--space-3xl);
}
.contact-map-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red-bright);
  margin: 0 0 var(--space-md);
}
.contact-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact-map-link {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: color var(--duration-snappy), border-color var(--duration-snappy), background var(--duration-snappy), transform var(--duration-snappy);
}
.social-icon:hover {
  color: var(--color-red-bright);
  border-color: var(--color-red-dim);
  background: var(--color-red-muted);
  transform: translateY(-2px);
}
.social-icon svg {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 0 var(--section-padding-x);
  border-top: 1px solid var(--color-border);
  background: var(--color-black-soft);
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer-top {
  padding: var(--space-3xl) 0;
  text-align: center;
}
.footer-logo {
  display: inline-block;
  margin-bottom: var(--space-md);
}
.footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.9;
}
.footer-logo:hover img { opacity: 1; }
.footer-tagline {
  margin: 0 0 var(--space-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--color-red-bright); }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}
.footer-social .social-icon {
  width: 40px;
  height: 40px;
}
.footer-social .social-icon svg {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  padding: var(--space-lg) 0 var(--space-xl);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}
.footer-dev {
  margin: var(--space-xs) 0 0;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  opacity: 0.85;
}
.footer-dev a {
  color: var(--color-text-muted);
}
.footer-dev a:hover {
  color: var(--color-red-bright);
}

/* ============================================
   MOBILE – Alignment, sizing, readability
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: clamp(2.5rem, 8vw, 4rem) var(--section-padding-x);
  }
  .section-header {
    margin-bottom: var(--space-3xl);
    text-align: center;
  }
  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin-bottom: var(--space-md);
  }
  .section-intro {
    font-size: 1rem;
    line-height: 1.65;
    padding: 0 var(--space-sm);
  }
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  /* Hero */
  .hero {
    padding: calc(var(--header-height) + var(--space-xl)) 1.25rem var(--space-2xl);
  }
  .hero-content {
    max-width: 100%;
    padding: 0 var(--space-sm);
  }
  .hero-tagline {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
  }
  .hero-title {
    font-size: clamp(2.75rem, 12vw, 3.75rem);
  }
  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
  }
  .hero-text {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
    line-height: 1.65;
  }
  .hero-trust {
    margin-bottom: var(--space-xl);
    padding: var(--space-sm) var(--space-md);
    gap: var(--space-xs);
  }
  .hero-trust-stars,
  .hero-trust-rating {
    font-size: 1rem;
  }
  .hero-trust-reviews,
  .hero-trust-exp {
    font-size: 0.875rem;
  }
  .hero .btn-primary {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  /* About */
  .about-hero {
    padding: var(--space-3xl) var(--section-padding-x) var(--space-xl);
  }
  .about-hero-content {
    padding: 0 var(--space-sm);
  }
  .about-hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }
  .about-hero-summary {
    max-width: 100%;
    font-size: 0.9375rem;
  }
  .about-inner {
    padding: var(--space-lg) var(--section-padding-x) var(--section-padding-y);
    gap: var(--space-2xl);
  }
  .about-pillar h3 {
    font-size: 0.75rem;
  }
  .about-pillar p,
  .about-intro {
    font-size: 1rem;
  }
  .about-features {
    font-size: 0.9375rem;
  }

  /* Services */
  .section-services {
    padding: var(--space-3xl) var(--section-padding-x);
  }
  .services-header {
    margin-bottom: var(--space-2xl);
  }
  .services-heading {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
    margin-bottom: var(--space-sm);
  }
  .services-header .services-desc {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: var(--space-md);
  }
  .services-col {
    gap: var(--space-lg);
  }
  .service-title {
    font-size: 1rem;
  }
  .service-item .service-desc {
    font-size: 0.9375rem;
  }

  /* Reviews */
  .section-reviews {
    overflow-x: hidden;
  }
  .section-reviews .section-inner {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }
  .reviews-badges {
    margin-bottom: var(--space-2xl);
    gap: var(--space-sm);
  }
  .reviews-badges span {
    font-size: 0.75rem;
    padding: var(--space-sm) var(--space-md);
  }
  .reviews-slider-wrap {
    margin-top: var(--space-xl);
  }
  .review-card {
    width: min(300px, 82vw);
    padding: var(--space-lg);
  }
  .review-card h4 {
    font-size: 0.9375rem;
  }
  .review-card p {
    font-size: 0.875rem;
    line-height: 1.55;
  }

  /* Gallery */
  .section-pictures .section-inner {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }
  .gallery-grid {
    gap: var(--space-lg);
  }

  /* Contact */
  .section-contact .section-inner {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }
  .contact-minimal {
    margin-bottom: var(--space-2xl);
  }
  .contact-minimal-line,
  .contact-minimal-links {
    font-size: 0.9375rem;
  }
  .contact-form-hours-row {
    gap: var(--space-xl);
  }
  .contact-opening-block h3,
  .contact-form-block h3 {
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
  }
  .contact-form label,
  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 0.875rem 1rem;
    min-height: 48px;
  }
  .contact-form .btn {
    width: 100%;
    align-self: stretch;
    padding: 1rem 1.5rem;
    min-height: 48px;
  }
  .contact-map-wrap {
    margin-bottom: var(--space-2xl);
  }

  /* Footer */
  .footer {
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
  }
  .footer-top {
    padding: var(--space-2xl) 0;
  }
  .footer-tagline {
    font-size: 0.75rem;
    margin-bottom: var(--space-lg);
  }
  .footer-nav {
    gap: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
  }
  .footer-nav a {
    font-size: 0.8125rem;
  }
  .footer-bottom {
    padding: var(--space-md) 0 var(--space-lg);
  }
  .footer-copy,
  .footer-dev {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-subtitle {
    font-size: 1.0625rem;
    letter-spacing: 0.08em;
  }
  .services-heading {
    font-size: 1.75rem;
  }
  .review-card {
    width: min(280px, 88vw);
    padding: var(--space-xl);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero image: fade only (no slide) */
.section-about .about-hero[data-animate] {
  transform: none;
  transition: opacity 1s var(--ease-out);
}

/* Stagger index for services */
/* Services: staggered item reveal + red line draw */
.section-services .service-item[data-animate] {
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.07s);
}
.section-services .service-item[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}
.section-services .service-item[data-animate] {
  opacity: 0;
  transform: translateY(20px);
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1; transform: none; }
  .services-col, .service-item, .review-card, .gallery-item { transition: none; }
  .reviews-track { animation: none; }
  /* Force hero content visible when animations are disabled */
  .hero-content .hero-tagline,
  .hero-content .hero-title,
  .hero-content .hero-subtitle,
  .hero-content .hero-text,
  .hero-content .hero-trust,
  .hero-content .hero-cta,
  .hero .btn-primary {
    opacity: 1 !important;
    transform: none !important;
  }
}
