/* ===================================================
   BERG'S BAKERY — GOUDA
   Ambachtelijke bakkerij & lunchroom
   Kleurenpalet: #f5f0eb · #c8a96e · #4a6741 · #1a1a1a
   =================================================== */

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

:root {
  --cream:     #f5f0eb;
  --gold:      #c8a96e;
  --gold-dark: #a8893e;
  --green:     #4a6741;
  --green-dark:#3a5431;
  --ink:       #1a1a1a;
  --ink-soft:  #3a3630;
  --ink-muted: #6b5f52;
  --warm-bg:   #ede8e1;
  --dark-bg:   #1e1a15;
  --white:     #ffffff;

  --ff-script: 'Great Vibes', cursive;
  --ff-body:   'Jost', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(26,20,10,.08);
  --shadow-md: 0 8px 32px rgba(26,20,10,.12);
  --shadow-lg: 0 20px 60px rgba(26,20,10,.18);

  --topbar-h:  44px;
  --nav-h:     72px;
  --offset:    calc(var(--topbar-h) + var(--nav-h));
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--offset);
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---- IMAGE FILL SAFEGUARD ---- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img,
.insta-tile img, .workshops__image img,
.menu-highlight__image img, .over-ons__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---- TYPOGRAPHY ---- */
.section__label {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}
.section__label--light { color: var(--gold); }

.section__title {
  font-family: var(--ff-body);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: .75rem;
}
.section__title em {
  font-family: var(--ff-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.35em;
  color: var(--gold);
  display: block;
  line-height: 1.1;
}
.section__title--light { color: var(--white); }
.section__title--light em { color: var(--gold); }

.section__sub {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.section__header .section__sub { margin: 0 auto; }

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

/* ---- SECTIONS ---- */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--warm { background: var(--warm-bg); }
.section--dark {
  background: var(--dark-bg);
  color: var(--white);
}
.section--dark .section__sub { color: rgba(255,255,255,.7); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  min-height: 48px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn--primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); box-shadow: 0 4px 16px rgba(200,169,110,.35); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,1);
}
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
  padding: .6rem 1.25rem;
  font-size: .8rem;
}
.btn--ghost:hover { background: var(--gold); color: var(--ink); }
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 1rem 2rem; font-size: .95rem; }

/* ---- ICON ---- */
.icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--green);
  color: var(--white);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}
.topbar__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 400;
}
.topbar__hours .icon { width: 16px; height: 16px; opacity: .8; }
.topbar__cta {
  background: var(--gold);
  color: var(--ink);
  padding: .4rem 1rem;
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.topbar__cta:hover { background: var(--gold-dark); }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--cream);
  height: var(--nav-h);
  position: sticky;
  top: var(--topbar-h);
  z-index: 190;
  border-bottom: 1px solid rgba(26,20,10,.1);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-badge svg { width: 44px; height: 44px; }
.logo-text {
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.navbar__nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar__nav a {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .5rem .75rem;
  border-radius: 3px;
  transition: color .2s, background .2s;
}
.navbar__nav a:hover { color: var(--gold-dark); }
.navbar__nav .nav__cta {
  background: var(--gold);
  color: var(--ink);
  padding: .55rem 1.1rem;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.navbar__nav .nav__cta:hover { background: var(--gold-dark); color: var(--ink); }

/* ---- MOBILE MENU TRIGGER ---- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, width .25s;
}
.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;
  width: 100%;
  height: 100svh;
  background: var(--cream);
  z-index: 300;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  overflow-y: auto;
}
.mobile-menu__overlay.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: opacity .2s; transform: none; }
}
.mobile-menu__panel { display: flex; flex-direction: column; flex: 1; }
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(26,20,10,.1);
}
.mobile-menu__brand {
  font-family: var(--ff-script);
  font-size: 1.75rem;
  color: var(--ink);
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu__close svg { width: 24px; height: 24px; color: var(--ink); }
.mobile-menu__list {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu__item {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  min-height: 54px;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.mobile-menu__item:hover { background: var(--warm-bg); color: var(--gold-dark); }
.mobile-menu__item--cta {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  justify-content: center;
  margin-top: .5rem;
}
.mobile-menu__item--cta:hover { background: var(--gold-dark); color: var(--ink); }
.mobile-menu__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(26,20,10,.1);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.mobile-menu__footer p {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--ink-muted);
}
.mobile-menu__footer .icon { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  display: flex;
  align-items: 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(
    135deg,
    rgba(26,20,10,.72) 0%,
    rgba(26,20,10,.45) 60%,
    rgba(26,20,10,.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  color: var(--white);
}
.hero__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.hero__heading {
  font-family: var(--ff-body);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .5rem;
}
.hero__heading + .hero__heading-script { display: block; }
.hero__heading em,
.hero__heading-script {
  font-family: var(--ff-script);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  font-style: normal;
  color: var(--gold);
  line-height: 1.05;
  display: block;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}
.hero__scroll-hint svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- CARD GRID ---- */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---- CARD ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Dienst cards */
.card--dienst { display: flex; flex-direction: column; }
.card--dienst .card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.card--dienst .card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.card--dienst:hover .card__media img { transform: scale(1.04); }
.card--featured { box-shadow: 0 0 0 3px var(--gold), var(--shadow-md); }
.card--featured .card__body { background: linear-gradient(180deg, #fff 80%, #fffaf3); }

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.card__icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.card__desc {
  font-size: .9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  flex: 1;
}

/* Review cards */
.card--review {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.card--review:hover { transform: none; box-shadow: none; }
.card--review__quote {
  font-family: var(--ff-script);
  font-size: 1.35rem;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.card--review__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-style: normal;
}
.card--review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.card--review__author strong {
  display: block;
  font-size: .875rem;
  color: var(--white);
  font-weight: 600;
}
.card--review__author span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* ---- MENU HIGHLIGHT ---- */
.menu-highlight__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.menu-highlight__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.menu-items { margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px dashed rgba(26,20,10,.12);
}
.menu-item:first-child { border-top: 1px dashed rgba(26,20,10,.12); }
.menu-item__name { font-size: .9rem; color: var(--ink-soft); }
.menu-item__price {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: .9rem;
}
.menu-item__price::before { content: '\20AC\00a0'; }

/* ---- WORKSHOPS ---- */
.workshops__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.workshops__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.workshops__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.workshops__badge-num { font-size: .65rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.workshops__badge-price { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.workshops__badge-unit { font-size: .7rem; font-weight: 600; }
.workshops__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0;
}
.workshops__list li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.workshops__list .icon { color: var(--green); flex-shrink: 0; }

/* ---- REVIEWS ---- */
.reviews__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.reviews__intro { flex: 1; min-width: 260px; }
.rating-badge {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  min-width: 180px;
}
.rating-badge__score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}
.rating-badge__stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: .5rem;
}
.rating-badge__stars svg { width: 18px; height: 18px; }
.rating-badge__label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ---- OVER ONS ---- */
.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.over-ons__text p {
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: .95rem;
}
.over-ons__stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: .2rem;
}
.stat__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---- HOURS CARD ---- */
.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.hours-card__head {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.hours-card__head .icon { color: var(--gold); width: 22px; height: 22px; }
.hours-card__head h3 { font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.hours-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .625rem 0;
  border-bottom: 1px solid rgba(26,20,10,.07);
  font-size: .9rem;
}
.hours-row dt { color: var(--ink-soft); }
.hours-row dd { font-weight: 600; color: var(--ink); }
.hours-row--closed dt, .hours-row--closed dd { color: var(--ink-muted); opacity: .55; }

/* ---- INSTAGRAM ---- */
.instagram__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}
.insta-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.insta-tile:hover img { transform: scale(1.06); }
.insta-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,20,10,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.insta-tile:hover .insta-tile__overlay { opacity: 1; }
.insta-tile__overlay svg { width: 28px; height: 28px; }

/* ---- CTA BAND ---- */
.cta-band {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
}
.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,10,5,.82);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-band__sub {
  color: rgba(255,255,255,.75);
  margin-top: .75rem;
  font-size: .95rem;
  line-height: 1.6;
}

/* ---- FORM ---- */
.reserveer-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(26,20,10,.15);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .9rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group { margin-bottom: 1rem; }
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--ink-muted);
  margin-top: .75rem;
}
.form-note a { color: var(--gold-dark); font-weight: 600; }

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--dark-bg);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--white);
}
.footer-col--brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}
.footer-col__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-hours { display: flex; flex-direction: column; gap: .375rem; }
.footer-hours > div {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
}
.footer-hours dt { color: rgba(255,255,255,.5); }
.footer-hours dd { color: rgba(255,255,255,.85); font-weight: 500; }
.footer-address {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-style: normal;
}
.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
}
.footer-address .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-address a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer-address a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-kit__demo-note a { color: var(--gold); }

/* ======================================================
   RESPONSIVE
   ====================================================== */

/* ---- 1024px ---- */
@media (max-width: 1024px) {
  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: 1 / -1; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  .card-grid--3 { grid-template-columns: 1fr; }
  .menu-highlight__inner,
  .workshops__inner,
  .over-ons__inner,
  .cta-band__inner { grid-template-columns: 1fr; gap: 2rem; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .workshops__image { max-width: 480px; }
  .menu-highlight__image { max-width: 100%; }
  .form-row--2 { grid-template-columns: 1fr; }
  .reviews__rating { flex-direction: column; align-items: flex-start; }
  .rating-badge { align-self: stretch; }
}

/* ---- 768px: mobile ---- */
@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .mobile-menu__trigger { display: flex; }
  .topbar__hours span { font-size: .72rem; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .footer-kit__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .instagram__grid { grid-template-columns: repeat(3, 1fr); }
  .over-ons__stats { gap: 1.5rem; }
}

/* ---- 480px ---- */
@media (max-width: 480px) {
  .topbar__hours { display: none; }
  .topbar__inner { justify-content: flex-end; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: 1fr; }
  .over-ons__stats { flex-direction: column; gap: 1rem; }
  .hero__heading { font-size: 1.9rem; }
}

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