/* ── VARIABLES ── */
:root {
  --tg2-bg:         #faf4f1;
  --tg2-surface:    #f0e4e0;
  --tg2-ink:        #1C1612;
  --tg2-ink-muted:  #6B5E52;
  --tg2-ink-faint:  #C2B9AE;
  --tg2-accent:     #c49a4a;
  --tg2-accent-dk:  #a87e38;
  --tg2-logo-h:     40px;
  --tg2-rule:       #ddd0cc;
  --tg2-dark:       #2e1218;
  --tg2-dark-s:     #3d1a22;
  --tg2-dark-ink:   #F3EEE4;
  --tg2-shadow:     0 4px 32px rgba(var(--tg2-nav-rgb),0.08);
  --tg2-shadow-lg:  0 16px 64px rgba(var(--tg2-nav-rgb),0.14);
  --tg2-r:          14px;
  --tg2-r-lg:       22px;
  --tg2-serif:      'Cormorant Garamond', Georgia, serif;
  --tg2-sans:       'Plus Jakarta Sans', system-ui, sans-serif;
  --tg2-spring:     cubic-bezier(0.16, 1, 0.3, 1);
  --tg2-nav-h:      76px;
  --tg2-primary:    #6b1d2a;
  --tg2-footer-bg:  #140810;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--tg2-sans);
  background: var(--tg2-bg);
  color: var(--tg2-ink);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── SCROLL PROGRESS ── */
#tg2-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--tg2-accent), #d6b872);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ── ANIMATIONS ── */
@keyframes tg2WordIn {
  from { opacity: 0; transform: translateY(70px); clip-path: inset(0 0 100% 0); }
  to   { opacity: 1; transform: translateY(0);    clip-path: inset(0 0 0% 0); }
}
@keyframes tg2FadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tg2FadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes tg2ClipLeft {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}
@keyframes tg2ScaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes tg2Float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(3deg); }
}
@keyframes tg2RotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes tg2PulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(var(--tg2-accent-rgb),0.35); }
  70%  { box-shadow: 0 0 0 16px rgba(var(--tg2-accent-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--tg2-accent-rgb),0); }
}
@keyframes tg2TickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tg2DrawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes tg2Shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── LAYOUT ── */
.tg2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ── TYPOGRAPHY ── */
.tg2-section-title {
  font-family: var(--tg2-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--tg2-ink);
  line-height: 1.1;
}
.tg2-label {
  display: inline-block;
  font-family: var(--tg2-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tg2-accent);
  margin-bottom: 16px;
}
.tg2-label::before {
  content: '—';
  margin-right: 8px;
  opacity: 0.6;
}
.tg2-section-header {
  text-align: center;
  margin-bottom: clamp(40px, 7vw, 72px);
}
.tg2-section-header .tg2-section-title {
  margin-top: 8px;
}
.tg2-section-header .tg2-underline {
  display: block;
  height: 2px;
  width: 60px;
  background: var(--tg2-accent);
  margin: 20px auto 0;
  transform-origin: left center;
}
.tg2-section-header .tg2-underline.visible {
  animation: tg2DrawLine 0.8s var(--tg2-spring) both 0.3s;
  transform-origin: center;
}

/* ── BUTTONS ── */
.tg2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tg2-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  background: var(--tg2-primary);
  color: var(--tg2-bg);
  border: 2px solid var(--tg2-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s var(--tg2-spring), box-shadow 0.3s ease;
  will-change: transform;
}
.tg2-btn-primary:hover {
  background: var(--tg2-accent);
  border-color: var(--tg2-accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(var(--tg2-accent-rgb),0.35);
}
.tg2-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tg2-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  background: transparent;
  color: var(--tg2-ink);
  border: 2px solid var(--tg2-rule);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s var(--tg2-spring);
  will-change: transform;
}
.tg2-btn-ghost:hover {
  border-color: var(--tg2-ink);
  color: var(--tg2-accent);
}
.tg2-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tg2-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 34px;
  background: var(--tg2-accent);
  color: #fff;
  border: 2px solid var(--tg2-accent);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s var(--tg2-spring), box-shadow 0.3s ease;
  will-change: transform;
}
.tg2-btn-light:hover {
  background: var(--tg2-accent-dk);
  border-color: var(--tg2-accent-dk);
  box-shadow: 0 8px 32px rgba(var(--tg2-accent-rgb),0.4);
}

/* ── NAV ── */
.tg2-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--tg2-nav-h);
  z-index: 900;
  background: rgba(var(--tg2-nav-rgb),0.93);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(var(--tg2-accent-rgb),0.18);
  transition: box-shadow 0.4s ease, background 0.4s ease;
}
.tg2-nav--scrolled {
  background: rgba(var(--tg2-nav-rgb),0.98);
  box-shadow: 0 1px 0 rgba(var(--tg2-accent-rgb),0.25), 0 6px 28px rgba(var(--tg2-nav-rgb),0.14);
}
.tg2-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.tg2-nav-logo {
  justify-self: start;
  font-family: var(--tg2-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--tg2-ink);
}
.tg2-nav-logo img {
  height: var(--tg2-logo-h);
  width: auto;
  display: block;
}
.tg2-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}
.tg2-nav-links a {
  font-family: var(--tg2-sans);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,234,230,0.68);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.tg2-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--tg2-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--tg2-spring);
}
.tg2-nav-links a:hover::after,
.tg2-nav-links a.tg2-active::after {
  transform: scaleX(1);
}
.tg2-nav-links a:hover,
.tg2-nav-links a.tg2-active {
  color: #f5eae6;
}
.tg2-nav-reserve {
  justify-self: end;
}
.tg2-nav-reserve a {
  display: inline-flex;
  align-items: center;
  font-family: var(--tg2-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 26px;
  color: var(--tg2-accent);
  background: transparent;
  border: 1.5px solid var(--tg2-accent);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.2s var(--tg2-spring);
  will-change: transform;
}
.tg2-nav-reserve a:hover {
  background: var(--tg2-accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(var(--tg2-accent-rgb),0.35);
}
/* In-drawer reserve button (mobile only — toggled in the nav media query) */
.tg2-nav-reserve-mobile { display: none; margin-top: 24px; }
.tg2-nav-reserve-mobile a {
  display: block;
  text-align: center;
  font-family: var(--tg2-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 26px;
  color: #fff;
  background: var(--tg2-accent);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(var(--tg2-accent-rgb),0.28);
}
.tg2-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}
.tg2-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(245,234,230,0.85);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

/* ── ANNOUNCEMENT BAR ── */
.tg2-ann-bar {
  background: var(--tg2-ink);
  color: var(--tg2-dark-ink);
  font-family: var(--tg2-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 950;
  transition: top 0.3s ease;
}
.tg2-ann-bar.hidden { display: none; }
.tg2-ann-bar a {
  color: var(--tg2-accent);
  font-weight: 600;
  white-space: nowrap;
}
.tg2-ann-close {
  background: none;
  border: none;
  color: var(--tg2-ink-faint);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0 4px;
  transition: color 0.2s;
  position: absolute;
  right: 16px;
}
.tg2-ann-close:hover { color: var(--tg2-dark-ink); }
body.tg2-has-ann .tg2-nav { top: 41px; }

/* ── ANNOUNCEMENT MODAL ── */
.tg2-ann-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(28,22,18,0.7);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.tg2-ann-modal.open { display: flex; }
.tg2-ann-modal-box {
  background: var(--tg2-bg);
  border-radius: var(--tg2-r-lg);
  max-width: 520px;
  width: 100%;
  padding: 40px;
  position: relative;
  animation: tg2ScaleIn 0.35s var(--tg2-spring) both;
  box-shadow: var(--tg2-shadow-lg);
}
.tg2-ann-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--tg2-surface);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.tg2-ann-modal-close:hover { background: var(--tg2-rule); }
.tg2-ann-modal-img { width: 100%; border-radius: var(--tg2-r); margin-bottom: 24px; object-fit: cover; max-height: 260px; }
.tg2-ann-modal-title {
  font-family: var(--tg2-serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.tg2-ann-modal-body { font-size: 0.9rem; color: var(--tg2-ink-muted); line-height: 1.7; }

/* ── HERO SLIDER ── */

.tg2-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--tg2-dark);
  isolation: isolate;
}
.tg2-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── SLIDE BASE ── */
.tg2-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(110% 0, 110% 0, 100% 100%, 100% 100%);
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.tg2-slide.active {
  clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.tg2-slide.was-active {
  clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s ease 0.25s;
}

/* ── SLIDE BACKGROUND — Ken Burns zoom-out ── */
.tg2-slide-bg {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
  transform: scale(1.07);
  transition: transform 9s ease;
}
.tg2-slide.active .tg2-slide-bg { transform: scale(1.0); }
.tg2-slide[data-index="0"] .tg2-slide-bg { background-color: #2e1218; }
.tg2-slide[data-index="1"] .tg2-slide-bg { background-color: #6B3220; }
.tg2-slide[data-index="2"] .tg2-slide-bg { background-color: #1A3040; }

/* ── SLIDE CINEMATIC OVERLAY ── */
.tg2-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(6, 4, 2, 0.84) 0%,
    rgba(6, 4, 2, 0.5)  50%,
    rgba(6, 4, 2, 0.15) 100%
  );
  z-index: 1;
}

/* ── LARGE DECORATIVE SLIDE NUMBER ── */
.tg2-slide-deco-num {
  position: absolute;
  bottom: -100px;
  right: clamp(16px, 4vw, 60px);
  font-family: var(--tg2-serif);
  font-size: clamp(16rem, 35vw, 44rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  letter-spacing: -0.05em;
}

/* ── SLIDE CONTENT ── */
.tg2-slide-inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--tg2-nav-h) + 20px) clamp(36px, 9vw, 120px) 110px;
  max-width: min(820px, 85vw);
}

/* ── EYEBROW ── */
.tg2-slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-family: var(--tg2-sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.tg2-slide-num { color: var(--tg2-accent); }
.tg2-slide-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}
.tg2-slide.active .tg2-slide-eyebrow {
  animation: tg2FadeUp 0.7s ease both 0.75s;
}

/* ── TITLE ── */
.tg2-slide-title {
  font-family: var(--tg2-serif);
  font-size: clamp(3rem, 7.5vw, 8rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: #fff;
  margin: 0 0 28px;
}
.tg2-sw { display: inline-block; opacity: 0; }

/* Staggered word reveal per slide */
.tg2-slide.active .tg2-sw:nth-child(1)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 0.88s;  }
.tg2-slide.active .tg2-sw:nth-child(2)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.00s;  }
.tg2-slide.active .tg2-sw:nth-child(3)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.12s;  }
.tg2-slide.active .tg2-sw:nth-child(4)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.24s;  }
.tg2-slide.active .tg2-sw:nth-child(5)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.36s;  }
.tg2-slide.active .tg2-sw:nth-child(6)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.48s;  }
.tg2-slide.active .tg2-sw:nth-child(7)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.60s;  }
.tg2-slide.active .tg2-sw:nth-child(8)  { animation: tg2FadeUp 0.85s var(--tg2-spring) both 1.72s;  }

/* ── SUBTITLE ── */
.tg2-slide-sub {
  font-family: var(--tg2-sans);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 40px;
  opacity: 0;
}
.tg2-slide.active .tg2-slide-sub {
  animation: tg2FadeUp 0.7s ease both 1.55s;
}

/* ── CTA BUTTONS ── */
.tg2-slide-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; }
.tg2-slide.active .tg2-slide-btns {
  animation: tg2FadeUp 0.7s ease both 1.78s;
}
.tg2-btn-slide-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--tg2-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  background: var(--tg2-accent);
  color: #fff;
  border: 2px solid var(--tg2-accent);
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.25s var(--tg2-spring), box-shadow 0.3s ease;
}
.tg2-btn-slide-primary:hover {
  background: var(--tg2-accent-dk);
  border-color: var(--tg2-accent-dk);
  box-shadow: 0 8px 28px rgba(199,156,98,0.5);
  transform: translateY(-2px);
}
.tg2-btn-slide-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--tg2-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.26);
  border-radius: 4px;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.25s var(--tg2-spring);
}
.tg2-btn-slide-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  transform: translateY(-2px);
}

/* ── SLIDE COUNTER (top-right) ── */
.tg2-slider-counter {
  position: absolute;
  top: calc(var(--tg2-nav-h) + 32px);
  right: clamp(28px, 5vw, 72px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--tg2-serif);
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  animation: tg2FadeIn 1.2s ease both 1s;
}
.tg2-slider-cur-num {
  font-size: 2.8rem;
  line-height: 1;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.18s ease;
}
.tg2-slider-cur-num.tg2-num-flip { opacity: 0; }
.tg2-slider-counter-sep {
  display: block;
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.18);
}
.tg2-slider-total-num { font-size: 0.85rem; }

/* ── SLIDER UI: arrows + dots (bottom-center) ── */
.tg2-slider-ui {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: tg2FadeIn 1s ease both 1.2s;
}
.tg2-slider-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s var(--tg2-spring);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.tg2-slider-arrow:hover {
  background: rgba(199,156,98,0.5);
  border-color: var(--tg2-accent);
  transform: scale(1.12);
}
.tg2-slider-dots { display: flex; align-items: center; gap: 10px; }
.tg2-dot {
  padding: 0;
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  transition: background 0.35s ease, width 0.4s var(--tg2-spring);
}
.tg2-dot.active { background: var(--tg2-accent); width: 30px; }

/* ── AUTO-PROGRESS BAR (bottom edge) ── */
.tg2-slider-prog-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.07);
  z-index: 10;
}
.tg2-slider-prog-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--tg2-accent), #d6b872);
}

/* ── SCROLL HINT (bottom-right, vertical) ── */
.tg2-hero-scroll-hint {
  position: absolute;
  bottom: 58px;
  right: clamp(28px, 5vw, 72px);
  z-index: 10;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--tg2-sans);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: tg2FadeIn 1.3s ease both 1.5s;
}
.tg2-hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.32), transparent);
  animation: tg2Float 2.8s ease-in-out infinite;
}

/* ── SLIDER RESPONSIVE ── */
@media (max-width: 768px) {
  .tg2-slide-inner { padding: calc(var(--tg2-nav-h) + 16px) 28px 100px; max-width: 100%; }
  .tg2-slide-title  { font-size: clamp(2.6rem, 10vw, 4.5rem); }
  .tg2-slider-counter { display: none; }
  .tg2-hero-scroll-hint { display: none; }
  .tg2-slide-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tg2-btn-slide-primary, .tg2-btn-slide-ghost { padding: 12px 24px; }
}

/* ── TICKER ── */
.tg2-ticker {
  background: var(--tg2-accent);
  color: #fff;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.tg2-ticker-track {
  display: inline-flex;
  animation: tg2TickerMove 24s linear infinite;
}
.tg2-ticker-item {
  font-family: var(--tg2-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 40px;
}
.tg2-ticker-item::before {
  content: '◆';
  margin-right: 16px;
  opacity: 0.6;
  font-size: 0.5rem;
  vertical-align: middle;
}

/* ── ABOUT ── */
.tg2-about {
  padding: clamp(80px, 12vw, 100px) 0;
  background: var(--tg2-bg);
  position: relative;
  overflow: hidden;
}
.tg2-about::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: clamp(20px, 6vw, 100px);
  font-family: var(--tg2-serif);
  font-size: clamp(14rem, 22vw, 24rem);
  font-weight: 300;
  color: rgba(199,156,98,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.tg2-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.tg2-about-visual {
  position: relative;
}
.tg2-about-img-wrap {
  position: relative;
  border-radius: var(--tg2-r-lg);
  overflow: hidden;
  box-shadow: var(--tg2-shadow-lg);
  aspect-ratio: 4/5;
}
.tg2-about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--tg2-spring);
}
.tg2-about-img-wrap:hover img {
  transform: scale(1.04);
}
.tg2-about-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--tg2-r-lg);
  background: var(--tg2-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tg2-about-placeholder svg {
  width: 72px; height: 72px;
  opacity: 0.25;
}
.tg2-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--tg2-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--tg2-serif);
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--tg2-shadow);
  animation: tg2Float 5s ease-in-out infinite;
}
.tg2-about-badge strong {
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}
.tg2-about-content {
  padding: 10px 0;
}
.tg2-about-title {
  font-family: var(--tg2-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--tg2-ink);
  margin-top: 10px;
  margin-bottom: 24px;
}
.tg2-about-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.tg2-about-divider-line {
  flex: 1;
  height: 1px;
  background: var(--tg2-rule);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--tg2-spring) 0.4s;
}
.tg2-about-divider-line.visible { transform: scaleX(1); }
.tg2-about-divider-gem {
  width: 8px; height: 8px;
  background: var(--tg2-accent);
  transform: rotate(45deg);
  animation: tg2RotateSlow 8s linear infinite;
  flex-shrink: 0;
}
.tg2-about-body {
  font-size: 1rem;
  color: var(--tg2-ink-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.tg2-about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.tg2-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tg2-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border: 1.5px solid var(--tg2-rule);
  border-radius: 100px;
  color: var(--tg2-ink-muted);
  background: transparent;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.tg2-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--tg2-accent);
  flex-shrink: 0;
  animation: tg2PulseRing 2.5s ease-in-out infinite;
}
.tg2-pill:hover {
  border-color: var(--tg2-accent);
  color: var(--tg2-accent);
  background: rgba(199,156,98,0.05);
}

/* ── MENU SECTION ── */
.tg2-menu {
  padding: clamp(48px, 7vw, 64px) 0;
  background: var(--tg2-bg);
  position: relative;
}
.tg2-menu .tg2-section-header {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
/* Ornamental divider (follows About — same background) */
.tg2-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28,22,18,0.22) 20%, rgba(28,22,18,0.22) 80%, transparent);
}
.tg2-menu::after {
  content: '◆';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--tg2-accent);
  background: var(--tg2-bg);
  padding: 0 20px;
  line-height: 1;
}

/* ── MENU TABS — clean underline style ── */
.tg2-tabs {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--tg2-rule);
  margin-bottom: clamp(0px, 0vw, 0px);
  padding-bottom: 0;
}
.tg2-tab {
  font-family: var(--tg2-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0 2px 14px;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--tg2-ink-muted);
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.tg2-tab:hover {
  color: var(--tg2-ink);
  border-bottom-color: rgba(199,156,98,0.45);
}
.tg2-tab.active {
  color: var(--tg2-ink);
  background: transparent;
  border-bottom-color: var(--tg2-accent);
  box-shadow: none;
}

/* ── MENU CATEGORY PANEL ── */
.tg2-mcat { display: none; }
.tg2-mcat.active { display: block; }

/* ── SUBTITLE DIVIDER ── */
.tg2-menu-subtitle {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--tg2-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tg2-accent-dk);
  padding: 28px 0 8px;
}
.tg2-menu-subtitle::before,
.tg2-menu-subtitle::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--tg2-rule);
}

/* ── MENU GRID ── */
.tg2-menu-list {
  max-width: 660px;
  margin: clamp(20px, 2.5vw, 28px) auto 0;
}
.tg2-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 32px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(199,156,98,0.2);
  cursor: default;
}
.tg2-menu-item-row {
  display: contents;
}
.tg2-menu-item-name {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--tg2-serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: var(--tg2-ink);
  line-height: 1.2;
  letter-spacing: 0.015em;
}
.tg2-menu-item-price {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--tg2-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tg2-accent-dk);
  white-space: nowrap;
}
.tg2-menu-item-desc {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--tg2-sans);
  font-size: 0.77rem;
  font-style: italic;
  color: var(--tg2-ink-muted);
  line-height: 1.6;
  margin-top: 4px;
  max-width: 48ch;
}
.tg2-menu-item-tags {
  display: flex;
  gap: 5px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.tg2-allerg-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 2px 8px;
  border-radius: 3px;
  background: rgba(199,156,98,0.09);
  color: var(--tg2-accent-dk);
  border: 1px solid rgba(199,156,98,0.3);
  text-transform: uppercase;
}

/* ── ALLERGEN KEY ── */
.tg2-allergens-key {
  max-width: 980px;
  margin: 48px auto 0;
  padding: 24px 28px;
  background: var(--tg2-surface);
  border-radius: var(--tg2-r);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 20px;
}
.tg2-allergens-key h4 {
  font-family: var(--tg2-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tg2-ink-faint);
  width: 100%;
  margin-bottom: 4px;
}
.tg2-allergen-item {
  font-size: 0.78rem;
  color: var(--tg2-ink-muted);
}
.tg2-allergen-item strong {
  font-weight: 700;
  color: var(--tg2-ink);
}

/* ── FEESTZAAL ── */
.tg2-feestzaal {
  padding: clamp(80px, 12vw, 100px) 0;
  background: var(--tg2-surface);
  color: var(--tg2-ink);
  position: relative;
  overflow: hidden;
}

/* Header: editorial text + image */
.tg2-fz-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.tg2-fz-head-text .tg2-label { margin-bottom: 14px; }

/* Title */
.tg2-fz-title {
  font-family: var(--tg2-serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--tg2-ink);
  line-height: 1.05;
  margin: 0 0 20px;
}
.tg2-fz-intro {
  font-size: 1rem;
  color: var(--tg2-ink-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0;
}

/* Hero image */
.tg2-fz-head-img {
  border-radius: var(--tg2-r-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--tg2-shadow-lg);
  background: var(--tg2-bg);
}
.tg2-fz-head-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--tg2-spring);
}
.tg2-fz-head-img:hover img { transform: scale(1.04); }
.tg2-fz-head-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg2-ink-faint);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Capacity cards */
.tg2-fz-caps {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
.tg2-fz-cap {
  flex: 1;
  max-width: 180px;
  text-align: center;
  padding: 24px 18px;
  background: var(--tg2-bg);
  border: 1px solid var(--tg2-rule);
  border-radius: var(--tg2-r);
}
.tg2-cap-num {
  display: block;
  font-family: var(--tg2-serif);
  font-size: 3.4rem;
  font-weight: 500;
  color: var(--tg2-accent-dk);
  line-height: 1;
  margin-bottom: 8px;
}
.tg2-cap-label {
  font-family: var(--tg2-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tg2-ink-muted);
}

/* Features grid */
.tg2-fz-feats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: clamp(48px, 7vw, 80px) 0 clamp(40px, 6vw, 64px);
}
.tg2-fz-feat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--tg2-bg);
  border: 1px solid var(--tg2-rule);
  border-radius: var(--tg2-r);
  font-size: 0.92rem;
  color: var(--tg2-ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--tg2-spring);
}
.tg2-fz-feat:hover {
  border-color: rgba(199,156,98,0.5);
  box-shadow: var(--tg2-shadow);
  transform: translateY(-2px);
}
.tg2-fz-feat-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(199,156,98,0.14);
  color: var(--tg2-accent-dk);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Photo grid: mirror split — 2 stacked left, 1 tall hero right */
.tg2-fz-strip {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  grid-template-rows: 210px 210px;
  gap: 8px;
}
.tg2-fz-strip-img {
  border-radius: var(--tg2-r);
  overflow: hidden;
  position: relative;
  box-shadow: var(--tg2-shadow);
}
.tg2-fz-strip-img:nth-child(3) {
  grid-row: 1 / 3;
}
.tg2-fz-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--tg2-spring);
}
.tg2-fz-strip-img:hover img { transform: scale(1.06); }
.tg2-fz-head-img.tg2-gal-item,
.tg2-fz-strip-img.tg2-gal-item { margin-bottom: 0; cursor: pointer; }
.tg2-fz-head-img.tg2-gal-item img,
.tg2-fz-strip-img.tg2-gal-item img { filter: none; }

/* ── GALLERY ── */
.tg2-gallery {
  padding: clamp(80px, 12vw, 100px) 0;
  background: var(--tg2-bg);
  position: relative;
}
/* Ornamental divider when gallery follows a same-bg section (e.g. speeltuin before galerij) */
.tg2-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28,22,18,0.22) 20%, rgba(28,22,18,0.22) 80%, transparent);
}
.tg2-gallery::after {
  content: '◆';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--tg2-accent);
  background: var(--tg2-bg);
  padding: 0 20px;
  line-height: 1;
}
.tg2-gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tg2-gal-grid .tg2-gal-item {
  margin-bottom: 0;
  aspect-ratio: 1;
}
.tg2-gal-grid .tg2-gal-item img {
  height: 100%;
  object-fit: cover;
}
.tg2-gal-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--tg2-r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--tg2-shadow);
}
.tg2-gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--tg2-spring), filter 0.4s ease;
  filter: brightness(0.95) saturate(0.9);
}
.tg2-gal-item::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,22,18,0.75) 0%, rgba(28,22,18,0.1) 50%, transparent 100%);
  color: #fff;
  font-family: var(--tg2-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 20px 16px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.tg2-gal-item:hover img {
  transform: scale(1.05);
  filter: brightness(1) saturate(1.1);
}
.tg2-gal-item:hover::after { opacity: 1; }

/* ── GALLERY MOSAIC (galerij section) ── */
.tg2-gal-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
}
.tg2-gal-mosaic .tg2-gal-item {
  margin-bottom: 0;
  height: 100%;
}
.tg2-gal-mosaic .tg2-gal-item:nth-child(1) {
  grid-row: 1 / 3;
}
.tg2-gal-mosaic .tg2-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tg2-gal-morebadge {
  position: absolute;
  inset: 0;
  background: rgba(28,22,18,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tg2-serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
  pointer-events: none;
  transition: background 0.35s ease;
}
.tg2-gal-mosaic .tg2-gal-item:hover .tg2-gal-morebadge {
  background: rgba(28,22,18,0.4);
}
.tg2-gal-rest { display: none; }
.tg2-gal-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── CONTACT ── */
.tg2-contact {
  padding: clamp(80px, 12vw, 100px) 0;
  background: var(--tg2-surface);
}
.tg2-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.tg2-contact-info .tg2-section-title { font-size: clamp(2rem, 4vw, 3rem); margin-top: 8px; margin-bottom: 32px; }
.tg2-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tg2-rule);
}
.tg2-contact-detail:last-of-type { border-bottom: none; }
.tg2-contact-detail-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--tg2-bg);
  border: 1px solid var(--tg2-rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.tg2-contact-detail:hover .tg2-contact-detail-icon {
  background: rgba(199,156,98,0.08);
  border-color: rgba(199,156,98,0.3);
}
.tg2-contact-detail-label {
  font-family: var(--tg2-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tg2-ink-faint);
  margin-bottom: 4px;
}
.tg2-contact-detail-val {
  font-size: 0.9rem;
  color: var(--tg2-ink);
  line-height: 1.6;
}
.tg2-social-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.tg2-social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--tg2-spring), filter 0.2s ease;
  flex-shrink: 0;
}
.tg2-social-btn svg { width: 20px; height: 20px; fill: white; display: block; }
.tg2-social-btn:hover { transform: scale(1.12); filter: brightness(1.12); }
.tg2-social-btn--fb { background: #1877F2; }
.tg2-social-btn--ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.tg2-social-btn--wa { background: #25D366; }
.tg2-wa-inline {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  background: #25D366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 10px 3px 6px;
  border-radius: 20px;
  vertical-align: middle;
  transition: filter 0.2s ease;
}
.tg2-wa-inline:hover { filter: brightness(1.1); color: #fff; }
.tg2-wa-inline svg { width: 14px; height: 14px; fill: white; flex-shrink: 0; }
.tg2-contact-form-wrap {
  background: var(--tg2-bg);
  border-radius: var(--tg2-r-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--tg2-shadow);
  border: 1px solid var(--tg2-rule);
}
.tg2-field {
  margin-bottom: 20px;
}
.tg2-field label {
  display: block;
  font-family: var(--tg2-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tg2-ink-muted);
  margin-bottom: 8px;
}
.tg2-field input,
.tg2-field select,
.tg2-field textarea {
  width: 100%;
  font-family: var(--tg2-sans);
  font-size: 0.9rem;
  color: var(--tg2-ink);
  background: var(--tg2-surface);
  border: 1.5px solid var(--tg2-rule);
  border-radius: 8px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  appearance: none;
}
.tg2-field input:focus,
.tg2-field select:focus,
.tg2-field textarea:focus {
  border-color: var(--tg2-accent);
  background: var(--tg2-bg);
  box-shadow: 0 0 0 3px rgba(199,156,98,0.12);
}
.tg2-field textarea { resize: vertical; min-height: 120px; }
.tg2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tg2-submit {
  width: 100%;
  font-family: var(--tg2-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px;
  background: var(--tg2-ink);
  color: var(--tg2-bg);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s var(--tg2-spring), box-shadow 0.3s ease;
}
.tg2-submit:hover {
  background: var(--tg2-accent);
  box-shadow: 0 6px 24px rgba(199,156,98,0.3);
}
.tg2-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.tg2-form-feedback {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.tg2-form-feedback.ok { background: #e8f5e9; color: #2e7d32; }
.tg2-form-feedback.err { background: #fdecea; color: #b71c1c; }

/* ── ACTIES ── */
.tg2-acties {
  background: var(--tg2-bg);
  padding: 100px 0;
  position: relative;
}
.tg2-acties::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tg2-rule) 20%, var(--tg2-rule) 80%, transparent);
}
.tg2-acties::after {
  content: '◆';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--tg2-accent);
  background: var(--tg2-bg);
  padding: 0 20px;
  line-height: 1;
}
.tg2-acties-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
}
.tg2-actie-card {
  background: #fff;
  border-radius: var(--tg2-r-lg);
  overflow: hidden;
  box-shadow: var(--tg2-shadow);
  transition: transform 0.35s var(--tg2-spring), box-shadow 0.35s var(--tg2-spring);
  display: flex;
  flex-direction: column;
  width: clamp(280px, 30%, 380px);
}
.tg2-actie-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tg2-shadow-lg);
}
.tg2-actie-img {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--tg2-surface);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tg2-actie-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.tg2-actie-img:hover::after {
  background: rgba(0,0,0,0.18);
}
.tg2-actie-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tg2-actie-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--tg2-accent-rgb),0.12);
  color: var(--tg2-accent-dk);
  border: 1px solid rgba(var(--tg2-accent-rgb),0.25);
  border-radius: 100px;
  font-family: var(--tg2-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  width: fit-content;
}
.tg2-actie-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tg2-accent);
}
.tg2-actie-badge--open {
  background: rgba(34,139,34,0.08);
  color: #2d6a2d;
  border-color: rgba(34,139,34,0.2);
}
.tg2-actie-badge--open::before { background: #4caf50; }
.tg2-actie-title {
  font-family: var(--tg2-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--tg2-ink);
  line-height: 1.3;
  margin: 0;
}
.tg2-actie-text {
  font-size: 0.93rem;
  color: var(--tg2-ink-muted);
  line-height: 1.65;
}
.tg2-actie-text p { margin: 0; }
.tg2-actie-text p + p { margin-top: 8px; }
@media (max-width: 600px) {
  .tg2-actie-card { width: 100%; }
  .tg2-acties { padding: 72px 0; }
}

/* ── FOOTER ── */
.tg2-footer {
  background: var(--tg2-footer-bg);
  color: rgba(243,238,228,0.55);
  position: relative;
  overflow: hidden;
}
.tg2-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tg2-accent), #d4b87e, var(--tg2-accent));
  background-size: 200% auto;
  animation: tg2Shimmer 5s linear infinite;
}
.tg2-footer-main {
  padding: clamp(48px, 8vw, 80px) 0 0;
}
.tg2-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 64px);
  border-bottom: 1px solid rgba(243,238,228,0.08);
}

/* Info column */
.tg2-footer-brand-name {
  font-family: var(--tg2-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--tg2-dark-ink);
  margin-bottom: 6px;
}
.tg2-footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  display: block;
}
.tg2-footer-brand-tag {
  font-size: 0.88rem;
  color: rgba(243,238,228,0.4);
  margin-bottom: 28px;
  font-style: italic;
}
.tg2-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.tg2-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(243,238,228,0.6);
  line-height: 1.5;
  transition: color 0.25s ease;
}
.tg2-footer-contact-item:hover { color: var(--tg2-accent); }
.tg2-footer-contact-icon { flex-shrink: 0; font-size: 1rem; }
/* ── OPENINGSUREN ── */
.tg2-hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--tg2-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin: 10px 0 14px;
}
.tg2-hours-badge--sm { font-size: 0.68rem; padding: 3px 10px; margin: 0 0 10px; }
.tg2-hours-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tg2-hours-open  { background: rgba(34,139,34,0.1);  color: #2d6a2d; }
.tg2-hours-open  .tg2-hours-dot { background: #4caf50; box-shadow: 0 0 0 3px rgba(76,175,80,0.25); }
.tg2-hours-closed { background: rgba(180,0,0,0.08);  color: #8b2020; }
.tg2-hours-closed .tg2-hours-dot { background: #c0392b; }
.tg2-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.tg2-hours-table tr td {
  padding: 5px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--tg2-rule);
  color: var(--tg2-ink-muted);
  vertical-align: middle;
}
.tg2-hours-table tr:last-child td { border-bottom: none; }
.tg2-hours-day { width: 110px; font-weight: 500; color: var(--tg2-ink); padding-right: 12px; }
.tg2-hours-time { font-variant-numeric: tabular-nums; }
.tg2-hours-today td { color: var(--tg2-ink); font-weight: 600; }
.tg2-hours-today .tg2-hours-day::after { content: ' ←'; font-size: 0.72rem; color: var(--tg2-accent); font-weight: 400; }
.tg2-hours-closed-row td { color: var(--tg2-ink-faint); }
.tg2-hours-closed-row .tg2-hours-time { text-decoration: line-through; text-decoration-color: var(--tg2-ink-faint); }
.tg2-contact-detail--hours { align-items: flex-start !important; }

/* Footer uren */
.tg2-footer-hours {
  padding: 14px 18px;
  background: rgba(243,238,228,0.04);
  border-radius: var(--tg2-r);
  border-left: 2px solid var(--tg2-accent);
  margin-bottom: 24px;
}
.tg2-footer-hours-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 16px;
}
.tg2-fh-row {
  display: flex;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(243,238,228,0.38);
  padding: 2px 0;
}
.tg2-fh-row.today { color: rgba(243,238,228,0.85); font-weight: 600; }
.tg2-fh-row.closed { color: rgba(243,238,228,0.2); }
.tg2-fh-day { width: 22px; flex-shrink: 0; font-weight: 500; }
.tg2-fh-time { font-variant-numeric: tabular-nums; }

/* Map column */
.tg2-footer-map-col { position: relative; border-radius: var(--tg2-r-lg); overflow: hidden; }
.tg2-footer-map-frame {
  width: 100%;
  height: 300px;
  border-radius: var(--tg2-r-lg);
  border: none;
  display: block;
  filter: grayscale(0.15);
  transition: transform 0.5s var(--tg2-spring), filter 0.4s ease;
}
.tg2-footer-map-frame:hover { transform: scale(1.04); filter: grayscale(0); }
.tg2-footer-map-placeholder {
  height: 400px;
  background: rgba(243,238,228,0.04);
  border: 1px dashed rgba(243,238,228,0.14);
  border-radius: var(--tg2-r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 32px;
}
.tg2-footer-map-placeholder .tg2-map-icon { font-size: 2.5rem; }
.tg2-footer-map-placeholder strong {
  color: var(--tg2-dark-ink);
  font-size: 1rem;
  font-family: var(--tg2-serif);
  font-weight: 400;
}
.tg2-footer-map-placeholder a {
  color: var(--tg2-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tg2-footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── LIGHTBOX ── */
#tg2-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,22,18,0.94);
  backdrop-filter: blur(8px);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#tg2-lb.open { display: flex; }
.tg2-lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  animation: tg2ScaleIn 0.35s var(--tg2-spring) both;
}
#tg2-lb-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--tg2-r);
  display: block;
}
.tg2-lb-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(243,238,228,0.6);
  letter-spacing: 0.06em;
}
.tg2-lb-counter {
  text-align: center;
  margin-top: 6px;
  font-family: var(--tg2-sans);
  font-size: 0.72rem;
  color: rgba(243,238,228,0.4);
  letter-spacing: 0.12em;
}
.tg2-lb-close {
  position: absolute;
  top: -48px; right: 0;
  background: rgba(243,238,228,0.1);
  border: 1px solid rgba(243,238,228,0.2);
  color: rgba(243,238,228,0.8);
  border-radius: 50%;
  width: 40px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.tg2-lb-close:hover { background: rgba(var(--tg2-accent-rgb),0.4); }
.tg2-lb-prev, .tg2-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(243,238,228,0.1);
  border: 1px solid rgba(243,238,228,0.2);
  color: rgba(243,238,228,0.8);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 5001;
}
.tg2-lb-prev:hover, .tg2-lb-next:hover { background: rgba(var(--tg2-accent-rgb),0.4); }
.tg2-lb-prev { left: 20px; }
.tg2-lb-next { right: 20px; }

/* ── REVEAL ── */
.tg2-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--tg2-spring), transform 0.9s var(--tg2-spring);
}
.tg2-reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--tg2-spring), transform 0.9s var(--tg2-spring);
}
.tg2-reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--tg2-spring), transform 0.9s var(--tg2-spring);
  transition-delay: 0.15s;
}
.tg2-reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.9s var(--tg2-spring), transform 0.9s var(--tg2-spring);
}
.tg2-reveal.visible,
.tg2-reveal-left.visible,
.tg2-reveal-right.visible,
.tg2-reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.tg2-d1 { transition-delay: 0.08s; }
.tg2-d2 { transition-delay: 0.18s; }
.tg2-d3 { transition-delay: 0.30s; }
.tg2-d4 { transition-delay: 0.44s; }
.tg2-d5 { transition-delay: 0.60s; }
.tg2-d6 { transition-delay: 0.78s; }


/* ── SPEELTUIN ── */
.tg2-speeltuin {
  padding: clamp(80px, 12vw, 100px) 0;
  background: var(--tg2-bg);
  position: relative;
}
.tg2-speeltuin::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28,22,18,0.22) 20%, rgba(28,22,18,0.22) 80%, transparent);
}
.tg2-speeltuin::after {
  content: '◆';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: var(--tg2-accent);
  background: var(--tg2-bg);
  padding: 0 20px;
  line-height: 1;
}
.tg2-speeltuin-text {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 7vw, 64px);
  font-family: var(--tg2-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  color: var(--tg2-ink);
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .tg2-about-inner { grid-template-columns: 1fr; }
  .tg2-about-visual { order: -1; max-width: 520px; margin: 0 auto; }
  .tg2-about::before { display: none; }
  .tg2-fz-head { grid-template-columns: 1fr; gap: 36px; }
  .tg2-fz-head-img { order: -1; }
  .tg2-contact-inner { grid-template-columns: 1fr; }
  .tg2-footer-inner { grid-template-columns: 1fr; }
  .tg2-footer-map-frame, .tg2-footer-map-placeholder { height: 300px; }
}
/* ── NAV → HAMBURGER ── */
@media (max-width: 920px) {
  .tg2-nav-inner { display: flex; justify-content: space-between; gap: 16px; }
  .tg2-nav-overlay { display: none; }
  .tg2-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(var(--tg2-nav-rgb), 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245,234,230,0.08);
    padding: 6px 0 14px;
    gap: 0;
  }
  .tg2-nav-links.open { display: flex; }
  .tg2-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .tg2-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .tg2-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .tg2-nav-links li { border-bottom: 1px solid rgba(245,234,230,0.07); }
  .tg2-nav-links li:last-child { border-bottom: none; }
  .tg2-nav-links a { display: block; padding: 14px 24px; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(245,234,230,0.72); border-radius: 0; width: 100%; }
  .tg2-nav-links a:hover, .tg2-nav-links a.tg2-active { color: rgba(245,234,230,0.97); background: rgba(245,234,230,0.05); }
  .tg2-nav-links a.tg2-active { color: var(--tg2-accent); }
  .tg2-nav-links a::after { display: none; }
  .tg2-nav-reserve { display: none; }
  .tg2-nav-reserve-mobile { display: block; margin: 8px 24px 0; }
  .tg2-nav-reserve-mobile a { text-align: center; display: block; }
  .tg2-burger { display: flex; }
}
@media (max-width: 768px) {
  .tg2-hero-title { font-size: clamp(3rem, 11vw, 5.5rem); }
  .tg2-hero-text { min-height: 80vh; }
  .tg2-gal-grid { grid-template-columns: repeat(2, 1fr); }
  .tg2-gal-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; }
  .tg2-gal-mosaic .tg2-gal-item:nth-child(4),
  .tg2-gal-mosaic .tg2-gal-item:nth-child(5) { display: none; }
  .tg2-menu-list { max-width: 100%; }
  .tg2-fz-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 170px; }
  .tg2-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .tg2-footer-map-frame, .tg2-footer-map-placeholder { height: 240px; }
  .tg2-field-row { grid-template-columns: 1fr; }
  .tg2-about-badge { width: 80px; height: 80px; bottom: -14px; right: -10px; }
  .tg2-about-badge strong { font-size: 1.2rem; }
  .tg2-tabs { overflow-x: auto; justify-content: flex-start; flex-wrap: nowrap; gap: 28px; scrollbar-width: none; }
  .tg2-tabs::-webkit-scrollbar { display: none; }
  .tg2-tab { white-space: nowrap; }
}
@media (max-width: 480px) {
  .tg2-gal-grid { grid-template-columns: repeat(2, 1fr); }
  .tg2-gal-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 130px 130px; }
  .tg2-gal-morebadge { font-size: 2rem; }
  .tg2-fz-caps { gap: 12px; }
  .tg2-fz-cap { padding: 18px 12px; }
  .tg2-cap-num { font-size: 2.6rem; }
  .tg2-hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .tg2-fz-strip { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tg2-fz-strip-img { aspect-ratio: 4/3; }
  .tg2-fz-strip-img:nth-child(3) { grid-row: auto; }
  .tg2-footer-bottom { flex-direction: column; text-align: center; }
  .tg2-menu-item-name { font-size: 1rem; }
}
