/* ============================================
   SENSATIONS TO GO — EXCLUSIVE EDITION
   Premium poke bowl experience
   ============================================ */

:root {
  --c-gold: #FF0624;
  --c-gold-light: #FF0624;
  --c-gold-dark: #FF0624;
  --c-teal: #0d9488;
  --c-teal-dark: #0f766e;
  --c-teal-light: #5eead4;
  --c-cream: #faf8f5;
  --c-warm-white: #fdfcfa;
  --c-charcoal: #1a1a1a;
  --c-dark: #0f0f0f;
  --c-near-black: #111;
  --c-text: #2d2d2d;
  --c-text-light: #6b6b6b;
  --c-text-muted: #999;
  --c-border: rgba(0,0,0,0.06);
  --c-border-light: rgba(0,0,0,0.04);

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

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --transition-fast: 200ms cubic-bezier(0.4,0,0.2,1);
  --transition-base: 400ms cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 600ms cubic-bezier(0.4,0,0.2,1);

  --container-max: 1280px;
  --container-padding: clamp(1.5rem, 5vw, 3rem);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a {
  color: var(--c-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--c-teal-dark); }
a:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; border-radius: 2px; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--c-charcoal); color: white; padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md); z-index: 9999; font-weight: 600;
  box-shadow: var(--shadow-lg); font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* Container */
.container {
  width: 100%; max-width: var(--container-max);
  margin-left: auto; margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,252,250,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--transition-base);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-list { display: flex; list-style: none; gap: 0.5rem; }
.nav-link {
  display: block; padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  color: var(--c-text-light); font-weight: 500; font-size: 0.9375rem;
  text-decoration: none; letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--c-gold);
  transition: all var(--transition-fast); transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover, .nav-link:focus { color: var(--c-charcoal); background: transparent; text-decoration: none; }
.nav-link:hover::after, .nav-link:focus::after { width: 24px; }
.nav-link.active { color: var(--c-charcoal); font-weight: 600; }
.nav-link.active::after { width: 24px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--c-charcoal); }
.hamburger {
  display: block; width: 24px; height: 2px; background: currentColor;
  position: relative; transition: background var(--transition-fast);
}
.hamburger::before, .hamburger::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px;
  background: currentColor; transition: all var(--transition-fast);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* ============================================
   HERO — CINEMATIC
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--c-dark);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.6) 50%, rgba(15,15,15,0.3) 100%);
}
.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 640px; padding-top: 5rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  color: var(--c-gold); font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--c-gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 1.5rem; letter-spacing: -0.03em;
  color: white;
}
.hero-title em {
  font-style: italic; color: var(--c-gold-light);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; max-width: 500px;
  font-weight: 300;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  padding: 1rem 2.25rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.9375rem; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all var(--transition-fast); line-height: 1.2;
  letter-spacing: 0.02em; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0);
  transition: background var(--transition-fast);
}
.btn:hover::before { background: rgba(255,255,255,0.08); }
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

.btn-primary {
  background: var(--c-gold); color: var(--c-charcoal); border-color: var(--c-gold);
}
.btn-primary:hover { background: var(--c-gold-light); border-color: var(--c-gold-light); color: var(--c-charcoal); box-shadow: var(--shadow-gold); }

.btn-secondary {
  background: transparent; color: white; border-color: rgba(255,255,255,0.3);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: white; }

.btn-dark {
  background: var(--c-charcoal); color: white; border-color: var(--c-charcoal);
}
.btn-dark:hover { background: var(--c-dark); border-color: var(--c-dark); color: white; box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: var(--c-charcoal); border-color: var(--c-charcoal);
}
.btn-outline:hover { background: var(--c-charcoal); color: white; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.section-dark { background: var(--c-charcoal); color: white; }
.section-cream { background: var(--c-cream); }

.section-header {
  text-align: center; max-width: 680px; margin: 0 auto 4rem;
}
.section-eyebrow {
  display: inline-block; color: var(--c-gold); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400; color: var(--c-charcoal); margin-bottom: 1.25rem;
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--c-gold-dark); }
.section-dark .section-title { color: white; }

.section-subtitle {
  font-size: 1.125rem; color: var(--c-text-light); line-height: 1.8;
  font-weight: 300;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ============================================
   FEATURE CARDS — ELEGANT
   ============================================ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 3rem 2.5rem; text-align: center;
  border: 1px solid var(--c-border-light);
  transition: all var(--transition-base);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
  transform: scaleX(0); transition: transform var(--transition-base);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: var(--shadow-gold);
}
.feature-title {
  font-family: var(--font-display); font-size: 1.375rem;
  font-weight: 400; margin-bottom: 0.875rem; color: var(--c-charcoal);
}
.feature-text { color: var(--c-text-light); line-height: 1.75; font-size: 0.9375rem; }

/* ============================================
   MENU — PREMIUM CARDS
   ============================================ */
.menu-section { background: var(--c-cream); }

.menu-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-card {
  background: white; border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--c-border-light);
  transition: all var(--transition-base); display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.menu-image-wrap {
  position: relative; width: 100%; height: 280px; overflow: hidden;
}
.menu-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.menu-card:hover .menu-image-wrap img { transform: scale(1.06); }

.menu-badge {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--c-gold); color: var(--c-charcoal);
  font-size: 0.6875rem; font-weight: 700; padding: 0.4rem 1rem;
  border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}

.menu-content { padding: 2rem 2rem 2.25rem; flex: 1; display: flex; flex-direction: column; }
.menu-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; gap: 1rem; }
.menu-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--c-charcoal); }
.menu-price { font-size: 1.25rem; font-weight: 700; color: var(--c-gold-dark); flex-shrink: 0; font-family: var(--font-display); }
.menu-desc { color: var(--c-text-light); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; flex: 1; }
.menu-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-size: 0.6875rem; font-weight: 700; padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full); background: var(--c-cream);
  color: var(--c-text-light); text-transform: uppercase; letter-spacing: 0.06em;
}
.tag-spicy { background: #fef2f2; color: #b91c1c; }
.tag-vegan { background: #f0fdf4; color: #15803d; }
.tag-populair { background: #fffbeb; color: #b45309; }
.tag-glutenvrij { background: #eff6ff; color: #1d4ed8; }

/* Category title */
.menu-category-title {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 400; margin: 3rem 0 1.5rem; color: var(--c-charcoal);
  display: flex; align-items: center; gap: 1rem;
}
.menu-category-title::after {
  content: ''; flex: 1; height: 1px; background: var(--c-border);
}

/* ============================================
   IMAGE SHOWCASE
   ============================================ */
.showcase-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center;
}
@media (max-width: 900px) { .showcase-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.showcase-image {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; }
.showcase-image::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-xl); box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  pointer-events: none;
}

.showcase-content h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400; margin-bottom: 1.25rem; line-height: 1.2; letter-spacing: -0.02em;
}
.showcase-content p {
  color: var(--c-text-light); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.05rem;
}
.showcase-content p:last-of-type { margin-bottom: 2rem; }

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.gallery-item {
  position: relative; aspect-ratio: 1; overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(15,15,15,0.3); opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover::after { opacity: 1; }
@media (max-width: 768px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative; background: var(--c-charcoal);
  color: white; padding: 6rem 0; text-align: center; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S10 15.523 10 10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .section-title { color: white; }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  position: relative; background: var(--c-dark);
  color: white; padding: 10rem 0 5rem; text-align: center; overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-header-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.7) 0%, rgba(15,15,15,0.85) 100%);
}
.page-header .container { position: relative; z-index: 1; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.page-title em { font-style: italic; color: var(--c-gold-light); }
.page-intro {
  font-size: 1.125rem; color: rgba(255,255,255,0.65);
  max-width: 600px; margin: 0 auto; line-height: 1.75; font-weight: 300;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block { max-width: 760px; margin: 0 auto; }
.content-block h2 {
  font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 400; margin: 3rem 0 1rem; color: var(--c-charcoal); letter-spacing: -0.01em;
}
.content-block h2:first-child { margin-top: 0; }
.content-block p {
  margin-bottom: 1.5rem; color: var(--c-text-light); line-height: 1.85; font-size: 1.05rem;
}
.content-block ul, .content-block ol {
  margin: 1.5rem 0 1.5rem 1.75rem; color: var(--c-text-light); line-height: 1.85;
}
.content-block li { margin-bottom: 0.625rem; }

/* Values */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: white; border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; border: 1px solid var(--c-border-light);
  transition: all var(--transition-base);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.value-card h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 400; margin-bottom: 0.75rem; color: var(--c-gold-dark);
}
.value-card p { color: var(--c-text-light); line-height: 1.75; font-size: 0.9375rem; margin: 0; }

/* Team */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.5rem;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

.team-card { text-align: center; }
.team-avatar {
  width: 140px; height: 140px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 2.75rem; font-weight: 400; font-family: var(--font-display);
  box-shadow: var(--shadow-gold); border: 4px solid white;
}
.team-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; margin-bottom: 0.25rem; }
.team-role { color: var(--c-gold-dark); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.team-bio { color: var(--c-text-light); font-size: 0.9375rem; line-height: 1.7; }

/* ============================================
   FRANCHISE
   ============================================ */
.investment-box {
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-dark));
  color: var(--c-charcoal); border-radius: var(--radius-xl);
  padding: 3rem; margin: 2.5rem 0;
}
.investment-box h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  margin-bottom: 2rem; text-align: center; font-weight: 400;
}
.investment-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
@media (max-width: 768px) { .investment-grid { grid-template-columns: repeat(2, 1fr); } }

.investment-item dt {
  font-size: 0.8125rem; opacity: 0.75; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.investment-item dd {
  font-size: 1.625rem; font-weight: 700; font-family: var(--font-display);
}

/* Process */
.process-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.process-step {
  display: flex; gap: 1.75rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: white; border: 1px solid var(--c-border-light);
  transition: all var(--transition-base);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.step-number {
  width: 52px; height: 52px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  color: var(--c-charcoal); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem; flex-shrink: 0; font-family: var(--font-display);
}
.step-content h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.35rem; }
.step-content p { color: var(--c-text-light); line-height: 1.7; font-size: 0.9375rem; margin: 0; }

/* FAQ */
.faq-list { margin-top: 2.5rem; }
.faq-item {
  border-bottom: 1px solid var(--c-border); padding: 1.75rem 0;
}
.faq-question {
  font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 400; margin-bottom: 0.625rem; color: var(--c-charcoal);
}
.faq-answer { color: var(--c-text-light); line-height: 1.8; font-size: 0.9375rem; }

/* ============================================
   CAREERS
   ============================================ */
.benefits-list { list-style: none; margin: 1.5rem 0; }
.benefits-list li {
  position: relative; padding-left: 2.25rem; margin-bottom: 1rem;
  color: var(--c-text-light); font-size: 1.05rem;
}
.benefits-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem;
  width: 10px; height: 10px; border-radius: 50%; background: var(--c-gold);
}

.vacancy-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.vacancy-card {
  background: white; border: 1px solid var(--c-border-light);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.25rem;
  transition: all var(--transition-base);
}
.vacancy-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-2px); }
.vacancy-info h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 0.35rem; }
.vacancy-meta { display: flex; gap: 1.25rem; font-size: 0.875rem; color: var(--c-text-muted); }
.vacancy-meta span { display: flex; align-items: center; gap: 0.4rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-weight: 600; font-size: 0.875rem; color: var(--c-charcoal);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 1rem 1.25rem; border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md); background: white;
  transition: all var(--transition-fast); font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 4px rgba(201,169,110,0.1);
}
.form-group textarea { min-height: 160px; resize: vertical; }
.form-error { color: #dc2626; font-size: 0.875rem; font-weight: 500; margin-top: 0.25rem; }
.form-success {
  background: #f0fdf4; color: #166534; padding: 1.25rem;
  border-radius: var(--radius-md); border: 1px solid #bbf7d0;
  font-weight: 500; margin-bottom: 1rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-block h3 {
  font-family: var(--font-display); font-size: 1.25rem;
  font-weight: 400; margin-bottom: 1rem; color: var(--c-charcoal);
}
.contact-block address, .contact-block p {
  color: var(--c-text-light); font-style: normal; line-height: 1.9; font-size: 1rem;
}
.contact-block a { color: var(--c-teal); font-weight: 500; }
.contact-block a:hover { color: var(--c-teal-dark); }

.hours-list { display: flex; flex-direction: column; gap: 0.625rem; }
.hours-list div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--c-border-light); }
.hours-list dt { color: var(--c-text-muted); font-size: 0.9375rem; }
.hours-list dd { color: var(--c-charcoal); font-weight: 600; font-size: 0.9375rem; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--c-dark); color: rgba(255,255,255,0.5);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.25fr 1fr; gap: 4rem; margin-bottom: 4rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-decoration: none;
}
.footer-logo:hover { text-decoration: none; }
.footer-logo-img {
  height: 31px;
  width: auto;
  display: block;
}

.footer-tagline { color: rgba(255,255,255,0.45); margin-bottom: 1.75rem; font-size: 0.9375rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 44px; height: 44px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  color: white; transition: all var(--transition-fast); border: 1px solid rgba(255,255,255,0.08);
}
.social-links a:hover { background: var(--c-gold); color: var(--c-charcoal); border-color: var(--c-gold); text-decoration: none; }

.footer-title {
  color: white; font-size: 0.8125rem; font-weight: 700;
  margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.footer-nav ul, .footer-contact address {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
}
.footer-nav a, .footer-contact a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color var(--transition-fast); font-size: 0.9375rem;
}
.footer-nav a:hover, .footer-contact a:hover { color: var(--c-gold); text-decoration: none; }

.footer-hours .hours-list div { border-bottom-color: rgba(255,255,255,0.08); padding: 0.4rem 0; }
.footer-hours .hours-list dt { color: rgba(255,255,255,0.4); }
.footer-hours .hours-list dd { color: rgba(255,255,255,0.8); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; font-size: 0.8125rem;
}
.footer-legal a { color: rgba(255,255,255,0.4); }
.footer-legal a:hover { color: var(--c-gold); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--c-charcoal); color: white; padding: 3rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center;
}
.stat-number {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 400; color: var(--c-gold); line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section { background: var(--c-cream); }
.testimonial-card {
  max-width: 800px; margin: 0 auto; text-align: center;
  padding: 2rem;
}
.testimonial-quote {
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic; line-height: 1.6; color: var(--c-charcoal); margin-bottom: 2rem;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--c-charcoal); font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 600; color: var(--c-charcoal); }
.testimonial-role { font-size: 0.875rem; color: var(--c-text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  :root { --container-padding: 1.25rem; }
  .section { padding: 4rem 0; }
  .nav-toggle { display: block; }
  .nav-list {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(253,252,250,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 1.25rem; gap: 0.25rem;
    border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow-lg);
    transform: translateY(-10px); opacity: 0; visibility: hidden;
    transition: all var(--transition-base); pointer-events: none;
  }
  .nav-list.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-link { padding: 1rem 1.25rem; font-size: 1rem; }
  .hero-content { padding-top: 6rem; text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .process-step { flex-direction: column; text-align: center; align-items: center; }
  .investment-grid { grid-template-columns: 1fr 1fr; }
  .vacancy-card { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; }
  .investment-grid { grid-template-columns: 1fr; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Print */
/* ============================================
   LOCATIONS PAGE
   ============================================ */

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
}

.location-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--c-border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}
.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-map {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #f0ebe3, #e8e0d5);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.map-placeholder svg {
  margin-bottom: 0.5rem;
}
.map-address {
  font-size: 0.9375rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin: 0;
}
.map-btn {
  margin-top: 0.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

.location-info {
  padding: 2rem 2rem 2.25rem;
  position: relative;
}

.location-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--c-gold);
  color: var(--c-charcoal);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
}

.location-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--c-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.location-subtitle {
  font-size: 0.875rem;
  color: var(--c-gold-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.location-address {
  font-style: normal;
  margin-bottom: 1.25rem;
  color: var(--c-text-light);
  line-height: 1.7;
}
.location-address p {
  margin: 0;
}

.location-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}

.location-phone,
.location-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--c-text-light);
}

.location-phone svg,
.location-hours svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

.location-phone a {
  color: var(--c-teal);
  font-weight: 500;
}
.location-phone a:hover {
  color: var(--c-teal-dark);
}

.location-route {
  width: 100%;
  justify-content: center;
}
.location-card {
    position: relative; /* zorgt dat de badge relatief aan de kaart staat */
    padding-top: 1.5rem; /* ruimte bovenaan voor de badge */
}

.location-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* bestaande stijlen behouden */
}
/* ============================================
   RESPONSIVE (locations)
   ============================================ */
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
  .location-map { height: 220px; }
  .location-info { padding: 1.75rem; }
}

@media print {
  .site-header, .site-footer, .nav-toggle, .hero-cta, .btn, .hero-scroll { display: none !important; }
  .hero { background: white !important; color: black !important; padding: 2rem 0 !important; min-height: auto !important; }
  .hero-bg { display: none !important; }
  body { font-size: 12pt; line-height: 1.5; color: black; }
  .section-dark { background: white !important; color: black !important; }
  .section-dark .section-title, .section-dark .section-subtitle { color: black !important; }
}
