@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --pure-oxygen: #FFFFFF;
  --ink-trace: #171717;
  --frosted-quartz: #F8F9FA;
  --silver-needle: #E5E7EB;
  --mirror: #F1F5F9;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 1px 3px rgba(23, 23, 23, 0.05);
  --shadow-md: 0 4px 12px rgba(23, 23, 23, 0.08);
  --shadow-lg: 0 12px 40px rgba(23, 23, 23, 0.12);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-trace);
  background: var(--pure-oxygen);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}

p {
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 300;
}

a {
  color: var(--ink-trace);
  text-decoration: none;
  transition: all var(--transition-smooth);
}

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

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition-luxury);
}

.header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) 0;
  transform: translateY(-100%);
  animation: slideDown var(--transition-luxury) forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: gold;
  transition: all var(--transition-smooth);
}

.logo:hover {
  opacity: 0.7;
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  padding: var(--space-xs) 0;
  color: gold;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink-trace);
  transition: width var(--transition-smooth);
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
}

.burger span {
  width: 1.5rem;
  height: 1px;
  background: gold;
  transition: all var(--transition-smooth);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  max-width: 50rem;
  animation: fadeInUp var(--transition-luxury) ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--transition-luxury) 0.2s ease-out backwards;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  max-width: 40rem;
  animation: fadeInUp var(--transition-luxury) 0.4s ease-out backwards;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ink-trace);
  color: var(--pure-oxygen);
  border: 1px solid var(--ink-trace);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--pure-oxygen);
  transform: translate(-50%, -50%);
  transition: width var(--transition-luxury), height var(--transition-luxury);
}

.btn:hover::before {
  width: 300%;
  height: 300%;
}

.btn:hover {
  color: var(--ink-trace);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--ink-trace);
}

.btn-outline::before {
  background: var(--ink-trace);
}

.btn-outline:hover {
  color: var(--pure-oxygen);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.section-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
}

.card {
  background: var(--frosted-quartz);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  transition: all var(--transition-smooth);
  transform: translateY(2rem);
}

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

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.875rem;
  color: rgba(23, 23, 23, 0.7);
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.asymmetric-content {
  transform: translateX(-2rem);
}

.asymmetric-image {
  position: relative;
  transform: rotate(-3deg);
  transition: all var(--transition-luxury);
}

.asymmetric-image:hover {
  transform: rotate(0deg) scale(1.02);
}

.asymmetric-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overlap-section {
  position: relative;
  margin: var(--space-xl) 0;
}

.overlap-bg {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40%;
  height: 80%;
  background: var(--mirror);
  border-radius: var(--radius-lg);
  z-index: -1;
  transform: rotate(5deg);
}

.contact-form {
  max-width: 35rem;
  margin: 0 auto;
  background: var(--frosted-quartz);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--silver-needle);
  border-radius: var(--radius-sm);
  background: var(--pure-oxygen);
  transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink-trace);
  box-shadow: 0 0 0 3px rgba(23, 23, 23, 0.05);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.8125rem;
  margin: 0;
}

.footer {
  background: var(--frosted-quartz);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(23, 23, 23, 0.6);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(23, 23, 23, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--ink-trace);
}

.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  transition: bottom var(--transition-luxury);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.map-container {
  width: 100%;
  height: 25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink-trace);
  margin: var(--space-sm) 0;
}

.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.thank-you-content {
  max-width: 40rem;
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.thank-you-content p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  animation: fadeInUp var(--transition-luxury) 0.2s ease-out backwards;
}

.error-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg);
}

.error-content h1 {
  font-size: 8rem;
  margin-bottom: var(--space-sm);
  opacity: 0.1;
}

.error-content h2 {
  margin-bottom: var(--space-md);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════════════════
   LUXURY HERO REDESIGN
   ═══════════════════════════════════════════════════ */

:root {
  --gold:        #C9A96E;
  --gold-light:  #E8D5B0;
  --gold-dim:    rgba(201, 169, 110, 0.18);
  --hero-dark:   #0d0d0d;
  --hero-navy:   #0F1923;
  --hero-cream:  #FAF8F5;
}

/* ── SHARED UTILITIES ─────────────────────────────── */
@keyframes goldLineReveal {
  from { width: 0; opacity: 0; }
  to   { width: 2.5rem; opacity: 1; }
}
@keyframes ornamentDrift {
  0%   { opacity: 0; transform: rotate(45deg) translateY(18px); }
  15%  { opacity: 0.55; }
  85%  { opacity: 0.55; }
  100% { opacity: 0; transform: rotate(45deg) translateY(-18px); }
}
@keyframes lineSlideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes accentGrow {
  from { height: 0; opacity: 0; }
  to   { height: 60%; opacity: 1; }
}
@keyframes ringReveal {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
@keyframes scrollLineGrow {
  to { height: 3rem; }
}
@keyframes scrollLinePulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}
@keyframes artLineSweep {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}
@keyframes fadeInStagger {
  from { opacity: 0; transform: translateY(1rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 6rem 0; }
}
@keyframes bgWordFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(-47%); }
}
@keyframes numeralRise {
  from { transform: translateY(5rem); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes diamondSpin {
  from { transform: rotate(45deg) scale(0); opacity: 0; }
  to   { transform: rotate(45deg) scale(1); opacity: 1; }
}
@keyframes tagSlide {
  from { opacity: 0; transform: translateX(-1rem); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ══ 1. HOME HERO ══════════════════════════════════ */
.hero-home {
  background: var(--hero-dark);
  color: var(--pure-oxygen);
}

/* Animated vertical gold grid */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to right,
    rgba(201, 169, 110, 0.055) 1px,
    transparent 1px
  );
  background-size: 6rem 100%;
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}

/* Large ghost background word */
.hero-home__bg-word {
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(9rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.055);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  animation: bgWordFloat 18s ease-in-out infinite;
}

/* Floating diamond ornaments */
.hero-home__ornaments {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-ornament {
  position: absolute;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  animation: ornamentDrift ease-in-out infinite;
}
.hero-ornament:nth-child(1) { width: 6px;  height: 6px;  top: 21%; left: 7%;   animation-duration: 9s;  animation-delay: 0.2s; }
.hero-ornament:nth-child(2) { width: 12px; height: 12px; top: 66%; left: 4%;   animation-duration: 11s; animation-delay: 1.6s; }
.hero-ornament:nth-child(3) { width: 9px;  height: 9px;  top: 38%; right: 6%;  animation-duration: 13s; animation-delay: 0.8s; }
.hero-ornament:nth-child(4) { width: 5px;  height: 5px;  top: 78%; right: 11%; animation-duration: 8s;  animation-delay: 2.3s; }
.hero-ornament:nth-child(5) { width: 16px; height: 16px; top: 14%; right: 27%; animation-duration: 14s; animation-delay: 0.5s; }

/* Eyebrow line */
.hero-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--transition-luxury) 0.3s ease forwards;
}
.hero-home__eyebrow::before,
.hero-home__eyebrow::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: goldLineReveal 0.8s 0.9s ease forwards;
}

/* Headline */
.hero-home h1 {
  color: var(--pure-oxygen);
  animation: none;
  margin-bottom: var(--space-md);
}
.hero-home h1 .line {
  display: block;
  overflow: hidden;
}
.hero-home h1 .line span {
  display: block;
  animation: lineSlideUp 1s ease-out backwards;
}
.hero-home h1 .line:nth-child(1) span { animation-delay: 0.45s; }
.hero-home h1 .line:nth-child(2) span { animation-delay: 0.65s; }
.hero-home h1 em {
  font-style: italic;
  color: var(--gold);
}

/* Subtext */
.hero-home > .container p,
.hero-home p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  max-width: 34rem;
  margin-bottom: var(--space-lg);
  animation: fadeInUp var(--transition-luxury) 1s ease forwards;
}

/* CTA row */
.hero-home__actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp var(--transition-luxury) 1.2s ease forwards;
}
.hero-home .btn {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.hero-home .btn::before { background: var(--gold); }
.hero-home .btn:hover   { color: var(--hero-dark); }
.hero-home__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-smooth);
}
.hero-home__link:hover {
  color: var(--gold);
  gap: 0.8rem;
}

/* Scroll indicator */
.hero-home__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s 1.8s ease forwards;
}
.hero-home__scroll-label {
  font-size: 0.5625rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}
.hero-home__scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLineGrow 1.2s 2.2s ease forwards,
             scrollLinePulse 2.5s 3.4s ease-in-out infinite;
}

/* ══ 2. DIENSTEN HERO ══════════════════════════════ */
.hero-diensten {
  min-height: 65vh;
  background: var(--hero-navy);
  color: var(--pure-oxygen);
}
.hero-diensten::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 75% 40%,
    rgba(201, 169, 110, 0.09) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Roman-numeral ghost decoration */
.hero-diensten__numerals {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-right: 5%;
  gap: 0.5em;
  pointer-events: none;
  overflow: hidden;
}
.hero-diensten__numeral {
  font-family: var(--font-display);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.09);
  line-height: 1;
  transform: translateY(4rem);
  animation: numeralRise 1.4s ease-out forwards;
}
.hero-diensten__numeral:nth-child(1) { animation-delay: 0.1s; }
.hero-diensten__numeral:nth-child(2) { animation-delay: 0.3s; }
.hero-diensten__numeral:nth-child(3) { animation-delay: 0.5s; }

/* Vertical gold accent bar */
.hero-diensten__accent {
  position: absolute;
  left: 0;
  top: 20%;
  width: 3px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: accentGrow 1.4s 0.4s ease forwards;
}

/* Tag */
.hero-diensten__tag {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  animation: fadeInUp var(--transition-luxury) 0.3s ease forwards;
}

/* Headline */
.hero-diensten h1 {
  color: var(--pure-oxygen);
  animation: none;
  margin-bottom: var(--space-sm);
  animation: fadeInUp var(--transition-luxury) 0.5s ease forwards;
}
.hero-diensten h1 em {
  font-style: italic;
  color: var(--gold);
}

/* Paragraph */
.hero-diensten p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 34rem;
  animation: fadeInUp var(--transition-luxury) 0.75s ease forwards;
}

/* Left-border content wrapper */
.hero-diensten__inner {
  padding-left: var(--space-md);
  border-left: 1px solid rgba(201, 169, 110, 0.25);
  max-width: 48rem;
}

/* ══ 3. STIJLRICHTING HERO ═════════════════════════ */
.hero-stijlrichting {
  min-height: 65vh;
  background: var(--hero-cream);
  color: var(--ink-trace);
}

/* Subtle warm vignette */
.hero-stijlrichting::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Ghost background word */
.hero-stijlrichting__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 23, 23, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: bgWordFloat 20s ease-in-out infinite;
}

/* Art-deco decorative lines */
.hero-stijlrichting__art-lines {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.hero-stijlrichting__art-lines.top-lines {
  top: 2rem;
}
.hero-stijlrichting__art-lines.bot-lines {
  bottom: 2rem;
}
.hero-stijlrichting__art-lines div {
  height: 1px;
  background: rgba(201, 169, 110, 0.3);
  transform-origin: center;
  transform: scaleX(0);
  animation: artLineSweep 1.2s ease-out forwards;
}
.hero-stijlrichting__art-lines div:nth-child(1) { animation-delay: 0.2s; }
.hero-stijlrichting__art-lines div:nth-child(2) { animation-delay: 0.4s; height: 1px; background: rgba(201, 169, 110, 0.15); }

/* Eyebrow */
.hero-stijlrichting__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--transition-luxury) 0.3s ease forwards;
}
.hero-stijlrichting__eyebrow::before,
.hero-stijlrichting__eyebrow::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: goldLineReveal 0.8s 0.9s ease forwards;
}

/* Headline */
.hero-stijlrichting h1 {
  color: var(--ink-trace);
  animation: none;
  margin-bottom: var(--space-md);
}
.hero-stijlrichting h1 .line {
  display: block;
  overflow: hidden;
}
.hero-stijlrichting h1 .line span {
  display: block;
  animation: lineSlideUp 1s ease-out backwards;
}
.hero-stijlrichting h1 .line:nth-child(1) span { animation-delay: 0.4s; }
.hero-stijlrichting h1 .line:nth-child(2) span { animation-delay: 0.6s; }
.hero-stijlrichting h1 em {
  font-style: italic;
  color: var(--gold);
}

/* Paragraph */
.hero-stijlrichting p {
  font-size: 1rem;
  color: rgba(23, 23, 23, 0.65);
  max-width: 36rem;
  margin-bottom: var(--space-md);
  animation: fadeInUp var(--transition-luxury) 0.9s ease forwards;
}

/* Style category tags */
.hero-stijlrichting__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  animation: fadeInUp var(--transition-luxury) 1.1s ease forwards;
}
.hero-stijlrichting__tag {
  display: inline-block;
  padding: 0.375rem 1.125rem;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 2rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.6);
  background: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-smooth);
  backdrop-filter: blur(4px);
}
.hero-stijlrichting__tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.06);
}

/* ══ 4. CONTACT HERO ═══════════════════════════════ */
.hero-contact {
  min-height: 55vh;
  background: var(--pure-oxygen);
  color: var(--ink-trace);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* Concentric animated rings */
.hero-contact__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
}
.hero-contact__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  animation: ringReveal ease-out forwards;
}
.hero-contact__ring:nth-child(1) { width: 16rem;  height: 16rem;  animation-delay: 0.15s; animation-duration: 1.0s; }
.hero-contact__ring:nth-child(2) { width: 26rem;  height: 26rem;  animation-delay: 0.35s; animation-duration: 1.2s; }
.hero-contact__ring:nth-child(3) { width: 38rem;  height: 38rem;  animation-delay: 0.55s; animation-duration: 1.4s; }
.hero-contact__ring:nth-child(4) { width: 50rem;  height: 50rem;  animation-delay: 0.75s; animation-duration: 1.6s; }

/* Diamond ornament */
.hero-contact__diamond {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--gold);
  margin-bottom: var(--space-md);
  animation: diamondSpin 0.7s 0.3s ease forwards;
}

/* Text layout */
.hero-contact__content {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-contact h1 {
  animation: none;
  margin-bottom: var(--space-sm);
  animation: fadeInUp var(--transition-luxury) 0.5s ease forwards;
}
.hero-contact p {
  font-size: 1.0625rem;
  max-width: 32rem;
  margin: 0 auto var(--space-md);
  color: rgba(23, 23, 23, 0.65);
  animation: fadeInUp var(--transition-luxury) 0.7s ease forwards;
}
.hero-contact__address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23, 23, 23, 0.4);
  animation: fadeInUp var(--transition-luxury) 0.9s ease forwards;
}
.hero-contact__address i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── Responsive overrides ────────────────────────── */
@media (max-width: 768px) {
  .hero-diensten__numerals { display: none; }
  .hero-stijlrichting__bg-word { font-size: 6rem; }
  .hero-contact__ring:nth-child(3),
  .hero-contact__ring:nth-child(4) { display: none; }
  .hero-home__bg-word { font-size: 7rem; }
  .hero-home__scroll { display: none; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transition: right var(--transition-luxury);
    z-index: 999;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    font-size: 1.5rem;
  }
  
  .burger {
    display: flex;
    z-index: 1001;
  }
  
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .asymmetric-content {
    transform: translateX(0);
  }
  
  .asymmetric-image {
    transform: rotate(0);
  }
  
  .overlap-bg {
    display: none;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .card img {
    height: 12rem;
  }
  
  .map-container {
    height: 18rem;
  }
}

@media (max-width: 320px) {

  /* ── Spacing scale ───────────────────────── */
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }

  /* ── Layout ──────────────────────────────── */
  .container {
    padding: 0 0.875rem;
  }

  /* ── Typography ──────────────────────────── */
  h1 {
    font-size: 1.875rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.0625rem;
  }
  p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  /* ── Header / Nav ────────────────────────── */
  .logo {
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }
  .nav a {
    font-size: 1.25rem;
  }
  .header {
    padding: 1rem 0;
  }

  /* ── Buttons ─────────────────────────────── */
  .btn {
    padding: 0.75rem 1.375rem;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  /* ── Base hero ───────────────────────────── */
  .hero {
    min-height: 100svh;
    padding: 5rem 0 3rem;
  }
  .hero p {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  /* ── HOME HERO (320px) ───────────────────── */
  .hero-home {
    min-height: 100svh;
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  /* Kill the drifting grid — too busy on small screen */
  .hero-home::before {
    display: none;
  }

  /* Shrink ghost word so it doesn't crowd content */
  .hero-home__bg-word {
    font-size: 5.5rem;
    right: -4%;
    -webkit-text-stroke-width: 1px;
    opacity: 0.6;
  }

  /* Keep only two ornaments, hide the rest */
  .hero-ornament:nth-child(3),
  .hero-ornament:nth-child(4),
  .hero-ornament:nth-child(5) {
    display: none;
  }

  /* Eyebrow — tighter */
  .hero-home__eyebrow {
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .hero-home__eyebrow::before,
  .hero-home__eyebrow::after {
    animation: goldLineReveal 0.8s 0.9s ease forwards;
  }

  /* Headline lines */
  .hero-home h1 {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  /* Subtext */
  .hero-home p {
    font-size: 0.875rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  /* CTA — stack vertically, full-width button */
  .hero-home__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }
  .hero-home .btn {
    width: 100%;
    text-align: center;
  }
  .hero-home__link {
    font-size: 0.75rem;
  }

  /* Scroll indicator — hide (not enough room) */
  .hero-home__scroll {
    display: none;
  }

  /* ── DIENSTEN HERO (320px) ───────────────── */
  .hero-diensten {
    min-height: 70vh;
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  /* Hide the roman numerals completely */
  .hero-diensten__numerals {
    display: none;
  }

  /* Thinner accent bar */
  .hero-diensten__accent {
    width: 2px;
    top: 15%;
  }

  /* Tighten left-border wrapper */
  .hero-diensten__inner {
    padding-left: 1rem;
    max-width: 100%;
  }

  .hero-diensten__tag {
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .hero-diensten h1 {
    font-size: 1.875rem;
  }

  .hero-diensten p {
    font-size: 0.875rem;
    max-width: 100%;
  }

  /* ── STIJLRICHTING HERO (320px) ──────────── */
  .hero-stijlrichting {
    min-height: 70vh;
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  /* Shrink ghost word significantly */
  .hero-stijlrichting__bg-word {
    font-size: 4.5rem;
    letter-spacing: 0.05em;
  }

  /* Keep art lines but reduce gap */
  .hero-stijlrichting__art-lines.top-lines {
    top: 1.25rem;
  }
  .hero-stijlrichting__art-lines.bot-lines {
    bottom: 1.25rem;
  }

  /* Eyebrow */
  .hero-stijlrichting__eyebrow {
    font-size: 0.5625rem;
    letter-spacing: 0.2em;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  /* Headline */
  .hero-stijlrichting h1 {
    font-size: 1.875rem;
    margin-bottom: 0.875rem;
  }

  .hero-stijlrichting p {
    font-size: 0.875rem;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  /* Style tags — smaller, tighter */
  .hero-stijlrichting__tags {
    gap: 0.375rem;
  }
  .hero-stijlrichting__tag {
    padding: 0.3rem 0.75rem;
    font-size: 0.5625rem;
    letter-spacing: 0.08em;
  }

  /* ── CONTACT HERO (320px) ────────────────── */
  .hero-contact {
    min-height: 60vh;
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
  }

  /* Keep only the two innermost rings */
  .hero-contact__ring:nth-child(3),
  .hero-contact__ring:nth-child(4) {
    display: none;
  }
  /* Scale down remaining rings to fit 320px viewport */
  .hero-contact__ring:nth-child(1) {
    width: 12rem;
    height: 12rem;
  }
  .hero-contact__ring:nth-child(2) {
    width: 19rem;
    height: 19rem;
  }

  /* Diamond ornament */
  .hero-contact__diamond {
    width: 8px;
    height: 8px;
    margin-bottom: 0.875rem;
  }

  .hero-contact h1 {
    font-size: 1.875rem;
  }

  .hero-contact p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-contact__address {
    font-size: 0.5625rem;
    letter-spacing: 0.15em;
  }

  /* ── Sections ─────────────────────────────── */
  .section {
    padding: var(--space-lg) 0;
  }
  .section-title {
    margin-bottom: var(--space-md);
  }

  /* ── Cards ───────────────────────────────── */
  .card {
    padding: var(--space-sm);
  }
  .card img {
    height: 10rem;
  }
  .card h3 {
    font-size: 1.125rem;
  }
  .card h4 {
    font-size: 1rem;
  }
  .card p {
    font-size: 0.8125rem;
  }

  /* ── Grids ───────────────────────────────── */
  .grid {
    gap: var(--space-sm);
  }
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* ── Asymmetric sections ─────────────────── */
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .asymmetric-content {
    transform: none;
  }
  .asymmetric-image {
    transform: none;
  }

  /* ── Contact form ────────────────────────── */
  .contact-form {
    padding: var(--space-md);
  }
  .form-group input,
  .form-group textarea {
    padding: 0.625rem;
    font-size: 0.875rem;
  }
  .form-group label {
    font-size: 0.8125rem;
  }
  .checkbox-group label {
    font-size: 0.75rem;
  }

  /* ── Map ─────────────────────────────────── */
  .map-container {
    height: 13rem;
  }

  /* ── Price ───────────────────────────────── */
  .price {
    font-size: 1.375rem;
  }

  /* ── Footer ──────────────────────────────── */
  .footer {
    font-size: 0.6875rem;
    padding: var(--space-sm) 0;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.625rem;
  }
  .footer-links {
    gap: var(--space-sm);
    justify-content: center;
  }
  .footer-links a {
    font-size: 0.6875rem;
  }

  /* ── Cookie popup ────────────────────────── */
  .cookie-popup {
    padding: var(--space-sm);
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .cookie-text {
    font-size: 0.75rem;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  .cookie-buttons .btn {
    flex: 1;
  }

  /* ── Overlap decorative bg ───────────────── */
  .overlap-bg {
    display: none;
  }
}
