﻿
:root {
  color-scheme: light;

  /* Brand Colors */
  --cream:        #efebe5;
  --cream-light:  #f5f2ed;
  --cream-dark:   #e2ded7;
  --brown-dark:   #623e2a;
  --brown-medium: #a69890;
  --brown-light:  #b8aea6;
  --brown-text:   #4a2e1c;
  --indigo:       #1612d3;
  --indigo-hover: #110fb0;
  --indigo-light: #d8d6f5;
  --white:        #ffffff;
  --black:        #1a1a1a;
  --overlay:      rgba(0, 0, 0, 0.35);

  /* Typography */
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'DM Sans', 'Segoe UI', Tahoma, sans-serif;

  /* Spacing */
  --section-pad:  100px;
  --container:    1240px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:   0.3s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--cream-light);
  color: var(--brown-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

::selection {
  background: var(--indigo);
  color: var(--white);
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-medium);
  margin-bottom: 16px;
}

.section-label--brown {
  color: var(--brown-light);
}

.section-label--white {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  color: var(--brown-dark);
}

.section-title--light {
  color: var(--cream);
}

/* ---------- Button Styles ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn--primary:hover {
  background-color: var(--brown-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 62, 42, 0.3);
}

.btn--outline {
  border: 2px solid var(--brown-dark);
  color: var(--brown-dark);
}

.btn--outline:hover {
  background-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-indigo {
  border: 2px solid var(--indigo);
  color: var(--indigo);
}

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

.btn--white {
  background-color: var(--white);
  color: var(--brown-dark);
}

.btn--white:hover {
  background-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn--accent {
  background-color: var(--indigo);
  color: var(--white);
}

.btn--accent:hover {
  background-color: var(--indigo-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 18, 211, 0.3);
}

.btn--hero-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 18px 44px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  position: relative;
  overflow: hidden;
}

.btn--hero-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.btn--hero-light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Prevent reveal animations from causing horizontal overflow */
section,
.about-full,
.intro-teaser,
.services-preview,
.cta-banner,
.contact-page-section,
.services-section,
.services-individual,
.mission-section {
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 2px 0;
  transition: all 0.4s var(--ease);
  background: rgba(239, 235, 229, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(239, 235, 229, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brown-text);
}

.nav-logo__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Hero-specific nav — transparent on cream background */
.navbar--hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar--hero .nav-logo__name {
  color: var(--brown-text);
}

.navbar--hero .nav-logo__sub {
  color: var(--indigo);
}

.navbar--hero .nav-links a {
  color: var(--brown-text);
}

.navbar--hero .nav-links a:hover,
.navbar--hero .nav-links a.active {
  color: var(--brown-dark);
}

.navbar--hero .nav-lang__btn {
  color: var(--brown-medium);
}

.navbar--hero .nav-lang__btn.active {
  background: var(--indigo);
  color: var(--white);
}

.navbar--hero .nav-hamburger span {
  background: var(--brown-text);
}

/* Scrolled state — frosted glass */
.navbar--hero.scrolled {
  background: rgba(239, 235, 229, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-text);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--indigo);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-lang__btn {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 50%;
  transition: all var(--transition);
  color: var(--brown-medium);
}

.nav-lang__btn.active {
  background: var(--indigo);
  color: var(--white);
}

.nav-lang__btn:hover:not(.active) {
  color: var(--indigo);
}

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
  border-radius: 6px;
}

.nav-hamburger span {
  width: 28px;
  height: 2px;
  background: var(--brown-text);
  transition: all var(--transition);
}

.navbar--hero .nav-hamburger span {
  background: var(--brown-text);
}

.navbar--hero.scrolled .nav-hamburger span {
  background: var(--brown-text);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION (Home) — Split Layout
   ============================================ */
.hero--split {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #c4b8ab 0%,
    #d4cac0 25%,
    #e0d8cf 50%,
    #ece5dd 75%,
    var(--cream) 100%
  );
}

.hero__text-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero__text-inner {
  max-width: 520px;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-medium);
  margin-bottom: 20px;
}

.hero--split .hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.hero--split .hero__tagline span {
  display: block;
}

.hero--split .hero__description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brown-text);
  margin-bottom: 40px;
  max-width: 460px;
  opacity: 0.8;
}

/* Image side */
.hero__image-side {
  position: relative;
  overflow: hidden;
  padding: 40px 40px 40px 0;
  display: flex;
  align-items: center;
}

.hero__image-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  width: 100%;
  height: 80vh;
  max-height: 700px;
}

/* Inner pages (over-mij, contact) — smaller image grid */
.services-hero .hero__image-grid {
  height: 55vh;
  max-height: 480px;
}

.hero__img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero__img:hover img {
  transform: scale(1.05);
}

.hero__img--main {
  grid-row: 1 / 3;
  grid-column: 1;
}

.hero__img--top {
  grid-row: 1;
  grid-column: 2;
}

.hero__img--bottom {
  grid-row: 2;
  grid-column: 2;
}

/* Scroll indicator override for split hero */
.hero--split .hero__scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: var(--brown-medium);
  font-size: 1.5rem;
  opacity: 0.6;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   SERVICES HERO — Split Layout with Collage
   ============================================ */
.services-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #c4b8ab 0%,
    #d4cac0 25%,
    #e0d8cf 50%,
    #ece5dd 75%,
    var(--cream) 100%
  );
  padding: 120px 0 60px;
}

.services-hero__container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.services-hero__text {
  position: relative;
  z-index: 2;
}

.services-hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

.services-hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--brown-text);
  margin-bottom: 36px;
  max-width: 440px;
  opacity: 0.8;
}

/* USP checkmarks under the button */
.services-hero__usps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.services-hero__usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--brown-text);
}

.services-hero__usp svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Image collage — 3 images with different shapes */
.services-hero__images {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1.2fr 1fr;
  gap: 16px;
  height: 55vh;
  max-height: 480px;
}

.services-hero__img {
  overflow: hidden;
  position: relative;
}

.services-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.services-hero__img:hover img {
  transform: scale(1.05);
}

/* Tall — spans both rows */
.services-hero__img--tall {
  grid-row: 1 / 3;
  grid-column: 1;
  border-radius: 200px 200px 24px 24px;
}

/* Landscape — top right */
.services-hero__img--landscape {
  grid-row: 1;
  grid-column: 2;
  border-radius: 24px;
}

/* Small — bottom right */
.services-hero__img--small {
  grid-row: 2;
  grid-column: 2;
  border-radius: 24px;
}

/* Shape variants — Over Mij */
.services-hero__img--tall-b {
  grid-row: 1 / 3;
  grid-column: 1;
  border-radius: 24px 24px 200px 200px;
}

.services-hero__img--landscape-b {
  grid-row: 1;
  grid-column: 2;
  border-radius: 50px;
}

.services-hero__img--small-b {
  grid-row: 2;
  grid-column: 2;
  border-radius: 100px;
}

/* Shape variants — Contact */
.services-hero__img--tall-c {
  grid-row: 1 / 3;
  grid-column: 1;
  border-radius: 40px;
}

.services-hero__img--landscape-c {
  grid-row: 1;
  grid-column: 2;
  border-radius: 100px 24px 24px 100px;
}

.services-hero__img--small-c {
  grid-row: 2;
  grid-column: 2;
  border-radius: 50%;
}

/* Wave connector for services hero */
.wave-divider--services {
  background: linear-gradient(135deg, #ece5dd 0%, var(--cream) 100%);
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  padding: 240px 0 140px; /* Taller hero sections */
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--brown-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Page Hero — Image variant */
.page-hero--image {
  padding: 240px 0 160px; /* Taller */
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 65vh;
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: pageHeroZoom 20s ease-in-out forwards;
}

@keyframes pageHeroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.page-hero--image .page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.page-hero--image .container {
  position: relative;
  z-index: 1;
}

.page-hero--image .page-hero__title {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-hero--image .page-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero--image .section-label {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 12px 0;
  background: var(--cream-light);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  color: var(--cream-dark);
  white-space: nowrap;
  padding: 0 16px;
  user-select: none;
  letter-spacing: 0.08em;
  opacity: 0.7;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT PREVIEW (Home)
   ============================================ */
.about-preview {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-preview__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--indigo);
  border-radius: 50%;
  opacity: 0.3;
}

.about-preview__badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--indigo);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(22, 18, 211, 0.3);
  z-index: 2;
}

.about-preview__badge-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.about-preview__badge-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-preview__text h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--brown-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-preview__text p {
  color: var(--brown-medium);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-preview__quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 0;
  padding: 20px 0;
}

.about-preview__quote-bar {
  width: 3px;
  min-height: 60px;
  background: var(--indigo);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-preview__quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--indigo);
  line-height: 1.5;
}

/* ============================================
   WHY SECTION
   ============================================ */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.why-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-section__content h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 40px;
  line-height: 1.15;
}

.why-section__checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-section__check {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.why-section__check:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-section__check-icon {
  width: 40px;
  height: 40px;
  background: rgba(180, 145, 110, 0.25);
  border: 1.5px solid rgba(22, 18, 211, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-section__check-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--indigo-light);
}

.why-section__check span {
  font-weight: 500;
  font-size: 1.05rem;
}

.why-section__note {
  font-style: italic;
  color: var(--brown-medium);
  margin-top: 24px;
  font-size: 0.95rem;
}

.why-section__visual {
  position: relative;
}

.why-section__image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.why-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section__quote-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--indigo-light);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 320px;
  border: 1px solid rgba(22, 18, 211, 0.15);
}

.why-section__quote-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--indigo);
  line-height: 1.4;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--brown-medium);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ============================================
   WAVE DIVIDERS
   ============================================ */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  /* Pull into adjacent sections to prevent subpixel gaps */
  margin-top: -1px;
  margin-bottom: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 45px;
  display: block;
  position: relative;
}

@media (min-width: 768px) {
  .wave-divider svg {
    height: 70px;
  }
}

/* Hero-marquee wave overlay — wave over hero with text on wave */
.wave-divider--hero-marquee {
  background: transparent;
  margin-top: -50px;
  margin-bottom: -2px;
  z-index: 2;
  position: relative;
  overflow: visible;
}

.wave-divider--hero-marquee svg {
  height: 45px;
}

.wave-divider--hero-marquee .marquee--on-wave {
  background: #f5f2ed;
  padding: 8px 0;
  margin: 0;
  overflow: hidden;
  line-height: normal;
  font-size: initial;
}

.wave-divider--hero-marquee .marquee--on-wave .marquee__text {
  color: #c4bdb5;
  opacity: 0.6;
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
}

@media (min-width: 768px) {
  .wave-divider--hero-marquee {
    margin-top: -65px;
  }
  .wave-divider--hero-marquee svg {
    height: 50px;
  }
}

.wave-divider--brown-top svg {
  fill: var(--brown-dark);
}

.wave-divider--cream-top svg {
  fill: var(--cream-light);
}

/* Overlay wave — sits over hero image with no brown band */
.wave-divider--overlay {
  background: transparent;
  margin-top: -80px;
  margin-bottom: -2px;
  z-index: 2;
  position: relative;
}

.wave-divider--overlay svg {
  height: 80px;
}

@media (min-width: 768px) {
  .wave-divider--overlay {
    margin-top: -110px;
  }
  .wave-divider--overlay svg {
    height: 110px;
  }
}

/* Casa Connect text on wave */
.wave-divider__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: rgba(196, 189, 181, 0.35);
  white-space: nowrap;
  letter-spacing: 0.06em;
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* ============================================
   FULL-WIDTH IMAGE STRIP
   ============================================ */
.image-strip {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

@media (min-width: 768px) {
  .image-strip {
    height: 340px;
  }
}

/* ============================================
   IMAGE BREAK — Contained photo gallery
   ============================================ */
.image-break {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.image-break .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.image-break__gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  height: 400px;
}

.image-break__gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.image-break__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.image-break__gallery-item:hover img {
  transform: scale(1.04);
}

/* Legacy full-width fallback */
.image-break__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.image-break:hover .image-break__bg {
  transform: scale(1.0);
}

.image-break__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(98, 62, 42, 0.15) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(98, 62, 42, 0.2) 100%
  );
}

@media (max-width: 768px) {
  .image-break__gallery {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }
  .image-break__gallery-item {
    height: 220px;
  }
  .image-break__bg {
    background-attachment: scroll;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--brown-dark);
  color: var(--cream);
}

.services-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.services-section__header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--cream);
}

.packages-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.package-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.package-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(22, 18, 211, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--indigo-light);
}

.package-card__content {
  flex: 1;
}

.package-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.package-card__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.package-card__arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.2rem;
  transition: all var(--transition);
}

.package-card:hover .package-card__arrow {
  color: var(--white);
  transform: translateX(4px);
}

/* Individual Services */
.services-individual {
  padding: var(--section-pad) 0 60px;
  background: var(--brown-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  transition: all var(--transition);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(22, 18, 211, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--indigo-light);
}

.service-card__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Services page - light variant */
.services-section--light {
  background: var(--cream-light);
  color: var(--brown-text);
  padding: 100px 0 60px;
}

.services-section--light .services-section__header h2 {
  color: var(--brown-dark);
}

.services-section--light .packages-label {
  color: var(--brown-medium);
}

.services-section--light .package-card {
  background: var(--white);
  border: 1px solid rgba(196, 189, 181, 0.3);
  border-left: 4px solid var(--indigo);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.services-section--light .package-card:hover {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(22, 18, 211, 0.08);
  border-left-color: var(--indigo);
}

.services-section--light .package-card__icon {
  background: rgba(22, 18, 211, 0.08);
}

.services-section--light .package-card__icon svg {
  fill: var(--indigo);
}

.services-section--light .package-card__title {
  color: var(--brown-dark);
}

.services-section--light .package-card__desc {
  color: var(--brown-medium);
}

.services-section--light .package-card__arrow {
  color: var(--indigo);
  opacity: 0.3;
}

.services-section--light .package-card:hover .package-card__arrow {
  color: var(--indigo);
  opacity: 1;
}

/* ============================================
   ABOUT PAGE - Full Section
   ============================================ */
.about-full {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.about-full__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-full__image-wrap {
  position: relative;
  position: sticky;
  top: 120px;
}

.about-full__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-full__image:hover img {
  transform: scale(1.03);
}

.about-full__decoration {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border: 3px solid var(--indigo);
  border-radius: 50%;
  opacity: 0.25;
  z-index: 1;
}

.about-full__content h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--brown-dark);
  margin-bottom: 28px;
  line-height: 1.1;
}

.about-full__content p {
  color: var(--brown-medium);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-full__content p:last-of-type {
  margin-bottom: 32px;
}

.about-full__badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--indigo);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(22, 18, 211, 0.25);
}

.about-full__badge-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
}

.about-full__badge-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* About - Values Section */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(22, 18, 211, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.value-card__text {
  color: var(--brown-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.contact-section__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-section__info h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-section__info > p {
  color: var(--brown-medium);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: all var(--transition);
}

.contact-link:hover {
  padding-left: 8px;
}

.contact-link__icon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--indigo);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--indigo);
}

.contact-link__text {
  flex: 1;
  font-weight: 500;
  color: var(--brown-text);
  word-break: break-all;
  min-width: 0;
}

.contact-link__external {
  color: var(--brown-light);
  font-size: 1rem;
  transition: all var(--transition);
}

.contact-link:hover .contact-link__external {
  color: var(--indigo);
  transform: translate(2px, -2px);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-medium);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 1rem;
  color: var(--brown-text);
  transition: border-color var(--transition);
  background: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--indigo);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--indigo);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--indigo-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 18, 211, 0.3);
}

.form-submit svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--cream);
  padding: 48px 0;
  color: var(--brown-text);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__logo .nav-logo__name {
  color: var(--brown-dark);
  font-size: 1.6rem;
}

.footer__logo .nav-logo__sub {
  color: var(--indigo);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown-medium);
  font-size: 0.9rem;
  transition: color var(--transition);
  word-break: break-all;
}

.footer__link:hover {
  color: var(--brown-dark);
}

.footer__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.footer__copy {
  font-size: 0.85rem;
  color: var(--brown-light);
  text-align: right;
}

/* ============================================
   HOME-SPECIFIC: Intro Teaser
   ============================================ */
.intro-teaser {
  padding: 80px 0 40px;
  background: var(--cream-light);
  text-align: center;
}

.intro-teaser h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
}

.intro-teaser p {
  color: var(--brown-medium);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* Intro Teaser - Two-column layout */
.intro-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.intro-teaser__grid .intro-teaser__text {
  text-align: left;
}

.intro-teaser__grid .intro-teaser__text p {
  margin-left: 0;
}

.intro-teaser__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
}

.intro-teaser__image::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--indigo);
  border-radius: 20px;
  opacity: 0.15;
  z-index: -1;
}

.intro-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.intro-teaser__image:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .intro-teaser__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .intro-teaser__grid .intro-teaser__text {
    text-align: center;
  }

  .intro-teaser__image {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ============================================
   DIENSTEN PAGE - Services Detail
   ============================================ */
.services-detail-section {
  padding: 60px 0 var(--section-pad);
  background: var(--cream-light);
}

.services-detail-section .packages-label {
  color: var(--brown-medium);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition);
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.detail-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(22, 18, 211, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--indigo);
}

.detail-card__content {
  flex: 1;
}

.detail-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.detail-card__desc {
  font-size: 0.95rem;
  color: var(--brown-medium);
  line-height: 1.6;
}

.detail-card__arrow {
  color: var(--brown-light);
  font-size: 1.2rem;
  margin-top: 4px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.detail-card:hover .detail-card__arrow {
  color: var(--indigo);
  transform: translateX(4px);
}

/* Losse diensten light */
.individual-services-light {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.individual-services-light .service-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.individual-services-light .service-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.individual-services-light .service-card__icon {
  background: rgba(22, 18, 211, 0.08);
}

.individual-services-light .service-card__icon svg {
  fill: var(--indigo);
}

.individual-services-light .service-card__title {
  color: var(--brown-dark);
}

.individual-services-light .service-card__desc {
  color: var(--brown-medium);
}

/* Steps grid (How It Works) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ============================================
   DIENSTEN PAGE - CTA
   ============================================ */
.services-cta {
  padding: 80px 0;
  background: var(--brown-dark);
  text-align: center;
  color: var(--white);
}

.services-cta h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.services-cta p {
  opacity: 0.85;
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ============================================
   CONTACT PAGE - Full Width
   ============================================ */
.contact-page-section {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
}

.contact-page-section__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  :root {
    --section-pad: 80px;
  }

  .about-preview__grid,
  .why-section__grid,
  .contact-section__grid,
  .about-full__grid,
  .mission-section__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-full__image-wrap {
    position: relative;
    top: 0;
  }

  .packages-grid,
  .services-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .why-section__quote-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 24px;
  }

  .hero--split {
    grid-template-columns: 1fr 1fr;
  }

  .hero__image-grid {
    height: 60vh;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-right {
    gap: 16px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s var(--ease);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--brown-text) !important;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-lang {
    display: flex;
  }

  .hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__text-side {
    padding: 120px 24px 48px;
    text-align: center;
  }

  .hero__text-inner {
    max-width: 100%;
  }

  .hero--split .hero__tagline {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero--split .hero__description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero__image-side {
    padding: 0 20px 20px;
  }

  .hero__image-grid {
    height: 50vh;
    max-height: 400px;
  }

  .hero__img {
    border-radius: 12px;
  }

  /* Services hero responsive */
  .services-hero {
    min-height: auto;
    padding-top: 80px;
  }

  .services-hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-hero__text {
    text-align: center;
    padding-top: 40px;
  }

  .services-hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-hero__usps {
    align-items: center;
  }

  .services-hero__images {
    height: 50vh;
    max-height: 380px;
  }

  .services-hero__img--tall {
    border-radius: 16px;
  }

  .services-hero__img--small {
    border-radius: 16px;
  }

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

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

  .footer .container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer__copy {
    text-align: center;
  }

  .contact-form-card {
    padding: 32px 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  /* Prevent inline-styled grids from overflowing */
  .why-section__grid {
    grid-template-columns: 1fr !important;
  }

  .about-preview__badge {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 16px;
  }

  .about-full__decoration {
    left: 0;
    top: -10px;
  }

  /* Prevent contact bg image from causing overflow */
  .contact-page-section__bg {
    width: 100%;
    opacity: 0.08;
  }

  .contact-link__text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero--split {
    grid-template-columns: 1fr;
  }

  .hero__text-side {
    padding: 110px 20px 32px;
  }

  .hero--split .hero__tagline {
    font-size: 2rem;
  }

  .hero--split .hero__description {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .hero__image-grid {
    height: 40vh;
    max-height: 320px;
    gap: 10px;
  }

  .hero__img {
    border-radius: 10px;
  }

  .marquee__text {
    font-size: 0.7rem;
  }

  .page-hero {
    padding: 120px 0 40px;
  }

  .page-hero--image {
    padding: 150px 0 60px;
  }

  .page-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cta-banner h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .steps-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.form-success__text {
  color: var(--brown-medium);
}

/* ============================================
   ADDITIONAL HOME SECTIONS
   ============================================ */
.services-preview {
  padding: 80px 0;
  background: var(--cream);
  text-align: center;
}

.services-preview h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 40px;
}

.services-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.preview-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.preview-card__icon {
  width: 56px;
  height: 56px;
  background: var(--indigo-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.preview-card:hover .preview-card__icon {
  transform: scale(1.1);
  background: var(--indigo);
}

.preview-card:hover .preview-card__icon svg {
  stroke: var(--white);
}

.preview-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.preview-card__text {
  font-size: 0.9rem;
  color: var(--brown-medium);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-preview__cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT PAGE - Mission Section
   ============================================ */
.mission-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  text-align: center;
}

.mission-section__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.mission-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.mission-section__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mission-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.mission-section__image:hover img {
  transform: scale(1.03);
}

.mission-section__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--indigo);
  line-height: 1.5;
  margin: 32px 0;
  padding: 32px;
  background: var(--indigo-light);
  border-radius: 16px;
  border-left: 4px solid var(--indigo);
}

/* Inline-styled content constraints for mobile */
@media (max-width: 768px) {
  [style*="display: inline-block"] {
    max-width: 100%;
    box-sizing: border-box;
  }

  [style*="display: flex"][style*="gap"] {
    flex-wrap: wrap;
  }

  .mission-section__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mission-section__image {
    aspect-ratio: 4/3;
    max-height: 320px;
  }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease);
}

.page-loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.page-loader__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 2rem;
  color: var(--indigo);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   WHY SECTION — Image Card with Quote
   ============================================ */
.why-section__image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-section__image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-section__image-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.0) 50%
  );
}

.why-section__image-quote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 32px 28px;
}

.why-section__image-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--cream);
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .why-section__image-card {
    max-height: 400px;
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .why-section__image-card {
    max-height: 350px;
    max-width: 300px;
  }
}

/* ============================================
   HERO SLIDER — Clickable Navigation
   ============================================ */
.hero__slider-item {
  cursor: pointer;
  user-select: none;
  transition: color var(--transition), transform 0.2s ease;
}

.hero__slider-item:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero__slider-item:active {
  transform: scale(0.97);
}

/* ============================================
   HERO — Progress bar on active slide
   ============================================ */
.hero__slider-item.active::before {
  width: 60px;
  background: var(--cream);
  animation: sliderProgress 4.5s linear;
}

@keyframes sliderProgress {
  from { width: 0; }
  to { width: 60px; }
}

/* ============================================
   IMAGE GALLERY — Varied Layouts
   ============================================ */

/* Single centered image */
.image-break--single .image-break__gallery {
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
  height: 420px;
}

/* Three-column mosaic */
.image-break--mosaic .image-break__gallery {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  height: auto;
}

.image-break--mosaic .image-break__gallery-item:first-child {
  grid-row: 1 / 3;
}

/* Offset two-column (one taller) */
.image-break--offset .image-break__gallery {
  grid-template-columns: 0.6fr 1fr;
  height: 450px;
}

.image-break--offset .image-break__gallery-item:first-child {
  margin-top: 40px;
  height: calc(100% - 40px);
}

@media (max-width: 768px) {
  .image-break--mosaic .image-break__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .image-break--mosaic .image-break__gallery-item:first-child {
    grid-row: auto;
  }
  .image-break--mosaic .image-break__gallery-item {
    height: 200px;
  }
  .image-break--offset .image-break__gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
  .image-break--offset .image-break__gallery-item:first-child {
    margin-top: 0;
    height: 220px;
  }
  .image-break--single .image-break__gallery {
    height: 280px;
  }
}

/* ============================================
   INSTAGRAM FEED SECTION
   ============================================ */
.insta-section {
  padding: 80px 0 40px;
  text-align: center;
}

.insta-section h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.insta-section > .container > p {
  color: var(--brown-medium);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.insta-grid__item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insta-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 211, 0.0);
  transition: background 0.3s ease;
}

.insta-grid__item:hover img {
  transform: scale(1.06);
}

.insta-grid__item:hover::after {
  background: rgba(22, 18, 211, 0.12);
}

.insta-grid__item .insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  width: 32px;
  height: 32px;
  fill: var(--white);
  opacity: 0;
  transition: all 0.3s ease;
}

.insta-grid__item:hover .insta-icon {
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.9;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--indigo);
  transition: all var(--transition);
}

.insta-link:hover {
  color: var(--indigo-hover);
  gap: 12px;
}

.insta-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   NAV LOGO — Image Version
   ============================================ */
.nav-logo__img {
  height: 75px;
  width: auto;
  display: block;
  transition: all var(--transition);
}

.navbar.scrolled .nav-logo__img {
  height: 75px;
}

/* Logo on hero pages — bright/white when transparent, normal when scrolled */
.navbar--hero .nav-logo__img {
  filter: brightness(10) saturate(0);
}

.navbar--hero.scrolled .nav-logo__img {
  filter: none;
}

/* Index page (light hero) — logo stays normal/dark, lighter header bar */
.navbar--hero-light {
  background: rgba(239, 235, 229, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar--hero-light .nav-logo__img {
  filter: none;
}

.navbar--hero-light.scrolled .nav-logo__img {
  filter: none;
}

/* ============================================
   SERVICES PAGE V2 — Complete Redesign
   ============================================ */

/* --- Packages Section --- */
.sv2-packages {
  padding: 0 0 80px;
  background: var(--cream-light);
  overflow-x: hidden;
}

.sv2-packages__header {
  text-align: center;
  margin-bottom: 60px;
}

.sv2-packages__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--brown-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.sv2-packages__subtitle {
  color: var(--brown-medium);
  font-size: 1.1rem;
}

/* Featured Package Card */
.sv2-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border: 1px solid rgba(196, 189, 181, 0.2);
}

.sv2-featured__content {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sv2-featured__badge {
  display: inline-block;
  width: fit-content;
  background: var(--indigo);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sv2-featured__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sv2-featured__desc {
  color: var(--brown-medium);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.sv2-featured__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.sv2-featured__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-text);
}

.sv2-featured__list li svg {
  color: var(--indigo);
  flex-shrink: 0;
}

.sv2-featured__visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.sv2-featured__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.sv2-featured:hover .sv2-featured__visual img {
  transform: scale(1.05);
}

/* Package Cards Grid */
.sv2-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sv2-card {
  background: var(--white);
  border: 1px solid rgba(196, 189, 181, 0.25);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.sv2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: rgba(22, 18, 211, 0.15);
}

.sv2-card__number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 4rem;
  color: var(--indigo);
  opacity: 0.06;
  position: absolute;
  top: -8px;
  right: 16px;
  line-height: 1;
}

.sv2-card__icon {
  width: 56px;
  height: 56px;
  background: var(--indigo-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.sv2-card:hover .sv2-card__icon {
  background: var(--indigo);
  transform: scale(1.08);
}

.sv2-card:hover .sv2-card__icon svg {
  stroke: var(--white);
}

.sv2-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.sv2-card__desc {
  color: var(--brown-medium);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sv2-card__link {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--indigo);
  transition: all var(--transition);
}

.sv2-card__link:hover {
  letter-spacing: 0.1em;
}

/* Accent card variant */
.sv2-card--accent {
  background: var(--brown-dark);
  border-color: transparent;
}

.sv2-card--accent .sv2-card__number {
  color: var(--cream);
  opacity: 0.08;
}

.sv2-card--accent .sv2-card__icon {
  background: rgba(255, 255, 255, 0.12);
}

.sv2-card--accent .sv2-card__icon svg {
  stroke: var(--cream);
}

.sv2-card--accent:hover .sv2-card__icon {
  background: rgba(255, 255, 255, 0.2);
}

.sv2-card--accent .sv2-card__title {
  color: var(--cream);
}

.sv2-card--accent .sv2-card__desc {
  color: rgba(237, 228, 216, 0.65);
}

.sv2-card--accent .sv2-card__link {
  color: var(--indigo-light);
}

.sv2-card--accent:hover {
  box-shadow: 0 20px 50px rgba(98, 62, 42, 0.3);
  border-color: transparent;
}

/* --- Individual Services --- */
.sv2-individual {
  padding: 60px 0 100px;
  background: var(--cream);
  overflow-x: hidden;
}

.sv2-individual__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.sv2-individual__image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.sv2-individual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.sv2-individual__image:hover img {
  transform: scale(1.04);
}

.sv2-individual__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--brown-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.sv2-individual__subtitle {
  color: var(--brown-medium);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.sv2-individual__subtitle strong {
  color: var(--brown-dark);
  font-weight: 600;
}

.sv2-individual__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sv2-ind-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(196, 189, 181, 0.2);
  transition: all var(--transition);
}

.sv2-ind-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(22, 18, 211, 0.15);
}

.sv2-ind-item__icon {
  width: 48px;
  height: 48px;
  background: var(--indigo-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv2-ind-item__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.sv2-ind-item__desc {
  color: var(--brown-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- How It Works Steps --- */
.sv2-steps {
  padding: 60px 0 100px;
  background: var(--brown-dark);
  overflow-x: hidden;
}

.sv2-steps__header {
  text-align: center;
  margin-bottom: 64px;
}

.sv2-steps__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
}

.sv2-steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.sv2-step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
}

.sv2-step__number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--indigo-light);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.6;
}

.sv2-step__icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

.sv2-step:hover .sv2-step__icon {
  background: rgba(22, 18, 211, 0.25);
  border-color: rgba(22, 18, 211, 0.4);
  transform: scale(1.1);
}

.sv2-step__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.sv2-step__text {
  color: rgba(237, 228, 216, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.sv2-step__connector {
  display: flex;
  align-items: center;
  padding-top: 52px;
  flex-shrink: 0;
}

.sv2-steps__grid--five .sv2-step {
  max-width: 220px;
  padding: 0 12px;
}

.sv2-steps__grid--five .sv2-step__title {
  font-size: 1.1rem;
}

.sv2-steps__grid--five .sv2-step__text {
  font-size: 0.85rem;
}

/* --- Q&A Heading --- */
.sv2-faq__heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--brown-dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

/* --- Custom / Maatwerk + FAQ --- */
.sv2-custom {
  padding: 60px 0 100px;
  background: var(--cream-light);
  overflow-x: hidden;
}

.sv2-custom__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.sv2-custom__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--brown-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.sv2-custom__text {
  color: var(--brown-medium);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* FAQ Accordion */
.sv2-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv2-faq__item {
  background: var(--white);
  border: 1px solid rgba(196, 189, 181, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition);
}

.sv2-faq__item:hover {
  border-color: rgba(22, 18, 211, 0.15);
}

.sv2-faq__item.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border-color: rgba(22, 18, 211, 0.2);
}

.sv2-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-dark);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  transition: color var(--transition);
}

.sv2-faq__question:hover {
  color: var(--indigo);
}

.sv2-faq__question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--brown-medium);
}

.sv2-faq__item.active .sv2-faq__question svg {
  transform: rotate(180deg);
  color: var(--indigo);
}

.sv2-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.sv2-faq__answer p {
  padding: 0 24px 22px;
  color: var(--brown-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.sv2-faq__item.active .sv2-faq__answer {
  max-height: 300px;
}

/* --- CTA Section --- */
.sv2-cta {
  padding: 60px 0 100px;
  background: var(--brown-dark);
  text-align: center;
  overflow-x: hidden;
}

.sv2-cta__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.sv2-cta__text {
  color: rgba(237, 228, 216, 0.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* --- Responsive: Services V2 --- */
@media (max-width: 1024px) {
  .sv2-featured {
    grid-template-columns: 1fr;
  }

  .sv2-featured__visual {
    min-height: 280px;
  }

  .sv2-cards {
    grid-template-columns: 1fr 1fr;
  }

  .sv2-individual__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sv2-custom__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .sv2-packages {
    padding: 60px 0;
  }

  .sv2-featured__content {
    padding: 36px 28px;
  }

  .sv2-featured__visual {
    min-height: 220px;
  }

  .sv2-cards {
    grid-template-columns: 1fr;
  }

  .sv2-individual {
    padding: 60px 0;
  }

  .sv2-individual__image {
    aspect-ratio: 16/9;
    max-height: 260px;
  }

  .sv2-steps {
    padding: 60px 0;
  }

  .sv2-steps__grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .sv2-step {
    max-width: 400px;
  }

  .sv2-step__connector {
    display: none;
  }

  .sv2-steps__grid--five .sv2-step {
    max-width: 400px;
    padding: 0 24px;
  }

  .sv2-custom {
    padding: 60px 0;
  }

  .sv2-cta {
    padding: 60px 0;
  }
}

/* Footer logo */
.footer .nav-logo__img {
  filter: none;
  height: 80px;
}

/* ============================================
   SUBTLE BLUE ACCENTS
   ============================================ */

/* Blue accent line under section labels */
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--indigo);
  margin-top: 8px;
  opacity: 0.5;
  border-radius: 1px;
}

.section-label--white::after {
  background: var(--indigo-light);
  opacity: 0.6;
}

/* Center the accent line when section-label is centered */
.services-preview .section-label::after,
.cta-banner .section-label::after,
.insta-section .section-label::after,
.mission-section .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

/* Centered section labels in dark sections */
[style*="text-align: center"] .section-label::after {
  margin-left: auto;
  margin-right: auto;
}

/* Blue tint on footer top border */
.footer {
  border-top: 1px solid var(--cream-dark);
}

/* Dark footer variant (home page) */
.footer--dark {
  background: var(--brown-dark);
  color: var(--cream);
  border-top: none;
}

.footer--dark .footer__link {
  color: rgba(237, 228, 216, 0.65);
}

.footer--dark .footer__link:hover {
  color: var(--cream);
}

.footer--dark .footer__copy {
  color: rgba(237, 228, 216, 0.4);
}

.footer--dark .nav-logo__img {
  filter: brightness(10) saturate(0);
}

/* Subtle blue hover on preview cards */
.preview-card:hover {
  border-bottom: 2px solid rgba(22, 18, 211, 0.15);
}

/* Blue accent dot on value cards */
.value-card::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--indigo-light);
  border-radius: 50%;
  margin: 0 auto 16px;
  opacity: 0.8;
}

/* Package card hover blue accent */
.package-card:hover {
  border-color: rgba(22, 18, 211, 0.25);
}

/* Blue accent on CTA buttons */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--indigo);
  opacity: 0.4;
}

/* Blue accent on form inputs focus */
input:focus,
textarea:focus {
  border-color: rgba(22, 18, 211, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(22, 18, 211, 0.06) !important;
}

/* Blue tint on page hero subtitle */
.page-hero__subtitle {
  text-shadow: 0 0 40px rgba(22, 18, 211, 0.1);
}

/* Blue accent on CTA banner heading */
.cta-banner h2 {
  position: relative;
}

.cta-banner h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--indigo);
  opacity: 0.35;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Subtle indigo tint on nav links hover (not on transparent hero nav) */
.navbar:not(.navbar--hero) .nav-links a:hover,
.navbar--hero.scrolled .nav-links a:hover {
  color: var(--indigo) !important;
}

/* Services section - light variant overrides */
.services-section--light {
  background: var(--cream-light);
  color: var(--brown-text);
}

.services-section--light .services-section__header h2 {
  color: var(--brown-dark);
}

.services-section--light .package-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
}

.services-section--light .package-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(22, 18, 211, 0.2);
}

.services-section--light .package-card__icon {
  background: rgba(22, 18, 211, 0.08);
}

.services-section--light .package-card__icon svg {
  fill: var(--indigo);
}

.services-section--light .package-card__title {
  color: var(--brown-dark);
}

.services-section--light .package-card__desc {
  color: var(--brown-medium);
}

.services-section--light .package-card__arrow {
  color: var(--brown-light);
}

.services-section--light .package-card:hover .package-card__arrow {
  color: var(--indigo);
}

.services-section--light .packages-label {
  color: var(--brown-medium);
}

/* Individual services light variant */
.services-individual--light {
  padding: 60px 0 100px;
  background: var(--cream-light);
}

.services-individual--light .service-card {
  background: var(--white);
  border: 1px solid rgba(196, 189, 181, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.services-individual--light .service-card:hover {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(22, 18, 211, 0.08);
  transform: translateY(-6px);
}

.services-individual--light .service-card__icon {
  background: rgba(22, 18, 211, 0.08);
  border: 2px solid rgba(22, 18, 211, 0.12);
}

.services-individual--light .service-card__icon svg {
  fill: var(--indigo);
}

.services-individual--light .service-card__title {
  color: var(--brown-dark);
}

.services-individual--light .service-card__desc {
  color: var(--brown-medium);
}

.services-individual--light .packages-label {
  color: var(--brown-medium);
}
