/* =====================================================
   BARISTA CAFE GOUDA — Main Stylesheet
   Palette: #2D6A4F (green) · #F5ECD7 (cream) · #C8A96E (gold) · #1A1A1A (dark)
   ===================================================== */

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F5ECD7;
  color: #1A1A1A;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: #1A1A1A;
}

/* ---- CSS Variables ---- */
:root {
  --green: #2D6A4F;
  --green-dark: #1f4d39;
  --green-light: #3d8a67;
  --cream: #F5ECD7;
  --cream-dark: #ede0c4;
  --gold: #C8A96E;
  --gold-dark: #b0914e;
  --dark: #1A1A1A;
  --mid: #4a4a4a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

/* ---- Utility ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 720px; }

.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;
}

/* ---- Media fill containers ---- */
.media, .img-fill, figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img,
.card__media img, .sfeer-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 6px 24px rgba(45,106,79,0.4);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

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

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(245, 236, 215, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.2);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.desktop-nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 2px;
  background: var(--green);
  transition: right var(--transition);
}
.desktop-nav a:hover { color: var(--green); }
.desktop-nav a:hover::after { right: 0; }

.nav-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  padding: 0.5rem 1.2rem;
  border: 2px solid var(--green);
  border-radius: 50px;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover {
  background: var(--green);
  color: #fff;
}

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  margin-left: auto;
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(45,106,79,0.08); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s 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; transform: scaleX(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: 300;
  background: var(--green);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  height: 100dvh;
  height: 100svh;
}

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

.mobile-menu__panel { width: 100%; flex: 1; display: flex; flex-direction: column; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 600;
}

.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 8px;
  color: #fff;
  transition: background var(--transition);
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.1); }

.mobile-menu__list {
  flex: 1;
  padding: 1.5rem 0;
}

.mobile-menu__item {
  display: block;
  padding: 1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover {
  background: rgba(255,255,255,0.08);
  padding-left: 2rem;
}

.mobile-menu__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu__footer .btn-primary {
  width: 100%;
  justify-content: center;
  background: var(--gold);
  color: #1A1A1A;
  font-weight: 700;
}
.mobile-menu__footer .btn-primary:hover { background: var(--gold-dark); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 20, 0.72) 0%,
    rgba(20, 55, 40, 0.55) 50%,
    rgba(10, 30, 20, 0.38) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: #fff;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  background: rgba(200,169,110,0.15);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(200,169,110,0.3);
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  max-width: 700px;
}

.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

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

/* Hero CTA uses .btn-hero-cta class — see dedicated section below */

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--green);
  padding: 1.8rem 0;
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  flex-shrink: 0;
}

.trust-bar__text {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* =====================================================
   SECTION STRUCTURE
   ===================================================== */
.section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header--light { }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1A1A1A;
}
.sfeer-section .section-title,
.sfeer-section .section-sub,
.sfeer-section .section-eyebrow--gold {
  color: #fff;
}
.sfeer-section .section-sub { color: rgba(255,255,255,0.8); }

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =====================================================
   MENU SECTION
   ===================================================== */
.menu-section { background: var(--cream); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

.card__label {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.card__body {
  padding: 1.2rem 1.4rem 1.5rem;
}
.card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.card__body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

/* =====================================================
   SFEER SECTION
   ===================================================== */
.sfeer-section {
  background: var(--green);
  padding: 5rem 0;
}

/* Sfeer grid: flat flexbox layout — large left, two stacked right */
.sfeer-grid {
  display: flex;
  gap: 1rem;
  height: 560px;
}

.sfeer-large {
  flex: 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
}
.sfeer-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sfeer-large:hover img { transform: scale(1.04); }

.sfeer-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sfeer-small {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
  min-height: 0;
}
.sfeer-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.sfeer-small:hover img { transform: scale(1.04); }

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews-section { background: var(--cream-dark); }

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

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-card__stars { }

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

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  font-style: normal;
  display: block;
}

.review-card__source {
  font-size: 0.75rem;
  color: #888;
  display: block;
}

/* =====================================================
   OPENINGSTIJDEN
   ===================================================== */
.hours-section { background: var(--cream); }

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

.hours-intro {
  color: var(--mid);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,169,110,0.25);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.hours-row:last-child { border-bottom: none; }

.hours-row dt {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}
.hours-row dd {
  font-size: 0.9rem;
  color: var(--green);
  font-weight: 700;
}

.hours-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(200,169,110,0.12);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  color: var(--mid);
  font-size: 0.82rem;
}
.hours-note svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* Contact Card */
.contact-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}
.contact-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

.contact-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.contact-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}
.contact-list__item svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.contact-list__item a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.contact-list__item a:hover { color: var(--gold); }

.btn-outline-green {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline-green:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

/* =====================================================
   CTA BAND
   ===================================================== */
.cta-band {
  background: linear-gradient(135deg, #1f4d39 0%, var(--green) 50%, #3d8a67 100%);
  padding: 4rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.cta-band__sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

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

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-form-section { background: var(--cream); }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-row .form-group { margin-bottom: 0; }

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
}

input, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0d5c1;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
textarea { resize: vertical; min-height: 120px; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-kit {
  background: #111;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-kit__brand .logo--footer .logo-text {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1rem;
}

.footer-kit__tagline {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-kit__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-kit__col ul li { margin-bottom: 0.5rem; }
.footer-kit__col ul li a,
.footer-kit__col address p,
.footer-kit__col address a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-kit__col address p { margin-bottom: 0.5rem; }
.footer-kit__col ul li a:hover,
.footer-kit__col address a:hover { color: var(--gold); }

.footer-hours { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-hours div { display: flex; justify-content: space-between; gap: 0.5rem; }
.footer-hours dt { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.footer-hours dd { font-size: 0.8rem; color: rgba(255,255,255,0.9); font-weight: 600; }

.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-kit__credit a { color: var(--gold); }
.footer-kit__credit a:hover { color: #fff; }

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

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

  .hero { min-height: 85vh; padding-top: 70px; }
  .hero__title { font-size: 2.5rem; }

  .trust-bar__list { gap: 0.75rem 1.5rem; }
  .trust-bar__item { font-size: 0.85rem; }

  .section { padding: 3.5rem 0; }

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

  .sfeer-grid {
    flex-direction: column;
    height: auto;
  }
  .sfeer-large {
    aspect-ratio: 4/3;
    flex: none;
    height: auto;
    width: 100%;
  }
  .sfeer-stack {
    flex-direction: row;
    height: 200px;
  }
  .sfeer-small {
    flex: 1;
    height: 200px;
  }

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

  .hours-layout { grid-template-columns: 1fr; gap: 2rem; }

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

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

  .footer-kit__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 1.5rem; }
}

/* =====================================================
   SCROLL ANIMATIONS (no reduced motion)
   ===================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 1; /* Always visible — no JS-gated opacity:0 */
    transform: none;
  }
}

/* =====================================================
   HERO CTA BUTTON — standalone gold class
   ===================================================== */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  background: #C8A96E;
  color: #1A1A1A;
  box-shadow: 0 4px 20px rgba(200,169,110,0.55);
  border: 2px solid #C8A96E;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.btn-hero-cta:hover {
  background: #b0914e;
  border-color: #b0914e;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200,169,110,0.65);
}
