﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Merriweather:wght@700&display=swap");

:root {
  --bg-soft: #f2f8fd;
  --bg-cream: #fffaf4;
  --card: #ffffff;
  --line: #d2e3ef;
  --line-strong: #bfd7e8;
  --text: #173b5d;
  --text-soft: #3d6181;
  --accent-blue: #75b9de;
  --accent-blue-strong: #3f8dbb;
  --accent-sand: #f2c996;
  --accent-yellow: #ffe4a1;
  --accent-red: #f17878;
  --radius-xl: 34px;
  --radius-lg: 22px;
  --shadow-lg: 0 30px 56px rgba(21, 55, 87, 0.2);
  --shadow-md: 0 18px 34px rgba(21, 55, 87, 0.14);
  --shadow-sm: 0 10px 18px rgba(21, 55, 87, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 10%, rgba(242, 201, 150, 0.24), transparent 24%),
    radial-gradient(circle at 92% 6%, rgba(117, 185, 222, 0.24), transparent 26%),
    radial-gradient(circle at 18% 100%, rgba(255, 228, 161, 0.22), transparent 32%),
    linear-gradient(180deg, var(--bg-soft), var(--bg-cream));
  min-height: 100vh;
  line-height: 1.58;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 84%, rgba(117, 185, 222, 0.17), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(242, 201, 150, 0.14), transparent 30%);
  animation: ambientFloat 18s ease-in-out infinite alternate;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Merriweather", serif;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 0;
  --header-frame-width: min(1380px, 98vw);
  --header-height: clamp(84px, 8.6vw, 100px);
  --header-surface: #f8fcff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #f8fcff;
}

.site-header .container {
  width: var(--header-frame-width);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: calc(var(--header-height) + 1px);
  background: var(--header-surface);
  box-shadow: 0 14px 24px -16px rgba(20, 49, 77, 0.55);
  z-index: 0;
}

.site-header::after {
  content: none;
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  min-height: var(--header-height);
  padding: 0;
  padding-left: clamp(14.8rem, 27vw, 20rem);
  overflow: visible;
}

.site-logo {
  --logo-scale: 1.28;
  --logo-shadow-cut: 62%;
  position: absolute;
  left: clamp(0.4rem, 1.6vw, 1rem);
  top: calc(100% - clamp(5.95rem, 7.9vw, 6.9rem));
  width: clamp(250px, 22vw, 332px);
  aspect-ratio: 1.95 / 1;
  border: 0;
  background: transparent;
  overflow: visible;
  transform: scale(var(--logo-scale));
  transform-origin: left top;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), top 300ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: none;
  isolation: isolate;
  z-index: 4;
}

.site-logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/images/logo.svg") center / cover no-repeat;
  filter:
    drop-shadow(0 13px 16px rgba(20, 49, 77, 0.3))
    drop-shadow(0 24px 22px rgba(20, 49, 77, 0.1));
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--logo-shadow-cut) - 24%),
    rgba(0, 0, 0, 0.015) calc(var(--logo-shadow-cut) - 14%),
    rgba(0, 0, 0, 0.06) calc(var(--logo-shadow-cut) - 6%),
    rgba(0, 0, 0, 0.16) calc(var(--logo-shadow-cut) + 4%),
    rgba(0, 0, 0, 0.34) calc(var(--logo-shadow-cut) + 14%),
    rgba(0, 0, 0, 0.22) 82%,
    rgba(0, 0, 0, 0.08) 90%,
    rgba(0, 0, 0, 0.02) 95%,
    transparent 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent calc(var(--logo-shadow-cut) - 24%),
    rgba(0, 0, 0, 0.015) calc(var(--logo-shadow-cut) - 14%),
    rgba(0, 0, 0, 0.06) calc(var(--logo-shadow-cut) - 6%),
    rgba(0, 0, 0, 0.16) calc(var(--logo-shadow-cut) + 4%),
    rgba(0, 0, 0, 0.34) calc(var(--logo-shadow-cut) + 14%),
    rgba(0, 0, 0, 0.22) 82%,
    rgba(0, 0, 0, 0.08) 90%,
    rgba(0, 0, 0, 0.02) 95%,
    transparent 98%,
    transparent 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.site-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.is-scrolled .site-logo {
  --logo-scale: 0.93;
  --logo-shadow-cut: 65%;
  top: calc(100% - clamp(5.45rem, 7.1vw, 6.25rem));
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.44rem;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.58rem 0.96rem;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--text-soft);
  background: rgba(117, 185, 222, 0.12);
  transition: transform 170ms ease, background-color 170ms ease, border-color 170ms ease, color 170ms ease, box-shadow 170ms ease;
}

.site-nav a::after {
  content: none;
}

.site-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 14px rgba(21, 55, 87, 0.12);
}

.site-nav a:hover,
.site-nav a.active {
  color: #153f63;
  border-color: rgba(63, 141, 187, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 228, 161, 0.37), rgba(117, 185, 222, 0.24)),
    rgba(255, 255, 255, 0.94);
}


.nav-toggle {
  display: none;
  border: 1px solid rgba(63, 141, 187, 0.38);
  border-radius: 13px;
  background: rgba(117, 185, 222, 0.18);
  color: var(--text);
  padding: 0.5rem 0.8rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  background: rgba(117, 185, 222, 0.27);
}

main {
  padding-bottom: 3.5rem;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 100svh;
  margin: 0 0 3rem;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  box-shadow: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(11, 35, 58, 0.78), rgba(11, 35, 58, 0.42) 48%, rgba(11, 35, 58, 0.82)),
    linear-gradient(180deg, rgba(242, 201, 150, 0.2), rgba(0, 0, 0, 0.24) 70%, rgba(255, 228, 161, 0.24));
}

.home-hero {
  width: min(1490px, 99vw);
  min-height: clamp(640px, 82vh, 880px);
  margin-top: 1rem;
  align-items: stretch;
  border-radius: 42px;
  box-shadow: 0 24px 44px rgba(21, 55, 87, 0.15);
}

.home-hero::before {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 214, 137, 0.52), transparent 36%),
    radial-gradient(circle at 88% 9%, rgba(148, 202, 234, 0.42), transparent 34%),
    radial-gradient(circle at 52% 92%, rgba(255, 233, 183, 0.32), transparent 38%),
    linear-gradient(180deg, #fffdf8, #edf6fd);
  transform: scale(1);
  animation: homeHeroGlow 16s ease-in-out infinite alternate;
}

.home-hero::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0), rgba(241, 249, 255, 0.24));
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  width: min(1340px, 96%);
  margin: 0 auto;
  padding: clamp(1.15rem, 2.6vw, 2.35rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.86rem, 1.6vw, 1.24rem);
  align-content: center;
}

.hero-compact {
  min-height: 100svh;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 3rem));
  margin: clamp(1rem, 2.4vw, 2rem);
  padding: clamp(1.25rem, 2.7vw, 2.2rem);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: linear-gradient(146deg, rgba(13, 43, 71, 0.8), rgba(21, 60, 91, 0.48));
  color: #fff;
  overflow: hidden;
  animation: heroPanelIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-hero-content {
  width: min(940px, 100%);
  max-width: none;
  margin: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.55));
  color: #1b466a;
  border: 1px solid rgba(209, 227, 238, 0.9);
  box-shadow: 0 12px 22px rgba(24, 64, 95, 0.08);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.home-hero-content::before {
  right: -56px;
  bottom: -86px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 229, 173, 0.56), rgba(255, 229, 173, 0));
  opacity: 0.52;
}

.home-hero .eyebrow {
  color: #315d7f;
  letter-spacing: 0.03em;
}

.home-hero h1 {
  color: #153d5f;
  max-width: 18ch;
}

.home-hero p {
  color: #2d5676;
  max-width: 62ch;
}

.home-hero .hero-summary li {
  color: #2d5676;
}

.home-hero .hero-summary li::before {
  background: linear-gradient(130deg, #f4ca8f, #7bbde0);
}

.hero-content::before {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 228, 161, 0.54), rgba(255, 228, 161, 0));
  opacity: 0.84;
  animation: orbDrift 9s ease-in-out infinite;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.18rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffe9bc;
  font-size: 0.79rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  max-width: 16ch;
}

.hero p {
  margin: 0.82rem 0 0;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  max-width: 58ch;
  line-height: 1.5;
}

.hero-summary {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.hero-summary li {
  position: relative;
  padding-left: 1.32rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.43rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: linear-gradient(130deg, #ffe4a1, #9ad0ed);
}

.hero-collage {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 1.18fr 0.9fr 0.92fr;
  gap: clamp(0.58rem, 1.2vw, 0.9rem);
  align-items: stretch;
  margin-top: 0.16rem;
}

.hero-collage::before {
  content: none;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 27px 24px 31px 22px;
  border: 2px solid rgba(255, 255, 255, 0.94);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(22, 55, 82, 0.16);
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 74px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 239, 194, 0.86);
  box-shadow: 0 2px 4px rgba(45, 84, 113, 0.12);
  transform: translateX(-50%) rotate(-1.6deg);
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 242px;
  object-fit: cover;
  transform: scale(1);
}

.hero-photo::after {
  content: none;
}

.hero-photo-large {
  animation: heroPhotoLarge 13.5s ease-in-out infinite;
  transform: rotate(-1.15deg);
}

.hero-photo-top {
  animation: heroPhotoTop 12.8s ease-in-out infinite;
  transform: translateY(12px) rotate(1.2deg);
}

.hero-photo-bottom {
  animation: heroPhotoBottom 12.2s ease-in-out infinite;
  transform: translateY(-8px) rotate(-0.95deg);
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.66rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.14rem;
  font-size: 0.94rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-yellow);
  color: #194164;
  box-shadow: 0 10px 18px rgba(255, 228, 161, 0.42);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-tertiary {
  background: rgba(117, 185, 222, 0.2);
  color: #1b4a6f;
}

.btn-outline {
  background: #fff;
  color: var(--text-soft);
  border: 1px solid #b8d3e5;
}

.btn-danger {
  background: rgba(241, 120, 120, 0.16);
  color: #8f1d1d;
}

.btn-small {
  padding: 0.42rem 0.72rem;
  font-size: 0.84rem;
}

.section {
  margin: 3.2rem auto;
}

.section > h2 {
  font-size: clamp(1.62rem, 2.8vw, 2.26rem);
  text-align: center;
  color: var(--text);
}

.section > p {
  margin: 0.62rem auto 0;
  max-width: 78ch;
  text-align: center;
  color: var(--text-soft);
}

.section > .grid,
.section > .card,
.section > .split-layout,
.section > .process-grid,
.section > .faq-list,
.section > .cms-layout,
.section > .map-wrap,
.section > .filters,
.section > .news-list,
.section > .stats-grid {
  margin-top: 1.1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: linear-gradient(180deg, #ffffff, #fafdff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.25rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(63, 141, 187, 0.24);
}

.card h2 {
  margin: 0 0 0.62rem;
  font-size: clamp(1.4rem, 2.2vw, 1.72rem);
  color: var(--text);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.26rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.card p + p {
  margin-top: 0.62rem;
}

.card a {
  color: #1d4c75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.26rem;
  font-weight: 700;
  color: #1f5178;
  text-decoration: underline;
  text-decoration-color: rgba(31, 81, 120, 0.28);
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.text-link:hover {
  color: #123e63;
  text-decoration-color: rgba(18, 62, 99, 0.55);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.split-content {
  display: grid;
  gap: 0.9rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.28rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.49rem;
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-sand));
}

.split-media {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.split-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--media-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 460ms ease;
}

.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(11, 35, 58, 0.1), rgba(11, 35, 58, 0.58));
}

.split-media:hover::before {
  transform: scale(1.08);
}

.media-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  padding: 0.4rem 0.78rem;
  background: rgba(255, 255, 255, 0.9);
  color: #163f62;
  font-size: 0.82rem;
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1rem;
  text-align: center;
}

.stat-value {
  display: block;
  color: #17496f;
  font-size: 2rem;
  font-family: "Merriweather", serif;
  margin-bottom: 0.35rem;
}

.stat-card p {
  margin: 0;
  color: var(--text-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1rem;
  background:
    linear-gradient(170deg, rgba(117, 185, 222, 0.1), rgba(255, 255, 255, 0.9)),
    #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  color: #19486b;
  background: rgba(117, 185, 222, 0.22);
  margin-bottom: 0.52rem;
}

.step-title {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  color: var(--text);
}

.step-card p {
  margin: 0;
  color: var(--text-soft);
}

.highlight {
  background:
    linear-gradient(125deg, rgba(242, 201, 150, 0.28), rgba(255, 228, 161, 0.32), rgba(255, 255, 255, 0.76)),
    #fff;
  border: 1px solid rgba(242, 201, 150, 0.42);
}

.pill {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.31rem 0.72rem;
  font-size: 0.77rem;
  font-weight: 800;
  color: #1a4f74;
  background: rgba(117, 185, 222, 0.24);
  margin-bottom: 0.34rem;
}

.info-highlight {
  display: grid;
  gap: 0.82rem;
}

.info-highlight .feature-list {
  margin-top: 0.14rem;
}

.info-highlight .feature-list li {
  color: #295172;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.58rem;
}

.contact-list strong {
  min-width: 108px;
  display: inline-block;
}

.map-wrap iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: grid;
  gap: 0.66rem;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #bfd7e8;
  border-radius: 13px;
  padding: 0.7rem 0.84rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(63, 141, 187, 0.28);
  border-color: #8fc0df;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-feedback {
  margin-top: 0.45rem;
  font-weight: 700;
  color: #1a6d3a;
  display: none;
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 300px) 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 1rem 1.12rem 1.1rem;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.38rem;
  color: #5a7692;
}

.badge {
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  background: rgba(242, 201, 150, 0.28);
  color: #7d471f;
  font-weight: 800;
  font-size: 0.77rem;
}

.news-title {
  margin: 0 0 0.35rem;
  font-size: 1.32rem;
  color: var(--text);
}

.news-text {
  margin: 0;
  color: var(--text-soft);
}

.news-text + .news-text {
  margin-top: 0.55rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.52rem;
}

.filter-btn {
  border: 1px solid #bad6e8;
  background: #fff;
  color: var(--text-soft);
  border-radius: 999px;
  padding: 0.44rem 0.86rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(63, 141, 187, 0.17);
  color: var(--text);
  border-color: #89bddc;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--text-soft);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.cms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1rem;
}

.cms-list {
  display: grid;
  gap: 0.72rem;
}

.cms-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.84rem;
  background: #fff;
}

.cms-item h4 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.cms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin-top: 0.62rem;
}

.empty {
  color: #5f7994;
  font-style: italic;
}

.small-note {
  font-size: 0.88rem;
  color: #5c7793;
}

.site-footer {
  border-top: 1px solid rgba(188, 214, 231, 0.9);
  padding: 1.45rem 0 2rem;
  color: var(--text-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: revealUp 0.8s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 110ms;
}

.reveal.delay-2 {
  animation-delay: 200ms;
}

.reveal.delay-3 {
  animation-delay: 290ms;
}

.scroll-in {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(4px);
  transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
}

.scroll-in.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes homeHeroGlow {
  0% {
    transform: scale(1) translateY(0);
    filter: saturate(0.98);
  }
  50% {
    transform: scale(1.015) translateY(-6px);
    filter: saturate(1.02);
  }
  100% {
    transform: scale(1.01) translateY(4px);
    filter: saturate(1);
  }
}

@keyframes heroPhotoLarge {
  0% {
    transform: rotate(-1.2deg) translateY(0);
  }
  50% {
    transform: rotate(-0.2deg) translateY(-7px);
  }
  100% {
    transform: rotate(-1deg) translateY(5px);
  }
}

@keyframes heroPhotoTop {
  0% {
    transform: rotate(1.3deg) translateY(10px);
  }
  50% {
    transform: rotate(2deg) translateY(2px);
  }
  100% {
    transform: rotate(0.6deg) translateY(13px);
  }
}

@keyframes heroPhotoBottom {
  0% {
    transform: rotate(-0.9deg) translateY(-7px);
  }
  50% {
    transform: rotate(-1.8deg) translateY(2px);
  }
  100% {
    transform: rotate(-0.3deg) translateY(-10px);
  }
}

@keyframes orbDrift {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-8px, -14px);
  }
  100% {
    transform: translate(6px, -8px);
  }
}

@keyframes ambientFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-14px);
  }
}

@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-item {
    grid-template-columns: minmax(0, 250px) 1fr;
  }
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .cms-layout,
  .news-item {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: clamp(620px, 86vh, 780px);
    border-radius: 34px;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 0.74rem;
    padding-bottom: 1rem;
  }

  .home-hero-content {
    max-width: none;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.66rem;
  }

  .hero-photo-large {
    grid-column: 1 / span 2;
  }

  .hero-photo img {
    min-height: 196px;
  }

  .split-media {
    min-height: 300px;
  }

  .news-item img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .site-header {
    --header-height: 76px;
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 0;
    padding-left: clamp(10.8rem, 56vw, 14rem);
    gap: 0.5rem;
  }

  .site-logo {
    --logo-shadow-cut: 60%;
    left: 0.24rem;
    top: calc(100% - 4.92rem);
    width: clamp(186px, 47vw, 248px);
  }

  body.is-scrolled .site-logo {
    --logo-scale: 0.96;
    --logo-shadow-cut: 63%;
    top: calc(100% - 4.45rem);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: calc(var(--header-height) + 0.25rem);
    margin-left: 0;
    min-width: 245px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    z-index: 130;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav a::after {
    left: 0.86rem;
    right: 0.86rem;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1180px, 94vw);
  }

  .hero {
    width: 100%;
    min-height: clamp(500px, 92svh, 760px);
    margin-top: 0;
    border-radius: 0;
  }

  .hero-content {
    width: calc(100% - 1rem);
    margin: 0.52rem;
    padding: 1rem 1rem 1.08rem;
    border-radius: 18px;
  }

  .home-hero {
    min-height: clamp(560px, 88vh, 740px);
    border-radius: 28px;
  }

  .home-hero-layout {
    width: calc(100% - 0.55rem);
    padding: 0.72rem 0.34rem 0.88rem;
    gap: 0.64rem;
  }

  .home-hero-content {
    width: 100%;
    padding: 1rem 0.95rem 1.06rem;
    border-radius: 20px;
  }

  .hero-summary {
    gap: 0.42rem;
  }

  .hero-collage {
    grid-template-columns: 1fr;
    gap: 0.58rem;
  }

  .hero-photo {
    border-radius: 17px 14px 19px 13px;
    animation-duration: 11s;
  }

  .hero-photo-large,
  .hero-photo-top,
  .hero-photo-bottom {
    grid-column: auto;
    transform: none;
  }

  .hero-photo img {
    min-height: 168px;
  }

  .hero h1 {
    font-size: clamp(1.66rem, 8.2vw, 2.45rem);
  }

  .grid-3,
  .grid-2,
  .process-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    margin: 2.45rem auto;
  }

  .section > h2 {
    font-size: clamp(1.42rem, 6vw, 1.95rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .scroll-in {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* Calm content style overrides (header intentionally unchanged) */
body {
  background: #f7f5f1;
  line-height: 1.62;
}

body::before {
  content: none;
}

main {
  padding-top: 1rem;
  padding-bottom: 2.8rem;
}

.hero {
  width: min(1180px, 92vw);
  min-height: clamp(420px, 70vh, 620px);
  margin: 1.25rem auto 2.4rem;
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(20, 49, 77, 0.14);
}

.hero::before {
  transform: none;
  animation: none;
}

.hero::after {
  background: linear-gradient(120deg, rgba(17, 50, 72, 0.42), rgba(17, 50, 72, 0.32));
}

.hero-content {
  width: min(760px, calc(100% - 2rem));
  margin: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(187, 208, 221, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: #1a405b;
  animation: none;
}

.hero-content::before {
  content: none;
}

.eyebrow {
  color: #325e78;
}

.hero h1 {
  max-width: 22ch;
  color: #123750;
}

.hero p {
  color: #244b64;
  max-width: 65ch;
}

.hero-summary li {
  color: #244b64;
}

.hero-summary li::before {
  background: #8ab4c8;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: none;
}

.section {
  margin: 2.4rem auto;
}

.section > h2,
.section > p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.card {
  background: #fff;
  border: 1px solid #d4e0e8;
  border-radius: 16px;
  box-shadow: 0 5px 14px rgba(21, 55, 87, 0.08);
}

.card:hover {
  transform: none;
  box-shadow: 0 5px 14px rgba(21, 55, 87, 0.08);
  border-color: #d4e0e8;
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}

.split-layout {
  gap: 1.15rem;
}

.split-content {
  gap: 0.8rem;
}

.feature-list li::before {
  width: 0.5rem;
  height: 0.5rem;
  background: #7caec7;
}

.split-media {
  min-height: 300px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(21, 55, 87, 0.12);
}

.split-media::before {
  transform: none;
}

.split-media::after {
  background: linear-gradient(160deg, rgba(12, 37, 58, 0.12), rgba(12, 37, 58, 0.34));
}

.split-media:hover::before {
  transform: none;
}

.media-label {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
}

.process-grid {
  gap: 1rem;
}

.step-card {
  border-radius: 16px;
  border: 1px solid #d4e0e8;
  background: #fff;
  box-shadow: 0 5px 12px rgba(21, 55, 87, 0.07);
}

.step-card:hover {
  transform: none;
  box-shadow: 0 5px 12px rgba(21, 55, 87, 0.07);
}

.step-number {
  background: #e3eef5;
  color: #204b68;
}

.highlight {
  background: #fffaf2;
  border: 1px solid #e9d7bb;
}

.pill {
  background: #e6f1f7;
  color: #1f4a67;
}

.badge {
  background: #f2e7d8;
  color: #6d3f1e;
}

.site-footer {
  margin-top: 1.6rem;
  background: transparent;
}

.scroll-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    width: min(1180px, 94vw);
  }

  .section > h2,
  .section > p {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .hero {
    margin: 0.8rem auto 2rem;
    min-height: clamp(420px, 74svh, 560px);
    border-radius: 18px;
  }

  .hero-content {
    width: calc(100% - 1rem);
    margin: 0.5rem;
    padding: 1rem;
  }

  .section > h2,
  .section > p {
    max-width: none;
  }
}

/* Flowing page redesign */
body {
  background: #f6f4ef;
  color: #173b5d;
}

main {
  padding-top: 0;
  padding-bottom: 0;
}

.hero.hero-wide {
  width: 100%;
  min-height: clamp(560px, 82vh, 860px);
  margin: 0 0 3.2rem;
  border-radius: 0;
  box-shadow: none;
}

.hero.hero-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  transform: none;
  animation: none;
  background-position: center center;
  z-index: 0;
}

.hero.hero-wide::after {
  background: linear-gradient(104deg, rgba(16, 39, 56, 0.62), rgba(16, 39, 56, 0.4) 52%, rgba(16, 39, 56, 0.56));
  z-index: 1;
}

.hero-content.hero-content-inline {
  width: min(860px, 92vw);
  margin: 0 auto 8.2vh;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #fff;
  animation: none;
  position: relative;
  z-index: 2;
}

.hero-content.hero-content-inline::before {
  content: none;
}

.hero-content.hero-content-inline .eyebrow {
  color: #f6e4be;
}

.hero-content.hero-content-inline h1 {
  max-width: 18ch;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22);
}

.hero-content.hero-content-inline p {
  margin-top: 0.95rem;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.94);
}

.flow-section {
  margin: 0;
  padding: 2.5rem 0;
}

.flow-section.flow-section-muted {
  background: #f1eee8;
  border: 0;
}

.flow-section.flow-section-map {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.flow-intro h2,
.flow-text h2,
.flow-col h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #153951;
  margin-bottom: 0.7rem;
}

.flow-intro p,
.flow-text p,
.flow-col p {
  margin: 0 0 0.9rem;
  color: #2f526d;
  max-width: 74ch;
}

.flow-intro .lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  color: #214762;
}

.flow-prose {
  max-width: 860px;
}

.flow-prose h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #153951;
  margin: 0 0 0.8rem;
}

.flow-prose h3 {
  margin: 1.25rem 0 0.5rem;
  color: #1d445f;
  font-size: 1.24rem;
}

.flow-prose p {
  margin: 0 0 0.95rem;
  color: #2f526d;
  max-width: 74ch;
}

.flow-prose .lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  color: #214762;
}

.flow-prose .flow-list,
.flow-prose .flow-steps {
  max-width: 74ch;
}

.flow-columns {
  display: grid;
  gap: 2rem;
}

.flow-columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flow-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-col h3 {
  margin: 0 0 0.55rem;
  color: #1d445f;
  font-size: 1.26rem;
}

.flow-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.flow-split.flow-split-reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.flow-media {
  min-height: 340px;
  border-radius: 12px;
  background-image: linear-gradient(130deg, rgba(10, 33, 49, 0.1), rgba(10, 33, 49, 0.24)), var(--media-image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 16px rgba(24, 53, 75, 0.12);
}

.flow-list,
.flow-steps {
  margin: 0.3rem 0 0;
  padding-left: 1.2rem;
  color: #2b506c;
}

.flow-list li,
.flow-steps li {
  margin-bottom: 0.55rem;
}

.flow-list.flow-list-check {
  list-style: none;
  padding-left: 0;
}

.flow-list.flow-list-check li {
  position: relative;
  padding-left: 1.45rem;
}

.flow-list.flow-list-check li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1e6a93;
  font-weight: 800;
}

.rhythm-line {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.rhythm-step {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d7dfd0;
  border-radius: 10px;
  padding: 1rem;
}

.rhythm-step span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #18435f;
  background: #dceaf3;
  margin-bottom: 0.5rem;
}

.rhythm-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: #163c57;
}

.rhythm-step p {
  margin: 0;
  color: #2f526d;
}

.flow-section.flow-section-soft {
  background: #f0ece4;
}

.statement {
  padding: 0.35rem 0;
}

.statement p {
  margin: 0;
  max-width: 72ch;
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  color: #214a66;
}

.filters {
  justify-content: flex-start;
  margin: 0.9rem 0 1.1rem;
}

.news-list {
  gap: 0;
}

.news-item {
  border: 0;
  border-bottom: 1px solid #d9e0e6;
  border-radius: 0;
  box-shadow: none;
  padding: 1.2rem 0;
  grid-template-columns: minmax(0, 260px) 1fr;
  background: transparent;
}

.news-item:first-child {
  border-top: 1px solid #d9e0e6;
}

.news-item img {
  border-radius: 8px;
}

.news-content {
  padding: 0.2rem 0 0.2rem 1.1rem;
}

.site-footer {
  margin-top: 0;
  padding: 3rem 0 0;
  background: linear-gradient(170deg, #1d3f58, #21455d 40%, #1a3850);
  color: rgba(255, 255, 255, 0.92);
  border-top: 0;
}

.site-footer h3,
.site-footer h4 {
  font-family: "Merriweather", serif;
  color: #fff;
  margin: 0 0 0.65rem;
}

.site-footer h3 {
  font-size: 1.32rem;
}

.site-footer h4 {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.site-footer a {
  color: #b8ddf5;
  text-decoration: none;
  transition: color 200ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand p {
  margin-top: 0.6rem;
  font-size: 0.92rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.footer-links a {
  display: inline-block;
  padding: 0.12rem 0;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 2rem 0 0;
}

.footer-bottom {
  padding: 1.1rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.84rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-kvk {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.5rem;
  line-height: 1.7;
}

.footer-map-small {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.4rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-map-small iframe {
  width: 100%;
  height: 150px;
  border: 0;
  display: block;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-credit img {
  height: 18px;
  width: auto;
  opacity: 0.6;
  transition: opacity 200ms ease;
}

.footer-credit:hover img {
  opacity: 1;
}

@media (max-width: 980px) {
  .flow-columns-3 {
    grid-template-columns: 1fr 1fr;
  }

  .flow-split {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .flow-media {
    min-height: 300px;
  }

  .rhythm-line {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .hero.hero-wide {
    min-height: clamp(460px, 74svh, 640px);
  }

  .hero-content.hero-content-inline {
    margin-bottom: 6.6vh;
  }

  .hero-content.hero-content-inline h1 {
    font-size: clamp(1.74rem, 8.2vw, 2.65rem);
  }

  .flow-section {
    padding: 2rem 0;
  }

  .flow-columns-2,
  .flow-columns-3 {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .rhythm-line {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .news-content {
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ===== Rich layout system ===== */

/* Centered prose with CTA */
.flow-prose-centered {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.flow-prose-centered h2 { margin-left: auto; margin-right: auto; }
.flow-prose-centered p  { margin-left: auto; margin-right: auto; }

.flow-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  justify-content: center;
}

/* Buttons */
.flow-section .btn-primary {
  background: #f2c996;
  color: #3a2008;
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.55rem;
  font-weight: 800;
  font-size: 0.96rem;
  box-shadow: 0 6px 14px rgba(242, 201, 150, 0.38);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.flow-section .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(242, 201, 150, 0.5);
}

.flow-section .btn-outline {
  background: #fff;
  color: #1d445f;
  border: 1px solid #b8d3e5;
  border-radius: 999px;
  padding: 0.82rem 1.55rem;
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.flow-section .btn-outline:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(21, 55, 87, 0.12);
}

/* Warmer list bullets */
.flow-list.flow-list-check li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  top: 0.52rem;
  border-radius: 50%;
  background: #c4956a;
  font-weight: normal;
}

/* Muted section */
.flow-section.flow-section-muted {
  background: #efeae2;
}

/* Warm accent background */
.flow-section.flow-section-warm {
  background: linear-gradient(160deg, #f5ece0, #f0e8da);
}

/* ===== Split layout (text + image side by side) ===== */
.flow-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.flow-split-reverse {
  direction: rtl;
}
.flow-split-reverse > * {
  direction: ltr;
}

.flow-split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #153951;
  margin: 0 0 0.8rem;
}

.flow-split-text h3 {
  margin: 1.1rem 0 0.45rem;
  color: #1d445f;
  font-size: 1.18rem;
}

.flow-split-text p {
  margin: 0 0 0.9rem;
  color: #2f526d;
  max-width: 52ch;
  line-height: 1.62;
}

.flow-split-text .lead {
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  color: #214762;
}

.flow-split-text .flow-list {
  max-width: 52ch;
}

.flow-split-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(20, 49, 77, 0.14);
}

.flow-split-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.flow-split-image:hover img {
  transform: scale(1.04);
}

/* Decorative accent dot on images */
.flow-split-image::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(242, 201, 150, 0.4);
  pointer-events: none;
}

.flow-split:not(.flow-split-reverse) .flow-split-image::after {
  bottom: -20px;
  left: -20px;
}

.flow-split-reverse .flow-split-image::after {
  top: -20px;
  right: -20px;
}

/* ===== Value / pillar cards ===== */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 1.4rem auto 0;
}

.value-card {
  background: #fff;
  border: 1px solid #dce5eb;
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 6px 18px rgba(20, 49, 77, 0.07);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(20, 49, 77, 0.13);
}

.value-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(140deg, #f5ece0, #e8ddd0);
}

.value-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.16rem;
  color: #153951;
}

.value-card p {
  margin: 0;
  color: #3d6181;
  line-height: 1.56;
}

/* Wider cards grid (2 cols for about page values) */
.value-cards-wide {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
}

/* Section header above cards */
.flow-section-header {
  max-width: 720px;
  margin: 0 auto 0.2rem;
}

.flow-section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #153951;
  margin: 0 0 0.7rem;
}

.flow-section-header p {
  margin: 0;
  color: #2f526d;
  max-width: 62ch;
  line-height: 1.58;
}

/* ===== Full-width accent banner ===== */
.flow-banner {
  padding: 2.8rem 0;
  background: linear-gradient(
    to right,
    #f4ecdf 0%,
    #f0ece4 16.67%,
    #e8eef4 33.33%,
    #e2eef8 50%,
    #e8eef4 66.67%,
    #f0ece4 83.33%,
    #f4ecdf 100%
  );
  color: #173b5d;
  text-align: center;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
}

.flow-banner h2 {
  color: #153951;
  margin: 0 0 0.7rem;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.flow-banner p {
  color: #2f526d;
  max-width: 56ch;
  margin: 0 auto 1.2rem;
  line-height: 1.56;
}

.flow-banner .flow-actions {
  margin-top: 1.3rem;
}

.flow-banner .btn-primary {
  background: var(--accent-blue-strong);
  color: #fff;
  box-shadow: 0 8px 18px rgba(63, 141, 187, 0.35);
}
.flow-banner .btn-primary:hover {
  box-shadow: 0 12px 26px rgba(63, 141, 187, 0.45);
}

.flow-banner .btn-outline {
  background: #fff;
  color: #194164;
  border-color: var(--accent-blue-strong);
}
.flow-banner .btn-outline:hover {
  background: #edf6fd;
}

/* ===== Contact info block ===== */
.contact-block {
  background: #fff;
  border: 1px solid #dce5eb;
  border-radius: 16px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 6px 18px rgba(20, 49, 77, 0.07);
}

.contact-block h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  color: #153951;
}

.contact-block p {
  margin: 0 0 0.8rem;
  color: #2f526d;
  line-height: 1.6;
}

.contact-block a {
  color: #1a5a84;
  text-decoration: underline;
  text-decoration-color: rgba(26, 90, 132, 0.3);
  text-underline-offset: 0.15em;
  transition: text-decoration-color 200ms ease;
}
.contact-block a:hover {
  text-decoration-color: rgba(26, 90, 132, 0.7);
}

/* ===== Topic cards (for nieuws) ===== */
.topic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1100px;
  margin: 1.2rem auto 0;
}

.topic-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d8ddd2;
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20, 49, 77, 0.09);
}

.topic-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  color: #1d445f;
}

.topic-card p {
  margin: 0;
  color: #3d6181;
  line-height: 1.52;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .flow-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .flow-split-reverse {
    direction: ltr;
  }

  .flow-split-image {
    max-height: 360px;
  }

  .value-cards {
    grid-template-columns: 1fr 1fr;
  }

  .value-cards-wide {
    grid-template-columns: 1fr 1fr;
  }

  .topic-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .value-cards,
  .value-cards-wide,
  .topic-cards {
    grid-template-columns: 1fr;
  }

  .flow-split-text p {
    max-width: none;
  }

  .flow-split-image img {
    aspect-ratio: 16 / 10;
  }
}

/* ============================================================
   NIEUWS – card grid  (nieuws.html)
   ============================================================ */

/* Loading state */
.news-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2.5rem 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.news-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid var(--line);
  border-top-color: var(--accent-blue-strong);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.news-empty {
  padding: 2rem 0;
  color: var(--text-soft);
}

/* Card grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 1.5rem;
}

/* Card */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  color: inherit;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.news-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--line);
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card-img {
  transform: scale(1.04);
}

/* Fotodump overlay badge */
.news-card-dump-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.85rem 1rem;
  background: linear-gradient(to top, rgba(14, 36, 54, 0.55) 0%, transparent 55%);
}

.dump-overlay-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Fotodump card slight tint */
.news-card-dump .news-card-img-wrap {
  aspect-ratio: 4 / 3;
}

/* Card body */
.news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem 1.5rem;
  gap: 0.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.news-date {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.badge-fotodump {
  background: #e8f0f7;
  color: var(--accent-blue-strong);
}

.news-card-title {
  font-family: "Merriweather", serif;
  font-size: 1.1rem;
  line-height: 1.3;
  margin: 0;
  color: var(--text);
}

.news-card-summary {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 680px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ARTIKEL – detail page  (artikel.html)
   ============================================================ */

/* Hero without cover image */
.hero.hero-wide.hero-no-img {
  --hero-image: none;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-cream) 100%);
  min-height: clamp(280px, 38svh, 420px);
}

.hero.hero-wide.hero-no-img::before {
  background: rgba(23, 59, 93, 0.08);
}

.hero.hero-wide.hero-no-img .hero-content h1,
.hero.hero-wide.hero-no-img .hero-content p,
.hero.hero-wide.hero-no-img .hero-content .eyebrow,
.hero.hero-wide.hero-no-img .hero-content .badge {
  color: var(--text);
  text-shadow: none;
}

.hero.hero-wide.hero-no-img .hero-back-link {
  color: var(--text-soft);
}

/* Back link in hero */
.hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.15s;
  text-decoration: none;
}

.hero-back-link:hover {
  color: #fff;
}

/* Hero meta row */
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.article-hero-date {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.hero.hero-no-img .article-hero-date {
  color: var(--text-soft);
}

.article-hero-summary {
  max-width: 62ch;
  margin-top: 0.6rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero.hero-no-img .article-hero-summary {
  color: var(--text-soft);
}

/* Article body (rich text) */
.article-body {
  max-width: 72ch;
  margin: 0 auto;
  padding: 0.5rem 0 0;
}

.article-body p {
  margin: 0 0 1.1rem;
  color: var(--text);
  line-height: 1.72;
}

.article-body h2 {
  font-family: "Merriweather", serif;
  font-size: 1.45rem;
  margin: 2.2rem 0 0.7rem;
  color: var(--text);
}

.article-body h3 {
  font-family: "Merriweather", serif;
  font-size: 1.18rem;
  margin: 1.8rem 0 0.5rem;
  color: var(--text);
}

.article-body h4 {
  font-size: 1rem;
  margin: 1.5rem 0 0.4rem;
  font-weight: 700;
  color: var(--text);
}

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin: 0.6rem 0 1.1rem;
}

.article-body li {
  margin-bottom: 0.3rem;
  line-height: 1.65;
}

.article-body blockquote {
  border-left: 4px solid var(--accent-blue);
  margin: 1.5rem 0;
  padding: 0.6rem 1.2rem;
  background: rgba(117, 185, 222, 0.09);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  color: var(--text-soft);
  font-style: italic;
}

.article-body blockquote p {
  margin: 0;
}

.article-body pre {
  background: #1e3347;
  color: #cfe3f2;
  padding: 1.1rem 1.3rem;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 1.2rem 0;
}

.article-body code {
  font-family: monospace;
  font-size: 0.9em;
  background: rgba(63, 141, 187, 0.1);
  padding: 0.12em 0.38em;
  border-radius: 4px;
}

.article-body pre code {
  background: transparent;
  padding: 0;
}

.article-body a {
  color: var(--accent-blue-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-figure {
  margin: 1.5rem 0;
}

.article-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.article-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.83rem;
  color: var(--text-soft);
  text-align: center;
}

/* Back row */
.article-back-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

.article-back-row .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Gallery body (fotodump) */
.article-body-gallery {
  max-width: 100%;
}

/* ============================================================
   GALLERY GRID – fotodump page
   ============================================================ */

.gallery-grid {
  columns: 3;
  column-gap: 0.75rem;
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--accent-blue-strong);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 35, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: min(96vw, 1200px);
  max-height: 96svh;
  padding: 0 0.5rem;
}

.lightbox-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90svh;
  border-radius: 12px;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.55);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -2.8rem;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev,
.lightbox-next {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox-counter {
  position: absolute;
  bottom: -2.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  white-space: nowrap;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
  }

  .lightbox-inner {
    gap: 0.4rem;
  }
}
