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

:root {
  /* COLOURS */
  --accent:       #f5a623;
  --accent-dark:  #c07d00;
  --accent-dim:   rgba(245,166,35,0.12);
  --bg:           #ffffff;
  --card:         #f7f8fa;
  --card-border:  rgba(0,0,0,0.08);
  --text:         #0d1b2a;
  --muted:        rgba(13,27,42,0.52);
  --muted2:       rgba(13,27,42,0.30);

  /* TYPE SCALE */
  --text-xs:   11px;   /* eyebrow labels            */
  --text-sm:   13px;   /* captions, hints, small UI  */
  --text-base: 15px;   /* body small / UI text       */
  --text-md:   17px;   /* body / hero sub            */
  --text-lg:   20px;   /* section lead               */
  --text-xl:   24px;   /* section heading            */
  --text-2xl:  clamp(1.6rem, 3vw, 2.2rem); /* page-level heading */

  /* WEIGHTS */
  --w-regular: 400;
  --w-medium:  500;
  --w-semi:    600;
  --w-bold:    700;
  --w-black:   900;

  /* SPACING */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-md);
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 80px;
  overflow-x: hidden;
}

/* ── BACKGROUND GLOW ─────────────────────────── */
.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── MAIN WRAPPER ────────────────────────────── */
main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 48px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* ── LOGO + BADGE (tight group) ──────────────── */
.hero-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-wrap { display: flex; justify-content: center; }
.logo {
  width: 420px;
  max-width: 100%;
  height: auto;
}

/* ── BADGE ───────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--accent-dark);
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

/* ── HERO SUB ────────────────────────────────── */
.hero { text-align: center; }
.hero-sub {
  font-size: var(--text-md);
  font-weight: var(--w-regular);
  color: var(--muted);
  line-height: 1.7;
}

/* ── DIVIDER ─────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--card-border);
}

/* ── SECTION LABELS (eyebrows) ───────────────── */
.eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── SECTION HEADINGS ────────────────────────── */
.section-title {
  font-size: var(--text-xl);
  font-weight: var(--w-black);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-lead {
  font-size: var(--text-lg);
  font-weight: var(--w-bold);
  line-height: 1.4;
  color: var(--text);
}
.section-accent {
  font-size: var(--text-lg);
  font-weight: var(--w-black);
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ── CTA BLOCK ───────────────────────────────── */
.cta-block { width: 100%; text-align: center; }
.cta-lead {
  font-size: var(--text-xl);
  font-weight: var(--w-black);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cta-sub {
  font-size: var(--text-base);
  color: var(--muted);
  margin-bottom: 24px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(245,166,35,0.28);
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }
.cta-btn--outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--card-border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cta-btn--outline:hover { border-color: var(--accent); }

/* ── TWO COLUMN ──────────────────────────────── */
.two-col {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-left,
.two-col-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── USP LIST ────────────────────────────────── */
.usps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.usps li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--text-base);
  font-weight: var(--w-medium);
  line-height: 1.5;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: border-color 0.2s, transform 0.2s;
}
.usps li:hover {
  border-color: rgba(245,166,35,0.4);
  transform: translateX(3px);
}
.usp-icon {
  color: var(--accent);
  font-weight: var(--w-bold);
  font-size: var(--text-base);
  flex-shrink: 0;
}

/* ── DIFF HEADER (rechter kolom) ─────────────── */
.diff-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.diff-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.diff-title {
  font-size: var(--text-2xl);
  font-weight: var(--w-black);
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ── LOCATION + MAP GRID ─────────────────────── */
.loc-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  min-height: 280px;
  text-align: left;
}
.loc-info {
  background: var(--card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid var(--card-border);
}
.loc-eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.loc-address {
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
}
.loc-desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.loc-route-btn {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--w-bold);
  color: var(--accent-dark);
  text-decoration: none;
  border: 1.5px solid rgba(245,166,35,0.4);
  border-radius: var(--radius-sm);
  padding: 7px 13px;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s;
}
.loc-route-btn:hover { background: var(--accent-dim); border-color: var(--accent); }
.loc-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

/* ── TAGLINE BOTTOM ──────────────────────────── */
.tagline-bottom {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
}
.tagline-bottom strong {
  color: var(--text);
  font-weight: var(--w-bold);
}

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter-block {
  width: 100%;
  text-align: center;
  background: var(--accent-dim);
  border: 1px solid rgba(245,166,35,0.28);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.nl-lead {
  font-size: var(--text-lg);
  font-weight: var(--w-bold);
  margin-bottom: 20px;
  color: var(--text);
}
.nl-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.nl-form input {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s;
}
.nl-form input::placeholder { color: var(--muted2); }
.nl-form input:focus { border-color: var(--accent); }
.nl-form button {
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  font-weight: var(--w-bold);
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nl-form button:hover { opacity: 0.88; transform: translateY(-1px); }
.nl-hint {
  margin-top: 10px;
  font-size: var(--text-sm);
  color: #2d7a3a;
  min-height: 18px;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  font-size: var(--text-sm);
  color: var(--muted2);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-info { border-right: none; border-bottom: 1px solid var(--card-border); }
}
@media (max-width: 480px) {
  main { padding: 40px 20px 0; gap: 32px; }
  .logo { width: 280px; }
  .nl-form { flex-direction: column; }
  .nl-form input, .nl-form button { width: 100%; }
  .cta-btns { flex-direction: column; align-items: center; }
}
