/* ══════════════════════════════════════════════════════════════
   FONG SHOU — Chinees Restaurant Capelle aan den IJssel
   Merkpalet: Karmozijn #8B0000 | Goud #C9A84C | Crème #F5F0E8
   ══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ───────────────────────────────── */
:root {
  --crimson:      #8B0000;
  --crimson-dark: #6B0000;
  --crimson-mid:  #C0392B;
  --gold:         #C9A84C;
  --gold-light:   #E8C96E;
  --cream:        #F5F0E8;
  --cream-dark:   #EDE5D5;
  --text:         #1A1A1A;
  --text-muted:   #5A5A5A;
  --white:        #FFFFFF;
  --nav-bg:       #120000;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:       6px;
  --radius-lg:    12px;
  --shadow:       0 2px 12px rgba(0,0,0,.10);
  --shadow-md:    0 4px 24px rgba(0,0,0,.15);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.20);

  --max-w:        1180px;
  --section-gap:  5rem;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Image fill safety net */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.card__media img, .buffet-section__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

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

/* ─── Container ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: .55rem 1.25rem; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold {
  background: var(--gold);
  color: var(--nav-bg);
}
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 4px 18px rgba(201,168,76,.4); }

.btn--crimson {
  background: var(--crimson);
  color: var(--white);
}
.btn--crimson:hover { background: var(--crimson-dark); box-shadow: 0 4px 18px rgba(139,0,0,.35); }

.btn--outline-crimson {
  background: transparent;
  color: var(--crimson);
  border: 2px solid var(--crimson);
}
.btn--outline-crimson:hover { background: var(--crimson); color: var(--white); }

.btn--outline-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
}
.btn--outline-white:hover { background: rgba(255,255,255,.25); border-color: var(--white); }

/* ─── Section helpers ─────────────────────────────────────── */
.section { padding: var(--section-gap) 0; }
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-intro {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-intro { margin: 0 auto; }

/* ─── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.4); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__chinese {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.logo__text {
  display: flex;
  flex-direction: column;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.logo__sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201,168,76,.7);
}

/* Desktop nav */
.desktop-nav { margin-left: auto; }
.desktop-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.desktop-nav__item {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .9rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.desktop-nav__item:hover { color: var(--gold); background: rgba(201,168,76,.08); }

.has-dropdown { position: relative; }
.desktop-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: var(--nav-bg);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .5rem 0;
  list-style: none;
}
.has-dropdown:hover .desktop-nav__dropdown,
.has-dropdown:focus-within .desktop-nav__dropdown { display: block; }
.desktop-nav__dropdown-item {
  display: block;
  padding: .6rem 1.25rem;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  transition: color .2s, background .2s;
}
.desktop-nav__dropdown-item:hover { color: var(--gold); background: rgba(201,168,76,.08); }

.nav-cta { margin-left: .5rem; flex-shrink: 0; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,.2);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ─── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--nav-bg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  height: 100dvh;
}
.mobile-menu__overlay.is-open { transform: translateX(0); }

.mobile-menu__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
}
.mobile-menu__backdrop.is-visible { opacity: 1; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201,168,76,.2);
  min-height: 68px;
  flex-shrink: 0;
}
.mobile-menu__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: none;
}
.mobile-menu__close:hover { background: rgba(255,255,255,.15); }

/* Panels */
.mobile-menu__panel {
  position: absolute;
  inset: 68px 0 0;
  overflow-y: auto;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  background: var(--nav-bg);
  display: flex;
  flex-direction: column;
}
.mobile-menu__panel--root { transform: translateX(0); }
.mobile-menu__panel--sub { transform: translateX(100%); }
.mobile-menu__panel--sub.is-active { transform: translateX(0); }
.mobile-menu__panel--root.is-hidden { transform: translateX(-30%); }

.mobile-menu__list { list-style: none; padding: 1rem 0; flex: 1; }

.mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,.9);
  font-size: 1.15rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
}
a.mobile-menu__item:hover,
button.mobile-menu__item:hover { color: var(--gold); background: rgba(201,168,76,.07); }
.mobile-menu__item--cta {
  color: var(--gold);
  font-weight: 600;
  margin-top: .5rem;
}

.mobile-menu__back {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--gold);
  font-size: .95rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(201,168,76,.2);
  background: rgba(201,168,76,.07);
}
.mobile-menu__drill { border: none; text-align: left; }

.mobile-menu__info {
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mobile-menu__info p {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
}
.mobile-menu__info a { color: var(--gold); }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 68px;
}

.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(18,0,0,.78) 0%,
    rgba(18,0,0,.55) 50%,
    rgba(18,0,0,.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}
.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.85);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Info bar ────────────────────────────────────────────── */
.info-bar {
  background: var(--crimson);
  border-bottom: 3px solid var(--gold);
}
.info-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem 2rem;
}
.info-bar__item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.92);
  font-size: .9rem;
}
.info-bar__item svg { color: var(--gold); flex-shrink: 0; }
.info-bar__item a { color: var(--white); font-weight: 600; }
.info-bar__item a:hover { color: var(--gold); }
.info-bar__divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.25);
}

/* ─── Medallion row ───────────────────────────────────────── */
.medallion-row {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 3rem 0;
}
.medallion-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.medallion {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
  color: var(--text);
}
.medallion:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,168,76,.18);
  transform: translateY(-3px);
}
.medallion__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139,0,0,.07);
  border: 2px solid rgba(201,168,76,.4);
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(201,168,76,.12);
}
.medallion__label {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: .01em;
}

/* ─── Buffet section ──────────────────────────────────────── */
.buffet-section { background: var(--white); }
.buffet-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.buffet-section__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-fill { overflow: hidden; }
.img-fill img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 1.5rem 0 2rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.feature-list svg { flex-shrink: 0; }
.section-text { color: var(--text-muted); line-height: 1.75; }

/* ─── Card grid ───────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 1.75rem;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Base card */
.card {
  background: var(--white);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

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

.card__body { padding: 1.5rem; }
.card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px;
  padding: .25rem .75rem;
  margin-bottom: .75rem;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--text);
}
.card__text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }

/* ─── Dishes section ──────────────────────────────────────── */
.dishes-section { background: var(--cream); }

/* ─── Services section ────────────────────────────────────── */
.services-section { background: var(--white); }
.service-card {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(139,0,0,.3);
}
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--white);
  border: 1.5px solid rgba(139,0,0,.15);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--text);
}
.service-card__text { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.5rem; }

/* ─── Zalen section ───────────────────────────────────────── */
.zalen-section { background: var(--cream); }

/* ─── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: var(--crimson);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(192,57,43,.5) 0%, transparent 70%),
                    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  padding: 5rem 0;
}
.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-band__text {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ─── Contact section ─────────────────────────────────────── */
.contact-section { background: var(--white); }
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .15rem;
}
.contact-detail strong { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: .25rem; }
.contact-detail p { font-size: .95rem; color: var(--text); line-height: 1.6; }
.contact-detail a { color: var(--crimson); font-weight: 500; }
.contact-detail a:hover { color: var(--gold); }

/* Form */
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.contact-form {
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .45rem;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--white);
  border: 1.5px solid #D8D0C4;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(139,0,0,.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer-kit {
  background: var(--nav-bg);
  border-top: 3px solid var(--gold);
  color: rgba(255,255,255,.75);
}
.footer-kit__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.25rem 2rem;
}
.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.footer-logo__chinese {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.footer-logo__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo__sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(201,168,76,.6);
}
.footer-kit__tagline { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-kit__heading {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-kit__links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-kit__links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color .2s;
}
.footer-kit__links a:hover { color: var(--gold); }
.footer-kit__hours { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-kit__hours li {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  gap: .75rem;
  color: rgba(255,255,255,.65);
}
.footer-kit__address p {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: .5rem;
}
.footer-kit__address a { color: rgba(255,255,255,.75); transition: color .2s; }
.footer-kit__address a:hover { color: var(--gold); }
.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-kit__demo-note a { color: rgba(201,168,76,.65); }
.footer-kit__demo-note a:hover { color: var(--gold); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .medallion-row__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --section-gap: 3.5rem; }

  /* Header: hide desktop nav & cta, show hamburger */
  .desktop-nav, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  .hero { height: calc(100svh - 0px); min-height: 520px; }

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

  .card-grid--3 { grid-template-columns: 1fr; }
  .card-grid--2 { grid-template-columns: 1fr; }

  .services-section .card-grid--3 { grid-template-columns: 1fr; }

  .medallion-row__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .medallion { padding: 1.5rem .75rem; }

  .info-bar__divider { display: none; }
  .info-bar__inner { flex-direction: column; gap: .75rem; text-align: center; }

  .contact-section__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form { padding: 1.75rem; }

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

  .cta-band__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .medallion-row__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Motion preference ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
