/* ============================================
   Ranira Pedicure — Premium editorial redesign
   ============================================ */

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

:root {
  --ink: #1a1612;
  --ink-soft: #2c2620;
  --text: #3d3631;
  --muted: #7c726a;
  --muted-soft: #a39a8f;

  --bg: #fdfaf3;
  --bg-soft: #f4ecdd;
  --bg-card: #ffffff;
  --bg-dark: #1c1814;

  --brand: #6b1f2a;
  --brand-dark: #4a1518;
  --brand-soft: #a14150;

  --gold: #b8893c;
  --gold-light: #d4b576;
  --gold-soft: #e8d4a5;

  --line: #e8dcc6;
  --line-soft: #f0e7d2;
  --line-strong: #c8b896;

  --max: 1280px;
  --content: 1080px;
  --reading: 720px;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow-soft: 0 30px 80px rgba(70, 40, 15, 0.16), 0 8px 24px rgba(70, 40, 15, 0.08);
  --shadow-card: 0 1px 2px rgba(60, 40, 10, 0.04), 0 14px 40px rgba(60, 40, 10, 0.06);
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  counter-reset: section;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--brand-dark);
}

::selection {
  background: var(--gold-soft);
  color: var(--ink);
}

/* ============================================
   Reveal animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

p { color: var(--text); }

/* ============================================
   Header
   ============================================ */
.site-header {
  background: rgba(253, 250, 243, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(253, 250, 243, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-logo img {
  height: 58px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.04);
}

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

nav a {
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
  letter-spacing: 0.005em;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

nav a:hover {
  color: var(--brand);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
  padding: 6px 10px;
}

/* ============================================
   Hero — editorial asymmetric split
   ============================================ */
.hero {
  background: var(--bg);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at -10% 30%, rgba(184, 137, 60, 0.07), transparent 60%),
    radial-gradient(700px 500px at 110% 80%, rgba(107, 31, 42, 0.05), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 1fr auto auto auto 1fr;
  column-gap: 96px;
  min-height: 90vh;
  position: relative;
  z-index: 1;
}

.hero-photo {
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  margin: 80px 0;
  box-shadow: var(--shadow-soft);
  border: none;
  background: var(--bg-soft);
}

.hero h1 {
  grid-column: 1;
  grid-row: 2;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 13ch;
}

.hero h1::before {
  content: 'Ranira Pedicure · Leiderdorp';
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  line-height: 1;
}

.hero p {
  grid-column: 1;
  grid-row: 3;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero .btn {
  grid-column: 1;
  grid-row: 4;
  justify-self: start;
  align-self: start;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fbf6e8;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.btn::after {
  content: '→';
  font-size: 1.05rem;
  transition: transform 0.25s ease;
  letter-spacing: 0;
}

.btn:hover {
  background: var(--brand);
  color: #fbf6e8;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(107, 31, 42, 0.22);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 15px 35px;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fbf6e8;
  box-shadow: 0 18px 40px rgba(26, 22, 18, 0.18);
}

/* ============================================
   Sections — editorial layout with numbered headings
   ============================================ */
section {
  padding: 140px 40px;
  scroll-margin-top: 100px;
  background: var(--bg);
  position: relative;
}

section.hero { padding: 0; }

section:not(.hero) { counter-increment: section; }

section:not(.hero):nth-of-type(even) {
  background: var(--bg-soft);
}

.section-inner {
  max-width: var(--content);
  margin: 0 auto;
}

section:not(.hero) h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  color: var(--ink);
  margin-bottom: 56px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 18ch;
  text-align: left;
  position: relative;
  padding-top: 28px;
}

section:not(.hero) h2::before {
  content: counter(section, decimal-leading-zero) ' / ' counter(section, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

/* simpler: show single 01, 02, etc */
section:not(.hero) h2::before {
  content: counter(section, decimal-leading-zero);
}

/* hairline before each section heading for editorial feel */
section:not(.hero) .section-inner > h2 {
  border-top: 1px solid var(--line);
  padding-top: 56px;
}

section:not(.hero):nth-of-type(even) .section-inner > h2 {
  border-top-color: var(--line-strong);
  border-top-color: rgba(184, 137, 60, 0.35);
}

/* override "centered + colored" inline-styled paragraphs to match new layout */
section .section-inner > p[style] {
  text-align: left !important;
  max-width: var(--reading) !important;
  margin: 0 0 24px !important;
  color: var(--text) !important;
  font-weight: 400 !important;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* the "let op" warning paragraph */
section .section-inner > p[style*="b45309"] {
  background: rgba(184, 137, 60, 0.08);
  border-left: 3px solid var(--gold);
  padding: 20px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.98rem;
  color: var(--ink-soft) !important;
  margin: 0 0 40px !important;
}

/* ============================================
   Diensten & Tarieven
   ============================================ */
.behandeling-lijst {
  list-style: none;
  margin: 16px 0 64px;
  padding: 0;
  max-width: var(--reading);
}

.behandeling-lijst {
  counter-reset: item;
}

.behandeling-lijst li {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 28px 0 28px 48px;
  margin: 0;
  box-shadow: none;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
}

.behandeling-lijst li::before {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 34px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  line-height: 1;
}

.behandeling-lijst li:last-child {
  border-bottom: 1px solid var(--line);
}

.behandeling-lijst li strong {
  color: var(--ink);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}

.behandeling-lijst .indicatie {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.16em;
  font-weight: 500;
  display: block;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.diensten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0;
  margin-top: 16px;
  max-width: 760px;
}

.dienst-card {
  background: var(--bg);
  border: none;
  border-radius: 0;
  padding: 44px 40px;
  box-shadow: none;
  text-align: left;
  transition: background 0.3s ease;
  position: relative;
}

section:not(.hero):nth-of-type(even) .dienst-card {
  background: var(--bg-soft);
}

.dienst-card:hover {
  background: var(--bg-card);
}

.dienst-card h3 {
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.dienst-card .prijs {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0 16px;
  letter-spacing: -0.025em;
  line-height: 1;
}

.dienst-card .prijs span {
  font-family: 'Inter', sans-serif !important;
  color: var(--muted) !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 0.85rem !important;
  display: inline-block;
  margin-left: 8px;
  letter-spacing: 0;
}

.dienst-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-top: 4px;
}

/* ============================================
   Producten
   ============================================ */
#producten .section-inner {
  max-width: var(--content);
}

#producten p {
  max-width: var(--reading);
  color: var(--text) !important;
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 0 0 22px !important;
  text-align: left !important;
}

#producten p span[style*="2e7d32"] {
  color: var(--brand) !important;
  font-weight: 500 !important;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.08em;
  letter-spacing: -0.005em;
}

/* ============================================
   Over Radha
   ============================================ */
.over-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 96px;
  align-items: start;
  margin-top: 24px;
}

.over-foto {
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 560px;
  object-fit: cover;
  position: sticky;
  top: 124px;
}

.over-text {
  max-width: 640px;
}

.over-text h3 {
  color: var(--ink);
  margin: 36px 0 14px;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

.over-text > p:first-of-type,
.over-text h3:first-child {
  margin-top: 0;
}

.over-text > p:first-of-type {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.over-text p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.8;
  font-size: 1.02rem;
}

.over-text em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
  font-size: 1.08em;
}

/* ============================================
   Opleidingen & Keurmerken
   ============================================ */
.opleidingen-lijst {
  list-style: none;
  max-width: var(--reading);
  margin: 16px 0 0;
  counter-reset: opleiding;
}

.opleidingen-lijst li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: baseline;
  gap: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.opleidingen-lijst li:last-child {
  border-bottom: 1px solid var(--line);
}

.opleidingen-lijst li::before {
  counter-increment: opleiding;
  content: counter(opleiding, decimal-leading-zero);
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  flex-shrink: 0;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: inline;
}

.keurmerken {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 56px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  max-width: var(--reading);
}

.keurmerken::before {
  content: 'Aangesloten bij';
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  width: 100%;
  margin-bottom: 8px;
}

.keurmerken img {
  height: 64px;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.keurmerken img:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* ============================================
   Foto's — full-bleed asymmetric gallery
   ============================================ */
section:has(.foto-grid) .section-inner {
  max-width: 100%;
  padding: 0;
}

section:has(.foto-grid) h2 {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

section:has(.foto-grid) h2::before {
  left: 40px;
}

.foto-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4px;
  margin: 0;
  width: 100%;
}

.foto-grid img {
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
  filter: saturate(0.95);
}

.foto-grid img:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}

/* ============================================
   Werkgebied
   ============================================ */
.werkgebied-info {
  text-align: left;
  max-width: var(--reading);
  margin: 0;
}

.werkgebied-info p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.werkgebied-plaatsen {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 32px 0;
}

.werkgebied-plaatsen span {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.werkgebied-plaatsen span:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  margin-top: 24px;
  align-items: start;
}

.contact-info {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  position: sticky;
  top: 124px;
}

.contact-info h3 {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.contact-info p {
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: -0.005em;
}

.contact-info .icon {
  font-size: 0.95rem;
  width: auto;
  height: auto;
  display: inline-block;
  background: transparent;
  border-radius: 0;
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.contact-info a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-info a:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.contact-info p:nth-of-type(4),
.contact-info p:nth-of-type(5) {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.9rem !important;
  color: var(--muted) !important;
  margin-top: 0 !important;
  margin-bottom: 6px !important;
  letter-spacing: 0 !important;
}

/* === Contact CTA card (replaces broken form) === */
.contact-cta {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 320px at -20% 110%, rgba(184, 137, 60, 0.08), transparent 60%),
    radial-gradient(420px 280px at 120% -20%, rgba(107, 31, 42, 0.05), transparent 60%);
  pointer-events: none;
}

.contact-cta > * {
  position: relative;
  z-index: 1;
}

.contact-cta-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.contact-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.contact-cta-text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 460px;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-cta-hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--muted-soft);
  letter-spacing: 0.04em;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  margin: 0;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 22px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  font-size: 1.02rem;
  font-family: 'Inter', sans-serif;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.contact-form textarea {
  height: 110px;
  resize: vertical;
  padding-top: 16px;
}

.contact-form .btn {
  margin-top: 36px;
  width: auto;
}

/* ============================================
   Algemene Voorwaarden
   ============================================ */
#voorwaarden .section-inner {
  max-width: var(--reading);
}

.voorwaarden-tekst {
  max-width: var(--reading);
  margin: 24px 0 0;
  text-align: left;
  columns: 1;
}

.voorwaarden-tekst h3 {
  color: var(--ink);
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

.voorwaarden-tekst h3:first-child {
  margin-top: 0;
}

.voorwaarden-tekst p {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.96rem;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--bg-dark);
  color: #c7bda8;
  padding: 80px 40px 40px;
  text-align: left;
  font-size: 0.95rem;
  border-top: none;
  position: relative;
}

.site-footer::before {
  content: 'Ranira Pedicure';
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #f4ecdc;
  margin: 0 auto 56px;
  max-width: var(--max);
  line-height: 1;
}

.site-footer::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(244, 236, 220, 0.12);
  margin: 0 auto 32px;
  max-width: var(--max);
}

.site-footer p {
  max-width: var(--max);
  margin: 0 auto 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #908778;
  letter-spacing: 0.01em;
}

.site-footer a {
  color: #d8cdb5;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-footer a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.site-footer .kvk {
  margin-top: 6px;
  font-size: 0.82rem;
  color: #6e6657;
  letter-spacing: 0.04em;
}

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (max-width: 1024px) {
  section { padding: 100px 32px; }

  .hero-inner {
    column-gap: 56px;
    padding: 0 32px;
  }

  .over-content {
    grid-template-columns: 320px 1fr;
    gap: 56px;
  }

  .over-foto { height: 460px; }

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

  .contact-info {
    position: static;
  }

  .foto-grid img { height: 420px; }
}

/* ============================================
   Responsive — Mobile
   ============================================ */
@media (max-width: 768px) {
  body { font-size: 16px; }

  .header-inner {
    padding: 0 20px;
    height: 76px;
  }

  .header-logo img { height: 50px; }

  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    gap: 18px;
  }

  nav.active { display: flex; }

  nav a::after { display: none; }

  .menu-toggle { display: block; }

  /* Hero stacks */
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    min-height: 0;
    column-gap: 0;
    padding: 56px 24px 72px;
  }

  .hero-photo {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 40px;
    height: 60vh;
    max-height: 460px;
    aspect-ratio: 4 / 5;
  }

  .hero h1 {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 24px;
    max-width: none;
  }

  .hero h1::before {
    font-size: 0.7rem;
    margin-bottom: 18px;
    letter-spacing: 0.22em;
  }

  .hero p {
    grid-column: 1;
    grid-row: 3;
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .hero .btn {
    grid-column: 1;
    grid-row: 4;
  }

  section { padding: 72px 24px; }

  section:not(.hero) h2 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    margin-bottom: 36px;
    padding-top: 40px;
  }

  section:not(.hero) .section-inner > h2 {
    padding-top: 40px;
  }

  .behandeling-lijst li strong { font-size: 1.05rem; }

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

  .dienst-card { padding: 36px 28px; }

  .dienst-card .prijs { font-size: 2.2rem; }

  .over-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .over-foto {
    max-width: 100%;
    height: 380px;
    position: static;
  }

  .over-text > p:first-of-type { font-size: 1.1rem; }

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

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

  section:has(.foto-grid) h2 {
    padding-left: 24px;
    padding-right: 24px;
  }

  section:has(.foto-grid) h2::before { left: 24px; }

  .foto-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .foto-grid img { height: 320px; }

  .keurmerken {
    gap: 36px;
    justify-content: flex-start;
  }

  .keurmerken img { height: 52px; }

  .werkgebied-plaatsen span {
    padding: 8px 16px;
    font-size: 0.82rem;
  }

  .site-footer { padding: 56px 24px 32px; }

  .site-footer::before {
    margin-bottom: 36px;
    font-size: clamp(2rem, 9vw, 3rem);
  }
}

@media (max-width: 480px) {
  body { font-size: 15.5px; }

  section { padding: 60px 20px; }

  .hero-inner { padding: 40px 20px 56px; }

  .hero-photo { height: 56vh; }

  .hero h1 { font-size: clamp(1.85rem, 7.5vw, 2.4rem); }

  section:not(.hero) h2 { font-size: 1.7rem; }

  .behandeling-lijst li strong { font-size: 1rem; }

  .dienst-card .prijs { font-size: 1.95rem; }

  .opleidingen-lijst li { font-size: 1rem; }
}
