/* ═══════════════════════════════════════════════
   ETEN VAN DE VOS — Design System
   Dark cosy café · Fox Gold · IJsselstein
════════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --bg:        #1a1a1a;
  --bg-mid:    #2d2d2d;
  --bg-card:   #242424;
  --gold:      #c8922a;
  --gold-light:#e0ab4a;
  --cream:     #f5f0e8;
  --white:     #ffffff;
  --text-body: #d4cfc7;
  --text-muted:#9a9590;
  --border:    rgba(200,146,42,0.25);
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.65);
  --nav-h:     68px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Media fill utility (MANDATORY — no letterboxing) ── */
.media,
.img-fill,
figure.photo {
  position: relative;
  overflow: hidden;
}
.media > img,
.img-fill > img,
figure.photo > img,
.gallery img,
.card__img-wrap img,
.hero__img,
.cta-band__bg,
.insta-cell .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #1a1a1a;
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,240,232,0.5);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
}
.btn--lg { padding: 17px 36px; font-size: 0.95rem; }
.btn--sm { padding: 10px 20px; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Eyebrow / section labels ── */
.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold); }

/* ── Section header ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-sub {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--text-muted);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-title--light { color: var(--white); }

/* ── Sections ── */
.section {
  padding: 100px 0;
}
.section--dark { background: var(--bg); }
.section--mid  { background: var(--bg-mid); }

/* ═══════════════════════════════════════════
   STICKY BAR
════════════════════════════════════════════ */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar__name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
}

/* ═══════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-fox { width: 36px; height: 36px; }
.logo-fox--lg { width: 48px; height: 48px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.2;
}

/* Desktop nav */
.desktop-nav { margin-left: auto; }
.desktop-nav ul {
  display: flex;
  gap: 32px;
}
.desktop-nav a {
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 2px;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.desktop-nav a:hover { color: var(--cream); }
.desktop-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 8px; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-left: auto;
  color: var(--cream);
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.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 — fullscreen kit overlay
════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  height: 100svh;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}
.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding: 24px 32px 48px;
}
.mobile-menu__close {
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--cream);
  margin-bottom: 16px;
}
.mobile-menu__close svg { width: 24px; height: 24px; }
.mobile-menu__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.mobile-menu__logo .logo-fox { width: 56px; height: 56px; }
.mobile-menu__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__item {
  display: block;
  padding: 16px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid rgba(200,146,42,0.15);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu__item:hover {
  color: var(--gold-light);
  padding-left: 8px;
}
.mobile-menu__cta {
  margin-top: 32px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* ═══════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.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,26,26,0.88) 0%,
    rgba(26,26,26,0.55) 50%,
    rgba(26,26,26,0.35) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  margin: 0 auto 0 max(24px, calc((100vw - 1160px) / 2));
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.9);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  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(6px); }
}

/* ═══════════════════════════════════════════
   CARD GRID
════════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card--dark {
  background: var(--bg-card);
  border: 1px solid rgba(200,146,42,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card--dark:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,146,42,0.4);
}
.card__icon {
  padding: 24px 24px 0;
  color: var(--gold);
}
.card__icon svg {
  width: 28px;
  height: 28px;
}
.card__img-wrap {
  aspect-ratio: 16/10;
  margin: 16px 0 0;
  position: relative;
  overflow: hidden;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card--dark:hover .card__img-wrap img {
  transform: scale(1.05);
}
.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  padding: 20px 24px 8px;
}
.card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 24px 24px;
  line-height: 1.65;
  flex: 1;
}

/* ═══════════════════════════════════════════
   EDITORIAL 2-KOLOM
════════════════════════════════════════════ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.editorial__media {
  position: relative;
}
.editorial__media .media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.editorial__accent-block {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 200px;
  box-shadow: var(--shadow);
}
.editorial__accent-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  font-style: italic;
  line-height: 1.3;
}
.editorial__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.editorial__content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}
.editorial__stats {
  display: flex;
  gap: 32px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.stat__num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   DAGMENU
════════════════════════════════════════════ */
.dagmenu__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dagmenu__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dagmenu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dagmenu__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-body);
}
.dagmenu__list li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.dagmenu__media .media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   CTA BAND — Kooklessen
════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}
.cta-band__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.92) 100%);
}
.cta-band__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.8);
  max-width: 540px;
  line-height: 1.7;
}
.cta-band__features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,0.12);
  border: 1px solid rgba(200,146,42,0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--cream);
}
.feature-pill svg { width: 16px; height: 16px; color: var(--gold); }

/* ═══════════════════════════════════════════
   INSTAGRAM GRID
════════════════════════════════════════════ */
.insta-handle {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.insta-cell {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
}
/* Explicit height via container trick so img fills cell */
.insta-cell .media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.insta-cell .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insta-cell:hover .media img { transform: scale(1.07); }
.insta-cell__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}
.insta-cell:hover .insta-cell__overlay { opacity: 1; }
.insta-cell__overlay svg { width: 36px; height: 36px; }
.insta-cta {
  text-align: center;
  margin-top: 40px;
}

/* ═══════════════════════════════════════════
   PARTNER BLOCK — Fortune Coffee
════════════════════════════════════════════ */
.partner-section {
  background: #111;
}
.partner-block {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 48px rgba(200,146,42,0.15), var(--shadow);
}
.partner-block__media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.partner-block__media .media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.partner-block__media .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partner-block__content {
  padding: 56px 56px 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  border-left: 1px solid var(--border);
}
.partner-block__content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   OPENINGSTIJDEN
════════════════════════════════════════════ */
.opening-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.opening-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.opening-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.opening-row:last-child { border-bottom: none; }
.day {
  font-size: 0.95rem;
  color: var(--text-body);
}
.time {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.9rem;
}
.time.closed { color: var(--text-muted); font-style: italic; }
.opening-highlight {
  background: rgba(200,146,42,0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.opening-highlight svg { width: 40px; height: 40px; }
.opening-highlight p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(200,146,42,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}
.contact-item a { color: var(--text-body); }
.contact-item a:hover { color: var(--gold); }

/* WhatsApp btn */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.btn-whatsapp svg { width: 20px; height: 20px; }
.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-row label span { color: var(--gold); }
.form-row input,
.form-row textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--text-muted); }
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(200,146,42,0.05);
}

/* Map */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer-kit {
  background: #111;
  border-top: 1px solid var(--border);
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo { color: var(--cream); }
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-links a svg { width: 18px; height: 18px; }
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
  transform: translateY(-2px);
}
.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-kit__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-kit__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-credit a { color: var(--gold); }

/* ═══════════════════════════════════════════
   WHATSAPP FAB
════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  color: #fff;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
  .editorial { gap: 40px; }
  .dagmenu__inner { gap: 40px; }
  .partner-block { gap: 0; }
  .partner-block__content { padding: 40px; }
  .opening-grid { grid-template-columns: 1fr 1fr; }
  .opening-highlight { grid-column: span 2; }
}

/* Tablet/Mobile: 768px */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hide desktop nav, show hamburger */
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero__content {
    padding: calc(var(--nav-h) + 48px) 24px 64px;
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__sub { max-width: 100%; }
  .hero__actions { justify-content: center; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Editorial */
  .editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .editorial__accent-block { right: 16px; bottom: -16px; }

  /* Dagmenu */
  .dagmenu__inner { grid-template-columns: 1fr; gap: 40px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* Partner */
  .partner-block { grid-template-columns: 1fr; }
  .partner-block__media { min-height: 260px; }
  .partner-block__content { padding: 32px; border-left: none; border-top: 1px solid var(--border); }

  /* Opening */
  .opening-grid { grid-template-columns: 1fr; }
  .opening-highlight { grid-column: span 1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-kit__bottom .container { flex-direction: column; text-align: center; }
}

/* Mobile: 480px */
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .footer-kit__inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .sticky-bar__inner { gap: 8px; }
  .sticky-bar__name { font-size: 0.85rem; }
  .opening-grid { grid-template-columns: 1fr; }
  .cta-band__features { flex-direction: column; align-items: center; }
  .editorial__stats { flex-direction: column; gap: 16px; }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
