/* ===========================================================
   swisssenseklantenservice.nl
   Onafhankelijke ervaringssite. Niet gelieerd aan Swiss Sense.
   Kleuren geïnspireerd op de huisstijl, maar bewust afwijkend
   om merkrechten te respecteren (geen logo, geen woordmerk-imitatie).
   =========================================================== */

:root {
  --navy: #1a2b4a;
  --navy-dark: #122038;
  --navy-light: #2c4576;
  --accent: #d64545;
  --accent-dark: #b83838;
  --cream: #f6f1ea;
  --sand: #efe7db;
  --ink: #20262f;
  --muted: #5b6675;
  --line: #e2dccf;
  --white: #ffffff;
  --ok: #2f7d52;
  --maxw: 1080px;
  --radius: 10px;
  --shadow: 0 6px 24px rgba(18, 32, 56, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--accent); }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--navy); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font);
}
.brand:hover { color: #fff; }
.brand-mark {
  width: 38px; height: 38px; flex: 0 0 38px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
  font-family: var(--font);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1.02rem; letter-spacing: .2px; }
.brand-text span { font-size: .72rem; color: #b9c4da; text-transform: uppercase; letter-spacing: 1.2px; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.4);
  color: #fff; border-radius: 6px; padding: 8px 10px; cursor: pointer; font-size: 1rem;
}

.main-nav ul {
  list-style: none; display: flex; gap: 4px; margin: 0; padding: 0;
}
.main-nav a {
  color: #e7ecf6; text-decoration: none; padding: 10px 14px; border-radius: 6px;
  font-size: .95rem; display: block;
}
.main-nav a:hover, .main-nav a[aria-current="page"] {
  background: var(--navy-light); color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; right: -120px; bottom: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(214, 69, 69, .14);
}
.hero .container { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { color: #fff; }
.hero .lead {
  font-size: 1.2rem; color: #d7deec; max-width: 640px;
}
.eyebrow {
  display: inline-block; background: rgba(214,69,69,.2); color: #ffd0d0;
  border: 1px solid rgba(214,69,69,.5);
  padding: 5px 14px; border-radius: 999px; font-size: .8rem; letter-spacing: .6px;
  text-transform: uppercase; margin-bottom: 18px; font-weight: 600;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 8px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: transform .05s ease, background .15s ease;
  font-size: 1rem;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-dark); color: #fff; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-alt { background: var(--white); }
.section-sand { background: var(--sand); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.section-alt .card { background: var(--cream); }
.card h3 { margin-top: 0; }
.card .num {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff; font-weight: 700; margin-bottom: 14px;
  font-family: var(--font);
}

/* ---------- Quote / callout ---------- */
.callout {
  border-left: 5px solid var(--accent);
  background: var(--white);
  padding: 22px 26px; border-radius: 8px; box-shadow: var(--shadow);
  font-size: 1.15rem; color: var(--navy);
  font-family: "Georgia", serif; font-style: italic;
}
.callout cite { display: block; margin-top: 10px; font-size: .85rem; color: var(--muted); font-style: normal; }

.notice {
  background: #fff7ed; border: 1px solid #f0d9b5; border-left: 5px solid #e0a64b;
  padding: 16px 20px; border-radius: 8px; color: #6b4e1f; font-size: .95rem;
}

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 18px; top: 6px; bottom: 6px;
  width: 3px; background: var(--line);
}
.timeline li { position: relative; padding: 0 0 30px 56px; }
.timeline li::before {
  content: ""; position: absolute; left: 9px; top: 4px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--accent); border: 4px solid var(--cream);
}
.timeline .t-date {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .6px;
  color: var(--accent-dark); font-weight: 700;
}
.timeline h3 { margin: 2px 0 6px; font-size: 1.15rem; }
.timeline p { margin: 0; color: var(--muted); }

/* ---------- Article ---------- */
.article { background: var(--white); }
.article .container { max-width: 760px; }
.article h2 { margin-top: 1.6em; }
.article .meta { color: var(--muted); font-size: .9rem; margin-bottom: 1.6em; }

/* ---------- FAQ ---------- */
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 8px;
  padding: 4px 20px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--navy); padding: 14px 0;
  font-size: 1.08rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p:last-child { margin-bottom: 16px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy); color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #cfd8e8; max-width: 640px; margin-inline: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark); color: #aeb9cd; padding: 50px 0 26px; font-size: .92rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 30px; }
.site-footer h4 { color: #fff; font-family: var(--font); font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.site-footer a { color: #cdd6e6; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; font-size: .82rem; color: #8694ab;
}
.disclaimer {
  font-size: .82rem; color: #8694ab; max-width: 540px; line-height: 1.6;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .85rem; color: var(--muted); padding: 16px 0 0; }
.breadcrumb a { color: var(--muted); }
.breadcrumb [aria-current] { color: var(--ink); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.lead { font-size: 1.18rem; }
.pill-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.pill-list li { background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px; font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-dark); padding: 10px 20px 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
}
