/* ═══════════════════════════════════════════════════════════════
   De Haarfilosoof — Premium Kapsalon Gouda
   Palette: #1a1a1a · #ffffff · #f2f2f2 · #8dc63f (lime accent)
   Fonts: Cormorant Garamond (display) + Inter (body)
═══════════════════════════════════════════════════════════════ */

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

:root {
  --black:   #1a1a1a;
  --white:   #ffffff;
  --grey-50: #f7f7f7;
  --grey-100:#f2f2f2;
  --grey-300:#d4d4d4;
  --grey-600:#6b6b6b;
  --charcoal:#222222;
  --lime:    #8dc63f;
  --lime-dk: #74a932;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --radius: 4px;
  --shadow: 0 2px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
a:hover { color: var(--lime); }

ul { list-style: none; }

/* ── Media / image-fill containers ────────────────────────── */
.media,
.img-fill,
figure.photo { position: relative; overflow: hidden; }

.media > img,
.img-fill > img,
figure.photo > img,
.gallery-strip__item img,
.card__media img,
.hero__img,
.over-jose__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

em { font-style: italic; }
strong { font-weight: 600; }

.lead { font-size: 1.1rem; line-height: 1.7; }

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

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .875rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--lime    { background: var(--lime); color: var(--black); border-color: var(--lime); }
.btn--lime:hover { background: var(--lime-dk); border-color: var(--lime-dk); color: var(--black); }

.btn--outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }

.btn--ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn--white   { background: var(--white); color: var(--black); }
.btn--white:hover { background: var(--grey-100); color: var(--black); }

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

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

/* ── Screen-reader only ──────────────────────────────────────*/
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--nav-h);
}

.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
}

.logo { display: flex; flex-direction: column; line-height: 1.1; flex-shrink: 0; }
.logo-main { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--white); letter-spacing: .01em; }
.logo-sub   { font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--lime); margin-top: 1px; }

.desktop-nav { margin-left: auto; }
.desktop-nav ul { display: flex; gap: 2rem; }
.desktop-nav a {
  font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.75); transition: color .2s;
}
.desktop-nav a:hover { color: var(--lime); }

.header-cta { margin-left: 1rem; flex-shrink: 0; }

/* Hamburger */
.mobile-menu__trigger {
  display: none; background: none; border: none; cursor: pointer; padding: .5rem; margin-left: auto;
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--white);
  transition: transform .25s, opacity .25s;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(6.5px) 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(-6.5px) rotate(-45deg); }

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

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU — fullscreen overlay
═══════════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed; inset: 0; z-index: 200;
  width: 100%; height: 100dvh;
  background: var(--black);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu__overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}

.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; overflow-y: auto; }
.mobile-menu__panel--root { padding: var(--nav-h) 2rem 2rem; }

.mobile-menu__close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: var(--white); padding: .5rem;
}

.mobile-menu__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu__item {
  display: block; padding: 1rem 0;
  font-family: var(--font-display); font-size: 2rem; font-weight: 300;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color .2s, padding-left .2s;
}
.mobile-menu__item:hover { color: var(--lime); padding-left: .5rem; }

.mobile-menu__cta { margin-top: 2.5rem; align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}

.hero__media {
  position: absolute; inset: 0;
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,.2) 0%,
    rgba(26,26,26,.15) 30%,
    rgba(26,26,26,.55) 70%,
    rgba(26,26,26,.88) 100%
  );
}

.hero__content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  margin-top: var(--nav-h);
}

.hero__eyebrow {
  font-size: .75rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1rem;
}

.hero__heading {
  color: var(--white); margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero__heading em { color: var(--lime); }

.hero__sub {
  color: rgba(255,255,255,.8); max-width: 540px;
  font-size: 1.05rem; line-height: 1.7; margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero__scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: .6; transition: opacity .2s;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.hero__scroll-hint:hover { opacity: 1; }

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

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem 0;
}
.trust-bar__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 400;
  letter-spacing: .04em;
}
.trust-item strong { font-size: 1.35rem; font-weight: 700; color: var(--white); }
.trust-item--score { gap: .5rem; }
.trust-item__stars { display: flex; gap: 3px; }

.trust-divider {
  width: 1px; height: 30px; background: rgba(255,255,255,.2); flex-shrink: 0;
}

@media (max-width: 600px) {
  .trust-divider { display: none; }
  .trust-bar__inner { gap: .75rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════ */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--white   { background: var(--white); }
.section--grey    { background: var(--grey-100); }
.section--dark    { background: var(--black); }
.section--charcoal{ background: #181818; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header--light .section-label,
.section-header--light .section-title { color: var(--white); }

.section-label {
  font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  color: var(--lime); margin-bottom: .75rem; display: block;
}
.section-title { color: var(--black); margin-bottom: 1rem; }
.section-intro { color: var(--grey-600); font-size: .95rem; line-height: 1.7; }

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

@media (max-width: 900px) { .diensten-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .diensten-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.card__media {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.card__media > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.card:hover .card__media > img { transform: scale(1.04); }
.card__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,.4) 0%, transparent 60%);
}

.card__body { padding: 1.5rem; }
.card__icon {
  width: 40px; height: 40px;
  background: var(--grey-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card__icon--lime { background: rgba(141,198,63,.15); color: var(--lime); }
.card__title { font-size: 1.2rem; margin-bottom: .5rem; color: var(--black); }
.card__text  { color: var(--grey-600); font-size: .9rem; line-height: 1.6; margin-bottom: .75rem; }
.card__price { font-size: .85rem; font-weight: 500; color: var(--black); }
.card__price strong { color: var(--lime-dk); font-size: 1rem; }

.card__body--centered { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2.5rem 1.5rem; }
.card__body--centered .card__title { margin-top: .5rem; }

.diensten-card--cta { 
  background: var(--black); 
  border-color: rgba(141,198,63,.3); 
  border-style: solid;
}
.diensten-card--cta .card__title { color: var(--white); }
.diensten-card--cta .card__text  { color: rgba(255,255,255,.65); }
.diensten-card--cta .card__icon--lime { background: rgba(141,198,63,.15); }

/* ═══════════════════════════════════════════════════════════
   GALLERY STRIP
═══════════════════════════════════════════════════════════ */
.gallery-strip {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(141,198,63,.3) transparent;
  margin: 2.5rem 0 2rem;
  cursor: grab;
}
.gallery-strip:active { cursor: grabbing; }
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-track { background: transparent; }
.gallery-strip::-webkit-scrollbar-thumb { background: rgba(141,198,63,.3); border-radius: 2px; }

.gallery-strip__track {
  display: flex; gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem) 1rem;
  min-width: max-content;
}

.gallery-strip__item {
  flex-shrink: 0;
  width: clamp(180px, 22vw, 270px);
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.gallery-strip__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery-strip__item:hover img { transform: scale(1.05); }

.gallery-cta { text-align: center; margin-top: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   OVER JOSE
═══════════════════════════════════════════════════════════ */
.over-jose {
  position: relative;
  background: var(--white);
}

/* Separator line top */
.over-jose::before {
  content: '';
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

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

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

.over-jose__image-col { position: relative; }
.over-jose__img-wrap {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
}
.over-jose__img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.over-jose__badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--black);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 130px;
  z-index: 2;
}
.over-jose__badge-stars { display: flex; gap: 3px; justify-content: center; margin-bottom: .4rem; }
.over-jose__badge-score { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--white); line-height: 1; }
.over-jose__badge-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: .25rem; }

@media (max-width: 768px) {
  .over-jose__badge { right: 1rem; bottom: 1rem; }
}

.over-jose__content { padding-top: .5rem; }
.over-jose__text { color: var(--grey-600); font-size: .95rem; line-height: 1.75; margin-bottom: 1rem; }
.over-jose__text.lead { color: var(--black); }

.over-jose__awards { margin-top: 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.award-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; font-weight: 500; color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; } }

.review-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: background .25s, transform .25s;
  min-height: 280px;
}
.review-card:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.review-card__stars { display: flex; gap: 3px; }
.review-card__text {
  font-family: var(--font-display); font-size: 1.08rem; font-style: italic;
  color: rgba(255,255,255,.9); line-height: 1.8; flex: 1;
}
.review-card__author {
  display: flex; align-items: center; gap: .75rem;
  font-style: normal;
}
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--lime); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.review-card__author strong { display: block; color: var(--white); font-size: .9rem; }
.review-card__author span  { color: rgba(255,255,255,.45); font-size: .75rem; }

.reviews-score-banner {
  background: rgba(141,198,63,.08);
  border: 1px solid rgba(141,198,63,.25);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.reviews-score-banner__left { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.reviews-score-banner__num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--white); line-height: 1; }
.reviews-score-banner__stars { display: flex; gap: 3px; }
.reviews-score-banner__text { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.6; flex: 1; min-width: 200px; }

/* ═══════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--lime);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.cta-band__inner {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cta-band__text { flex: 1; min-width: 240px; }
.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--black); margin-bottom: .4rem;
}
.cta-band__sub { color: rgba(0,0,0,.65); font-size: .9rem; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info__title { font-size: 1rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-details li {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .92rem; color: var(--grey-600);
}
.contact-details svg { flex-shrink: 0; margin-top: 2px; color: var(--lime-dk); }
.contact-details strong { display: block; color: var(--black); margin-bottom: .15rem; }
.contact-details a:hover { color: var(--lime-dk); }

.opening-hours__title { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; color: var(--grey-600); }
.opening-hours__table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.opening-hours__table td { padding: .5rem .25rem; border-bottom: 1px solid var(--grey-100); color: var(--grey-600); }
.opening-hours__table td:first-child { font-weight: 500; color: var(--black); width: 40%; }
.opening-hours__table .closed { color: var(--grey-300); font-style: italic; }

/* Form */
.contact-form-wrap {
  background: var(--grey-50);
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--black);
}
.form-group label span { color: var(--lime-dk); }

.form-group input, .form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: .9rem; color: var(--black);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-300); }
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--lime); box-shadow: 0 0 0 3px rgba(141,198,63,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer-kit {
  background: #111;
  color: rgba(255,255,255,.65);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-kit__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-kit__inner { grid-template-columns: 1fr; } }

.footer-kit__logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  color: var(--white); margin-bottom: .4rem;
}
.footer-kit__tagline {
  font-family: var(--font-display); font-style: italic;
  color: rgba(255,255,255,.5); font-size: .9rem; margin-bottom: .75rem;
}
.footer-kit__sub { font-size: .82rem; line-height: 1.6; color: rgba(255,255,255,.45); }

.footer-kit__col h4 {
  font-size: .7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1.2rem;
}
.footer-kit__col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-kit__col li {
  font-size: .82rem; display: flex; align-items: flex-start; gap: .5rem;
  color: rgba(255,255,255,.6);
}
.footer-kit__col a:hover { color: var(--lime); }

.footer-hours { display: flex; flex-direction: column; gap: .5rem; }
.footer-hours li { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-hours li span:first-child { color: rgba(255,255,255,.8); font-weight: 500; }
.closed-txt { color: rgba(255,255,255,.3); font-style: italic; }

.footer-kit__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0;
  font-size: .78rem; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: .75rem;
}
.footer-kit__bottom a:hover { color: var(--lime); }
.footer-kit__badge { display: flex; gap: 1.25rem; }
.footer-hcf, .footer-google {
  display: flex; align-items: center; gap: .35rem;
  font-size: .74rem; color: rgba(255,255,255,.45);
}
