/* ============================================================
   TANTUNIO 2026, design system
   Typography: Fraunces (editorial serif) + Manrope (sans body)
   Colors: brand teal #65c0be + deep ink #0b1414 + warm cream
   ============================================================ */

:root {
  /* Brand colors, required to keep */
  --tnt-dark: #0b1414;
  --tnt-black: #121212;
  --tnt-surface-dark: #0f1719;
  --tnt-teal: #65c0be;
  --tnt-teal-bright: #65c1bf;
  --tnt-teal-hover: #76d1d0;
  --tnt-white: #ffffff;
  --tnt-offwhite: #FAFAFA;
  --tnt-text: #515151;
  --tnt-muted: #919191;
  --tnt-line: rgba(255, 255, 255, .12);
  --tnt-gold: #f4c95d;

  /* Extended neutrals */
  --cream: #f5efe6;
  --cream-2: #ece4d4;
  --paper: #fbf8f2;
  --ink: #14201f;
  --ink-soft: #2a3736;
  --line-dark: rgba(255, 255, 255, .10);
  --line-light: rgba(20, 32, 31, .10);
  --shadow-soft: 0 10px 30px -12px rgba(11, 20, 20, .25);
  --shadow-card: 0 30px 60px -30px rgba(11, 20, 20, .45);

  /* Type */
  --font-display: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Nunito Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .7, .3, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* Spacing */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --container: 1240px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --topbar-h: 34px;
}

* , *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

::selection { background: var(--tnt-teal); color: var(--tnt-dark); }

/* Headings ---------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 6.5vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1em; }
small { font-size: .85em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2rem);
}

/* Eyebrow / kicker -------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tnt-teal);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

/* ============================================================
   TOP NAV
   ============================================================ */
.topbar {
  --topbar-gap: clamp(28px, 5vw, 70px);
  --topbar-separator-right: clamp(-42px, calc(-2.5vw - 7px), -21px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 82;
  height: var(--topbar-h);
  overflow: hidden;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  transform: translateY(0);
  transition: transform .42s var(--ease), opacity .42s var(--ease);
  will-change: transform;
}
.topbar.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
}
.topbar__track {
  display: flex;
  width: max-content;
  animation: topbarMarquee 76s linear infinite;
  will-change: transform;
}
.topbar__line {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: var(--topbar-gap);
  padding-right: var(--topbar-gap);
  white-space: nowrap;
}
.topbar__line span {
  position: relative;
  color: rgba(255,255,255,.86);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topbar__line span::after {
  content: "";
  position: absolute;
  right: var(--topbar-separator-right);
  top: 50%;
  width: 14px;
  height: 14px;
  background: url("/favicon.ico") center / contain no-repeat;
  opacity: .9;
  transform: translateY(-50%);
}
@keyframes topbarMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar__track { animation: none; }
}

.nav {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(1.25rem, 3vw, 2rem);
  background: rgb(251, 248, 242);
  border-bottom: 1px solid var(--line-light);
  transition: top .42s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.topbar.is-hidden + .nav { top: 0; }
.nav.is-dark {
  background: rgb(11, 20, 20);
  border-bottom-color: var(--line-dark);
  color: var(--tnt-offwhite);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.nav__brand img {
  height: 30px;
  width: auto;
}
.nav__brand .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tnt-teal);
  display: inline-block;
  margin-left: 4px;
  box-shadow: 0 0 0 4px rgba(101, 192, 190, .2);
  animation: pulse 2.4s ease-in-out infinite;
}
.nav__links {
  display: none;
  gap: 4px;
  align-items: center;
}
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-weight: 500;
  font-size: .95rem;
  border-radius: var(--r-pill);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__links a:hover { background: rgba(20, 32, 31, .06); }
.nav.is-dark .nav__links a:hover { background: rgba(255, 255, 255, .07); }
.nav__links a.is-active { color: var(--tnt-teal); }
.nav__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 7px 7px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.9);
  color: var(--tnt-dark);
  border: 1px solid rgba(20,32,31,.08);
  box-shadow: 0 10px 24px -18px rgba(11,20,20,.45);
  line-height: 1;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.nav__rating:hover {
  transform: translateY(-1px);
  background: #fff;
  box-shadow: 0 14px 28px -18px rgba(11,20,20,.55);
}
.nav__rating-g {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 23px;
  background: #fff;
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(20,32,31,.08);
}
.nav__rating-copy {
  display: grid;
  gap: 2px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .01em;
}
.nav__rating-copy > small,
.nav__rating-copy span small {
  color: var(--tnt-muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.nav__rating .star {
  color: #fbbc04;
  margin-right: 2px;
}
.nav.is-dark .nav__rating {
  background: rgba(255,255,255,.94);
}
.nav__dropdown {
  position: relative;
}
.nav__dropdown::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown:focus-within .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 260px;
  padding: 8px;
  border-radius: var(--r-md);
  background: rgba(251,248,242,.98);
  border: 1px solid var(--line-light);
  box-shadow: 0 22px 55px -32px rgba(11,20,20,.55);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: .9rem;
  line-height: 1.25;
  white-space: nowrap;
}
.nav__dropdown-menu a:hover {
  background: rgba(101,192,190,.14);
  color: var(--tnt-dark);
}
.nav.is-dark .nav__dropdown-menu {
  background: rgba(11,20,20,.98);
  border-color: var(--line-dark);
  box-shadow: 0 22px 55px -32px rgba(0,0,0,.75);
}
.nav.is-dark .nav__dropdown-menu a {
  color: var(--tnt-offwhite);
}
.nav.is-dark .nav__dropdown-menu a:hover {
  background: rgba(101,192,190,.18);
  color: var(--tnt-teal);
}
.nav__cta {
  display: none;
}
@media (max-width: 919px) {
  .nav__rating {
    margin-left: auto;
    margin-right: 8px;
    gap: 6px;
    padding: 6px 8px 6px 6px;
  }
  .nav__rating-g {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
    font-size: .76rem;
  }
  .nav__rating-copy {
    font-size: .72rem;
  }
  .nav__rating-copy > small {
    display: none;
  }
  .nav__rating-copy span small {
    font-size: .56rem;
  }
  .nav > .nav__cta {
    display: none !important;
  }
}

@media (min-width: 920px) {
  .nav__links { display: inline-flex; }
  .nav__cta { display: inline-flex; }
}

.btn {
  --bg: var(--tnt-teal);
  --fg: var(--tnt-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .005em;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 6px 18px -8px rgba(101, 192, 190, .55);
}
.btn:hover { transform: translateY(-2px); background: var(--tnt-teal-hover); box-shadow: 0 14px 28px -12px rgba(101, 192, 190, .7); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  --bg: transparent;
  --fg: currentColor;
  border: 1px solid currentColor;
  box-shadow: none;
}
.btn--ghost:hover { background: var(--tnt-dark); color: var(--tnt-teal); border-color: var(--tnt-dark); box-shadow: none; }
.btn--dark {
  --bg: var(--tnt-dark);
  --fg: var(--tnt-offwhite);
  box-shadow: 0 6px 18px -8px rgba(11, 20, 20, .55);
}
.btn--dark:hover { background: #1a2828; }
.btn--sm { padding: 10px 16px; font-size: .85rem; }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* Mobile burger ----------------------------------------------- */
.nav__burger {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  border: 1px solid transparent;
}
.nav.is-dark .nav__burger { background: var(--tnt-offwhite); color: var(--tnt-dark); }
@media (min-width: 920px) { .nav__burger { display: none; } }
.nav__burger svg { width: 18px; height: 18px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  display: flex;
  flex-direction: column;
  padding: 30px clamp(1.25rem, 4vw, 2rem);
  transform: translateY(-100%);
  transition: transform .55s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__head {
  display: flex; align-items: center; justify-content: space-between;
}
.mobile-menu__close {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--tnt-offwhite);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu__nav {
  margin: 60px 0 30px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s var(--ease);
}
.mobile-menu.is-open .mobile-menu__nav a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__nav a:nth-child(1) { transition-delay: .12s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(2) { transition-delay: .17s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(3) { transition-delay: .22s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(4) { transition-delay: .27s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(5) { transition-delay: .32s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(6) { transition-delay: .37s; }
.mobile-menu.is-open .mobile-menu__nav a:nth-child(7) { transition-delay: .42s; }
.mobile-menu__nav a:hover { color: var(--tnt-teal); }
.mobile-menu__group {
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu__group > a {
  border-bottom: 0;
}
.mobile-menu__sub {
  display: grid;
  gap: 0;
  padding: 0 0 16px 18px;
}
.mobile-menu__nav .mobile-menu__sub a {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
  border-bottom: 0;
  padding: 5px 0;
}
.mobile-menu__nav .mobile-menu__sub a:hover {
  color: var(--tnt-teal);
}
.mobile-menu__foot {
  margin-top: auto;
  display: grid; gap: 14px;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
}
.mobile-menu__foot a { color: var(--tnt-teal); font-weight: 600; }

/* ============================================================
   MOBILE STICKY ACTION BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 6px calc(8px + var(--safe-bottom));
  gap: 4px;
  border-top: 1px solid var(--line-dark);
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 12px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--tnt-offwhite);
  text-transform: uppercase;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.sticky-bar a:active { background: rgba(255,255,255,.08); }
.sticky-bar a.primary { background: var(--tnt-teal); color: var(--tnt-dark); }
.sticky-bar a svg { width: 22px; height: 22px; }

@media (min-width: 920px) { .sticky-bar { display: none; } }

#reserveWidget {
  position: fixed;
  left: 50%;
  bottom: calc(96px + var(--safe-bottom));
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  z-index: 85;
  appearance: none;
  border: 0;
  border-radius: var(--r-pill);
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--tnt-teal);
  color: var(--tnt-dark);
  font-weight: 800;
  font-size: .9rem;
  line-height: 1;
  letter-spacing: .02em;
  box-shadow:
    0 16px 38px -18px rgba(0,0,0,.7),
    0 0 0 1px rgba(255,255,255,.10) inset;
  transition: transform .42s var(--ease-out), opacity .24s var(--ease), background .2s var(--ease);
}
#reserveWidget svg {
  width: 21px;
  height: 21px;
}
#reserveWidget.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
#reserveWidget.is-visible:hover {
  transform: translate(-50%, -2px);
  background: var(--tnt-teal-hover);
}
#reserveWidget.is-visible:active {
  transform: translate(-50%, 1px) scale(.98);
}
#reserveWidget:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(101,192,190,.35),
    0 16px 38px -18px rgba(0,0,0,.7);
}

@media (max-width: 919px) {
  #reserveWidget {
    display: none !important;
  }
}

@media (min-width: 920px) {
  #reserveWidget {
    left: auto;
    right: 30px;
    bottom: 50px;
    transform: translateY(140%);
    padding: 18px 24px;
    font-size: .95rem;
  }
  #reserveWidget.is-visible { transform: translateY(0); }
  #reserveWidget.is-visible:hover { transform: translateY(-2px); }
  #reserveWidget.is-visible:active { transform: translateY(1px) scale(.98); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg video,
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(.72);
}
.hero__bg video {
  position: absolute;
  inset: 0;
}
.hero__poster {
  display: none;
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: heroZoom 30s ease-out forwards;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.38) 52%, rgba(0,0,0,.66) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: .07; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.5'/></svg>");
}
.hero__halal {
  position: absolute;
  top: clamp(142px, 18vh, 210px);
  left: clamp(18px, 4vw, 54px);
  z-index: 3;
  width: clamp(68px, 7.2vw, 108px);
  pointer-events: none;
  opacity: 0;
  transform: scale(.08);
  animation: halalReveal .9s cubic-bezier(.18, 1.45, .32, 1) .45s forwards;
  will-change: transform, opacity;
}
.hero__halal img {
  display: block;
  width: 100%;
  height: auto;
  animation: halalSway 5.8s ease-in-out infinite;
  transform-origin: 50% 58%;
  will-change: transform;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: clamp(90px, 14vh, 140px) clamp(1.25rem, 3vw, 2rem) clamp(70px, 9vh, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__head {
  width: min(100%, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(clamp(-28px, -2.5vh, -12px));
}
.hero__head .eyebrow { color: var(--tnt-teal); margin-bottom: 20px; }
.hero__title {
  font-size: clamp(2.35rem, 6vw, 5.6rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  max-width: 11em;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--tnt-teal);
}
.hero__title--seo,
.hero__lede--seo {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero__logo {
  width: clamp(250px, 34vw, 500px);
  height: auto;
  max-height: min(36vh, 310px);
  object-fit: contain;
}
.hero__lede {
  margin: clamp(16px, 2.5vh, 26px) 0 clamp(20px, 3vh, 36px);
  max-width: 66ch;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}
.hero__cta {
  margin-top: clamp(20px, 3.8vh, 42px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hero__hours {
  margin-top: clamp(30px, 5vh, 58px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: clamp(18px, 3vw, 38px);
}
.hero__hours-side {
  display: grid;
  gap: 3px;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.25;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero__hours-side--left { text-align: right; }
.hero__hours-side--right { text-align: left; }
.hero__hours-side strong {
  color: rgba(255,255,255,.62);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: none;
  white-space: nowrap;
}
.hero__status {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--tnt-offwhite);
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.hero__status::before {
  content: "";
  width: 86px;
  height: 1px;
  margin-bottom: 6px;
  background: linear-gradient(90deg, transparent, rgba(244,201,93,.95), transparent);
}
.hero__status-label {
  color: var(--tnt-gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero__status-text {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .03em;
  color: var(--tnt-offwhite);
  white-space: nowrap;
}
.hero__status.is-closed .hero__status-label {
  color: #e8b35a;
}

@media (max-width: 420px) {
  .hero__head {
    transform: translateY(0);
  }
  .hero__halal {
    top: 124px;
    left: 14px;
    width: 52px;
  }
  .hero__cta { margin-top: 24px; }
  .hero__hours {
    margin-top: 34px;
    gap: 8px;
    width: min(100%, 370px);
  }
  .hero__hours-side {
    font-size: .62rem;
    letter-spacing: .06em;
    line-height: 1.18;
  }
  .hero__hours-side strong {
    font-size: .68rem;
    letter-spacing: 0;
  }
  .hero__logo { width: min(88vw, 360px); }
  .hero__status-label {
    font-size: .78rem;
    letter-spacing: .13em;
  }
  .hero__status-text { font-size: 1.18rem; }
}

@media (max-width: 380px) {
  .hero__inner {
    padding: 86px 14px 44px;
  }
  .hero__head .eyebrow {
    margin-bottom: 14px;
    font-size: .66rem;
  }
  .hero__halal {
    top: 114px;
    left: 12px;
    width: 46px;
  }
  .hero__logo {
    width: min(80vw, 300px);
  }
  .hero__cta {
    margin-top: 18px;
    gap: 8px;
  }
  .hero__cta .btn {
    padding: 11px 15px;
    gap: 7px;
    font-size: .84rem;
  }
  .hero__cta .btn svg {
    width: 16px;
    height: 16px;
  }
  .hero__hours {
    margin-top: 24px;
    gap: 6px;
    width: min(100%, 328px);
  }
  .hero__hours-side {
    font-size: .54rem;
    letter-spacing: .04em;
  }
  .hero__hours-side strong {
    font-size: .6rem;
  }
  .hero__status-label {
    font-size: .68rem;
    letter-spacing: .1em;
  }
  .hero__status-text {
    font-size: 1.02rem;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll .line {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, transparent, currentColor, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============================================================
   SECTIONS, general
   ============================================================ */
section {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-head {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 60px);
}
.section-head h2 em { font-style: italic; color: var(--tnt-teal); font-weight: 300; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

/* Reveal animation -------------------------------------------- */
/* Content is visible by default for SEO and no-JS users.
   The .js-on class is added by JS to enable hidden-then-reveal. */
.reveal { opacity: 1; transform: none; transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html.js-on .reveal { opacity: 0; transform: translateY(28px); }
html.js-on .reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ============================================================
   DISH GRID, signature dishes
   ============================================================ */
.dishes {
  background: var(--paper);
}
.dishes__head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.dishes__head h2 {
  max-width: 18ch;
}
.dishes__head h2 em { color: var(--tnt-teal); font-style: italic; }
.dishes__head .lede {
  max-width: 38ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.dish-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.dish-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--tnt-offwhite);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  transition: transform .5s var(--ease);
}
.dish-card:hover { transform: translateY(-6px); }
.dish-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease);
  filter: brightness(.9);
}
.dish-card:hover img { transform: scale(1.08); filter: brightness(.74); }
.dish-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0,0,0,.66) 100%);
  z-index: 1;
}
.dish-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  z-index: 2;
}
.dish-card__tag {
  display: inline-block;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  color: #ff6a4f;
  font-size: .72rem;
  letter-spacing: .16em;
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}
.dish-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin-bottom: 4px;
}
.dish-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.dish-grid--feature {
  grid-template-columns: repeat(6, 1fr);
}
.dish-grid--feature .dish-card { aspect-ratio: 4 / 5; }
.dish-grid--feature .dish-card:nth-child(1) { grid-column: span 3; aspect-ratio: 4 / 4.5; }
.dish-grid--feature .dish-card:nth-child(2) { grid-column: span 3; aspect-ratio: 4 / 4.5; }
.dish-grid--feature .dish-card:nth-child(3) { grid-column: span 2; }
.dish-grid--feature .dish-card:nth-child(4) { grid-column: span 2; }
.dish-grid--feature .dish-card:nth-child(5) { grid-column: span 2; }
@media (max-width: 880px) {
  .dish-grid--feature { grid-template-columns: repeat(2, 1fr); }
  .dish-grid--feature .dish-card:nth-child(n) { grid-column: span 1; aspect-ratio: 4/5; }
  .dish-card__content { padding: 18px; }
  .dish-card__tag { font-size: .58rem; letter-spacing: .1em; margin-bottom: 8px; }
}

/* ============================================================
   STORY / SPLIT SECTION
   ============================================================ */
.story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(101,192,190,.10), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(244,201,93,.07), transparent 55%);
  pointer-events: none;
}
.story__grid {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}
@media (min-width: 880px) {
  .story__grid { grid-template-columns: 1fr 1fr; }
}
.story__media {
  position: relative;
}
.story__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}
.story__media .bg-mark {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 130px;
  height: 130px;
  background: var(--tnt-teal);
  border-radius: var(--r-md);
  z-index: -1;
  transform: rotate(-3deg);
}
.story__media .since {
  position: absolute;
  right: -20px;
  bottom: 24px;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  padding: 18px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  font-family: var(--font-display);
}
.story__media .since strong { display: block; font-size: 1.8rem; font-weight: 400; }
.story__media .since small { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); font-family: var(--font-sans); }

.story__body h2 em { color: var(--tnt-teal); font-style: italic; font-weight: 300; }
.story__body p { color: var(--ink-soft); font-size: 1.05rem; }
.story__values {
  display: grid; gap: 16px;
  margin: 30px 0;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.story__values .v {
  padding: 18px;
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.7);
}
.story__values .v strong { display:block; margin-bottom: 4px; font-family: var(--font-display); font-size: 1.05rem; }
.story__values .v span { font-size: .88rem; color: var(--ink-soft); }

/* ============================================================
   MENU PREVIEW STRIP
   ============================================================ */
.menu-strip {
  background:
    linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.60) 100%),
    url("/assets/img/nieuwefotos/webp/sfeerfoto-12.webp") center / cover no-repeat;
  background-attachment: fixed;
  color: var(--tnt-offwhite);
}
.menu-strip .section-head h2 em { color: var(--tnt-teal); font-style: italic; }
.menu-strip .section-head p { color: rgba(255,255,255,.7); }
.menu-strip .eyebrow { color: var(--tnt-teal); }

.menu-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.menu-cats a {
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.menu-cats a:hover {
  background: rgba(101,192,190,.16);
  border-color: rgba(101,192,190,.5);
  transform: translateY(-3px);
}
.menu-cats a small {
  color: var(--tnt-teal);
  font-weight: 600;
  font-size: .8rem;
}
@media (max-width: 920px) {
  .menu-strip { background-attachment: scroll; }
}

.menu-preview-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.menu-preview-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.menu-preview-item:hover { background: rgba(255,255,255,.03); border-color: rgba(101,192,190,.3); }
.menu-preview-item img { width: 84px; height: 84px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.menu-preview-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.menu-preview-item p { font-size: .85rem; color: rgba(255,255,255,.65); margin: 0 0 8px; }
.menu-preview-item .price { color: var(--tnt-teal); font-weight: 700; font-size: .95rem; }

/* ============================================================
   DELIVERY STRIP
   ============================================================ */
.delivery {
  background: linear-gradient(135deg, var(--tnt-surface-dark), var(--tnt-dark));
  color: var(--tnt-offwhite);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.delivery__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.70);
  z-index: 0;
}
.delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.56));
  pointer-events: none;
  z-index: 1;
}
.delivery .container {
  position: relative;
  z-index: 2;
}
.delivery .eyebrow { color: var(--tnt-teal); justify-content: center; }
.delivery h2 em { color: var(--tnt-teal); font-style: italic; }
.delivery__logos {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 4vw, 36px);
  align-items: center;
  max-width: 720px;
  margin: 40px auto 0;
}
.delivery__logos .brand {
  background: var(--tnt-offwhite);
  border-radius: var(--r-md);
  padding: 16px 22px;
  display: flex; align-items: center; justify-content: center;
  height: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.delivery__logos .brand:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px -10px rgba(101,192,190,.4);
}
.delivery__logos .brand img { max-height: 60px; max-width: 80%; width: auto; }
.delivery__logos .arrow {
  color: var(--tnt-teal);
  font-size: 1.5rem;
  font-weight: 700;
}
.delivery__logos .arrow svg { width: 40px; height: 40px; }
@media (max-width: 640px) {
  .delivery__logos { grid-template-columns: 1fr; }
  .delivery__logos .arrow { transform: rotate(90deg); margin: 0 auto; }
  .delivery__logos .brand { height: 80px; }
.delivery__logos .brand img { max-height: 44px; }
}

/* ============================================================
   SOCIAL FEED
   ============================================================ */
.social-feed {
  background: var(--paper);
}
.social-feed--media {
  background: var(--cream);
}
.social-feed .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}
.social-feed__frame {
  width: min(100%, 1100px);
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid var(--line-light);
  box-shadow: 0 28px 70px -42px rgba(11,20,20,.45);
}
.social-feed__frame iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
  background: #f5f7fa;
}
.social-feed__frame noscript {
  display: block;
  padding: 24px;
  text-align: center;
}
.social-feed__frame noscript a {
  color: var(--tnt-teal);
  font-weight: 800;
}
@media (max-width: 768px) {
  .social-feed__frame {
    border-radius: var(--r-sm);
  }
  .social-feed__frame iframe {
    min-height: 760px;
  }
}

/* ============================================================
   QUICK RESERVE BLOCK
   ============================================================ */
.reserve-strip {
  background: var(--cream);
  position: relative;
}
.reserve-strip__grid {
  display: grid;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}
@media (min-width: 880px) {
  .reserve-strip__grid { grid-template-columns: .9fr 1.1fr; }
}
.reserve-strip__pic {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.reserve-strip__pic img {
  width: 100%; height: 100%; object-fit: cover;
}
.reserve-strip__body h2 em { color: var(--tnt-teal); font-style: italic; }
.reserve-strip__body p { color: var(--ink-soft); font-size: 1.05rem; max-width: 38ch; }
.reserve-strip__steps {
  display: grid; gap: 14px;
  margin: 26px 0 30px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.reserve-strip__steps .step {
  padding: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  display: flex; gap: 12px; align-items: center;
}
.reserve-strip__steps .step .n {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--tnt-teal);
  color: var(--tnt-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.reserve-strip__steps .step strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.reserve-strip__steps .step span { font-size: .8rem; color: var(--ink-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line-light);
  padding: 8px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink-soft);
  background:
    linear-gradient(currentColor, currentColor) center / 12px 1px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1px 12px no-repeat;
  transition: transform .35s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary { color: var(--tnt-teal); }
.faq-item[open] summary::after {
  transform: rotate(135deg);
  border-color: var(--tnt-teal);
  color: var(--tnt-teal);
}
.faq-item .answer {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 60ch;
}

/* ============================================================
   LOCAL LINK HUB
   ============================================================ */
.local-hub { background: var(--paper); }
.local-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.local-hub__grid a {
  padding: 18px 20px;
  border: 1px solid var(--line-light);
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.local-hub__grid a:hover {
  background: var(--tnt-dark);
  color: var(--tnt-teal);
  border-color: var(--tnt-dark);
  transform: translateY(-3px);
}
.local-hub__grid a::after {
  content: "↗";
  font-size: 1rem;
  opacity: .5;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.local-hub__grid a:hover::after { opacity: 1; transform: translate(2px, -2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.old-footer {
  background-color: #121212;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Cabin", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  scroll-margin-top: 90px;
}
.old-footer .text {
  max-width: 500px;
  margin: auto;
}
.old-footer .text h2 {
  color: #fff;
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.9px;
  line-height: 1.25;
  margin: 0 0 25px;
}
.old-footer .footer-asterisk {
  color: #65c0be;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 18px;
}
.old-footer .text p {
  color: #fff;
  line-height: 27px;
  margin: 0 0 1em;
}
.old-footer a {
  color: #65c1bf;
  text-decoration: none;
  display: inline-block;
  transition: color .3s ease, transform .6s ease, text-shadow .3s ease;
}
.old-footer a:hover {
  color: #aaf3f2;
  transform: scale(1.03);
  text-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.old-footer .footer-intro strong {
  color: #65c1bf;
  font-weight: 700;
  letter-spacing: .5px;
  background-color: rgba(101,193,191,.1);
  padding: 2px 4px;
  border-radius: 4px;
}
.old-footer .tnt-wrap {
  --card-bg: #f5f7fa;
  --card-border: #e7eaef;
  --title: #0f172a;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #11b1b8;
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: left;
}
@media (min-width: 980px) {
  .old-footer .tnt-wrap { grid-template-columns: 1fr 1fr; }
}
.old-footer .tnt-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 18px;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.old-footer .tnt-title {
  margin: 0 0 12px;
  font-family: "Cabin", "Source Sans Pro", sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .2px;
  color: var(--title);
}
.old-footer .tnt-acc { border-top: 1px solid var(--card-border); }
.old-footer .tnt-acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--card-border);
  cursor: pointer;
  color: var(--title);
  font-family: "Cabin", "Source Sans Pro", sans-serif;
  font-size: 1rem;
}
.old-footer .tnt-acc-btn:hover {
  color: #111;
  transform: none;
  text-shadow: none;
}
.old-footer .tnt-plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--muted);
}
.old-footer .tnt-plus::before,
.old-footer .tnt-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}
.old-footer .tnt-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.old-footer .tnt-acc-btn[aria-expanded="true"] .tnt-plus { color: #111; }
.old-footer .tnt-acc-btn[aria-expanded="true"] .tnt-plus::after { opacity: 0; }
.old-footer .tnt-acc-panel {
  padding: 10px 0 14px;
  line-height: 1.55;
  color: var(--text);
}
.old-footer .tnt-form { display: block; }
.old-footer .tnt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.old-footer .tnt-field span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.old-footer .tnt-field input,
.old-footer .tnt-field select,
.old-footer .tnt-field textarea {
  width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #0b1324;
  outline: none;
  font: inherit;
}
.old-footer .tnt-field input::placeholder,
.old-footer .tnt-field textarea::placeholder { color: #9aa0a6; }
.old-footer .tnt-field input:focus,
.old-footer .tnt-field select:focus,
.old-footer .tnt-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(17,177,184,.18);
}
.old-footer .tnt-span2 { grid-column: span 1; }
.old-footer .tnt-btn {
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
  background: var(--accent);
  color: #071317;
  box-shadow: 0 6px 16px rgba(17,177,184,.25);
}
.old-footer .tnt-btn:hover { filter: brightness(1.05); }
.old-footer .tnt-mini {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
@media (min-width: 860px) {
  .old-footer .tnt-grid { grid-template-columns: repeat(2, 1fr); }
  .old-footer .tnt-span2 { grid-column: span 2; }
}
.old-footer .contact-container {
  padding: 40px 0;
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.old-footer .contact-container > div {
  margin-bottom: 0;
  padding: 16px;
  background: transparent;
}
@media (min-width: 768px) {
  .old-footer .contact-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.old-footer .contact-container h3 {
  color: #fff;
  font-family: "Source Sans Pro", "Cabin", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1.9px;
  margin: 0 0 18px;
}
.old-footer .social-media .links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.old-footer .social-media .links a {
  color: #fff;
  font-size: 25px;
  line-height: 1;
  margin: 0;
}
.old-footer .social-media .links a:hover { color: #65c0be; }
.old-footer .newsletter .CTA,
.copyright .CTA,
.copyright .info {
  list-style: none;
  padding: 0;
}
.old-footer .newsletter .CTA {
  display: grid;
  gap: 9px;
  margin: 0;
}
.old-footer .contact-container .map iframe {
  border-radius: 12px;
  display: block;
  background: #f5f7fa;
}
.copyright {
  padding: 15px 40px 30px;
  background-color: #262526;
  text-align: center;
  position: relative;
  font-family: "Cabin", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
.copyright .svg-up {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -96px;
  margin-top: -50px;
}
.copyright .arrow-up {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 30px;
  top: -45px;
  color: #fff;
  line-height: 1.9;
  cursor: pointer;
  display: inline-block;
  transition: color .3s ease, transform .3s ease;
}
.copyright .arrow-up:hover {
  color: #65c0be;
  transform: translateY(-2px);
}
.copyright ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0;
}
.copyright li {
  color: #919191;
  font-size: 14px;
}
.copyright li:not(:last-of-type)::after {
  content: "•";
  margin: 10px;
}
.copyright .CTA {
  margin-top: 25px;
}
.copyright .CTA li a,
.copyright .info li a {
  color: #919191;
  transition: color .3s ease;
}
.copyright .CTA li a:hover,
.copyright .info li a:hover {
  color: #65c0be;
}
@media (max-width: 767px) {
  .old-footer .contact-container {
    display: block;
  }
  .old-footer .social-media {
    margin-bottom: 40px;
  }
  .copyright {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: calc(104px + var(--safe-bottom));
  }
  .copyright ul {
    display: block;
    margin-top: -20px;
  }
  .copyright .CTA {
    margin-top: 25px;
  }
  .copyright li {
    margin-bottom: 5px;
  }
  .copyright li:not(:last-of-type)::after {
    content: "";
    margin: 0;
  }
}

.footer {
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  padding: clamp(60px, 8vw, 100px) 0 0;
  position: relative;
}
.footer__grid {
  display: grid;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
@media (min-width: 880px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--tnt-teal);
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 14px;
  font-weight: 400;
}
.footer__brand img { height: 38px; margin-bottom: 18px; }
.footer p, .footer li, .footer a { color: rgba(255,255,255,.78); font-size: .95rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--tnt-teal); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__bottom small { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer__social {
  display: flex; gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer__social a:hover { background: var(--tnt-teal); color: var(--tnt-dark); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom-pad {
  padding-bottom: calc(100px + var(--safe-bottom));
}
@media (min-width: 920px) { .footer__bottom-pad { padding-bottom: 22px; } }

/* ============================================================
   PAGE HEADERS (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  background: var(--tnt-dark);
  color: var(--tnt-offwhite);
  padding: clamp(140px, 18vh, 200px) 0 clamp(50px, 8vw, 90px);
  overflow: hidden;
}
.page-header__bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-header__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.68);
}
.page-header__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.62) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header__crumbs {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.page-header__crumbs a:hover { color: var(--tnt-teal); }
.page-header__crumbs span { margin: 0 8px; opacity: .4; }
.page-header h1 em { color: var(--tnt-teal); font-style: italic; font-weight: 300; }
.page-header__lede {
  margin-top: 22px;
  max-width: 56ch;
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
}

/* Media gallery ---------------------------------------------- */
.gallery--mosaic {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(90px, 8vw, 140px);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.2vw, 16px);
}
.gallery--mosaic figure {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream);
  box-shadow: 0 24px 60px -36px rgba(0,0,0,.55);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), box-shadow .35s var(--ease);
}
.gallery--mosaic figure.is-in {
  opacity: 1;
  transform: translateY(0);
}
.gallery--mosaic figure:hover {
  box-shadow: 0 28px 70px -34px rgba(0,0,0,.7);
}
.gallery--mosaic figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.12));
  pointer-events: none;
}
.gallery--mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.gallery--mosaic figure:hover img {
  transform: scale(1.045);
}
.gallery--mosaic .is-wide {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery--mosaic .is-tall {
  grid-column: span 2;
  grid-row: span 3;
}
.gallery--mosaic .is-large {
  grid-column: span 4;
  grid-row: span 3;
}
@media (max-width: 900px) {
  .gallery--mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(105px, 22vw, 170px);
  }
  .gallery--mosaic figure,
  .gallery--mosaic .is-wide,
  .gallery--mosaic .is-tall,
  .gallery--mosaic .is-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery--mosaic .is-wide,
  .gallery--mosaic .is-large {
    grid-column: span 4;
  }
}
@media (max-width: 560px) {
  .gallery--mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(120px, 42vw, 180px);
  }
  .gallery--mosaic figure,
  .gallery--mosaic .is-wide,
  .gallery--mosaic .is-tall,
  .gallery--mosaic .is-large {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery--mosaic .is-wide,
  .gallery--mosaic .is-large {
    grid-column: span 2;
  }
}

/* Article body styling --------------------------------------- */
.prose { max-width: 70ch; }
.prose p { color: var(--ink-soft); font-size: 1.05rem; }
.prose h2 { margin: 2em 0 0.5em; }
.prose h3 { margin: 1.6em 0 0.4em; font-size: 1.4rem; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; color: var(--ink-soft); }
.prose a { color: var(--tnt-teal); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--tnt-dark); }
.prose a.btn {
  color: var(--fg);
  text-decoration: none;
}
.prose a.btn:hover {
  color: var(--fg);
}

/* Info card ---------------------------------------------------- */
.info-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--cream);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-light);
  display: grid; gap: 18px;
}
.info-card h3 { font-size: 1.3rem; }
.info-card .row {
  display: grid; grid-template-columns: 32px 1fr; gap: 12px;
}
.info-card .row svg { width: 18px; height: 18px; color: var(--tnt-teal); margin-top: 4px; }
.info-card .row strong { display: block; font-family: var(--font-display); font-size: 1rem; }

/* Two column layout for SEO pages ---------------------------- */
.two-col {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 980px) {
  .two-col { grid-template-columns: 1.6fr 1fr; }
  .two-col__side { position: sticky; top: 100px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(101,192,190,.2); }
  50% { box-shadow: 0 0 0 8px rgba(101,192,190,.05); }
}
@keyframes heroZoom {
  from { transform: scale(1.15); }
  to   { transform: scale(1.0); }
}
@keyframes halalReveal {
  0% { opacity: 0; transform: scale(.08); }
  70% { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes halalSway {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.4); opacity: .4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Reduced motion --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__video { display: none; }
  .hero__poster { display: block; animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   LANGUAGE SWITCHER WIDGET
   Floating widget bottom-left, above sticky-bar on mobile
   ============================================================ */
.lang-widget {
  position: fixed;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 14px);
  left: 18px;
  z-index: 200;
  font-family: var(--sans, 'Cabin', sans-serif);
}
@media (min-width: 768px) {
  .lang-widget {
    bottom: 28px;
    left: 24px;
  }
}

/* ── Ronde vlagknop ─────────────────────────────────── */
.lang-widget__trigger {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  padding: 0;
  border: 3px solid #fff;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  background: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lang-widget__trigger:hover {
  transform: translateY(-3px) scale(1.07);
  border-color: #65c1bf;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.55),
    0 0 0 5px rgba(101, 193, 191, 0.22);
}
.lang-widget__trigger:active {
  transform: scale(0.96);
}
.lang-widget__trigger:focus-visible {
  outline: 2px solid #65c1bf;
  outline-offset: 3px;
}

/* SVG vlag vult de hele cirkel */
.lang-widget__flag-wrap {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* SVG vult de cirkel volledig (preserveAspectRatio="none" staat op het SVG-element) */
.lang-widget__flag-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Dropdown ────────────────────────────────────────── */
.lang-widget__list {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  list-style: none;
  margin: 0;
  padding: 6px;
  min-width: 162px;
  background: rgba(10, 18, 18, 0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.3);

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.96);
  transform-origin: bottom left;
  transition: opacity 0.2s ease, transform 0.22s ease;
}
.lang-widget[data-open] .lang-widget__list {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.lang-widget__list li {
  margin: 0;
  padding: 0;
}
.lang-widget__list a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #c9d2d4;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}
.lang-widget__list a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #eef3f4;
}
.lang-widget__list a.is-active {
  background: rgba(101, 193, 191, 0.13);
  color: #65c1bf;
  font-weight: 700;
}

/* Kleine vlag in de dropdown-rij */
.lang-widget__flag-wrap--sm {
  width: 28px;
  height: 21px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
}
.lang-widget__flag-wrap--sm svg {
  display: block;
  width: 100%;
  height: 100%;
}
