/* =============================================
   SISSERS Hair & Beauty — Main Stylesheet
   Palette: Deep charcoal bg + warm gold accent
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================= */

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

:root {
  --bg:         #0f0f0f;
  --bg-2:       #161616;
  --bg-3:       #1e1e1e;
  --bg-light:   #242424;
  --gold:       #C9A96E;
  --gold-light: #e2c994;
  --gold-dim:   rgba(201,169,110,0.18);
  --white:      #f8f4ef;
  --white-dim:  rgba(248,244,239,0.65);
  --text:       #f0ebe4;
  --text-muted: #9e9487;
  --border:     rgba(201,169,110,0.2);
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.65);
  --transition: 260ms cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --container:  1200px;
  --gap:        clamp(2rem, 5vw, 4rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Global image fill safeguard */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); margin-bottom: 1rem; }

p { line-height: 1.75; color: var(--text); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none; line-height: 1;
}
.btn--primary { background: var(--gold); color: #0f0f0f; border-color: var(--gold); }
.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); color: #0f0f0f; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.9375rem; }
.btn--full { width: 100%; }

/* ===== SECTION HELPERS ===== */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }

.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--light .section-title,
.section-header--light .section-sub { color: var(--text); }

.section-label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
}
.section-label--gold { color: var(--gold); }
.section-title { color: var(--white); margin-bottom: 1rem; }
.section-sub { color: var(--text-muted); max-width: 52ch; margin: 0 auto; font-size: 1.0625rem; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-bottom: none;
  transition: background var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 68px;
}
.logo {
  display: flex; flex-direction: column; line-height: 1; text-decoration: none; gap: 1px;
}
.logo-main {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 700;
  letter-spacing: 0.12em; color: var(--white); text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
}

.desktop-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.desktop-nav a {
  display: block; padding: 0.5rem 0.85rem;
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--text-muted); text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.desktop-nav a.nav-cta {
  background: var(--gold); color: #0f0f0f; font-weight: 600;
  padding: 0.5rem 1.1rem; margin-left: 0.5rem;
}
.desktop-nav a.nav-cta:hover { background: var(--gold-light); color: #0f0f0f; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  border-radius: var(--radius); padding: 4px;
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,0.06); }
.hamburger-line {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
/* Hamburger → X when menu open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu__overlay {
  position: fixed; inset: 0;
  width: 100%; height: 100svh; min-height: 100dvh;
  background: var(--bg);
  z-index: 950;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu__overlay[aria-hidden="false"] { transform: translateX(0); }

.mobile-menu__panel--root {
  display: flex; flex-direction: column;
  padding: 0 1.5rem 2rem;
  min-height: 100%;
}
.mobile-menu__close {
  align-self: flex-end; margin-top: 1.2rem; margin-bottom: 1rem;
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: 0.4rem; border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.mobile-menu__close:hover { color: var(--gold); background: rgba(255,255,255,0.05); }

.mobile-menu__brand {
  display: flex; flex-direction: column; gap: 2px;
  margin-bottom: 2.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu__brand .logo-main { font-size: 2rem; }
.mobile-menu__brand .logo-sub { font-size: 0.7rem; letter-spacing: 0.2em; }

.mobile-menu__list { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-menu__item {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-menu__item:hover { color: var(--gold); }
.mobile-menu__item--cta {
  color: var(--gold); margin-top: 0.75rem;
  border-bottom-color: transparent;
}
.mobile-menu__footer {
  margin-top: auto; padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.875rem; line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100svh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.48) 50%,
    rgba(0,0,0,0.65) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 clamp(1rem, 5vw, 3rem);
  max-width: 780px;
}
.hero__eyebrow {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero__title { color: var(--white); margin-bottom: 1.25rem; }
.hero__tagline {
  color: rgba(248,244,239,0.78); font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 46ch; margin: 0 auto 2.25rem;
}
.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(248,244,239,0.45);
  animation: bounce 2.4s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== DIENSTEN ===== */
.diensten { background: var(--bg-2); }

.card-grid { display: grid; gap: 1.5rem; }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* On mobile, diensten cards use a 2-col grid to avoid very tall single-col stacking */
@media (max-width: 640px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,110,0.45);
}
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 480ms ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  margin: 1.5rem 1.5rem 0;
  color: var(--gold);
  flex-shrink: 0;
}
.card__body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card__title { color: var(--white); margin-bottom: 0.6rem; font-size: 1.35rem; }
.card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
.card__list {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.card__list li {
  font-size: 0.8125rem; color: var(--text-muted);
  padding-left: 1rem; position: relative;
}
.card__list li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
}

/* ===== OVER ONS ===== */
.over-ons { background: var(--bg); }
.over-ons__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.over-ons__media {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.over-ons__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.over-ons__content .section-label { display: block; margin-bottom: 0.6rem; }
.over-ons__content .section-title { text-align: left; margin-bottom: 1.5rem; }
.over-ons__content p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.0rem; }
.over-ons__content .btn { margin-top: 1.25rem; }

/* ===== OPENINGSTIJDEN ===== */
.openingstijden {
  background: var(--bg-3);
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.06) 0%, transparent 55%);
}
.tijden-grid {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem; margin-bottom: 1.5rem;
}
.tijden-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: border-color var(--transition);
}
.tijden-card:hover { border-color: rgba(201,169,110,0.5); }
.tijden-card--closed { opacity: 0.45; }
.tijden-dag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.tijden-uur { font-family: var(--font-display); font-size: clamp(0.95rem, 1.4vw, 1.2rem); font-weight: 600; color: var(--gold); }
.tijden-note { text-align: center; color: var(--text-muted); font-size: 0.875rem; }
.tijden-note a { color: var(--gold); }

/* ===== REVIEWS ===== */
.reviews { background: var(--bg-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.review-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.review-stars { display: flex; gap: 3px; color: var(--gold); }

.review-text {
  color: var(--text); font-size: 1rem; line-height: 1.75;
  font-style: italic; position: relative; flex: 1;
}
.review-text::before {
  content: '\201C';
  font-family: var(--font-display); font-size: 3.5rem; line-height: 0;
  color: var(--gold-dim); position: absolute; top: 0.8rem; left: -0.5rem;
}
.review-author { display: flex; align-items: center; gap: 0.875rem; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; color: var(--white); font-weight: 600; }
.review-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, #1a1506 0%, #1c1003 50%, #0f0c02 100%);
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white); margin-bottom: 0.75rem;
}
.cta-band__sub { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.0625rem; }

/* ===== CONTACT ===== */
.contact { background: var(--bg); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }

.contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border-radius: var(--radius);
  color: var(--gold);
}
.contact-item strong { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-item span, .contact-item a { color: var(--text); font-size: 0.9375rem; line-height: 1.5; }
.contact-item a:hover { color: var(--gold-light); }

.contact-hours { margin-top: 2rem; padding: 1.5rem; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.contact-hours h4 { margin-bottom: 0.75rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; font-size: 0.875rem; color: var(--text-muted); }
.hours-table td:last-child { text-align: right; color: var(--text); }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Contact Form */
.contact-form-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group:last-of-type { margin-bottom: 1.5rem; }
.form-group label { font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; }
.form-group label span { color: var(--gold); }
.form-group input,
.form-group textarea {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  color: var(--text); font-family: var(--font-body); font-size: 0.9375rem;
  outline: none; width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(158,148,135,0.5); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== FOOTER ===== */
.footer-kit {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}
.footer-kit__inner {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem); margin-bottom: 3rem;
}
.footer-kit__brand .logo-main { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; letter-spacing: 0.1em; color: var(--white); text-transform: uppercase; }
.footer-kit__brand .logo-sub { display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.footer-kit__tagline { color: var(--text-muted); font-size: 0.9rem; max-width: 36ch; line-height: 1.65; }

.footer-kit__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-kit__nav a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-kit__nav a:hover { color: var(--gold); }

.footer-kit__contact address { color: var(--text-muted); font-size: 0.9rem; line-height: 2; }
.footer-kit__contact a { color: var(--text-muted); }
.footer-kit__contact a:hover { color: var(--gold); }

.footer-kit__bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tijden-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }
  .over-ons__inner { grid-template-columns: 1fr; }
  .over-ons__media { max-height: 360px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .tijden-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .tijden-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-kit__inner { grid-template-columns: 1fr; }
  .footer-kit__bottom { flex-direction: column; text-align: center; gap: 0.35rem; }
}

@media (max-width: 380px) {
  .tijden-grid { grid-template-columns: 1fr; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
  .hero__scroll-hint { animation: none; }
}

/* ===== BODY LOCK (mobile menu open) ===== */
body.menu-open { overflow: hidden; }
