/* ============================================================
   BRASSERIE EDELWEISS — Stylesheet
   Palet: #1a1a1a (donker), #c8a84b (goud), #f5f0e8 (crème),
          #ffffff (wit), #8b0000 (donkerrood)
   ============================================================ */

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

:root {
  --bg:        #1a1a1a;
  --bg-2:      #2c2c2c;
  --gold:      #c8a84b;
  --gold-dark: #a88930;
  --cream:     #f5f0e8;
  --cream-dark:#ede5d4;
  --white:     #ffffff;
  --red:       #8b0000;
  --text-dark: #1a1a1a;
  --text-mid:  #444444;
  --text-light:#888888;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Lato', Arial, sans-serif;

  --max-w: 1200px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.28);
  --transition: 260ms ease;
}

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

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

address { font-style: normal; }

/* --- MEDIA FILL RULE (anti-letterbox) --- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img,
.hero__img,
.dish-card__img,
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === TYPOGRAPHY === */
.logo-script {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--white);
  display: block;
  margin-top: 2px;
  opacity: 0.7;
}

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.section-eyebrow--light { color: var(--gold); opacity: 0.9; }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: center;
}
.section-title--left { text-align: left; }
.section-title--white { color: var(--white); }

.section-lead {
  color: var(--cream);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 80ms;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: scale(0.98); }

.btn--gold {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--bg);
}

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

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

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

/* === SITE HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,168,75,0.15);
  transition: background var(--transition);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { text-decoration: none; }
.nav-logo:hover .logo-script { color: var(--gold-dark); }

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--ff-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: color var(--transition), opacity var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: var(--gold); opacity: 1; }

.nav-link--cta {
  background: var(--gold);
  color: var(--bg);
  opacity: 1;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
}
.nav-link--cta:hover {
  background: var(--gold-dark);
  color: var(--bg);
}

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBIEL MENU OVERLAY === */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  height: 100svh;
  background: var(--bg);
  z-index: 950;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 280ms ease, transform 280ms ease, visibility 0s 280ms;
  overflow-y: auto;
}

.mobile-menu__overlay.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 280ms ease, transform 280ms ease, visibility 0s 0s;
}

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

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.mobile-menu__close:hover { color: var(--gold); }

.mobile-menu__brand {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}
.mobile-menu__brand .logo-script { font-size: 2.25rem; }

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

.mobile-menu__item {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.75rem;
  color: var(--white);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
  text-decoration: none;
}
.mobile-menu__item:hover { color: var(--gold); padding-left: 0.5rem; }

.mobile-menu__item--cta {
  color: var(--gold);
  font-weight: 600;
}

.mobile-menu__footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,168,75,0.2);
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.6;
}
.mobile-menu__footer p { margin-bottom: 0.25rem; }
.mobile-menu__footer a { color: var(--gold); }

/* === HERO === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.55) 0%,
    rgba(26,26,26,0.35) 50%,
    rgba(26,26,26,0.75) 100%
  );
}

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

.hero__eyebrow {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero__sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  opacity: 0.7;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === FEATURES STRIP === */
.features {
  background: var(--cream);
  padding: 4.5rem 0;
}

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

.feature-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(200,168,75,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.feature-card__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* === DISHES === */
.dishes {
  background: var(--bg);
  padding: 5rem 0;
}

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

.dish-card {
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,168,75,0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

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

.dish-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}
.dish-card:hover .dish-card__img { transform: scale(1.04); }

.dish-card__body {
  padding: 1.5rem;
}

.dish-card__name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.dish-card__desc {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dish-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

/* === OVER ONS === */
.about {
  background: var(--cream);
  padding: 5rem 0;
}

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

.about__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

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

.about__content .section-eyebrow { color: var(--gold-dark); }
.about__content .section-title { color: var(--text-dark); }

.about__content p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about__highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.about__highlight {
  display: flex;
  flex-direction: column;
}

.about__highlight-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold-dark);
  font-weight: 700;
  line-height: 1;
}

.about__highlight-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 0.3rem;
}

/* === REVIEWS === */
.reviews {
  background: var(--bg-2);
  padding: 5rem 0;
  border-top: 1px solid rgba(200,168,75,0.1);
  border-bottom: 1px solid rgba(200,168,75,0.1);
}

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

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

.review-card__stars {
  display: flex;
  gap: 3px;
}
.star {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.review-card__text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.65;
  flex: 1;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.review-card__author strong {
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
}
.review-card__author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* === RESERVEREN === */
.reserveren {
  background: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.reserveren::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,168,75,0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.hours-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hours-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 700;
}
.hours-table__status--closed {
  color: rgba(200,168,75,0.4) !important;
}

.reserveren__contact-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.8;
  transition: color var(--transition), opacity var(--transition);
  text-decoration: none;
}
.contact-item:hover { color: var(--gold); opacity: 1; }
.contact-item svg { color: var(--gold); flex-shrink: 0; }

/* CTA BOX */
.cta-box {
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200,168,75,0.25);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow);
}

.cta-box__icon {
  color: var(--gold);
  margin-bottom: -0.25rem;
}

.cta-box__title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
}

.cta-box__text {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.6;
}

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

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

.contact__info .section-eyebrow { color: var(--gold-dark); }
.contact__info .section-title { color: var(--text-dark); }

.contact__info > p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact__detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text-mid);
}
.contact__detail svg {
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail strong { color: var(--text-dark); display: block; margin-bottom: 0.2rem; }
.contact__detail a { color: var(--gold-dark); }
.contact__detail a:hover { color: var(--red); }

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

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

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-label span { color: var(--red); margin-left: 2px; }

.form-input {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(200,168,75,0.15);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* === FOOTER === */
.footer-kit {
  background: #111111;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(200,168,75,0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo { margin-bottom: 1rem; display: block; }

.footer__tagline {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.55;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--cream);
  opacity: 0.65;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  opacity: 1;
  background: rgba(200,168,75,0.08);
}

.footer__heading {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.65;
  gap: 1rem;
}
.footer__hours .closed { color: rgba(200,168,75,0.4); opacity: 1; }

.footer__address {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.65;
  line-height: 1.7;
}
.footer__address p { margin-bottom: 0.4rem; }
.footer__address a { color: var(--gold); }
.footer__address a:hover { color: var(--gold-dark); }

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--cream);
  opacity: 0.65;
  transition: color var(--transition), opacity var(--transition);
  text-decoration: none;
}
.footer__links a:hover { color: var(--gold); opacity: 1; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.4;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__credits a { color: var(--gold); opacity: 1; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

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

  .features__grid { grid-template-columns: 1fr; gap: 1rem; }
  .dishes__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__media { aspect-ratio: 16/9; }
  .reserveren__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .about__highlights { flex-wrap: wrap; gap: 1.25rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .hero__title { font-size: 2.25rem; }
  .dishes__grid,
  .reviews__grid,
  .features__grid { gap: 1rem; }
  .container { padding: 0 1rem; }
  .cta-box { padding: 2rem 1.25rem; }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Body scroll lock when mobile menu is open */
body.menu-open { overflow: hidden; }

/* === FINISHING FIXES (visual review pass 2) === */

/* 1. Hero outline button: stronger white border so it reads against any hero bg */
.btn--outline {
  border-color: rgba(255,255,255,0.75);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* 2. Nav text shadow for legibility on any hero brightness */
.nav-link {
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* 3. Review cards: give them a bit more breathing room */
.review-card {
  padding: 2rem 2rem;
}
.review-card__text {
  font-size: 1rem;
}

/* 4. Feature cards: equal min-height for grid alignment */
.feature-card {
  min-height: 240px;
}
