/* ══════════════════════════════════════════════════
   IINL – Component Styles (Cards, Modals, Grids…)
══════════════════════════════════════════════════ */

/* ── HERO STAT CHIPS (compact) ──────────────────── */
.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem .7rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease);
}
.hero-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.hero-stat-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: block;
  margin-bottom: .15rem;
}
.hero-stat-lbl { font-size: .62rem; color: var(--text-light); display: block; }
.hero-stat.s-green .hero-stat-val { color: var(--green); }
.hero-stat.s-blue  .hero-stat-val { color: var(--blue); }
.hero-stat.s-orange .hero-stat-val { color: var(--saffron); }
.hero-stat.s-gold  .hero-stat-val { color: #b45309; }

/* ── WA CHIPS (legacy support) ───────────────────── */
.wa-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.wa-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d;
  border-radius: 50px; padding: .32rem .9rem;
  font-size: .74rem; font-weight: 500;
  cursor: pointer; transition: all var(--dur-fast) var(--ease); text-decoration: none;
}
.wa-chip svg { width: 12px; height: 12px; flex-shrink: 0; }
.wa-chip:hover { background: #dcfce7; border-color: #86efac; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(34,197,94,.15); }

/* ── HERO SECTION ────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .6;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-badge-row { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.8rem; }
.hero-title {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.03em;
  margin-bottom: 1.6rem;
  color: var(--text-dark);
}
.hero-title .line { display: block; }
.hero-desc {
  font-size: .98rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
  max-width: 480px;
}
.hero-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem .7rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease);
}
.hero-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.hero-stat-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  display: block;
  margin-bottom: .15rem;
}
.hero-stat-lbl { font-size: .62rem; color: var(--text-light); display: block; }
.hero-stat.s-green .hero-stat-val { color: var(--green); }
.hero-stat.s-blue  .hero-stat-val { color: var(--blue); }
.hero-stat.s-orange .hero-stat-val { color: var(--saffron); }
.hero-stat.s-gold  .hero-stat-val { color: #b45309; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: .85rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  text-align: center;
}
.hfc-top  { top: -20px; left: -32px; }
.hfc-bot  { bottom: -16px; right: -28px; }
.hfc-val  { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.hfc-lbl  { font-size: .65rem; color: var(--text-light); white-space: nowrap; }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.page-hero-desc {
  font-size: .95rem;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* ── FEATURE CARDS ───────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1.5px solid transparent;
  text-decoration: none;
  display: block;
  transition: all var(--dur-base) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .9rem; }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.feature-card h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: .5rem; }
.feature-card p { font-size: .82rem; color: var(--text-mid); line-height: 1.6; }
.feature-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: .75rem;
  font-family: var(--font-head);
  font-weight: 700;
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--dur-fast) var(--ease);
}
.feature-card:hover .feature-arrow { opacity: 1; transform: translateX(0); }
.fc-orange { background: #fff7ed; border-color: #fed7aa; }
.fc-orange .feature-icon { background: #fff3e0; }
.fc-orange .feature-arrow { color: var(--saffron); }
.fc-blue { background: #eff6ff; border-color: #bfdbfe; }
.fc-blue .feature-icon { background: #e0f2fe; }
.fc-blue .feature-arrow { color: var(--blue); }
.fc-green { background: #f0fdf4; border-color: #bbf7d0; }
.fc-green .feature-icon { background: #dcfce7; }
.fc-green .feature-arrow { color: var(--green); }
.fc-purple { background: #f5f3ff; border-color: #ddd6fe; }
.fc-purple .feature-icon { background: #ede9fe; }
.fc-purple .feature-arrow { color: var(--purple); }

/* ── BLOG CARDS ──────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.blog-card:hover {
  border-color: #fed7aa;
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-card-thumb {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.blog-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-thumb .badge { position: absolute; top: 10px; left: 10px; }
.blog-card-body { padding: 1.2rem 1.3rem 1.5rem; }
.blog-meta { font-size: .7rem; color: var(--text-light); margin-bottom: .4rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.blog-card-body h3 { font-size: .97rem; color: var(--text-dark); margin-bottom: .5rem; line-height: 1.35; }
.blog-card-body p { font-size: .8rem; color: var(--text-mid); line-height: 1.6; }
.blog-read-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: .9rem;
  font-family: var(--font-head); font-size: .75rem; font-weight: 700;
  color: var(--saffron);
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--dur-fast) var(--ease);
}
.blog-card:hover .blog-read-link { opacity: 1; transform: translateY(0); }

/* ── EVENT CARDS ─────────────────────────────────── */
.events-featured-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; margin-bottom: 2rem; }
.events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.event-card:hover { border-color: #fed7aa; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.event-thumb { position: relative; overflow: hidden; }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.event-card:hover .event-thumb img { transform: scale(1.05); }
.event-featured-label {
  position: absolute; top: 10px; right: 10px;
  background: var(--saffron); color: white;
  font-size: .6rem; font-weight: 800; letter-spacing: .08em;
  padding: .22rem .7rem; border-radius: 50px;
}
.event-card-body { padding: 1.1rem 1.2rem 1.4rem; }
.event-card-body h3 { font-size: 1rem; color: var(--text-dark); margin-bottom: .35rem; line-height: 1.3; }
.event-card-body p { font-size: .78rem; color: var(--text-mid); line-height: 1.55; margin-bottom: .8rem; }
.event-meta { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: .85rem; }
.event-meta span {
  display: flex; align-items: center; gap: .3rem;
  font-size: .7rem; color: var(--text-light);
}
.event-meta span svg { width: 12px; height: 12px; }
.event-selling { display: flex; align-items: center; gap: .3rem; font-size: .68rem; color: #dc2626; font-weight: 600; }
.event-card-footer { display: flex; align-items: center; justify-content: space-between; }
.event-organizer { font-size: .7rem; color: var(--text-light); }

/* ── WHATSAPP GROUP CHIPS ────────────────────────── */
.wa-groups-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.wa-accordion {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--dur-fast) var(--ease);
}
.wa-accordion.open { border-color: #bbf7d0; box-shadow: var(--shadow-xs); }
.wa-accordion-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.1rem;
  background: none; border: none;
  cursor: pointer; text-align: left;
  transition: background var(--dur-fast) var(--ease);
}
.wa-accordion-btn:hover { background: var(--bg); }
.wa-btn-left { display: flex; align-items: center; gap: .65rem; }
.wa-btn-left .wa-icon { font-size: 1rem; }
.wa-btn-left strong { font-family: var(--font-head); font-size: .82rem; color: var(--text-dark); }
.wa-count-badge {
  font-size: .58rem; color: var(--text-light);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; padding: .12rem .5rem; margin-left: .35rem;
}
.wa-chevron { font-size: .7rem; color: var(--text-light); transition: transform var(--dur-base) var(--ease); }
.wa-accordion.open .wa-chevron { transform: rotate(180deg); }
.wa-accordion-body {
  display: none;
  padding: .75rem 1.1rem .9rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: .4rem;
}
.wa-accordion.open .wa-accordion-body { display: flex; }
.wa-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  border-radius: 50px;
  padding: .32rem .9rem;
  font-size: .74rem; font-weight: 500;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}
.wa-chip svg { width: 12px; height: 12px; flex-shrink: 0; }
.wa-chip:hover { background: #dcfce7; border-color: #86efac; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(34,197,94,.15); }

/* ── GUIDE CARDS ─────────────────────────────────── */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  transition: all var(--dur-base) var(--ease);
  box-shadow: var(--shadow-xs);
}
.guide-card:hover { border-color: #fed7aa; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.guide-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.guide-card h3 { font-size: .92rem; color: var(--text-dark); margin-bottom: .45rem; }
.guide-card p { font-size: .8rem; color: var(--text-mid); line-height: 1.65; }

/* ── EMBASSY LINKS ───────────────────────────────── */
.embassy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.embassy-cat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}
.embassy-cat-title {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-head); font-size: .97rem; color: var(--text-dark);
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}
.embassy-links-list { display: flex; flex-direction: column; gap: .35rem; }
.embassy-link {
  display: flex; align-items: center; gap: .5rem;
  padding: .45rem .65rem;
  border-radius: 8px;
  font-size: .82rem; color: var(--text-mid);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}
.embassy-link:hover { background: var(--blue-lt); color: var(--blue); }
.embassy-link svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── JOURNEY TOOLS ───────────────────────────────── */
.journey-tool {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all var(--dur-fast) var(--ease);
}
.journey-tool.open { border-color: #fed7aa; box-shadow: var(--shadow-sm); }
.journey-tool-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease);
  gap: 1rem;
}
.journey-tool-hdr:hover { background: var(--bg); }
.jth-left { display: flex; align-items: flex-start; gap: 1rem; flex: 1; min-width: 0; }
.jth-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
  background: var(--saffron-lt);
}
.jth-left h3 { font-size: .97rem; color: var(--text-dark); margin-bottom: .2rem; }
.jth-left p { font-size: .78rem; color: var(--text-mid); line-height: 1.45; }
.jth-chevron { font-size: .8rem; color: var(--text-light); transition: transform var(--dur-base) var(--ease); flex-shrink: 0; }
.journey-tool.open .jth-chevron { transform: rotate(180deg); }
.journey-tool-body { display: none; border-top: 1px solid var(--border); padding: 1.75rem; }
.journey-tool.open .journey-tool-body { display: block; }
.journey-steps { display: flex; flex-direction: column; gap: 0; position: relative; margin-bottom: 1.2rem; }
.journey-steps::before {
  content: ''; position: absolute;
  left: 17px; top: 35px; bottom: 35px;
  width: 2px; background: var(--border); z-index: 0;
}
.journey-step {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: .9rem 0; position: relative; z-index: 1;
}
.js-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white; font-family: var(--font-head); font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px var(--saffron-glow);
}
.js-body { flex: 1; padding-top: .3rem; }
.js-body strong { display: block; font-size: .9rem; color: var(--text-dark); margin-bottom: .3rem; }
.js-body p { font-size: .8rem; color: var(--text-mid); line-height: 1.65; margin-bottom: .35rem; }
.js-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .75rem; font-weight: 700; color: var(--blue);
  transition: color var(--dur-fast) var(--ease);
  margin-right: .75rem; margin-top: .2rem;
}
.js-link:hover { color: var(--saffron); }
.journey-tip {
  background: var(--saffron-lt);
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: .8rem 1rem;
  font-size: .8rem; color: var(--text-mid); line-height: 1.65;
}
.journey-tip a { color: var(--saffron); font-weight: 600; }
.journey-notice {
  background: var(--blue-lt);
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: .85rem 1rem;
  font-size: .82rem; color: var(--blue); line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── FOODIE CARDS ────────────────────────────────── */
.foodie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.foodie-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  box-shadow: var(--shadow-xs);
}
.foodie-card:hover { border-color: #fed7aa; transform: translateY(-5px); box-shadow: var(--shadow-md); }
.foodie-thumb { position: relative; height: 200px; overflow: hidden; }
.foodie-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.foodie-card:hover .foodie-thumb img { transform: scale(1.06); }
.foodie-must-badge { position: absolute; top: 10px; right: 10px; }
.foodie-type-badge { position: absolute; top: 10px; left: 10px; }
.foodie-body { padding: 1.1rem 1.2rem 1.4rem; }
.foodie-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: .45rem; }
.foodie-city { font-size: .7rem; color: var(--text-light); }
.foodie-stars { font-size: .75rem; color: var(--gold); letter-spacing: .04em; }
.foodie-body h3 { font-size: .97rem; color: var(--text-dark); margin-bottom: .2rem; line-height: 1.3; }
.foodie-cuisine { font-size: .72rem; color: var(--saffron); font-weight: 600; margin-bottom: .5rem; }
.foodie-desc { font-size: .8rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .75rem; }
.foodie-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem; }
.foodie-tag { font-size: .65rem; background: var(--bg); border: 1px solid var(--border); border-radius: 50px; padding: .18rem .65rem; color: var(--text-mid); }
.foodie-must {
  background: var(--saffron-lt);
  border: 1px solid #fed7aa;
  border-radius: 10px;
  padding: .5rem .8rem;
  margin-bottom: .75rem;
  display: flex; align-items: center; gap: .4rem; flex-wrap: wrap;
}
.fmt-label { font-size: .62rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: .08em; }
.fmt-dish { font-size: .78rem; font-weight: 700; color: var(--saffron); }
.foodie-body-footer { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }

/* ── EXCLUSIVE / TOOLS CARDS ─────────────────────── */
.exclusive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.exclusive-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--saffron-lt);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
}
.exclusive-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exclusive-feature-img { position: relative; min-height: 260px; overflow: hidden; }
.exclusive-feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.exclusive-feature:hover .exclusive-feature-img img { transform: scale(1.04); }
.exclusive-feature-body { padding: 2.2rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.exclusive-feature-body h2 { font-size: 1.6rem; color: var(--text-dark); margin: .6rem 0 .75rem; line-height: 1.3; }
.exclusive-feature-body p { font-size: .875rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 1.2rem; }
.exclusive-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.exclusive-card:hover { border-color: #fed7aa; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.exclusive-card-img { height: 180px; overflow: hidden; position: relative; }
.exclusive-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.exclusive-card:hover .exclusive-card-img img { transform: scale(1.05); }
.exclusive-card-body { padding: 1.1rem 1.2rem 1.4rem; }
.exclusive-card-body h3 { font-size: .92rem; color: var(--text-dark); margin: .3rem 0 .45rem; line-height: 1.3; }
.exclusive-card-body p { font-size: .78rem; color: var(--text-mid); line-height: 1.55; }
.exclusive-card-meta { display: flex; align-items: center; gap: .4rem; font-size: .7rem; color: var(--text-light); margin-bottom: .3rem; }

/* ── GEMEENTE / EMERGENCY CARDS ──────────────────── */
.gemeente-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.gemeente-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem 1.3rem; box-shadow: var(--shadow-xs); }
.gemeente-card h4 { font-size: .88rem; color: var(--text-dark); margin-bottom: .4rem; display: flex; align-items: center; gap: .4rem; }
.gemeente-card p { font-size: .75rem; color: var(--text-mid); line-height: 1.6; margin-bottom: .25rem; }
.gemeente-card a { font-size: .72rem; color: var(--blue); font-weight: 600; }
.emergency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.emergency-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow-xs); }
.emergency-card.critical { border-color: #fca5a5; background: #fff5f5; }
.emergency-card .ec-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.emergency-card h4 { font-size: .84rem; color: var(--text-dark); margin-bottom: .3rem; }
.emergency-card p { font-size: .74rem; color: var(--text-mid); line-height: 1.6; }

/* ── FOUNDERS SECTION ────────────────────────────── */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.founder-quote-card {
  background: var(--saffron-lt);
  border: 1px solid #fed7aa;
  border-radius: var(--radius-xl);
  padding: 2.8rem;
  position: relative;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 7rem;
  line-height: .7;
  color: #fdba74;
  margin-bottom: .5rem;
}
.quote-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}
.quote-author { display: flex; align-items: center; gap: .9rem; padding-top: 1.2rem; border-top: 1px solid #fed7aa; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: white; font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}
.quote-author strong { display: block; font-size: .87rem; color: var(--text-dark); }
.quote-author span { font-size: .72rem; color: var(--text-light); }

/* ── CALLOUT / CTA BOX ───────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, var(--saffron-lt), var(--blue-lt));
  border: 1px solid #fed7aa;
  border-radius: var(--radius-xl);
  padding: 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--text-dark); margin-bottom: 1rem; }
.cta-box p { font-size: .95rem; color: var(--text-mid); max-width: 500px; margin: 0 auto 2rem; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ── MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 0;
  animation: fadeIn var(--dur-fast) var(--ease);
}
.modal-panel {
  background: var(--white);
  width: 100%; min-height: 100vh;
  box-shadow: var(--shadow-xl);
  animation: slideUp var(--dur-base) var(--ease);
}
.modal-img { position: relative; height: 420px; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 55%); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.92); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.modal-close:hover { transform: scale(1.1); background: white; }
.modal-body { padding: 2.5rem min(6vw,5rem) 3.5rem; max-width: 900px; margin: 0 auto; }
.modal-body h2 { font-size: 2rem; color: var(--text-dark); margin-bottom: .4rem; }
.modal-subtitle { font-size: .92rem; color: var(--saffron); font-weight: 600; margin-bottom: 1.4rem; }
.modal-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.modal-chip {
  display: flex; align-items: center; gap: .4rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: .4rem .9rem;
  font-size: .74rem; color: var(--text-mid); font-weight: 500;
}
.modal-chip svg { width: 13px; height: 13px; color: var(--text-light); }
.modal-content { font-size: .9rem; color: var(--text-mid); line-height: 1.8; }
.modal-content h4 { font-size: 1.05rem; color: var(--text-dark); margin: 1.5rem 0 .5rem; }
.modal-content p { margin-bottom: .85rem; }
.modal-content ul { padding-left: 1.4rem; margin-bottom: .9rem; }
.modal-content ul li { margin-bottom: .35rem; line-height: 1.7; }
.modal-content a { color: var(--saffron); font-weight: 500; }
.modal-drive-box {
  background: var(--saffron-lt);
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.modal-drive-box h4 { font-size: .97rem; color: var(--text-dark); margin-bottom: .75rem; }
.modal-drive-links { display: flex; flex-direction: column; gap: .4rem; }
.modal-drive-links a { font-size: .82rem; color: var(--saffron); font-weight: 500; display: flex; align-items: center; gap: .4rem; }
.modal-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.2rem; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: .75rem;
}
.modal-attribution { font-size: .78rem; color: var(--text-light); }

/* ── NOTICE BOX ──────────────────────────────────── */
.notice-box {
  background: var(--blue-lt);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .84rem;
  color: var(--blue);
  line-height: 1.6;
  display: flex; gap: .75rem; align-items: flex-start;
  margin-bottom: 2rem;
}
.notice-box svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .1rem; }
.notice-box.warning { background: var(--gold-lt); border-color: #fde68a; color: #92400e; }
.notice-box.danger { background: #fff5f5; border-color: #fca5a5; color: #dc2626; }

/* ── SUPPORTERS SECTION ──────────────────────────── */
.supporters-section {
  background: #111827;
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}
.supporters-section::before,
.supporters-section::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.supporters-section::before { left: 0; background: linear-gradient(to right, #111827, transparent); }
.supporters-section::after  { right: 0; background: linear-gradient(to left, #111827, transparent); }
.supporters-hdr { text-align: center; margin-bottom: 1.5rem; }
.supporters-hdr .eyebrow { color: rgba(255,255,255,.4); }
.supporters-hdr h3 { font-size: 1rem; color: rgba(255,255,255,.7); font-weight: 600; }
.supporters-wrap { overflow: hidden; }
.supporter-chip {
  display: flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px; padding: .55rem 1.2rem;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none; cursor: default;
  transition: all var(--dur-fast) var(--ease);
}
.supporter-chip:hover { background: rgba(255,255,255,.11); border-color: rgba(249,115,22,.4); }
.supporter-chip-logo {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.supporter-chip-name { font-family: var(--font-head); font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.8); }
.supporter-add {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(249,115,22,.1);
  border: 1px dashed rgba(249,115,22,.4);
  border-radius: 50px; padding: .55rem 1.2rem; flex-shrink: 0;
}
.supporter-add span { font-size: .72rem; color: rgba(249,115,22,.8); font-family: var(--font-head); font-weight: 700; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .events-featured-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; gap: 2rem; }
  .embassy-grid { grid-template-columns: 1fr; }
  .exclusive-feature { grid-template-columns: 1fr; }
  .exclusive-feature-img { min-height: 220px; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-groups-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .exclusive-grid { grid-template-columns: 1fr; }
  .foodie-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-grid { grid-template-columns: repeat(2, 1fr); }
  .gemeente-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 2.5rem 1.5rem; }
  .modal-img { height: 240px; }
  .modal-body { padding: 1.5rem 1.25rem 2rem; max-width: 100%; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .foodie-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .emergency-grid { grid-template-columns: 1fr; }
}
