/* ============================================================
   RHC LYF Salon — Remaiko's Hair Company
   Stijl: Editoriaal, mode-tijdschrift, warm & premium
   Palet: olijfgroen #4a5a3a | goud #c8a96e | crème #f5f0e8 | bijna-zwart #1a1a1a
   ============================================================ */

/* ── Reset & custom props ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #4a5a3a;
  --gold:       #c8a96e;
  --gold-light: #dfc08e;
  --cream:      #f5f0e8;
  --cream-dark: #ede6d6;
  --near-black: #1a1a1a;
  --white:      #ffffff;
  --text:       #2a2a2a;
  --text-muted: #6b6458;

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

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(26,26,26,.10);
  --shadow-lg: 0 8px 40px rgba(26,26,26,.16);

  --nav-h: 72px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

/* Vangnet: alle content-foto's vullen hun container */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img-wrap img, .hero__media img,
.over-ons__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.container {
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title { color: var(--near-black); margin-bottom: 1rem; }

.section-sub { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-sub { margin-inline: auto; }
.section-header--light .section-title,
.section-header--light .section-label { color: var(--cream); }
.section-header--light .section-sub { color: var(--cream-dark); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(26,26,26,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,.15);
  transition: background .3s;
}

.navbar.scrolled { background: rgba(26,26,26,.98); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
  width: min(1280px, 100% - 3rem);
  margin-inline: auto;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-right: auto;
}
.logo-rhc {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
}
.logo-lyf {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: .08em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* Desktop nav links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar__link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: .5rem .85rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.navbar__link:hover { color: var(--gold); background: rgba(200,169,110,.1); }

.navbar__cta { font-size: .85rem; padding: .6rem 1.25rem; }

/* Mobile trigger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--white);
}

.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .mobile-menu__trigger { display: flex; }
}

/* ============================================================
   MOBILE MENU OVERLAY — fullscreen kit
   ============================================================ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--near-black);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

.mobile-menu__panel--root {
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2rem 3rem;
  min-height: 100svh;
  min-height: 100dvh;
}

.mobile-menu__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: .5rem;
  border-radius: 6px;
  transition: color .2s;
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: .5rem; }

.mobile-menu__cta {
  margin-top: 2.5rem;
  align-self: flex-start;
  font-size: 1rem;
  padding: .9rem 2rem;
}

/* body lock when menu open */
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 7rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,.2) 0%,
    rgba(26,26,26,.1) 40%,
    rgba(26,26,26,.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, 100% - 3rem);
  margin-inline: auto;
  color: var(--white);
}

.hero__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero__sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  letter-spacing: .03em;
}

/* ============================================================
   AWARD BANNER
   ============================================================ */
.award-banner {
  background: var(--green);
  padding: 3rem 0;
}

.award-banner__inner {
  width: min(1000px, 100% - 3rem);
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}

.award-banner__icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(200,169,110,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  margin-bottom: .75rem;
}

.award-banner__desc {
  color: rgba(245,240,232,.75);
  line-height: 1.7;
  max-width: 640px;
}

.award-banner__desc strong { color: var(--gold); }

@media (max-width: 640px) {
  .award-banner__inner { flex-direction: column; align-items: center; text-align: center; }
  .award-banner__desc { max-width: 100%; }
}

/* ============================================================
   DIENSTEN
   ============================================================ */
.diensten {
  padding: 6rem 0;
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--featured { border: 2px solid var(--gold); }

.card__img-wrap {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(74,90,58,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.card--featured .card__icon { background: rgba(200,169,110,.15); color: var(--gold); }

.card__title {
  font-size: 1.25rem;
  color: var(--near-black);
}

.card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--green);
  transition: gap .2s, color .2s;
  margin-top: .25rem;
}
.card__link:hover { gap: .65rem; color: var(--gold); }

/* LYF Community strip */
.lyf-community {
  margin-top: 3rem;
  background: var(--near-black);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.lyf-community__icon {
  width: 56px;
  height: 56px;
  background: rgba(200,169,110,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.lyf-community__content { flex: 1; min-width: 200px; }
.lyf-community__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: .4rem;
}
.lyf-community__content p { font-size: .9rem; color: rgba(245,240,232,.65); line-height: 1.6; }

/* ============================================================
   OVER ONS
   ============================================================ */
.over-ons {
  padding: 4.5rem 0 5.5rem;
  background: var(--cream-dark);
}

.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.over-ons__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.over-ons__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-ons__content .section-title { margin-bottom: 1.25rem; }

.over-ons__content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.over-ons__content p strong { color: var(--near-black); }

.over-ons__values {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: 1.5rem 0 2rem;
}

.over-ons__value {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--green);
}

@media (max-width: 768px) {
  .over-ons__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: 6rem 0;
  background: var(--near-black);
}

.reviews .section-label { color: var(--gold); }
.reviews .section-title { color: var(--cream); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .25s, background .25s;
}
.review-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}

.review-card__stars { display: flex; gap: .2rem; }

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(245,240,232,.85);
  flex: 1;
}

.review-card__author {
  font-style: normal;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 6rem 0;
  background: var(--green);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Info */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--cream);
}
.contact__info-block strong {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.contact__info-block p, .contact__info-block a {
  font-size: .95rem;
  color: rgba(245,240,232,.8);
}
.contact__info-block a:hover { color: var(--gold); }

.contact__info-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,169,110,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.hours-table { border-collapse: collapse; font-size: .9rem; }
.hours-table td { padding: .2rem .75rem .2rem 0; color: rgba(245,240,232,.8); }
.hours-table td:first-child { font-weight: 500; }
.hours-table tr.closed td { opacity: .5; }

.contact__map { border-radius: var(--radius); overflow: hidden; margin-top: .5rem; }
.map-link {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-kit {
  background: var(--near-black);
  color: rgba(245,240,232,.65);
  padding: 4rem 0 2rem;
}

.footer-kit__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,110,.15);
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: .75rem;
}

.footer-kit__brand p {
  font-size: .875rem;
  line-height: 1.6;
  margin-bottom: .4rem;
}

.footer-kit__tagline {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-kit__links h4,
.footer-kit__contact h4,
.footer-kit__hours h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-kit__links ul,
.footer-kit__contact ul,
.footer-kit__hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
}

.footer-kit__links a:hover,
.footer-kit__contact a:hover { color: var(--gold); }

.footer-kit__bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

.footer-kit__demo-note { color: rgba(245,240,232,.35); }
.footer-kit__demo-note a { color: var(--gold); text-decoration: underline; }

@media (max-width: 900px) {
  .footer-kit__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-kit__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .diensten { padding: 4rem 0; }
  .reviews { padding: 4rem 0; }
  .over-ons { padding: 4rem 0; }
  .contact { padding: 4rem 0; }

  .lyf-community { padding: 1.5rem; gap: 1rem; }

  .card-grid { grid-template-columns: 1fr; }
  /* On mobile, cards get a wider aspect ratio so images don't letterbox */
  .card__img-wrap { aspect-ratio: 16/7; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 1.75rem; }

  .hero__title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Focus styles ── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
