/* =====================================================
   DE HEEREN VAN MONTFOORT — Stylesheet
   Brand: Amber #C8860A | Dark #1A1A1A | Crème #F5F0E8
   Type: Playfair Display + Inter
   ===================================================== */

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

:root {
  --amber:       #C8860A;
  --amber-dark:  #A86D06;
  --amber-light: #E8A82A;
  --dark:        #1A1A1A;
  --dark-mid:    #2A2A2A;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --white:       #FFFFFF;
  --grey:        #4A4A4A;
  --grey-light:  #7A7A7A;
  --border:      rgba(200,134,10,0.2);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', 'Open Sans', system-ui, sans-serif;

  --radius:   6px;
  --shadow:   0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.18);
  --transition: 0.25s ease;

  --header-h: 72px;
}

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

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

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

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

ul { list-style: none; }

address { font-style: normal; }

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

/* =====================================================
   MEDIA / IMAGE-FILL SAFETY NET
   ===================================================== */
.media, .img-fill, figure.photo { position:relative; overflow:hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.card__img-wrap img, .visual-card img,
.sfeer-break__media img, .cta-band__bg img { width:100%; height:100%; object-fit:cover; display:block; }

/* =====================================================
   CONTAINER
   ===================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.container--split-reverse .split__text { order: 2; }
.container--split-reverse .split__visual { order: 1; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,134,10,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--sm  { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg  { padding: 18px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(26,26,26,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,134,10,0.2);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--amber);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  color: var(--white);
  line-height: 1.3;
}
.logo-text em { font-style: italic; color: var(--amber-light); }

.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; align-items: center; gap: 8px; }
.desktop-nav a {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover { color: var(--amber-light); background: rgba(200,134,10,0.1); }

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

/* =====================================================
   HAMBURGER
   ===================================================== */
.mobile-menu__trigger {
  display: none;
  background: rgba(200,134,10,0.15);
  border: 2px solid rgba(200,134,10,0.4);
  border-radius: 6px;
  cursor: pointer;
  padding: 9px 10px;
  margin-left: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.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; }
.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;
  z-index: 950;
  background: var(--dark);
  height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu__overlay.is-open {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu__panel--root { transform: translateX(0); }
.mobile-menu__panel--root.is-hidden { transform: translateX(-100%); }
.mobile-menu__panel--sub { transform: translateX(100%); }
.mobile-menu__panel--sub.is-visible { transform: translateX(0); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(200,134,10,0.2);
  flex-shrink: 0;
}

.mobile-menu__brand {
  font-family: var(--font-serif);
  color: var(--amber-light);
  font-size: 1rem;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: color var(--transition);
}
.mobile-menu__close:hover { color: var(--amber-light); }

.mobile-menu__list {
  padding: 16px 0;
  flex: 1;
}

.mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background var(--transition);
  font-family: var(--font-sans);
}
.mobile-menu__item:hover { color: var(--amber-light); background: rgba(200,134,10,0.06); }

.drill-arrow { flex-shrink: 0; transition: transform var(--transition); }

.mobile-menu__back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--amber-light);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(200,134,10,0.2);
  cursor: pointer;
  font-family: var(--font-sans);
  width: 100%;
  text-align: left;
}

.mobile-menu__subheading {
  padding: 14px 24px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.mobile-menu__footer {
  padding: 24px;
  border-top: 1px solid rgba(200,134,10,0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu__tel {
  text-align: center;
  font-size: 1rem;
  color: var(--amber-light);
  font-weight: 600;
}
.mobile-menu__tel a { color: inherit; }

/* =====================================================
   SECTIONS — BASE
   ===================================================== */
.section {
  padding: 96px 0;
}

.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark); color: var(--white); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}
.section-label--light { color: var(--amber-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}
.section-title--light { color: var(--white); }

.section-body {
  font-size: 1.0625rem;
  color: var(--grey);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 16px;
}
.section-body--light { color: rgba(255,255,255,0.8); }

.section-intro {
  font-size: 1.0625rem;
  color: var(--grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-intro--light { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-title { margin-bottom: 16px; }

.section-cta-row {
  text-align: center;
  margin-top: 48px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: 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(26,26,26,0.72) 0%,
    rgba(26,26,26,0.5) 50%,
    rgba(200,134,10,0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
  border: 1px solid rgba(200,134,10,0.4);
  padding: 6px 16px;
  border-radius: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--amber-light); }

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

/* =====================================================
   OVER ONS — SPLIT
   ===================================================== */
.icon-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--grey);
}

.icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(200,134,10,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  border: 1px solid rgba(200,134,10,0.2);
}

/* =====================================================
   VISUAL CARD
   ===================================================== */
.visual-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

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

.visual-card__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(200,134,10,0.4);
  border-radius: 8px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-stars {
  display: flex;
  gap: 2px;
  color: var(--amber);
}

/* =====================================================
   CARD GRID
   ===================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,134,10,0.18);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  border-color: rgba(200,134,10,0.4);
}

.card__img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__body {
  padding: 24px;
}

.card__icon {
  width: 40px;
  height: 40px;
  background: rgba(200,134,10,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-light);
  margin-bottom: 14px;
  border: 1px solid rgba(200,134,10,0.25);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.card__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  border: 1px solid rgba(200,134,10,0.35);
  padding: 4px 12px;
  border-radius: 20px;
}

/* =====================================================
   SFEER BREAK
   ===================================================== */
.sfeer-break {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.sfeer-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,26,26,0.85) 0%,
    rgba(26,26,26,0.6) 100%
  );
}

.sfeer-break__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 64px 24px;
  max-width: 720px;
}

.sfeer-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

blockquote cite {
  display: block;
  font-size: 0.875rem;
  color: var(--amber-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* =====================================================
   VERGADEREN — FEATURE LIST
   ===================================================== */
.feature-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feat-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,134,10,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  border: 1px solid rgba(200,134,10,0.2);
}

.feature-list li div strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.feature-list li div p {
  font-size: 0.875rem;
  color: var(--grey);
  line-height: 1.5;
}

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

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

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

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(200,134,10,0.22) 100%);
}

.cta-band__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-band__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
}

.cta-tel {
  color: var(--amber-light);
  font-weight: 600;
}
.cta-tel:hover { text-decoration: underline; }

.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.review-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.review-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.6;
  flex: 1;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  font-style: normal;
}

.review-source {
  font-size: 0.75rem;
  color: var(--grey-light);
  letter-spacing: 0.05em;
}

/* =====================================================
   CONTACT — FORM
   ===================================================== */
.split__form {
  background: rgba(200,134,10,0.06);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: 12px;
  padding: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,134,10,0.25);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.9375rem;
  color: var(--white);
  font-family: var(--font-sans);
  transition: border-color var(--transition), background var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(200,134,10,0.08);
}

/* Contact info list */
.contact-info {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(200,134,10,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  border: 1px solid rgba(200,134,10,0.25);
  margin-top: 2px;
}

.contact-info li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info li div strong {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
}

.contact-info li div span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.contact-info a { color: var(--amber-light); }
.contact-info a:hover { text-decoration: underline; }

/* =====================================================
   FOOTER KIT
   ===================================================== */
.footer-kit {
  background: #111111;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.75);
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(200,134,10,0.15);
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 260px;
}

.footer-kit__brand h3,
.footer-kit__nav h3,
.footer-kit__hours h3,
.footer-kit__contact h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 16px;
}

.footer-kit__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-kit__nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-kit__nav a:hover { color: var(--amber-light); }

.footer-kit__hours ul { display: flex; flex-direction: column; gap: 8px; }
.footer-kit__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  gap: 16px;
}
.hours-closed { color: rgba(255,255,255,0.4) !important; }

.footer-kit__contact address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-kit__contact p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer-kit__contact a {
  color: var(--amber-light);
  transition: color var(--transition);
}
.footer-kit__contact a:hover { color: var(--white); }

.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-kit__credit a {
  color: var(--amber);
  transition: color var(--transition);
}
.footer-kit__credit a:hover { color: var(--amber-light); }

/* =====================================================
   RESPONSIVE — TABLET (≤ 900px)
   ===================================================== */
@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta { display: none; }

  .mobile-menu__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container--split,
  .container--split-reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .container--split-reverse .split__text { order: 1; }
  .container--split-reverse .split__visual { order: 2; }

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

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

  .footer-kit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-kit__brand { grid-column: 1 / -1; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ===================================================== */
@media (max-width: 600px) {
  :root { --header-h: 60px; }

  .cta-band__sub { font-size: 1.125rem; }

  .section { padding: 64px 0; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }

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

  .footer-kit__grid { grid-template-columns: 1fr; gap: 28px; }

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

  .cta-band__actions { flex-direction: column; align-items: center; }
  .cta-band__actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  .split__form { padding: 24px; }

  .sfeer-break { min-height: 360px; }

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

  .section-title { font-size: 1.875rem; }
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
