/* ========================================================
   Kapsalon Marea — Home pilot
   Design tokens
   ======================================================== */
:root {
  --color-dark: #201f1c;
  --color-dark-2: #17211b;
  --color-green: #172019;
  --color-footer: #131211;
  --color-cream: #f7efe4;
  --color-cream-2: #f2e8da;
  --color-coral: #d96a48;
  --color-coral-dark: #c2532f;
  --color-ink: #1c1c1a;
  --color-text-onlight: #2a2622;
  --color-text-muted-onlight: #6b6459;
  --color-text-onDark: #ece6da;
  --color-text-muted-onDark: #c7bfb0;
  --color-sage: #e7e5d6;
  --color-card-border: rgba(42, 38, 34, 0.1);

  --font-serif: "Playfair Display", "Iowan Old Style", "Georgia", serif;
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container-max: 1360px;
  --container-pad: clamp(20px, 6vw, 96px);

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
}

/* ========================================================
   Reset
   ======================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text-onlight);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-coral);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ========================================================
   Buttons & links
   ======================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-coral {
  background: var(--color-coral);
  color: #fff;
}
.btn-coral:hover { background: var(--color-coral-dark); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); }
.btn-small { padding: 10px 22px; font-size: 0.85rem; }

.link-coral {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-coral);
  font-weight: 600;
  font-size: 0.9rem;
}
.link-coral span { transition: transform 0.2s ease; }
.link-coral:hover span { transform: translateX(3px); }

/* ========================================================
   Header
   ======================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 23px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.85rem;
  color: #fff;
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--color-coral);
  font-weight: 600;
  margin-top: 5px;
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-desktop a {
  font-size: 0.95rem;
  color: var(--color-text-onDark);
  transition: color 0.2s ease;
  position: relative;
}
.nav-desktop a:hover { color: #fff; }
.nav-desktop a.active { color: #fff; font-weight: 600; }
.nav-desktop a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--color-coral);
}
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--color-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 12px var(--container-pad) 24px;
  gap: 4px;
}
.nav-mobile a {
  display: block;
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--color-text-onDark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile a.active { color: var(--color-coral); }
.nav-mobile li:last-child a {
  border-bottom: none;
  margin-top: 12px;
  text-align: center;
}

/* ========================================================
   Hero
   ======================================================== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video, .hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 38%;
}
.hero-still { z-index: -1; }
.hero-video { z-index: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    100deg,
    rgba(15, 13, 10, 0.87) 0%,
    rgba(15, 13, 10, 0.74) 26%,
    rgba(15, 13, 10, 0.36) 50%,
    rgba(15, 13, 10, 0.06) 66%
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-block: 64px 90px;
  max-width: 520px;
}
.hero .hero-content {
  padding-left: clamp(16px, 4vw, 56px);
  padding-right: clamp(16px, 3vw, 40px);
}
.eyebrow {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-coral);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  line-height: 1.14;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-heading em {
  color: var(--color-coral);
  font-style: italic;
}
.hero-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-onDark);
  max-width: 400px;
  margin-bottom: 34px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  width: 100%;
  height: 110px;
  z-index: 4;
  fill: var(--color-cream);
}

/* reduced motion: hide video, show still */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero.no-video .hero-video { display: none; }

/* ========================================================
   Services
   ======================================================== */
.services {
  background: var(--color-cream);
  padding-block: 24px 64px;
}
.services-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.services h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--color-text-onlight);
  text-wrap: balance;
}
.services-subtext {
  font-size: 0.95rem;
  color: var(--color-text-muted-onlight);
  text-align: right;
  max-width: 300px;
  line-height: 1.5;
  padding-right: clamp(4px, 1.5vw, 20px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 5;
  background: var(--color-ink);
}
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transition: transform 0.5s ease;
}
.service-card[data-crop="knippen"] img { object-position: 25% 28%; }
.service-card[data-crop="kleuren"] img { object-position: 42% 18%; }
.service-card[data-crop="styling"] img { object-position: 55% 30%; }
.service-card[data-crop="heren"] img { object-position: 22% 32%; }
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 20px 24px;
  background: linear-gradient(
    to top,
    rgba(15, 12, 8, 0.95) 0%,
    rgba(15, 12, 8, 0.85) 45%,
    rgba(15, 12, 8, 0.05) 100%
  );
  color: #fff;
}
.service-card-overlay h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.service-card-overlay p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--color-text-onDark);
  margin-bottom: 12px;
}

/* ========================================================
   Attention split section
   ======================================================== */
.attention {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 460px;
}
.attention-media { position: relative; overflow: hidden; }
.attention-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.attention-content {
  background: var(--color-green);
  color: var(--color-text-onDark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(32px, 5vw, 72px);
}
.attention-content h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
  text-wrap: balance;
}
.attention-content p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 420px;
}
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}
.checklist span {
  color: var(--color-coral);
  font-weight: 700;
}
.attention-content .link-coral {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ========================================================
   Closing curve section
   ======================================================== */
.closing {
  position: relative;
  background: var(--color-green);
  height: 200px;
}
.closing-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--color-cream);
}
.closing-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 24px;
}
.closing-text p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-text-onlight);
  text-wrap: balance;
}

/* ========================================================
   Footer
   ======================================================== */
.site-footer {
  background: var(--color-footer);
  color: var(--color-text-onDark);
  padding-top: 34px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr auto;
  gap: 20px;
  align-items: start;
  padding-bottom: 26px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-muted-onDark);
}
.footer-col a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 14px;
  justify-self: end;
}
.footer-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
}
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 16px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-text-muted-onDark);
}

/* ========================================================
   Responsive
   ======================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
  .footer-social { justify-self: start; grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero { min-height: 690px; }
  .hero-content { padding-block: 100px 120px; max-width: 100%; }
  .attention { grid-template-columns: 1fr; }
  .attention-media { height: 360px; }
  .attention-content { padding: 48px clamp(24px, 6vw, 60px); }
}

@media (max-width: 860px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-heading-row { align-items: flex-start; }
  .services-subtext { text-align: left; max-width: 100%; }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 13, 10, 0.55) 0%,
      rgba(15, 13, 10, 0.88) 55%,
      rgba(15, 13, 10, 0.96) 100%
    );
  }
  .hero-video, .hero-still { object-position: 62% 35%; }
  .hero-content { padding-block: 90px 110px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .closing { height: 165px; }
}

@media (max-width: 420px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { grid-column: auto; }
  .hero-heading { font-size: 2.3rem; }
}

/* ========================================================
   Prijslijst — banner
   ======================================================== */
.pl-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.pl-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pl-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 58%;
}
.pl-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    rgba(10, 8, 6, 0.82) 0%,
    rgba(10, 8, 6, 0.68) 32%,
    rgba(10, 8, 6, 0.42) 58%,
    rgba(10, 8, 6, 0.22) 100%
  );
}
.pl-banner-content {
  position: relative;
  z-index: 2;
  padding-block: 56px 96px;
  max-width: 480px;
}
.pl-banner-content h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.4vw, 2.85rem);
  line-height: 1.1;
  margin-bottom: 18px;
  text-wrap: balance;
}
.pl-banner-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-onDark);
  max-width: 380px;
}
.pl-banner-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  width: 100%;
  height: 90px;
  z-index: 3;
  fill: var(--color-cream);
}

/* ========================================================
   Prijslijst — pricing cards
   ======================================================== */
.pl-pricing {
  padding-block: 48px 64px;
}
.pl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.pl-card {
  background: var(--color-cream-2);
  border: 1px solid var(--color-card-border);
  border-radius: 20px;
  padding: 36px 40px;
}
.pl-card h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-text-onlight);
  margin-bottom: 18px;
}
.pl-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid var(--color-card-border);
}
.pl-list li:last-child {
  border-bottom: none;
}
.pl-item {
  font-size: 0.98rem;
  color: var(--color-text-onlight);
}
.pl-price {
  font-size: 0.92rem;
  color: var(--color-text-muted-onlight);
  white-space: nowrap;
}

/* ========================================================
   Prijslijst — info panel
   ======================================================== */
.pl-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-sage);
  border-radius: 16px;
  padding: 24px 28px;
}
.pl-info-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-text-muted-onlight);
  margin-top: 3px;
}
.pl-info-icon svg {
  width: 100%;
  height: 100%;
}
.pl-info p {
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--color-text-onlight);
  max-width: 62ch;
}

/* ========================================================
   Prijslijst — footer transition (shallow scoop, distinct from Home)
   ======================================================== */
.pl-closing {
  position: relative;
  height: 110px;
  background: var(--color-cream);
  overflow: hidden;
}
.pl-closing-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: var(--color-footer);
}

/* ========================================================
   Prijslijst — responsive
   ======================================================== */
@media (max-width: 1100px) {
  .pl-card { padding: 30px 32px; }
}

@media (max-width: 900px) {
  .pl-banner { min-height: 380px; }
  .pl-banner-content { padding-block: 40px 80px; }
}

@media (max-width: 640px) {
  .pl-grid { grid-template-columns: 1fr; gap: 18px; }
  .pl-banner-content { max-width: 100%; }
  .pl-banner-content p { max-width: 100%; }
  .pl-info { padding: 20px 22px; }
  .pl-closing { height: 70px; }
}

@media (max-width: 420px) {
  .pl-card { padding: 26px 24px; }
  .pl-item { font-size: 0.92rem; }
  .pl-price { font-size: 0.86rem; }
}

/* ========================================================
   Reserveren — booking hero (dark split)
   ======================================================== */
.rv-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: 700px;
  overflow: hidden;
}
.rv-hero-content {
  position: relative;
  z-index: 2;
  background: var(--color-ink);
  color: var(--color-text-onDark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(32px, 6vw, 88px) 100px;
}
.rv-hero-content h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 3.2vw, 2.75rem);
  color: #fff;
  line-height: 1.14;
  margin-bottom: 20px;
  text-wrap: balance;
}
.rv-hero-content > p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-onDark);
  max-width: 400px;
  margin-bottom: 26px;
}
.rv-checklist {
  margin-bottom: 32px;
}
.rv-hero-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.rv-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 32%;
}
.rv-hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  width: 100%;
  height: 130px;
  z-index: 3;
  fill: var(--color-cream);
}

/* ========================================================
   Reserveren — booking steps
   ======================================================== */
.rv-steps {
  position: relative;
  background: var(--color-cream);
  padding-block: 56px 0;
}
.rv-steps-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: var(--color-text-onlight);
  text-align: center;
  margin-bottom: 36px;
  text-wrap: balance;
}
.rv-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.rv-step {
  position: relative;
  background: var(--color-cream-2);
  border: 1px solid var(--color-card-border);
  border-radius: 18px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: inset 0 3px 0 0 rgba(217, 106, 72, 0.4);
}
.rv-step-number {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--color-coral);
  margin-bottom: 12px;
}
.rv-step h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--color-text-onlight);
  margin-bottom: 9px;
}
.rv-step p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-muted-onlight);
}

/* ========================================================
   Reserveren — contact & location cards
   ======================================================== */
.rv-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 72px;
}
.rv-contact-card,
.rv-map-card {
  background: var(--color-cream-2);
  border: 1px solid var(--color-card-border);
  border-radius: 20px;
  padding: 32px 36px;
}
.rv-contact-card {
  display: flex;
  flex-direction: column;
}
.rv-contact-card h2,
.rv-map-card h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--color-text-onlight);
  margin-bottom: 20px;
}
.rv-contact-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.rv-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.rv-contact-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--color-coral);
}
.rv-contact-icon svg { width: 100%; height: 100%; }
.rv-contact-list li > span:last-child {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-onlight);
}
.rv-contact-list a:hover { color: var(--color-coral); }
.rv-contact-hours {
  padding-top: 14px;
  border-top: 1px solid var(--color-card-border);
}

.rv-map {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
}
.rv-map svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-text-onlight);
  border: 1.5px solid rgba(42, 38, 34, 0.28);
}
.btn-outline-dark:hover {
  background: rgba(42, 38, 34, 0.05);
  border-color: rgba(42, 38, 34, 0.4);
}

/* ========================================================
   Reserveren — footer transition (asymmetric arc, distinct from Home/Prijslijst)
   ======================================================== */
.rv-closing-curve {
  position: relative;
  display: block;
  width: 100%;
  height: 110px;
  fill: var(--color-footer);
}

/* ========================================================
   Reserveren — responsive
   ======================================================== */
@media (max-width: 1100px) {
  .rv-step { padding: 28px 22px; }
}

@media (max-width: 900px) {
  .rv-hero { grid-template-columns: 1fr; min-height: auto; }
  .rv-hero-media { height: 340px; }
  .rv-hero-content { padding: 48px clamp(24px, 6vw, 60px) 80px; }
  .rv-hero-curve { height: 90px; bottom: -20px; }
  .rv-steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .rv-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .rv-contact-card, .rv-map-card { padding: 26px 24px; }
  .rv-hero-content > p { max-width: 100%; }
  .rv-closing-curve { height: 75px; }
}

/* ========================================================
   404 — not found page
   ======================================================== */
.nf-hero {
  position: relative;
  background: var(--color-cream);
  padding-top: 128px;
  text-align: center;
  overflow: hidden;
}
.nf-content {
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.nf-hero .eyebrow {
  margin-bottom: 16px;
}
.nf-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1.16;
  color: var(--color-text-onlight);
  margin-bottom: 16px;
  text-wrap: balance;
}
.nf-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted-onlight);
  max-width: 440px;
  margin-inline: auto;
  margin-bottom: 32px;
}
.nf-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.nf-inline {
  font-size: 0.92rem;
  color: var(--color-text-muted-onlight);
}
.nf-inline .link-coral {
  margin-left: 2px;
}
.nf-curve {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  fill: var(--color-footer);
}

@media (max-width: 640px) {
  .nf-hero { padding-top: 100px; }
  .nf-content { margin-bottom: 44px; }
  .nf-buttons { flex-direction: column; align-items: stretch; }
  .nf-buttons .btn { justify-content: center; }
  .nf-curve { height: 70px; }
}
