/* ============================================================
   SONNEVANCK VASTGOED — Shared stylesheet
   ============================================================ */

:root {
  /* Navy palette — extracted from logo */
  --navy-950: #08122A;
  --navy-900: #0E1A35;
  --navy-800: #182B52;
  --navy-700: #1F3563;
  --navy-600: #2E4577;
  --navy-500: #4A5C85;
  --navy-400: #6A7BA1;
  --navy-300: #8A95AE;
  --navy-200: #B4BCCE;
  --navy-100: #D6DBE6;

  /* Gold accent */
  --gold-800: #80632F;
  --gold-700: #9C7B3F;
  --gold-600: #B8945F;
  --gold-500: #C9A972;
  --gold-400: #D6BB8A;
  --gold-300: #E2CBA3;
  --gold-200: #E8D9B8;
  --gold-100: #F0E4CC;
  --gold-50:  #F7F1E3;

  /* Energy label colors (official EU/Dutch) */
  --label-aaa: #009639;
  --label-aa:  #00A651;
  --label-a:   #00A651;
  --label-b:   #8CC63E;
  --label-c:   #FFCB06;
  --label-d:   #FFA906;
  --label-e:   #F37021;
  --label-f:   #ED1C24;
  --label-g:   #D62128;

  /* Surfaces */
  --cream:    #FAF7F0;
  --paper:    #FDFBF5;
  --paper-2:  #F4EFE2;
  --white:    #FFFFFF;
  --border:   #E8E2D0;
  --border-soft: #F1ECDC;
  --ink:      #14213D;
  --ink-soft: #3D4A66;
  --muted:    #6F7A92;
  --muted-2:  #98A0B5;

  --shadow-xs: 0 1px 2px rgba(14, 26, 53, 0.05);
  --shadow-sm: 0 1px 2px rgba(14, 26, 53, 0.04), 0 1px 3px rgba(14, 26, 53, 0.06);
  --shadow-md: 0 4px 12px rgba(14, 26, 53, 0.06), 0 12px 32px rgba(14, 26, 53, 0.08);
  --shadow-lg: 0 18px 48px rgba(14, 26, 53, 0.12);
  --shadow-xl: 0 32px 80px rgba(14, 26, 53, 0.18);

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;

  /* Fraunces variable: substantive premium serif, NOT airy */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 48px);

  --ease-smooth: cubic-bezier(.22, 1, .36, 1);
  --ease-snap: cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease-snap); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--narrow {
  max-width: var(--container-narrow);
}

::selection { background: var(--gold-200); color: var(--navy-900); }

/* ============================================================
   TYPOGRAPHY — Fraunces for display, Manrope for body
   Premium feel: substantive, confident, NOT airy
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}
h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
}
h4 { font-size: clamp(18px, 1.4vw, 21px); font-weight: 500; }
h5 { font-size: 14px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-family: var(--font-body); color: var(--gold-700); }

/* Italic accent — used SPARINGLY for emphasis only */
.accent-italic {
  color: var(--gold-700);
  font-weight: 500;
}
.section--navy .accent-italic { color: var(--gold-500); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold-600);
}
.section--navy .eyebrow { color: var(--gold-500); }
.section--navy .eyebrow::before { background: var(--gold-500); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  z-index: 100;
  transition: width .1s linear;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,0.78);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}
.topbar a { color: rgba(255,255,255,0.78); }
.topbar a:hover { color: var(--gold-500); }
.topbar__left { display: flex; gap: 24px; align-items: center; }
.topbar__left span, .topbar__left a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__right { display: flex; gap: 22px; align-items: center; }
.topbar__lang { display: inline-flex; gap: 10px; padding-left: 22px; border-left: 1px solid rgba(255,255,255,0.18); }
.topbar__lang button {
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  padding: 0;
  font-weight: 600;
  transition: color .2s;
}
.topbar__lang button:hover { color: var(--gold-400); }
.topbar__lang button.is-active { color: var(--gold-500); }

@media (max-width: 720px) {
  .topbar__left span:not(:first-child) { display: none; }
  .topbar__lang { display: none; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 245, 0.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(232, 226, 208, 0.5);
  transition: box-shadow .3s, background .3s;
}
.site-header.is-scrolled {
  background: rgba(253, 251, 245, 0.96);
  box-shadow: 0 1px 0 rgba(14, 26, 53, 0.04), 0 8px 24px rgba(14, 26, 53, 0.04);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 88px;
  gap: 32px;
}
@media (max-width: 720px) { .nav { height: 72px; } }
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img {
  height: 42px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  transition: transform .4s var(--ease-smooth);
}
@media (max-width: 720px) { .nav__brand img { height: 34px; } }
.nav__brand:hover img { transform: scale(1.02); }

.nav__menu {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-600);
  transition: width .35s var(--ease-smooth);
}
.nav__menu a:hover::after,
.nav__menu a.is-active::after { width: 100%; }
.nav__menu a:hover, .nav__menu a.is-active { color: var(--gold-700); }

.nav__actions { display: flex; gap: 12px; align-items: center; }
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .2s;
}
.nav__toggle:hover { background: rgba(24, 43, 82, 0.06); }
.nav__toggle span {
  display: block;
  position: relative;
  width: 20px; height: 2px;
  background: var(--navy-800);
  transition: all .3s var(--ease-snap);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: '';
  position: absolute; left: 0;
  width: 20px; height: 2px;
  background: var(--navy-800);
  transition: all .3s var(--ease-snap);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }

body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
}

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity .35s var(--ease-smooth), transform .35s var(--ease-smooth), visibility .35s;
  padding: 100px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
body.menu-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__menu li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav__menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy-900);
  letter-spacing: -0.015em;
  transition: color .2s, padding .25s;
}
.mobile-nav__menu li a:hover, .mobile-nav__menu li a.is-active {
  color: var(--gold-700);
  padding-left: 14px;
}
.mobile-nav__menu li a::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all .3s var(--ease-smooth);
}
.mobile-nav__menu li a:hover::after { opacity: 0.6; transform: translateX(0); }
.mobile-nav__actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav__contact {
  margin-top: auto;
  padding-top: 32px;
  font-size: 13px;
  color: var(--muted);
}
.mobile-nav__contact a { color: var(--navy-800); font-weight: 600; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease-smooth);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--navy-800);
  color: var(--white);
  border: 1px solid var(--navy-800);
}
.btn--primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--gold-600);
  color: var(--white);
  border: 1px solid var(--gold-600);
}
.btn--gold:hover {
  background: var(--gold-700);
  border-color: var(--gold-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1px solid rgba(24, 43, 82, 0.2);
}
.btn--ghost:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}
.btn--white {
  background: var(--white);
  color: var(--navy-800);
  border: 1px solid var(--white);
}
.btn--white:hover {
  background: var(--gold-100);
  border-color: var(--gold-100);
}
.btn--text {
  padding: 8px 0;
  color: var(--navy-800);
  font-weight: 600;
  position: relative;
}
.btn--text::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  transition: transform .3s var(--ease-smooth);
}
.btn--text:hover { color: var(--gold-700); }
.btn--text:hover::after { transform: translateX(4px); }
.section--navy .btn--text { color: var(--white); }
.section--navy .btn--text:hover { color: var(--gold-500); }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 14.5px; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { position: relative; }
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--paper-2 { background: var(--paper-2); }
.section--navy {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.86);
}
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, 0.7); }
.section--navy .lead { color: rgba(255, 255, 255, 0.78); }

.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 800px) {
  .section__head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
}
.section__title { margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 148, 95, 0.06), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(31, 53, 99, 0.04), transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__content { position: relative; }
.hero h1 { margin-top: 28px; }
.hero__lead {
  margin-top: 28px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero__credentials {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero__credentials span { display: inline-flex; align-items: center; gap: 10px; }
.hero__credentials span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold-600);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual svg { width: 100%; height: 100%; display: block; }
.hero__badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--white);
  padding: 20px 26px;
  border-left: 3px solid var(--gold-600);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  border-radius: var(--radius-md);
}
@media (max-width: 900px) { .hero__badge { left: 16px; } }
.hero__badge .num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.025em;
}
.hero__badge .num em {
  color: var(--gold-700);
  font-weight: 500;
}
.hero__badge p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Floating ambient elements */
.hero__decor {
  position: absolute;
  width: 200px; height: 200px;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
}
.hero__decor--1 { top: 10%; left: 45%; }
.hero__decor--2 { bottom: 8%; right: 8%; width: 120px; height: 120px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.trust__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.trust__label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
}
.trust__items {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  font-size: 13.5px;
}
.trust__items span { display: inline-flex; align-items: center; gap: 10px; }
.trust__items svg { stroke: var(--gold-500); width: 17px; height: 17px; flex-shrink: 0; }

@media (max-width: 720px) {
  .trust__items { gap: 18px; font-size: 12.5px; }
  .trust__label { width: 100%; }
}

/* ============================================================
   ENERGY LABEL — official EU/Dutch design
   ============================================================ */
.energy-label {
  display: inline-flex;
  align-items: center;
  background: var(--label-a);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  padding: 7px 8px 7px 14px;
  letter-spacing: 0.01em;
  position: relative;
  border-radius: 2px 0 0 2px;
}
.energy-label::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 14px;
  border-color: transparent transparent transparent var(--label-a);
}
.energy-label__letter {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  margin-right: 6px;
  padding: 2px 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
}
.energy-label__text {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.95;
}

/* Pill variant for badges in card visuals */
.energy-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--label-a);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 150, 57, 0.3);
  padding: 0;
  overflow: hidden;
  letter-spacing: 0.04em;
}
.energy-pill__letter {
  background: rgba(0, 0, 0, 0.15);
  padding: 6px 9px;
  font-size: 14px;
  font-weight: 800;
}
.energy-pill__text {
  padding: 6px 10px 6px 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) { .projects { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects { grid-template-columns: 1fr; gap: 20px; } }

.project {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .4s var(--ease-smooth);
  text-decoration: none;
  color: inherit;
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}
.project__visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy-900);
}
.project__visual svg {
  width: 100%; height: 100%;
  display: block;
  transition: transform .8s var(--ease-smooth);
}
.project:hover .project__visual svg { transform: scale(1.04); }

.project__status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(253, 251, 245, 0.95);
  color: var(--navy-800);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.project__status--live { background: var(--gold-600); color: var(--white); }
.project__status--closed { background: var(--navy-800); color: var(--white); }

.project__body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.project__location {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 10px;
}
.project__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
.project__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 22px;
  flex: 1;
  line-height: 1.55;
}

.project__energy {
  margin-bottom: 18px;
}

.project__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.project__stat .lbl {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.project__stat .val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-800);
  letter-spacing: -0.015em;
}
.project__stat .val em {
  color: var(--gold-700);
  font-weight: 500;
}

.project__progress { display: flex; flex-direction: column; gap: 8px; }
.project__progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.project__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500));
  border-radius: 2px;
  width: 0;
}
.project__progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.project__progress-meta strong { color: var(--navy-800); font-weight: 600; }

.projects-cta { margin-top: 56px; text-align: center; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; gap: 48px; } }

.steps-list { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
  counter-increment: step;
  transition: padding-left .3s var(--ease-smooth);
}
.step:hover { padding-left: 8px; }
.step:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.step__num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
  letter-spacing: -0.025em;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { color: var(--ink); margin-bottom: 10px; font-size: 22px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }
.section--navy .step h3 { color: var(--white); }
.section--navy .step p { color: rgba(255, 255, 255, 0.7); }

.steps-visual {
  position: relative;
  aspect-ratio: 1/1.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.steps-visual svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stats > .stat:last-child { border-right: none; }
@media (max-width: 800px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .stat { padding: 36px 20px; }
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.stat__num em {
  color: var(--gold-700);
  font-weight: 500;
}
.stat__lbl {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.stats-note {
  text-align: center;
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__visual svg { width: 100%; height: 100%; display: block; }
.about__shield {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 156px;
  height: 156px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.25;
  color: var(--navy-800);
  font-size: 15px;
  padding: 18px;
}
.about__shield strong {
  display: block;
  font-style: normal;
  font-size: 38px;
  color: var(--gold-700);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 540px) {
  .about__shield { width: 120px; height: 120px; top: -16px; right: -16px; font-size: 13px; }
  .about__shield strong { font-size: 30px; }
}

.about__values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 540px) { .about__values { grid-template-columns: 1fr; } }
.value h4 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-700);
  margin-bottom: 6px;
  font-weight: 500;
}
.value p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(36px, 5vw, 72px);
}
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }

.faq-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-800);
  transition: color .25s;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--gold-700); }
.faq-q__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--navy-300);
  border-radius: 50%;
  transition: all .3s;
}
.faq-q__icon::before, .faq-q__icon::after {
  content: '';
  position: absolute;
  background: var(--navy-800);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}
.faq-q__icon::before { width: 10px; height: 1px; }
.faq-q__icon::after { width: 1px; height: 10px; }
.faq-item.is-open .faq-q__icon {
  background: var(--gold-600);
  border-color: var(--gold-600);
}
.faq-item.is-open .faq-q__icon::before { background: var(--white); }
.faq-item.is-open .faq-q__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-smooth);
}
.faq-a-inner { padding: 0 0 26px; max-width: 64ch; }
.faq-a-inner p { font-size: 15px; line-height: 1.7; color: var(--muted); margin: 0; }
.faq-item.is-open .faq-a { max-height: 500px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 148, 95, 0.08), transparent 60%);
  pointer-events: none;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) { .newsletter__inner { grid-template-columns: 1fr; gap: 32px; } }
.newsletter h2 { color: var(--white); margin-top: 14px; }
.newsletter p { color: rgba(255, 255, 255, 0.7); max-width: 48ch; }

.newsletter__form {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 5px;
  transition: border-color .3s;
}
.newsletter__form:focus-within { border-color: var(--gold-500); }
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 14px 18px;
  font-size: 15px;
  outline: none;
  min-width: 0;
}
.newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.newsletter__note { margin-top: 16px; font-size: 12.5px; color: rgba(255, 255, 255, 0.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  font-size: 14.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer__brand img {
  height: 36px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 32ch;
  line-height: 1.6;
}
.footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
  margin: 0 0 20px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 11px; }
.footer__col a { color: rgba(255, 255, 255, 0.7); transition: color .2s; }
.footer__col a:hover { color: var(--gold-500); }
.footer__contact p { margin: 0 0 10px; color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.6; }
.footer__contact a { color: rgba(255, 255, 255, 0.85); }
.footer__contact a:hover { color: var(--gold-500); }

.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transition: all .25s;
}
.footer__socials a:hover { background: var(--gold-600); border-color: var(--gold-600); transform: translateY(-2px); }
.footer__socials svg { width: 14px; height: 14px; fill: rgba(255, 255, 255, 0.7); transition: fill .2s; }
.footer__socials a:hover svg { fill: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12.5px;
}
.footer__bottom ul { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-500); }

/* ============================================================
   PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(72px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(184, 148, 95, 0.06), transparent 50%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { margin-top: 22px; }
.page-hero p { margin-top: 24px; font-size: clamp(16px, 1.2vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 60ch; }

.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 4px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold-700); }
.breadcrumb span { color: var(--gold-700); }

/* ============================================================
   FORMS (login, register, contact)
   ============================================================ */
.form-page {
  min-height: calc(100vh - 88px - 38px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
@media (max-width: 900px) { .form-page { grid-template-columns: 1fr; min-height: auto; } }

.form-page__form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) var(--gutter);
  background: var(--paper);
}
.form-page__form {
  width: 100%;
  max-width: 440px;
}
.form-page__visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: var(--navy-900);
}
@media (max-width: 900px) { .form-page__visual { min-height: 320px; order: -1; } }
.form-page__visual svg { width: 100%; height: 100%; display: block; position: absolute; inset: 0; }
.form-page__visual-overlay {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 60px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  min-height: 400px;
}
.form-page__visual-overlay h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 44px);
  max-width: 14ch;
}
.form-page__visual-overlay p { color: rgba(255, 255, 255, 0.78); max-width: 38ch; margin-top: 16px; }
.form-page__visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.form-page__visual-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-500);
  letter-spacing: -0.02em;
  line-height: 1;
}
.form-page__visual-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

.form-page__title { margin-bottom: 36px; }
.form-page__title h1 { font-size: clamp(32px, 3.6vw, 44px); margin-bottom: 12px; }
.form-page__title p { color: var(--muted); margin: 0; }

.field { margin-bottom: 18px; position: relative; }
.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(184, 148, 95, 0.12);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field--row > * { margin: 0; }

.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.field-check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--gold-600); flex-shrink: 0; }

.form-foot {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
}
.form-foot a { color: var(--navy-800); font-weight: 600; }
.form-foot a:hover { color: var(--gold-700); }

.form-link {
  font-size: 13px;
  color: var(--gold-700);
  font-weight: 600;
  transition: color .2s;
}
.form-link:hover { color: var(--gold-800); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-alert {
  padding: 14px 16px;
  background: rgba(184, 148, 95, 0.08);
  border-left: 3px solid var(--gold-600);
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.form-alert strong { color: var(--navy-800); }

/* ============================================================
   CONTENT (for text-heavy pages)
   ============================================================ */
.prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  margin: 48px 0 18px;
  color: var(--ink);
}
.prose h3 {
  font-size: clamp(20px, 2vw, 24px);
  margin: 36px 0 14px;
  color: var(--ink);
}
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--gold-700); border-bottom: 1px solid var(--gold-300); transition: all .2s; }
.prose a:hover { color: var(--gold-800); border-color: var(--gold-700); }

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-cards { display: grid; gap: 16px; margin-top: 32px; }
.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  align-items: center;
  transition: all .3s var(--ease-smooth);
}
.contact-card:hover { border-color: var(--gold-300); transform: translateX(2px); }
.contact-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg { width: 20px; height: 20px; stroke: var(--gold-700); }
.contact-card__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card__val { font-size: 16px; color: var(--navy-800); font-weight: 600; }
.contact-card__val a { color: inherit; }
.contact-card__val a:hover { color: var(--gold-700); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-smooth), transform .9s var(--ease-smooth);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.w-full { width: 100%; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  display: block;
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all .4s var(--ease-smooth);
}
.service-card:hover {
  border-color: var(--gold-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .service-card { padding: 32px 28px; }
  .service-card h3 { font-size: 22px; }
}

/* Hide login-page only styles since we no longer have those pages */

/* ============================================================
   REVEAL-X ANIMATIONS (slide-in from left / right)
   ============================================================ */
.reveal-x, .reveal-x-r {
  opacity: 0;
  transition: opacity .9s var(--ease-smooth), transform .9s var(--ease-smooth);
  will-change: opacity, transform;
}
.reveal-x { transform: translateX(-40px); }
.reveal-x-r { transform: translateX(40px); }
.reveal-x.is-visible, .reveal-x-r.is-visible { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x, .reveal-x-r {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   HERO SLIDER (image carousel with crossfade)
   ============================================================ */
.hero--slider {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-slides {
  position: absolute; inset: 0; z-index: 1;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease-smooth);
  background-color: var(--navy-900); /* fallback */
}
.hero-slide.is-active { opacity: 1; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(8,18,42,0.88) 0%, rgba(8,18,42,0.65) 45%, rgba(8,18,42,0.35) 100%);
}
.hero--slider .container { position: relative; z-index: 2; width: 100%; }
.hero--slider .hero__content { color: var(--white); max-width: 720px; }
.hero--slider h1 { color: var(--white); }
.hero--slider .hero__lead { color: rgba(255,255,255,0.85); }
.hero--slider .eyebrow { color: var(--gold-500); }
.hero--slider .hero__credentials { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.hero--slider .hero__credentials span::before { background: var(--gold-500); }

.hero-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 36px; height: 3px;
  background: rgba(255,255,255,0.3);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, width .3s;
}
.hero-dot.is-active { background: var(--gold-500); width: 56px; }

@media (max-width: 900px) {
  .hero--slider { min-height: 80vh; }
  .hero--slider .hero__lead { max-width: 100%; }
}

/* ============================================================
   OVER-ONS SPLIT (photo left, text right)
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.about-split__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}
.about-split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-split__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  display: flex; gap: 12px; align-items: center;
  box-shadow: var(--shadow-md);
}
.about-split__badge strong { font-size: 28px; line-height: 1; }
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split__media { aspect-ratio: 3/2; }
}

/* ============================================================
   USP NUMBERED POINTS (3 cards 01/02/03)
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  position: relative;
  transition: all .4s var(--ease-smooth);
}
.usp-card:hover {
  border-color: var(--gold-300);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.usp-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-700);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold-500);
}
.usp-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.3;
}
.usp-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) { .usp-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ============================================================
   STATS ROW (count-up animation)
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__value .accent-italic { color: var(--gold-700); }
.stat-item__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ============================================================
   SERVICE CARDS WITH PHOTOS
   ============================================================ */
.service-card--photo {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: all .4s var(--ease-smooth);
}
.service-card--photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.service-card--photo .service-card__photo {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.service-card--photo .service-card__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(8,18,42,0.5));
}
.service-card--photo .service-card__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease-smooth);
}
.service-card--photo:hover .service-card__photo img { transform: scale(1.05); }
.service-card--photo .service-card__body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex; flex-direction: column;
}
.service-card--photo h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--ink);
}
.service-card--photo p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 18px;
  flex: 1;
}
.service-card--photo .service-card__cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   PROCESS STEPS WITH CONNECTING LINES
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-300), var(--gold-300), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-700);
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px var(--cream);
}
.section--cream .process-step__num { box-shadow: 0 0 0 8px var(--cream); }
.section--paper-2 .process-step__num { box-shadow: 0 0 0 8px var(--paper-2); }
.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--ink);
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 20px; }
  .process-grid::before { display: none; }
}
@media (max-width: 580px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PORTFOLIO TILES (6-grid with dark gradient overlay)
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-tile {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  background-color: var(--navy-800);
  transition: transform .4s var(--ease-smooth);
}
.portfolio-tile:hover { transform: translateY(-4px); }
.portfolio-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease-smooth);
}
.portfolio-tile:hover img { transform: scale(1.08); }
.portfolio-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,42,0.92) 0%, rgba(8,18,42,0.4) 45%, rgba(8,18,42,0.1) 100%);
  pointer-events: none;
}
.portfolio-tile__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--white);
}
.portfolio-tile__tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 10px;
}
.portfolio-tile__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 4px;
  color: var(--white);
}
.portfolio-tile__loc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin: 0;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TIPS MARQUEE (auto-scroll horizontal)
   ============================================================ */
.marquee {
  overflow: hidden;
  position: relative;
  margin: 0 -24px;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
  mask-image: linear-gradient(to right, transparent, black 80px, black calc(100% - 80px), transparent);
}
.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.tip-card {
  flex: 0 0 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .3s;
}
.tip-card:hover { border-color: var(--gold-300); }
.tip-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  background-size: cover;
  background-position: center;
  position: relative;
}
.tip-card__category {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.92);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
}
.tip-card__body { padding: 18px 20px 22px; }
.tip-card__date {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.tip-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 8px;
  font-weight: 500;
}
.tip-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   GOOGLE REVIEWS MARQUEE
   ============================================================ */
.marquee--reviews .marquee__track { animation-duration: 50s; animation-direction: reverse; }
.review-card {
  flex: 0 0 360px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.review-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.review-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin: 0;
}
.review-card__meta {
  font-size: 11px;
  color: var(--muted);
  margin: 2px 0 0;
}
.review-card__google {
  width: 18px; height: 18px;
  margin-left: auto;
}
.review-card__stars {
  display: flex; gap: 2px;
  color: #F59E0B;
  margin-bottom: 10px;
}
.review-card__stars svg { width: 14px; height: 14px; }
.review-card__text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  background: var(--gold-50);
  color: var(--gold-700);
  border-radius: 100px;
}

/* ============================================================
   CALCULATOR WIZARD
   ============================================================ */
.section--calc { background: var(--cream); }
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: 0 24px 60px rgba(8,18,42,0.12);
  position: relative;
}
.calc-progress {
  display: flex; gap: 6px;
  margin-bottom: 28px;
}
.calc-progress__bar {
  flex: 1; height: 4px;
  background: var(--border);
  border-radius: 100px;
  transition: background .4s;
}
.calc-progress__bar.is-active { background: var(--gold-500); }
.calc-step { display: none; }
.calc-step.is-active { display: block; animation: stepFadeIn .4s var(--ease-smooth); }
@keyframes stepFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.calc-step__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 10px;
}
.calc-step__title {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 20px;
  font-weight: 500;
}
.calc-options { display: grid; gap: 10px; }
.calc-option {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--paper);
  transition: all .25s;
}
.calc-option:hover { border-color: var(--gold-300); background: var(--white); }
.calc-option.is-selected { border-color: var(--gold-700); background: var(--gold-50); }
.calc-option__check {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.calc-option.is-selected .calc-option__check {
  border-color: var(--gold-700);
  background: var(--gold-700);
}
.calc-option.is-selected .calc-option__check::after {
  content: ""; width: 8px; height: 8px;
  background: var(--white); border-radius: 50%;
}
.calc-option__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.calc-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
  margin-bottom: 12px;
}
.calc-input:focus { outline: none; border-color: var(--gold-500); }
.calc-actions {
  display: flex; gap: 12px; justify-content: space-between;
  margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border);
}
.calc-actions .btn--text { color: var(--muted); }

/* ============================================================
   LOGIN PAGE (klantenportaal)
   ============================================================ */
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.login-page__brand {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.login-page__brand::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,169,114,0.15), transparent 50%);
}
.login-page__brand > * { position: relative; z-index: 1; }
.login-page__brand-logo img { height: 28px; filter: brightness(0) invert(1); opacity: 0.9; }
.login-page__brand-content h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  color: var(--white);
  margin: 24px 0 16px;
  font-weight: 500;
  line-height: 1.2;
}
.login-page__brand-content p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}
.login-page__brand-features { display: grid; gap: 14px; }
.login-page__brand-feature {
  display: flex; gap: 12px; align-items: flex-start;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}
.login-page__brand-feature svg {
  width: 18px; height: 18px;
  stroke: var(--gold-500);
  flex-shrink: 0; margin-top: 2px;
}
.login-page__brand-footer {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: auto;
}
.login-page__form-wrap {
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column; justify-content: center;
}
.login-page__form { max-width: 420px; margin: 0 auto; width: 100%; }
.login-page__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted);
  text-decoration: none;
  margin-bottom: 40px;
}
.login-page__back:hover { color: var(--ink); }
.login-page__form h1 {
  font-size: clamp(28px, 3vw, 36px);
  margin: 0 0 8px;
  font-weight: 500;
}
.login-page__form > p { color: var(--muted); margin: 0 0 36px; }
.login-page__field { margin-bottom: 18px; }
.login-page__field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}
.login-page__field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
}
.login-page__field input:focus { outline: none; border-color: var(--gold-500); }
.login-page__row {
  display: flex; justify-content: space-between; align-items: center;
  margin: 8px 0 24px;
  font-size: 13px;
}
.login-page__row label { display: flex; gap: 8px; align-items: center; cursor: pointer; color: var(--muted); }
.login-page__row a { color: var(--gold-700); text-decoration: none; font-weight: 600; }
.login-page__cta { margin-bottom: 24px; }
.login-page__sep {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0;
  position: relative;
}
.login-page__sep::before, .login-page__sep::after {
  content: ""; position: absolute; top: 50%;
  width: calc(50% - 30px); height: 1px;
  background: var(--border);
}
.login-page__sep::before { left: 0; }
.login-page__sep::after { right: 0; }
.login-page__signup { text-align: center; font-size: 14px; color: var(--muted); }
.login-page__signup a { color: var(--gold-700); font-weight: 600; text-decoration: none; }

@media (max-width: 900px) {
  .login-page { grid-template-columns: 1fr; }
  .login-page__brand { display: none; }
}

/* ============================================================
   TOPBAR — add klantenportaal link
   ============================================================ */
.topbar__right .topbar-portal {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold-500);
  font-weight: 600;
  transition: color .25s;
}
.topbar__right .topbar-portal:hover { color: var(--gold-50); }

/* Section with cream + calculator backgrounds */
.section--calc-bg { background: var(--cream); }

/* Calculator visual side */
.calc-visual {
  position: relative;
}
.calc-visual__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.calc-visual__badge {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-visual { display: none; }
}


/* ============================================================
   CROWDREALESTATE-STYLE HEADER (logo + nav + login/register)
   ============================================================ */
.cr-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
body.scrolled .cr-header { box-shadow: 0 1px 0 rgba(8,18,42,0.06), 0 8px 24px rgba(8,18,42,0.05); }
.cr-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 0;
}
.cr-header__brand { flex-shrink: 0; }
.cr-header__brand img { height: 32px; display: block; }
.cr-header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cr-header__nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0;
  transition: color .2s;
  padding: 8px 0;
  position: relative;
}
.cr-header__nav a:hover { color: var(--gold-700); }
.cr-header__nav a.is-active { color: var(--gold-700); }
.cr-header__nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
}
.cr-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cr-header__lang {
  display: flex;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}
.cr-header__lang button {
  background: none; border: none; padding: 6px 8px; cursor: pointer;
  color: var(--muted); font-weight: 600; font-size: 12px;
  transition: color .2s;
}
.cr-header__lang button:hover, .cr-header__lang button.is-active { color: var(--ink); }
.cr-header__auth {
  display: flex;
  gap: 8px;
}
.cr-header__auth .btn {
  padding: 9px 18px;
  font-size: 13px;
}
.cr-header__toggle {
  display: none;
  background: none; border: none; padding: 8px; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
}
.cr-header__toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: all .25s;
}
body.menu-open .cr-header__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .cr-header__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .cr-header__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1100px) {
  .cr-header__nav, .cr-header__lang { display: none; }
  .cr-header__toggle { display: flex; }
  .cr-header__auth .btn:not(.btn--primary) { display: none; }
}
@media (max-width: 580px) {
  .cr-header__auth { display: none; }
}

/* ============================================================
   CR-HERO (split layout — text left, photo right)
   ============================================================ */
.cr-hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px);
  background:
    radial-gradient(circle at 20% 80%, rgba(201,169,114,0.08), transparent 50%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.cr-hero::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,114,0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cr-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cr-hero__content { color: var(--white); }
.cr-hero__content .eyebrow {
  color: var(--gold-500);
  display: inline-block;
  margin-bottom: 24px;
}
.cr-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}
.cr-hero h1 .accent-italic { color: var(--gold-500); }
.cr-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin: 24px 0 0;
}
.cr-hero__regline {
  margin: 32px 0 0;
  max-width: 540px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cr-hero__actions {
  display: flex; gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cr-hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--navy-800);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.cr-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cr-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,42,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.cr-hero__badge {
  position: absolute;
  bottom: 28px; left: 28px;
  z-index: 2;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  display: flex; gap: 14px; align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.cr-hero__badge strong {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}
.cr-hero__badge span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}
.cr-hero__floater {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 100px;
  display: flex; gap: 8px; align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-950);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cr-hero__floater::before {
  content: "";
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(16,185,129,0.1); }
}

@media (max-width: 900px) {
  .cr-hero__grid { grid-template-columns: 1fr; }
  .cr-hero__media { aspect-ratio: 16/10; max-width: 100%; }
  .cr-hero__regline { max-width: 100%; }
}

/* ============================================================
   CR-WELKOM (welcome section with intro)
   ============================================================ */
.cr-welkom {
  padding: 80px 0 40px;
  text-align: center;
}
.cr-welkom h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.cr-welkom p {
  font-size: 17px;
  color: var(--muted);
  max-width: 680px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* ============================================================
   CR-PROJECT CARDS (3 horizontal cards with progress bar)
   ============================================================ */
.cr-projects {
  padding: 20px 0 80px;
}
.cr-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cr-project {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all .35s var(--ease-smooth);
}
.cr-project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.cr-project__media {
  aspect-ratio: 16/10;
  background-color: var(--navy-900);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cr-project__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,18,42,0.2) 0%, transparent 50%);
}
.cr-project__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease-smooth);
}
.cr-project:hover .cr-project__media img { transform: scale(1.05); }
.cr-project__status-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}
.cr-project__status-tag--live {
  background: var(--gold-500);
  color: var(--navy-950);
}
.cr-project__body {
  padding: 24px;
  flex: 1; display: flex; flex-direction: column;
}
.cr-project__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 6px;
}
.cr-project__subtitle {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
  line-height: 1.5;
}

/* Energy label pill (ABCDE with A highlighted) */
.cr-energy {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.cr-energy__cell {
  width: 28px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  color: var(--white);
  border-radius: 3px;
  letter-spacing: 0;
}
.cr-energy__cell--a { background: #00A651; font-size: 14px; transform: scale(1.15); box-shadow: 0 2px 6px rgba(0,166,81,0.35); }
.cr-energy__cell--b { background: #50B848; opacity: 0.45; }
.cr-energy__cell--c { background: #AED136; opacity: 0.45; color: var(--navy-950); }
.cr-energy__cell--d { background: #FFF200; opacity: 0.45; color: var(--navy-950); }
.cr-energy__cell--e { background: #FDB913; opacity: 0.45; color: var(--navy-950); }

.cr-project__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.cr-project__meta-item .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.cr-project__meta-item .val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.cr-project__progress {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cr-project__progress-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.cr-project__progress-row strong {
  color: var(--ink);
  font-size: 14px;
}
.cr-project__progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.cr-project__progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold-500), var(--gold-700));
  border-radius: 100px;
  transition: width 1.2s var(--ease-smooth);
}

.cr-projects-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 1000px) {
  .cr-projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cr-projects-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CR-ABOUT (image left, text right block)
   ============================================================ */
.cr-about {
  padding: 100px 0;
  background: var(--cream);
}
.cr-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cr-about__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-900);
  box-shadow: var(--shadow-lg);
}
.cr-about__content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.15;
}
.cr-about__content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin: 0 0 18px;
}
.cr-about__content p:last-of-type { margin-bottom: 28px; }

@media (max-width: 900px) {
  .cr-about__grid { grid-template-columns: 1fr; }
  .cr-about__media { aspect-ratio: 16/10; }
}

/* ============================================================
   CR-CTA email signup (centered)
   ============================================================ */
.cr-cta {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.cr-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 12px;
}
.cr-cta__lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cr-cta__form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 8px;
}
.cr-cta__form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  background: var(--paper);
}
.cr-cta__form input:focus {
  outline: none; border-color: var(--gold-500);
  background: var(--white);
}
.cr-cta__form button {
  flex-shrink: 0;
}
.cr-cta__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
}

@media (max-width: 580px) {
  .cr-cta__form { flex-direction: column; }
}

/* ============================================================
   CR-PROCESS (3 numbered steps with image side)
   ============================================================ */
.cr-process {
  padding: 100px 0;
  background: var(--cream);
}
.cr-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cr-process__steps {
  display: grid;
  gap: 32px;
}
.cr-process__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.cr-process__step-num {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.cr-process__step h3 {
  font-size: 22px;
  margin: 8px 0 8px;
  color: var(--ink);
}
.cr-process__step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.cr-process__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-900);
  box-shadow: var(--shadow-lg);
}
.cr-process__cta {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .cr-process__grid { grid-template-columns: 1fr; }
  .cr-process__media { aspect-ratio: 16/10; order: -1; }
}

/* ============================================================
   CR-STATS (numbers row)
   ============================================================ */
.cr-stats {
  padding: 80px 0;
  background: var(--ink);
  color: var(--white);
}
.cr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.cr-stats__item {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.cr-stats__item:last-child { border-right: none; }
.cr-stats__num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  color: var(--gold-500);
  line-height: 1;
}
.cr-stats__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-weight: 600;
}
.cr-stats__footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 720px) {
  .cr-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 16px 0; }
  .cr-stats__item:nth-child(2n) { border-right: none; }
  .cr-stats__item:nth-last-child(-n+2) { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px; }
}

/* ============================================================
   CR-NEWSLETTER (matches CTA style but slightly different)
   ============================================================ */
.cr-newsletter {
  padding: 80px 0;
  background: var(--paper-2);
  text-align: center;
}
.cr-newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 38px);
  margin: 0 0 12px;
  font-weight: 500;
}
.cr-newsletter p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 28px;
}

/* ============================================================
   CR-CONTACT BAR
   ============================================================ */
.cr-contact {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cr-contact h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  margin: 0 0 8px;
}
.cr-contact p {
  color: var(--muted);
  margin: 0 0 24px;
  font-size: 15px;
}
.cr-contact__links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.cr-contact__links a {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color .2s;
}
.cr-contact__links a:hover { color: var(--gold-700); }
.cr-contact__links a svg {
  width: 18px; height: 18px;
  color: var(--gold-700);
}

/* ============================================================
   REGISTER PAGE (similar to login)
   ============================================================ */
.register-notice {
  background: rgba(201,169,114,0.1);
  border: 1px solid rgba(201,169,114,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--gold-800);
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.register-notice svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  stroke: var(--gold-700);
  margin-top: 2px;
}

