/* =============================================
   VAAL SLAGHUIS — styles.css
   Premium Local Butcher Website
   ============================================= */

/* =============================================
   1. CSS VARIABLES
   ============================================= */
:root {
  /* Brand colours — Vaal Slaghuis White Specials Style (70/20/10) */
  --black:       #0B0B0B;   /* soft black — main text */
  --black-soft:  #141414;
  --black-card:  #1a1a1a;
  --footer-black: #050505;  /* footer bar */
  --white:       #FFFFFF;
  --off-white:   #F7F7F5;   /* soft off-white */
  --light-grey:  #F2F2F2;   /* very light grey */
  --red:         #C40000;   /* Vaal Slaghuis red — accent */
  --red-deep:    #B80000;
  --red-dark:    #9F0000;
  --wood-brown:  #5B3A29;
  --warm-beige:  #D8C1A0;
  --beige-light: #EDE3D2;
  --gold:        #C9A227;
  --gold-dark:   #a8881f;
  --smoke-grey:  #555555;
  --grey-light:  #888888;
  --whatsapp:    #25D366;
  --whatsapp-dark: #1da851;
  --facebook:    #1877F2;

  /* Typography — Oswald (display) + Montserrat (body) only */
  --font-heading: "Oswald", "Anton", sans-serif;
  --font-body:    "Montserrat", "Open Sans", sans-serif;

  /* Layout */
  --container:   1200px;
  --radius:      8px;
  --radius-lg:   12px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s var(--ease);

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.18);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.25);
  --shadow-dark: 0 4px 20px rgba(0,0,0,0.45);
}

/* =============================================
   2. 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: var(--font-body);
  background-color: var(--white);
  color: var(--smoke-grey);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Padding bottom on mobile for sticky CTA bar */
@media (max-width: 767px) {
  body {
    padding-bottom: 68px;
  }
}

img,
video {
  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;
}

/* =============================================
   3. ACCESSIBILITY
   ============================================= */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top var(--transition);
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* =============================================
   4. TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--black);
}

p {
  line-height: 1.7;
}

/* =============================================
   5. LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section--light {
  background-color: var(--white);
}

/* Formerly dark sections — now a soft off-white for gentle separation */
.section--dark {
  background-color: var(--off-white);
}

.section--beige {
  background-color: var(--white);
}

.icon {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Inline SVG icon (matches the uploaded icon set), inherits text colour */
.svg-icon {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex-shrink: 0;
}

/* Reusable square icon container
   #111111 box, 8px radius, centered, #F8F8F8 icon */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #111111;
  border-radius: 8px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 20px;
  height: 20px;
  fill: #F8F8F8;
  display: block;
}

/* Inverted — for use on dark/black backgrounds:
   light container, dark icon */
.icon-box--invert {
  background: #F8F8F8;
}

.icon-box--invert svg {
  fill: #111111;
}

/* =============================================
   6. SECTION HEADERS
   ============================================= */
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.section__header--light .section__title,
.section__header--light h2 {
  color: var(--black);
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section__eyebrow--gold {
  color: var(--red);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
  color: var(--black);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.section__intro {
  font-size: 1.0625rem;
  color: var(--smoke-grey);
  line-height: 1.75;
}

.section__intro--light {
  color: var(--smoke-grey);
}

/* =============================================
   7. BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--lg {
  font-size: 0.9375rem;
  padding: 18px 36px;
}

.btn--primary {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 0, 0, 0.4);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(248,248,248,0.5);
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background-color: rgba(248,248,248,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Dark outline button — for use on white/light backgrounds */
.btn--outline {
  background-color: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.25);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Specials CTA group — buttons side by side, stacking on mobile */
.specials__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn--whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background-color: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp-header {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 20px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  border: 2px solid var(--whatsapp);
  white-space: nowrap;
}
.btn--whatsapp-header:hover,
.btn--whatsapp-header:focus-visible {
  background-color: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-1px);
}

/* =============================================
   8. HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 0, 0, 0.15);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.header__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Fallback if logo image doesn't load */
.header__logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* Navigation */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.8);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav__link:hover,
.nav__link:focus-visible,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* Header CTA */
.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(248, 248, 248, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  white-space: nowrap;
}
.header__phone:hover {
  color: var(--white);
}
.header__phone .icon,
.header__phone .svg-icon {
  font-size: 0.95rem;
  color: var(--red);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(248, 248, 248, 0.35);
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 6px;
}

.lang-toggle__opt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(248, 248, 248, 0.75);
  background: transparent;
  border: none;
  padding: 9px 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.lang-toggle__opt.is-active {
  background: var(--red);
  color: var(--white);
}

.lang-toggle__opt:not(.is-active):hover {
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius);
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover {
  background-color: rgba(248,248,248,0.08);
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}

.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Panel */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--black);
  border-top: 1px solid rgba(196, 0, 0, 0.2);
  padding: 16px 24px 24px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
}

.mobile-nav.open {
  max-height: 500px;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.mobile-nav__link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: rgba(248, 248, 248, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(248,248,248,0.06);
  transition: color var(--transition);
}
.mobile-nav__link:hover {
  color: var(--red);
}

.mobile-nav__cta {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

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

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
  transform: scale(1.03);
  transition: transform 6s ease-out;
}

.hero.loaded .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(17, 17, 17, 0.65) 50%,
    rgba(17, 17, 17, 0.75) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(248, 248, 248, 0.8);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.85);
}

.hero__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Hero quick-info strip */
.hero__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: rgba(248, 248, 248, 0.85);
}

.hero__info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__info-item i,
.hero__info-item .svg-icon {
  color: var(--red);
}

.hero__info-link {
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--red);
}

.hero__info-link:hover {
  color: var(--red);
}

/* Hero social row */
.hero__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.hero__social-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.7);
}

/* Gold accent bar at bottom of hero */
.hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
  opacity: 0.6;
  z-index: 2;
}

/* =============================================
   10. ABOUT SECTION
   ============================================= */
.about__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about__story p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--smoke-grey);
}

.about__story p + p {
  margin-top: 20px;
}

.about__photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* Meet the owners */
.about__owners {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about__owners-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.about__owners-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}

.about__owners-text {
  font-size: 0.95rem;
  color: var(--smoke-grey);
  line-height: 1.4;
}

/* Fallback when no photo is present — center the story */
.about__layout--solo {
  grid-template-columns: 1fr;
}
.about__layout--solo .about__story {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about__card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.about__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 0, 0, 0.15);
}

.about__card:hover::before {
  transform: scaleX(1);
}

.about__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(196, 0, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  transition: background var(--transition);
}

.about__card-icon i {
  font-size: 1.5rem;
}

.about__card:hover .about__card-icon {
  background: rgba(196, 0, 0, 0.14);
}

.about__card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 10px;
}

.about__card-text {
  font-size: 0.9375rem;
  color: var(--smoke-grey);
  line-height: 1.65;
}

/* =============================================
   11. PRODUCT CATEGORIES
   ============================================= */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 0, 0, 0.2);
  box-shadow: var(--shadow-md);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ececec;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__img {
  transform: scale(1.06);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.product-card__ask {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.product-card__ask:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.product-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--black);
}

.product-card__text {
  font-size: 0.875rem;
  color: var(--smoke-grey);
  line-height: 1.6;
  flex: 1;
}

/* =============================================
   12. WEEKLY SPECIALS
   ============================================= */
.specials__grid,
.seafood__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.seafood__grid {
  margin-bottom: 0;
}

/* Promotion cards are injected by JS — uniform text cards */
.special-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* "Today's Special" pinned card */
.special-card--featured {
  position: relative;
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red), var(--shadow-md);
}

.special-card__flag {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.special-card__img-wrap {
  margin: -28px -26px 4px;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.special-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.5s var(--ease);
}

.special-card:hover .special-card__img {
  transform: scale(1.04);
}

.special-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.1;
}

.special-card__detail {
  font-size: 0.95rem;
  color: var(--smoke-grey);
  line-height: 1.5;
  flex: 1;
}

.special-card__price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-top: 4px;
}

.special-card__amount {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.special-card__unit {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}

.specials__footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.specials__cta-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  letter-spacing: 0.02em;
  color: var(--black);
  max-width: 600px;
  line-height: 1.25;
}

.specials__note {
  font-size: 0.9375rem;
  color: var(--wood-brown);
  font-weight: 500;
}

/* Empty state — no live promotions */
.promos-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
}
.promos-empty__icon {
  font-size: 2.4rem;
  color: var(--red);
  margin-bottom: 14px;
}
.promos-empty__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
}
.promos-empty__text {
  font-size: 1rem;
  color: var(--smoke-grey);
  margin-top: 6px;
}

/* Empty state — no competition running */
.competition__empty {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 32px;
  text-align: center;
}
.competition__empty-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
}
.competition__empty-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 460px;
  margin: 10px auto 0;
}
.competition__empty-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* =============================================
   12b. PACKAGES
   ============================================= */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 4px solid var(--red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.package-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.package-card__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}

.package-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  color: var(--smoke-grey);
  line-height: 1.45;
}

/* Font Awesome check bullet */
.package-card__list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.8rem;
  color: var(--red);
}

.package-card__footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.package-card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: var(--red);
  line-height: 1.1;
}

.package-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--whatsapp);
  border: 2px solid var(--whatsapp);
  padding: 12px 18px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.package-card__cta:hover,
.package-card__cta:focus-visible {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.package-card__cta i {
  font-size: 1rem;
  flex-shrink: 0;
}

.packages__footer {
  text-align: center;
  margin-top: 44px;
}

.packages__note {
  font-size: 0.9375rem;
  color: var(--smoke-grey);
  font-weight: 500;
}

/* =============================================
   13. WHY CHOOSE VAAL SLAGHUIS
   ============================================= */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.why__card {
  padding: 40px 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why__card:last-child {
  border-right: none;
}

.why__card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.why__card:hover::before {
  transform: scaleX(1);
}

.why__card:hover {
  background-color: rgba(0,0,0,0.02);
}

.why__card-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: rgba(196, 0, 0, 0.18);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.why__card:hover .why__card-number {
  color: rgba(196, 0, 0, 0.38);
}

.why__card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 12px;
}

.why__card-text {
  font-size: 0.9375rem;
  color: var(--smoke-grey);
  line-height: 1.7;
}

/* =============================================
   14. BRAAI PROMO
   ============================================= */
.braai-promo {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.braai-promo__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--black-soft);
}

.braai-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 17, 17, 0.95) 0%,
    rgba(17, 17, 17, 0.82) 45%,
    rgba(90, 20, 20, 0.6) 100%
  );
}

.braai-promo__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.braai-promo__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.braai-promo__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.braai-promo__text {
  font-size: 1.0625rem;
  color: rgba(248, 248, 248, 0.75);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

/* =============================================
   14b. REVIEWS — customer testimonials band
   ============================================= */
.reviews-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.reviews-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--black-soft);
}

.reviews-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,11,11,0.94) 0%, rgba(11,11,11,0.82) 100%);
}

.reviews-section .container {
  position: relative;
  z-index: 2;
}

/* Reviews band sits on a dark background — force light heading & intro */
.reviews-section .section__title,
.reviews-section .section__intro {
  color: #F8F8F8;
}

/* Horizontal auto-scrolling carousel */
.reviews__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  /* fade the edges */
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.reviews__viewport::-webkit-scrollbar {
  display: none;                /* Chrome/Safari */
}

.reviews__track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  padding: 4px;
}

/* When all cards fit, centre them (no auto-scroll) */
.reviews__viewport.is-static .reviews__track,
.winners__viewport.is-static .winners__track {
  margin-inline: auto;
}

.review-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-card__text {
  color: #333333;
  font-size: 0.95rem;
  line-height: 1.65;
  font-style: italic;
}

.review-card__by {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-card__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
}

.review-card__source {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--red);
  text-transform: uppercase;
}

/* =============================================
   14b-i. CURRENT COMPETITION
   ============================================= */
.competition__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.competition__card--no-media {
  grid-template-columns: 1fr;
}

.competition__media {
  min-height: 320px;
  background: var(--black-soft);
}

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

.competition__body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.competition__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
}

.competition__prize {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--red);
  letter-spacing: 0.02em;
}

.competition__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
}

.competition__dates {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}

.competition__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

/* =============================================
   14c. COMPETITION WINNERS (carousel)
   ============================================= */
.winners__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.winners__viewport::-webkit-scrollbar {
  display: none;
}

.winners__track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  width: max-content;
  padding: 4px;
}

.winner-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.winner-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-grey);
}

/* Subtle placeholder look when a winner photo is missing */
.winner-card__img-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--red);
}
.winner-card__img-wrap--empty::after {
  content: "\f091"; /* Font Awesome trophy */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2.4rem;
  color: rgba(0,0,0,0.12);
}

.winner-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s var(--ease);
}

.winner-card:hover .winner-card__img {
  transform: scale(1.04);
}

.winner-card__body {
  padding: 20px 22px 24px;
}

.winner-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  line-height: 1.15;
}

.winner-card__prize {
  font-size: 0.9rem;
  color: var(--red);
  font-weight: 600;
  margin-top: 4px;
}

/* =============================================
   14d. GALLERY (image-only carousel)
   ============================================= */
.gallery__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
}

.gallery__viewport::-webkit-scrollbar {
  display: none;
}

.gallery__track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 4px;
}

.gallery__viewport.is-static .gallery__track {
  margin-inline: auto;
}

.gallery-slide {
  flex: 0 0 340px;
  width: 340px;
}

.gallery-slide__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

/* =============================================
   14e. LEGAL PAGE
   ============================================= */
.legal {
  max-width: 820px;
  padding-top: 110px;
  padding-bottom: 40px;
}

.legal__block {
  margin-bottom: 36px;
}

.legal__block h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}

.legal__block h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
  margin: 18px 0 8px;
}

.legal__block p,
.legal__block li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--smoke-grey);
}

.legal__block ul {
  list-style: disc;
  padding-left: 22px;
  margin: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal__block a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   14f. COOKIE CONSENT
   ============================================= */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2500;
  max-width: 920px;
  margin: 0 auto;
  background: var(--footer-black);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: cookie-up 0.4s var(--ease);
}

.cookie[hidden] { display: none; }

@keyframes cookie-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie__text {
  flex: 1 1 320px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie__text a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.cookie__actions .btn--outline:hover {
  background: var(--red);
  border-color: var(--red);
}

@media (max-width: 600px) {
  .cookie { padding: 18px; }
  .cookie__actions { width: 100%; }
  .cookie__actions .btn { flex: 1; }
}

/* =============================================
   15. GALLERY
   ============================================= */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Make first item span 2 columns for visual interest */
.gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  cursor: pointer;
  aspect-ratio: 1/1;
}

.gallery__item:first-child {
  aspect-ratio: auto;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__hover i {
  font-size: 2.2rem;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.gallery__item:hover .gallery__img,
.gallery__item:focus-within .gallery__img {
  transform: scale(1.06);
}

.gallery__item:hover .gallery__hover,
.gallery__item:focus .gallery__hover {
  opacity: 1;
}

.gallery__item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* =============================================
   17. CONTACT SECTION
   ============================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Follow Us — inline social text links */
.contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.contact__detail-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 1rem;
  color: #333333;
  font-weight: 500;
  line-height: 1.5;
  transition: color var(--transition);
}

a.contact__detail-value:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Map placeholder */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

/* If a real iframe embed is added, it should fill the space */
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.map-placeholder {
  background: rgba(0,0,0,0.02);
  border: 2px dashed rgba(196, 0, 0, 0.45);
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.map-placeholder__inner {
  text-align: center;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.map-placeholder__inner i {
  font-size: 2.8rem;
  color: var(--red);
  opacity: 0.6;
}

.map-placeholder__inner p {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--black);
}

.map-placeholder__inner span {
  font-size: 0.875rem;
  color: var(--smoke-grey);
  line-height: 1.6;
  max-width: 300px;
}

/* =============================================
   18. FOOTER
   ============================================= */
.footer {
  background-color: var(--footer-black);
  border-top: 3px solid var(--red);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo img {
  height: 84px;
  width: auto;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(248,248,248,0.55);
  line-height: 1.6;
  max-width: 260px;
}

/* Social icon row */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-link {
  display: inline-flex;
  transition: transform var(--transition);
}

.footer__social-link:hover {
  transform: translateY(-2px);
}

.footer__social-link:hover .icon-box {
  background: var(--red);
}

.footer__social-link:hover .icon-box svg {
  fill: #F8F8F8;
}

.footer__nav-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-link {
  font-size: 0.9375rem;
  color: rgba(248,248,248,0.6);
  transition: color var(--transition);
  display: inline-block;
}

.footer__nav-link:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  padding: 8px 0;
  line-height: 1.45;
}

/* Red circular contact icons with white symbol (style guide §12) */
.footer__contact-item a {
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.875rem;
  color: rgba(248,248,248,0.35);
}

.footer__credit {
  font-size: 0.875rem;
  color: rgba(248,248,248,0.35);
}

.footer__legal-link {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.footer__legal-link:hover {
  color: var(--white);
}

.footer__credit a {
  color: var(--red);
  font-weight: 600;
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--white);
}

/* =============================================
   19. FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all var(--transition);
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 1.7rem;
  color: var(--white);
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: pulse-ring 2.5s var(--ease) infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

/* Push float button up on mobile so it clears the sticky bar */
@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 84px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float i {
    font-size: 1.45rem;
  }
}

/* =============================================
   20. BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--black);
  border: 1px solid rgba(196, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--red);
  color: var(--black);
  border-color: var(--red);
  transform: translateY(-3px);
}

.back-to-top i {
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 84px;
    left: 16px;
    width: 42px;
    height: 42px;
  }
}

/* =============================================
   21. MOBILE STICKY CTA BAR
   (Hidden on desktop, visible on mobile)
   ============================================= */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    height: 60px;
    box-shadow: 0 -3px 20px rgba(0,0,0,0.35);
  }
}

.mobile-cta-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  transition: opacity var(--transition);
}

.mobile-cta-bar__btn:active {
  opacity: 0.85;
}

.mobile-cta-bar__btn i {
  font-size: 1rem;
}

.mobile-cta-bar__btn--call {
  background: var(--black);
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mobile-cta-bar__btn--whatsapp {
  background: var(--whatsapp);
}

/* =============================================
   22. SCROLL REVEAL ANIMATIONS
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid items */
.about__card[data-reveal]:nth-child(1)  { transition-delay: 0.05s; }
.about__card[data-reveal]:nth-child(2)  { transition-delay: 0.12s; }
.about__card[data-reveal]:nth-child(3)  { transition-delay: 0.19s; }
.about__card[data-reveal]:nth-child(4)  { transition-delay: 0.26s; }

.product-card[data-reveal]:nth-child(1) { transition-delay: 0.04s; }
.product-card[data-reveal]:nth-child(2) { transition-delay: 0.09s; }
.product-card[data-reveal]:nth-child(3) { transition-delay: 0.14s; }
.product-card[data-reveal]:nth-child(4) { transition-delay: 0.19s; }
.product-card[data-reveal]:nth-child(5) { transition-delay: 0.04s; }
.product-card[data-reveal]:nth-child(6) { transition-delay: 0.09s; }
.product-card[data-reveal]:nth-child(7) { transition-delay: 0.14s; }
.product-card[data-reveal]:nth-child(8) { transition-delay: 0.19s; }

.why__card[data-reveal]:nth-child(1) { transition-delay: 0.06s; }
.why__card[data-reveal]:nth-child(2) { transition-delay: 0.12s; }
.why__card[data-reveal]:nth-child(3) { transition-delay: 0.18s; }
.why__card[data-reveal]:nth-child(4) { transition-delay: 0.24s; }

.gallery__item[data-reveal]:nth-child(1) { transition-delay: 0.05s; }
.gallery__item[data-reveal]:nth-child(2) { transition-delay: 0.10s; }
.gallery__item[data-reveal]:nth-child(3) { transition-delay: 0.15s; }
.gallery__item[data-reveal]:nth-child(4) { transition-delay: 0.20s; }
.gallery__item[data-reveal]:nth-child(5) { transition-delay: 0.07s; }
.gallery__item[data-reveal]:nth-child(6) { transition-delay: 0.12s; }
.gallery__item[data-reveal]:nth-child(7) { transition-delay: 0.17s; }

/* =============================================
   23. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {

  .header__phone {
    display: none;
  }

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

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

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

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

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

  .why__card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .why__card:nth-child(1),
  .why__card:nth-child(2) {
    border-right: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery__item:first-child {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1/1;
  }

  .contact__grid {
    gap: 40px;
  }
}

/* =============================================
   24. RESPONSIVE — MOBILE (max-width: 767px)
   ============================================= */
@media (max-width: 767px) {

  /* Header */
  .header__nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .section {
    padding: 64px 0;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    padding-top: 72px;
  }

  .hero__content {
    padding: 40px 0;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__cta-group .btn {
    width: 100%;
    justify-content: center;
  }

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

  .about__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__card {
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: row;
    gap: 18px;
    align-items: flex-start;
  }

  .about__card-icon {
    margin: 0;
    flex-shrink: 0;
  }

  /* Products */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* Specials + Seafood */
  .specials__grid,
  .seafood__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Packages */
  .packages__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Winners */
  .winners__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Gallery smaller tiles */
  .gallery-slide {
    flex-basis: 260px;
    width: 260px;
  }
  .gallery-slide__img {
    height: 200px;
  }

  /* Current competition stacks */
  .competition__card {
    grid-template-columns: 1fr;
  }
  .competition__media {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }
  .competition__body {
    padding: 32px 26px;
  }

  /* Reviews — narrower cards on small screens */
  .review-card {
    flex-basis: 280px;
    width: 280px;
  }

  /* Why Choose */
  .why__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why__card {
    padding: 28px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .why__card:last-child {
    border-bottom: none;
  }

  /* Braai promo */
  .braai-promo {
    min-height: auto;
    padding: 72px 0;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery__item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

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

  .contact__ctas {
    flex-direction: column;
  }

  .contact__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Specials footer */
  .specials__footer {
    gap: 16px;
  }

  .specials__footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   25. EXTRA SMALL (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {

  .products__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__item:first-child {
    grid-column: span 1;
    aspect-ratio: 16/9;
  }

  .hero__title {
    font-size: 3rem;
  }
}

/* =============================================
   26. PRINT STYLES
   ============================================= */
@media print {
  .header,
  .mobile-cta-bar,
  .whatsapp-float,
  .back-to-top,
  .mobile-nav,
  .lightbox {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}

/* =============================================
   27. OSWALD DISPLAY WEIGHTS (Style Guide)
   Oswald needs explicit weight — 400 is too light
   for display use. Bold for big headlines & price.
   ============================================= */
.hero__title,
.section__title,
.braai-promo__title,
.special-card__amount,
.why__card-number,
.map-placeholder__inner p {
  font-weight: 700;
}

.product-card__title,
.special-card__name,
.about__card-title,
.why__card-title,
.header__logo {
  font-weight: 600;
}

/* ===== KLEIN SATERDAG (every-Wednesday feature) ===== */
.ks__card{display:flex;background:var(--white);border:1px solid #ececea;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 24px 60px rgba(0,0,0,.10);}
.ks__media{flex:0 0 42%;min-height:300px;background:#fff;display:flex;align-items:center;justify-content:center;padding:14px;}
.ks__img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block;}
.ks__body{flex:1 1 60%;padding:34px 44px;display:flex;flex-direction:column;}
.ks__eyebrow{color:var(--red);font-family:var(--font-body);font-weight:700;font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;}
.ks__title{font-family:var(--font-heading);font-weight:700;text-transform:uppercase;line-height:.98;font-size:clamp(1.9rem,3.4vw,2.9rem);margin:10px 0 20px;color:var(--black);}
.ks__list{list-style:none;margin:0 0 20px;padding:0;}
.ks__item{padding:13px 2px;border-bottom:1px dashed #d9d9d6;font-family:var(--font-body);font-weight:600;font-size:1rem;letter-spacing:.02em;text-transform:uppercase;color:var(--black);}
.ks__item:last-child{border-bottom:none;}
.ks__footer{display:flex;align-items:center;gap:16px;margin-top:4px;flex-wrap:wrap;}
.ks__price{background:var(--red);color:var(--white);font-family:var(--font-heading);font-weight:700;font-size:1.9rem;line-height:1;padding:12px 30px;border-radius:var(--radius);letter-spacing:.02em;}
.ks__note{color:#6f6f6f;font-family:var(--font-body);font-size:.85rem;margin-top:12px;}
.ks__reserve{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-body);font-weight:700;font-size:.85rem;letter-spacing:.03em;text-transform:uppercase;color:var(--black);background:transparent;border:2px solid var(--black);border-radius:var(--radius);padding:13px 22px;text-decoration:none;transition:all var(--transition);}
.ks__reserve:hover{background:var(--black);color:#fff;}
.ks__reserve .fa-whatsapp{color:#25D366;font-size:1.15em;}
.ks__reserve:hover .fa-whatsapp{color:#fff;}
@media (max-width:767px){
  .ks__card{flex-direction:column;}
  .ks__media{min-height:220px;flex-basis:auto;}
  .ks__body{padding:30px 26px;}
  .ks__footer{flex-direction:column;align-items:flex-start;gap:12px;}
}


/* ---- CTA hierarchy + directions + order link (UX pass) ---- */
.mobile-cta-bar__btn--directions{background:var(--red);border-left:1px solid rgba(255,255,255,0.12);}
.btn--ghost{background:transparent;color:rgba(248,248,248,0.9);border:1px solid rgba(248,248,248,0.22);}
.btn--ghost:hover{background:rgba(255,255,255,0.08);color:#fff;border-color:rgba(248,248,248,0.42);}
.specials__order-link{display:inline-block;margin-left:6px;color:var(--red);font-weight:700;white-space:nowrap;text-decoration:underline;text-underline-offset:3px;text-decoration-color:var(--red);}
.specials__order-link:hover{color:var(--red-dark);text-decoration-color:var(--red-dark);}

.reviews__cta{display:flex;justify-content:center;flex-wrap:wrap;gap:14px;margin-top:28px;}
.reviews__cta .btn i{margin-right:6px;}

.status-dot{display:inline-block;width:8px;height:8px;border-radius:50%;margin-right:5px;background:#9aa0a6;vertical-align:middle;}
.hero__info-item.is-open .status-dot{background:#39d353;box-shadow:0 0 0 3px rgba(57,211,83,0.18);}
.hero__info-item.is-closed .status-dot{background:#e0564f;box-shadow:0 0 0 3px rgba(224,86,79,0.18);}


/* ---- Accessibility pass: reduced motion + contrast (WCAG 2.2) ---- */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:0.001ms!important;animation-iteration-count:1!important;transition-duration:0.001ms!important;scroll-behavior:auto!important;}
  [data-reveal]{opacity:1!important;transform:none!important;}
  .hero__bg{transform:none!important;}
}
/* Brighten the red eyebrow on dark backgrounds so small text meets 4.5:1 */
.section--dark .section__eyebrow,
.reviews-section .section__eyebrow{color:#ea4a4a;}

/* ===== TRUST STRIP ===== */
.trust{background:var(--off-white);padding:28px 0;border-bottom:1px solid #ececea;}
.trust .container{display:flex;flex-direction:column;align-items:center;gap:16px;}
.trust__tag{font-family:var(--font-heading);text-transform:uppercase;letter-spacing:.04em;color:var(--red);font-size:1.1rem;margin:0;}
.trust__list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;justify-content:center;gap:14px 34px;}
.trust__item{display:flex;align-items:center;gap:10px;font-family:var(--font-body);font-weight:600;color:var(--black);font-size:.95rem;}
.icon-box i{color:#F8F8F8;font-size:18px;}
@media (max-width:600px){.trust__list{gap:12px 20px;}.trust__item{font-size:.85rem;}}

/* ===== FAQ ===== */
.faq__list{max-width:820px;margin:0 auto;}
.faq__item{border:1px solid #e6e6e3;border-radius:var(--radius);margin-bottom:12px;background:var(--white);overflow:hidden;}
.faq__q{cursor:pointer;list-style:none;padding:18px 22px;font-family:var(--font-heading);text-transform:uppercase;letter-spacing:.02em;font-size:1.02rem;color:var(--black);display:flex;justify-content:space-between;align-items:center;gap:16px;}
.faq__q::-webkit-details-marker{display:none;}
.faq__icon{width:14px;height:14px;position:relative;flex-shrink:0;}
.faq__icon::before,.faq__icon::after{content:"";position:absolute;background:var(--red);border-radius:2px;transition:transform var(--transition),opacity var(--transition);}
.faq__icon::before{top:6px;left:0;width:14px;height:2px;}
.faq__icon::after{left:6px;top:0;width:2px;height:14px;}
.faq__item[open] .faq__icon::after{transform:rotate(90deg);opacity:0;}
.faq__a{padding:0 22px 20px;color:#4a4a48;font-family:var(--font-body);line-height:1.6;}
.faq__a p{margin:0;}

/* ===== BRAAI PACKS (styled like Meat Packages, with a photo) ===== */
.braaipacks__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.braaipak-card{background:var(--white);border:1px solid rgba(0,0,0,0.08);border-top:4px solid var(--red);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:26px 24px;display:flex;flex-direction:column;}
.braaipak-card__name{font-family:var(--font-heading);font-weight:700;font-size:1.2rem;text-transform:uppercase;letter-spacing:.03em;color:var(--black);margin:0 0 14px;padding-bottom:12px;border-bottom:1px solid rgba(0,0,0,0.08);display:flex;flex-wrap:wrap;align-items:center;gap:8px;line-height:1.1;}
.braaipak-card__badge{background:var(--red);color:#fff;font-family:var(--font-body);font-size:.56rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;padding:4px 9px;border-radius:100px;}
.braaipak-card__list{list-style:none;display:flex;flex-direction:column;gap:8px;margin:0 0 16px;padding:0;flex:1;}
.braaipak-card__list li{font-family:var(--font-body);font-size:.88rem;color:#3a3a38;line-height:1.35;}
.braaipak-card__media{height:180px;border-radius:var(--radius);overflow:hidden;background:#fff;margin-bottom:16px;display:flex;align-items:center;justify-content:center;}
.braaipak-card__img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block;}
.braaipak-card__footer{padding-top:16px;border-top:1px solid rgba(0,0,0,0.08);}
.braaipak-card__price{display:inline-flex;align-items:baseline;gap:6px;background:var(--red);color:#fff;font-family:var(--font-heading);font-weight:700;font-size:1.5rem;line-height:1;padding:10px 18px;border-radius:var(--radius);}
.braaipak-card__unit{font-family:var(--font-body);font-weight:600;font-size:.6rem;text-transform:uppercase;letter-spacing:.05em;color:rgba(255,255,255,.85);}
@media (max-width:1024px){.braaipacks__grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:600px){.braaipacks__grid{grid-template-columns:1fr;gap:18px;}.braaipak-card__media{height:190px;}}
