/* ============================================================
   KAPSALON JACQUELINE — Design System
   Palette: Warm cream (#F9F5F0) · Deep espresso (#2C1A0F) ·
            Rosé gold accent (#C09070) · Soft blush (#E8D5C4)
   Type: Playfair Display (display/italic) + Inter (body/UI)
   ============================================================ */

/* ─── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F9F5F0;
  --cream-dark: #EDE6DC;
  --espresso:   #2C1A0F;
  --espresso-mid: #4A2E1A;
  --rose:       #C09070;
  --rose-light: #E8D5C4;
  --rose-dark:  #9A7050;
  --white:      #FFFFFF;
  --text:       #2C1A0F;
  --text-muted: #7A6054;
  --border:     #E0D4C8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h: 72px;
  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  1180px;
  --radius:     12px;
  --shadow-sm:  0 2px 12px rgba(44,26,15,.08);
  --shadow-md:  0 8px 32px rgba(44,26,15,.12);
  --shadow-lg:  0 20px 60px rgba(44,26,15,.18);

  --transition: 0.25s ease;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }

em { font-style: italic; color: var(--rose-dark); }

p { max-width: 60ch; }

/* ─── LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header p { margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,144,112,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ─── ANNOUNCEMENT BANNER ───────────────────────────────────── */
.banner {
  background: var(--espresso);
  color: var(--white);
  text-align: center;
  padding: 0.6rem 3rem;
  font-size: 0.875rem;
  position: relative;
}
.banner a { color: var(--rose-light); font-weight: 600; }
.banner a:hover { color: var(--white); }
.banner-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  padding: 0.25rem;
}
.banner-close:hover { color: var(--white); }

/* ─── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249,245,240,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0;
}
.logo-script {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--espresso-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--espresso); }
.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - 2.5rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,26,15,.78) 0%,
    rgba(44,26,15,.50) 50%,
    rgba(44,26,15,.22) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
  padding: 4rem 0;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em {
  color: var(--rose-light);
}

.hero-sub {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
}
.hero-scroll:hover { color: var(--white); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trustbar {
  background: var(--espresso);
  padding: 3rem 0;
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  padding: 0.5rem 0;
}
.trust-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--rose-light);
}
.trust-item strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
}

/* ─── DIENSTEN ──────────────────────────────────────────────── */
.diensten-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.diensten-img-col { position: sticky; top: calc(var(--nav-h) + 2rem); }
.diensten-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.diensten-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.dienst-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dienst-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.dienst-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}
.dienst-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--espresso);
}
.dienst-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── KLEUR SHOWCASE ────────────────────────────────────────── */
.kleur-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.kleur-img-wrap {
  overflow: hidden;
}
.kleur-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}
.kleur-img-wrap:hover img { transform: scale(1.03); }

.kleur-content {
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  color: var(--white);
}
.kleur-content .section-eyebrow { color: var(--rose-light); }
.kleur-content h2 { color: var(--white); margin: 0.75rem 0 1.25rem; }
.kleur-content h2 em { color: var(--rose-light); }
.kleur-content p {
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ─── OVER ONS ──────────────────────────────────────────────── */
.over-ons { background: var(--cream-dark); }

.over-ons-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.over-ons-img-col { position: relative; padding-bottom: 2rem; overflow: visible; }
.over-ons-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.over-ons-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--rose);
  color: var(--white);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.1;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.badge-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }

.over-ons-text .section-title { margin-bottom: 1.5rem; }
.over-ons-text p { color: var(--text-muted); margin-bottom: 1rem; }
.over-ons-text p:last-of-type { margin-bottom: 2rem; }

.over-ons-facts {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fact strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose); }
.fact span, .fact a { font-size: 1rem; color: var(--text); font-weight: 500; }
.fact a:hover { color: var(--rose); }

/* ─── PRIJZEN ───────────────────────────────────────────────── */
.prijzen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

/* Wrap each column in a card */
.prijzen-cat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.prijzen-cat-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--rose-light);
}
.prijzen-cat-title svg { width: 20px; height: 20px; color: var(--rose); }

.prijzen-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prijzen-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border);
  gap: 1rem;
}
.prijzen-list li:last-child { border-bottom: none; }
.prijzen-list li span:first-child { color: var(--text-muted); }
.prijzen-list li span:last-child { color: var(--espresso); font-weight: 600; white-space: nowrap; }

.prijzen-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ─── OPENINGSTIJDEN ────────────────────────────────────────── */
.openingstijden { background: var(--cream-dark); }

.ot-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.ot-table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.ot-table {
  width: 100%;
  border-collapse: collapse;
}
.ot-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.ot-table td:first-child {
  font-weight: 600;
  color: var(--espresso);
  width: 55%;
}
.ot-table td:last-child { color: var(--text-muted); }
.ot-table tr.closed td { color: var(--border); }
.ot-table tr:last-child td { border-bottom: none; }

.ot-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 0.25rem;
}
.contact-detail span, .contact-detail a {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-detail a:hover { color: var(--rose); }

.map-embed { margin-top: 1rem; }

/* ─── FORM ──────────────────────────────────────────────────── */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--espresso);
}

input, textarea, select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192,144,112,.15);
  background: var(--white);
}
input::placeholder, textarea::placeholder { color: var(--text-muted); opacity: 0.7; }
textarea { resize: vertical; min-height: 110px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A6054' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.form-note a { color: var(--rose); font-weight: 600; }
.form-note a:hover { color: var(--rose-dark); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .footer-logo { margin-bottom: 1rem; }
.footer-brand .logo-script { color: rgba(255,255,255,.5); }
.footer-brand .logo-name { color: var(--white); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 30ch; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.5rem;
}
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--rose-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-credit a { color: var(--rose-light); }
.footer-credit a:hover { color: var(--white); }

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .diensten-layout { grid-template-columns: 1fr; }
  .diensten-img-col { position: static; }
  .diensten-img { aspect-ratio: 16/9; }

  .kleur-showcase { grid-template-columns: 1fr; }
  .kleur-img-wrap { min-height: 320px; }
  .kleur-img-wrap img { height: 320px; }

  .over-ons-layout { grid-template-columns: 1fr; }
  .over-ons-badge { right: 1rem; bottom: 1rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--espresso-mid);
  }
  .nav-links a:hover { background: var(--cream); }
  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.875rem !important;
  }

  /* Hero */
  .hero { min-height: 90svh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }

  /* Trust bar */
  .trustbar-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Prijzen */
  .prijzen-grid { grid-template-columns: 1fr; }

  /* OT */
  .ot-layout { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Over ons badge */
  .over-ons-badge { width: 90px; height: 90px; bottom: 1rem; right: 1rem; }
  .badge-number { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .trustbar-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
  .ot-table-wrap { padding: 1.5rem; }
  .prijzen-cat { padding: 1.5rem; }
  .hero-title { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .kleur-content { padding: 2.5rem 1.5rem; }
}

/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
