/* ============================================================
   NATASJA'S HAARMODE & BEAUTY — Demo site stylesheet
   Brand: #C0392B rood, #FFFFFF wit, #F2F2F2 grijs, #2C2C2C donker
   ============================================================ */

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

:root {
  --red:       #C0392B;
  --red-dark:  #a0301f;
  --red-light: #e8524a;
  --white:     #FFFFFF;
  --light:     #F7F3F2;
  --grey:      #F2F2F2;
  --mid:       #888;
  --dark:      #2C2C2C;
  --text:      #3A3030;

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

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,.12);
  --transition: 240ms ease;

  --container: 1200px;
  --header-h: 72px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

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

/* Image fill utility — mandatory for all content photos */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery-item img, .card__media img,
.hero__img, .team-card__photo img,
.loyaliteit-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); font-weight: 600; }
em { font-style: italic; }

p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.75em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--lg { padding: 0.9em 2.2em; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--red { background: var(--red); color: #fff; border-color: var(--red); }
.btn--red:hover, .btn--red:focus-visible { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,.35); }

.btn--white { background: #fff; color: var(--red); border-color: #fff; }
.btn--white:hover, .btn--white:focus-visible { background: #f5f5f5; transform: translateY(-2px); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover, .btn--outline-white:focus-visible { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }

.btn--outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline-red:hover, .btn--outline-red:focus-visible { background: var(--red); color: #fff; transform: translateY(-2px); }

.btn-icon { width: 1.1em; height: 1.1em; flex-shrink: 0; }

/* ---------- SITE HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,57,43,.1);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text em {
  font-size: 0.8rem;
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  padding: 0.4em 0.85em;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--red);
  background: rgba(192,57,43,.06);
}

.nav-cta { flex-shrink: 0; }

/* ---------- MOBILE MENU TRIGGER ---------- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}

.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; width: 0; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu__panel { display: flex; flex-direction: column; height: 100%; padding: 1.5rem; }

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 1rem;
}

.mobile-menu__close svg { width: 28px; height: 28px; }

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

.mobile-menu__item {
  display: block;
  padding: 1rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}

.mobile-menu__item:hover, .mobile-menu__item:focus-visible { color: var(--red-light); }

.mobile-cta {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 1.05rem;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 43, 0.72) 0%,
    rgba(44, 20, 18, 0.80) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2.5rem);
  width: 100%;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 620px;
}

.hero__title em { font-style: italic; color: rgba(255,255,255,.9); }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.6);
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll svg { width: 28px; height: 28px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- INTRO STRIP ---------- */
.intro-strip {
  background: var(--red);
  padding: 1.25rem 0;
}

.intro-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  justify-content: center;
  align-items: center;
}

.intro-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.intro-item__icon svg { width: 18px; height: 18px; stroke: rgba(255,255,255,.8); }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--light { background: var(--light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-title--light { color: #fff; }

.section-sub {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: center;
}

.section-cta__text {
  color: var(--mid);
  font-style: italic;
  font-size: 0.95rem;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.card:hover .card__media img { transform: scale(1.04); }

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

.card__title { font-size: 1.15rem; color: var(--dark); }

.card__text { color: #666; font-size: 0.92rem; line-height: 1.6; flex: 1; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--red);
  font-weight: 700;
  font-size: 0.88rem;
  transition: gap var(--transition);
  margin-top: 0.4rem;
}

.card__link svg { width: 16px; height: 16px; }
.card__link:hover { gap: 0.65em; }

/* CTA card variant */
.card--cta-card {
  background: var(--red);
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 300px;
}

.card__cta-content {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.card__cta-icon { width: 48px; height: 48px; margin-bottom: 0.5rem; }

.card__cta-title { color: #fff; font-size: 1.4rem; }

.card__cta-text { color: rgba(255,255,255,.8); font-size: 0.9rem; }

.card--cta-card .btn--red {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  margin-top: 0.5rem;
}

.card--cta-card .btn--red:hover { background: #f0f0f0; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--red);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band__title {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.cta-band__sub {
  color: rgba(255,255,255,.8);
  font-size: 0.97rem;
  margin-top: 0.4rem;
  max-width: 440px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  flex-shrink: 0;
}

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (min-width: 640px) {
  .team-card { flex-direction: column; }
}

.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.team-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .team-card__photo { width: 100%; aspect-ratio: 4/5; height: auto; min-height: unset; }
}

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

.team-card__info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.team-card__name { font-size: 1.3rem; color: var(--dark); margin-bottom: 0; }
.team-card__role { color: var(--red); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.team-card__bio { color: #666; font-size: 0.93rem; line-height: 1.65; margin-top: 0.25rem; flex: 1; }

.team-card__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }

.tag {
  display: inline-block;
  padding: 0.25em 0.8em;
  background: rgba(192,57,43,.08);
  color: var(--red);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grey);
  position: relative;
}

.gallery-item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* ---------- LOYALITEIT ---------- */
.loyaliteit-section { background: var(--red); }

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

.loyaliteit-content .section-label { color: rgba(255,255,255,.7); }

.loyaliteit-text {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.75;
  margin: 1.25rem 0 1.5rem;
}

.loyaliteit-punten {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.loyaliteit-punten li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.loyaliteit-punten li svg {
  width: 20px; height: 20px;
  stroke: rgba(255,255,255,.8);
  flex-shrink: 0;
}

.loyaliteit-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  aspect-ratio: 16/10;
}

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

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

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--red);
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars svg { width: 16px; height: 16px; }

.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75em 1em;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}

.form-group textarea { resize: vertical; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card,
.contact-hours-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1.5px solid rgba(192,57,43,.15);
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.contact-detail:last-child { margin-bottom: 0; }

.contact-detail__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(192,57,43,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail__icon svg { width: 18px; height: 18px; stroke: var(--red); }

.contact-detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--mid); margin-bottom: 0.2rem; }
.contact-detail address, .contact-detail a, .contact-detail span { font-style: normal; font-size: 0.93rem; color: var(--text); line-height: 1.5; }
.contact-detail a:hover { color: var(--red); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table th, .hours-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hours-table th {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  width: 50%;
}

.hours-table td { color: #555; }

.hours-table tr:last-child th,
.hours-table tr:last-child td { border-bottom: none; }

/* ---------- FOOTER ---------- */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-kit__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon { width: 34px; height: 34px; }

.footer-logo span {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.footer-logo em { color: var(--red-light); font-size: 0.8rem; }

.footer-tagline { font-size: 0.88rem; line-height: 1.65; max-width: 260px; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover { background: var(--red); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

.footer-col__title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--red-light); }

.footer-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.footer-hours th, .footer-hours td {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-hours th { text-align: left; font-weight: 600; color: rgba(255,255,255,.75); width: 55%; }
.footer-hours td { color: rgba(255,255,255,.55); }
.footer-hours tr:last-child th, .footer-hours tr:last-child td { border-bottom: none; }

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  margin-bottom: 0.5rem;
}

.footer-email {
  display: block;
  font-size: 0.86rem;
  color: var(--red-light);
  margin-bottom: 1.25rem;
  word-break: break-all;
}

.footer-email:hover { text-decoration: underline; }

.footer-cta { font-size: 0.88rem; padding: 0.6em 1.4em; }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy, .footer-made { font-size: 0.8rem; color: rgba(255,255,255,.4); }
.footer-made a { color: rgba(255,255,255,.55); text-decoration: underline; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1023px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: span 2; }
}

@media (max-width: 767px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .card-grid--3 { grid-template-columns: 1fr; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .loyaliteit-inner { grid-template-columns: 1fr; }
  .loyaliteit-visual { order: -1; aspect-ratio: 16/9; }

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

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

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

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

  .footer-kit__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col--brand { grid-column: span 1; }

  .footer-kit__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 479px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* ---------- FOCUS VISIBLE ---------- */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- PRINT ---------- */
@media print {
  .site-header, .mobile-menu__trigger, .mobile-menu__overlay, .hero__scroll, .cta-band, .footer-kit { display: none; }
  body { font-size: 11pt; }
}
