/* ============================================================
   DE VERRASSING — Lunchroom Alphen aan den Rijn
   Merkkleur: Groen #4a9e6b / #2e7d4f
   ============================================================ */

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

:root {
  --green:        #4a9e6b;
  --green-dark:   #2e7d4f;
  --green-light:  #e8f5ee;
  --cream:        #fdf6ec;
  --cream-dark:   #f5ede0;
  --text:         #1a1a1a;
  --text-muted:   #5a5a5a;
  --white:        #ffffff;
  --gold:         #f0c040;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.13);
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* Image fill safenet */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img, .hero__img, .team__img-wrap img,
.cta-band__img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; }

p { color: var(--text-muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-label--light { color: rgba(255,255,255,0.8); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header--light h2, .section-header--light p { color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); box-shadow: 0 4px 16px rgba(74,158,107,0.35); }

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

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74,158,107,0.12);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.desktop-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.desktop-nav ul { display: flex; gap: 0.25rem; }
.desktop-nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover { color: var(--green); background: var(--green-light); }

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

/* ---- MOBILE MENU TRIGGER ---- */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--green-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu__overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--white);
  z-index: 1000;
  overflow-y: auto;
}
.mobile-menu__overlay[aria-hidden="false"] { display: flex; flex-direction: column; }

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 24px 2rem;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid var(--green-light);
  margin-bottom: 1.5rem;
}
.mobile-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-dark);
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--green-light);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--green-dark);
  flex-shrink: 0;
}
.mobile-menu__close:hover { background: var(--green); color: white; }

.mobile-menu__list { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.mobile-menu__item {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu__item:hover { background: var(--green-light); color: var(--green-dark); }

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--green-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-hours {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(46,125,79,0.72) 0%,
    rgba(26,70,45,0.60) 40%,
    rgba(0,0,0,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 10;
  color: var(--white);
  max-width: 720px;
  padding: 4rem 24px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.95);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__hours-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  width: fit-content;
}
.hero__hour-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.hero__hour-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.3);
}

/* ---- ABOUT ---- */
.about {
  background: var(--cream);
  padding: 6rem 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text h2 { margin-bottom: 1.25rem; }
.about__text p { margin-bottom: 1rem; }
.about__text .btn { margin-top: 1rem; }
.about__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.about__stat-card--accent {
  background: var(--green);
}
.about__stat-card--accent .stat-number,
.about__stat-card--accent .stat-label { color: var(--white); }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- AANBOD / CARDS ---- */
.aanbod {
  padding: 6rem 0;
  background: var(--white);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(74,158,107,0.12);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-light);
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__img { transform: scale(1.04); }

.card__img-wrap--solid {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card__img-wrap--catering { background: linear-gradient(135deg, #2e7d4f 0%, #4a9e6b 100%); }
.card__img-wrap--cadeau { background: linear-gradient(135deg, #4a9e6b 0%, #6fbf8f 100%); }
.card__img-placeholder {
  opacity: 0.6;
}

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.card__body h3 { margin: 0; }
.card__body p { font-size: 0.9rem; flex: 1; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-band__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.cta-band__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
}
.cta-band__list li svg { flex-shrink: 0; color: rgba(255,255,255,0.8); }

.cta-band__action {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}
.cta-band__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- TEAM ---- */
.team {
  padding: 6rem 0;
  background: var(--cream);
}
.team__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.team__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.team__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team__text h2 { margin-bottom: 1.25rem; }
.team__names {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.team__name-badge {
  padding: 0.35rem 0.9rem;
  background: var(--white);
  border: 1.5px solid var(--green-light);
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
}

/* ---- REVIEWS ---- */
.reviews {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 6rem 0;
}
.reviews .section-header h2 { color: var(--white); }
.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-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-4px); }
.review-card__stars { display: flex; gap: 3px; }
.review-card__text {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.9rem; color: var(--text); }
.review-card__author span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- CONTACT ---- */
.contact {
  padding: 6rem 0;
  background: var(--white);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 { margin-bottom: 1.5rem; }
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact__icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  flex-shrink: 0;
}
.contact__list li > div { display: flex; flex-direction: column; gap: 0.15rem; }
.contact__list li strong { font-size: 0.85rem; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.05em; }
.contact__list li span { font-size: 0.9rem; color: var(--text-muted); }
.contact__list li a { color: var(--green); font-size: 0.9rem; }
.contact__list li a:hover { color: var(--green-dark); text-decoration: underline; }
.contact__note { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

.contact__form-wrap {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact__form-wrap h3 { margin-bottom: 0.5rem; }
.contact__form-wrap p { margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(74,158,107,0.12);
}
.form-group textarea { resize: vertical; }

/* ---- FOOTER ---- */
.footer-kit {
  background: #0f2e1b;
  color: rgba(255,255,255,0.85);
  padding-top: 5rem;
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.footer-kit__brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.footer-kit__social { display: flex; gap: 0.75rem; }
.footer-kit__social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}
.footer-kit__social a:hover { background: var(--green); border-color: var(--green); color: white; }
.footer-kit__col h4 { color: var(--white); margin-bottom: 1.25rem; }
.footer-kit__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-kit__col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-kit__col ul a:hover { color: var(--green); }
.footer-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.65); gap: 0.5rem; flex-wrap: wrap; }
.footer-kit__col address p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.footer-kit__col address a { color: rgba(255,255,255,0.6); }
.footer-kit__col address a:hover { color: var(--green); }
.footer-kit__bottom {
  padding: 1.25rem 0;
}
.footer-kit__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-kit__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-kit__bottom a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-kit__bottom a:hover { color: var(--green); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  .hero { min-height: 100svh; }
  .hero__content { padding: 2rem 24px 3rem; }
  .hero__hours-strip { flex-direction: column; gap: 0.5rem; }
  .hero__hour-sep { width: 100%; height: 1px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }

  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__visual { grid-template-columns: 1fr 1fr; }

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

  .cta-band__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-band { padding: 4rem 0; }

  .team__inner { grid-template-columns: 1fr; gap: 2.5rem; }

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

  .contact__inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-kit__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card-grid { grid-template-columns: 1fr; }
  .about__visual { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .footer-kit__inner { grid-template-columns: 1fr; }
  .footer-kit__brand { grid-column: 1; }

  .contact__form-wrap { padding: 1.5rem; }

  .hero__hours-strip { padding: 0.75rem 1rem; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

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