:root {
  /* Base darks */
  --void: #08090b;
  --ink: #0b0d10;
  --ink-2: #101216;
  --surface: #14171d;
  --surface-2: #191d24;
  --surface-3: #1f242d;
  --line: rgba(201, 162, 75, 0.16);
  --line-soft: rgba(240, 235, 224, 0.08);

  /* Text */
  --text: #f4efe6;
  --text-body: #c6c0b4;
  --muted: #8b8578;

  /* Gold accent */
  --gold: #cba24d;
  --gold-hi: #eccd7d;
  --gold-deep: #9c7b32;
  --gold-grad: linear-gradient(135deg, #f2d898 0%, #e7c877 26%, #cba24d 60%, #9c7b32 100%);
  --emerald: #0d3b34;

  --shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 20px 60px rgba(203, 162, 77, 0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text-body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Atmospheric background layers */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60rem 40rem at 8% -6%, rgba(203, 162, 77, 0.14), transparent 60%),
    radial-gradient(52rem 40rem at 96% 4%, rgba(13, 59, 52, 0.34), transparent 60%),
    radial-gradient(48rem 46rem at 50% 118%, rgba(203, 162, 77, 0.08), transparent 60%),
    linear-gradient(180deg, #0b0d10 0%, #0a0b0e 46%, #0b0d10 100%);
  pointer-events: none;
}

/* Fine film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.4;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: rgba(203, 162, 77, 0.28);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 11, 14, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px) saturate(120%);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(9, 10, 13, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  transition: min-height 0.4s var(--ease);
}

.header.scrolled .nav {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #1a140a;
  background: var(--gold-grad);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18) inset, var(--glow-gold);
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--text);
}

.brand-line {
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.desktop-nav a,
.mobile-panel a {
  position: relative;
  border-radius: 999px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 4px;
  height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-panel a:hover,
.mobile-panel a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s var(--ease);
}

.btn svg {
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--gold-grad);
  color: #1a1206;
  box-shadow: var(--glow-gold);
}

/* Sheen sweep */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.7s var(--ease);
}

.btn-primary:hover {
  box-shadow: 0 26px 70px rgba(203, 162, 77, 0.42);
  transform: translateY(-2px);
}

.btn-primary:hover::after {
  left: 160%;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-hi);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.btn-text::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-grad);
  transition: width 0.3s var(--ease);
}

.btn-text:hover::after {
  width: 46px;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-grad);
}

h1,
h2,
h3,
.display {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.03;
  color: var(--text);
}

h1 {
  margin: 22px 0 26px;
  font-size: clamp(48px, 7.4vw, 92px);
  max-width: 900px;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4.8vw, 60px);
}

h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

p {
  margin: 0;
}

.lead {
  color: var(--text-body);
  font-size: clamp(18px, 1.7vw, 22px);
  max-width: 660px;
  line-height: 1.6;
}

/* ---------- Hero ---------- */
.hero {
  padding: 108px 0 72px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -140px auto auto 48%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(203, 162, 77, 0.22), transparent 66%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.6));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 780px;
}

.hero-copy h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
}

.hero-copy h1 .word.in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- Trust marquee ---------- */
.trust-row {
  position: relative;
  margin-top: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  color: var(--text-body);
  font-size: 14.5px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(203, 162, 77, 0.7);
  flex: none;
}

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

.menu-open .trust-track,
.trust-row:hover .trust-track {
  animation-play-state: paused;
}

/* ---------- Visual card ---------- */
.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 540px;
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(203, 162, 77, 0.6), transparent 40%, transparent 60%, rgba(203, 162, 77, 0.3));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.visual-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  background: rgba(12, 14, 18, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  color: var(--text-body);
  font-size: 14.5px;
  backdrop-filter: blur(18px);
}

.visual-note strong {
  display: block;
  color: var(--gold-hi);
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 6px;
}

/* ---------- Sections ---------- */
.section {
  padding: 104px 0;
  position: relative;
}

.section.compact {
  padding: 74px 0;
}

.section.dark {
  color: var(--text);
  background:
    radial-gradient(50rem 30rem at 80% -10%, rgba(203, 162, 77, 0.12), transparent 60%),
    linear-gradient(180deg, #0a0c0f, #070809);
  border-block: 1px solid var(--line);
}

.section.soft {
  background:
    radial-gradient(40rem 30rem at 12% 0%, rgba(203, 162, 77, 0.06), transparent 60%),
    linear-gradient(180deg, #101318, #0d0f13);
  border-block: 1px solid var(--line-soft);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

/* ---------- Grids & cards ---------- */
.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  min-height: 100%;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 162, 77, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(203, 162, 77, 0.12);
}

.card:hover::before {
  opacity: 1;
}

.card p,
.text-block p,
.case-card p,
.service-panel p {
  color: var(--text-body);
}

.card .index,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(203, 162, 77, 0.1);
  border: 1px solid var(--line);
  color: var(--gold-hi);
  font-family: Fraunces, serif;
  font-size: 15px;
  font-weight: 600;
}

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 66px;
  align-items: center;
}

/* ---------- Why comparison ---------- */
.why-section {
  background:
    radial-gradient(40rem 34rem at 18% 20%, rgba(203, 162, 77, 0.1), transparent 60%),
    radial-gradient(40rem 30rem at 92% 80%, rgba(13, 59, 52, 0.4), transparent 60%),
    linear-gradient(180deg, #0c0e12, #0a0b0e);
  border-block: 1px solid var(--line);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.why-visual {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.why-visual::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -110px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 162, 77, 0.16), transparent 70%);
}

.why-visual-head {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

.why-visual-head span,
.why-caption {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.why-visual-head strong {
  color: var(--text);
  font-family: Fraunces, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.route {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

.route + .route {
  margin-top: 16px;
}

.route-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.route-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.route-steps span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.route-muted {
  opacity: 0.62;
}

.route-focus {
  border-color: rgba(203, 162, 77, 0.4);
  background: linear-gradient(135deg, rgba(203, 162, 77, 0.12), rgba(255, 255, 255, 0.02));
}

.route-focus .route-title {
  color: var(--gold-hi);
}

.route-focus .route-steps span {
  border-color: rgba(203, 162, 77, 0.28);
  background: rgba(203, 162, 77, 0.08);
  color: var(--text);
}

.why-caption {
  position: relative;
  margin-top: 20px;
}

.why-copy {
  display: grid;
  gap: 18px;
}

.why-copy p {
  color: var(--text-body);
  font-size: 17px;
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.why-points article {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-points article:hover {
  transform: translateY(-3px);
  border-color: rgba(203, 162, 77, 0.4);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.4);
}

.why-points strong,
.why-points span {
  display: block;
}

.why-points strong {
  margin-bottom: 6px;
  color: var(--text);
}

.why-points span {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Text block lists ---------- */
.text-block {
  display: grid;
  gap: 22px;
}

.text-block ul,
.check-list {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.text-block li,
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-body);
}

.text-block li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at center, var(--gold) 0 3px, transparent 3px);
}

/* ---------- Statement ---------- */
.statement {
  position: relative;
  padding: 52px 54px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(30rem 20rem at 100% 0%, rgba(203, 162, 77, 0.1), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  box-shadow: var(--shadow);
}

.statement::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 28px;
  font-family: Fraunces, serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(203, 162, 77, 0.22);
}

.statement p {
  position: relative;
  color: var(--text);
  font-family: Fraunces, serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.18;
}

/* ---------- Service panels ---------- */
.service-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 34px 20px;
  border-top: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.service-panel:hover {
  background: linear-gradient(90deg, rgba(203, 162, 77, 0.07), transparent 70%);
}

.service-panel:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.service-panel .label {
  color: var(--gold);
  font-family: Fraunces, serif;
  font-size: 26px;
  font-weight: 500;
}

.service-panel h3 {
  margin: 6px 0 0;
}

/* ---------- Steps ---------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 120px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 34px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease);
}

.step:hover {
  background: linear-gradient(90deg, rgba(203, 162, 77, 0.05), transparent 60%);
}

.step .step-number {
  margin: 0;
  width: 64px;
  height: 64px;
  font-size: 20px;
}

.step-number::before {
  content: counter(step, decimal-leading-zero);
}

.muted {
  color: var(--muted);
}

/* ---------- Case cards ---------- */
.case-card {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  border-radius: var(--radius);
  padding: 36px 34px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 162, 77, 0.38);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.case-card p strong {
  color: var(--gold-hi);
}

.case-meta {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Metric strip ---------- */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.metric {
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(203, 162, 77, 0.06), rgba(255, 255, 255, 0.008));
  overflow: hidden;
}

.metric strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metric span {
  color: var(--text-body);
  font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-item.open,
.faq-item:hover {
  border-color: rgba(203, 162, 77, 0.34);
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.faq-question::after {
  content: "";
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 1.5px 12px no-repeat;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-question::after {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: var(--text-body);
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding: 0 26px 24px;
}

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: start;
}

.form {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(30rem 20rem at 100% 0%, rgba(203, 162, 77, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006));
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--text-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 13px 15px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) center,
    calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(203, 162, 77, 0.14);
  outline: 0;
}

.field-error {
  min-height: 18px;
  color: #e28b7a;
  font-size: 13px;
}

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-body);
  font-size: 14px;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-note,
.success-message {
  color: var(--muted);
  font-size: 14px;
}

.success-message {
  display: none;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(203, 162, 77, 0.34);
  border-radius: var(--radius);
  background: rgba(203, 162, 77, 0.1);
  color: var(--gold-hi);
}

.success-message.show {
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(40rem 30rem at 50% -20%, rgba(203, 162, 77, 0.2), transparent 60%),
    linear-gradient(180deg, #0a0c0f, #060708);
  border-top: 1px solid var(--line);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto 0 -40% 0;
  height: 80%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(203, 162, 77, 0.16), transparent 70%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.cta-band h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.cta-band p {
  color: var(--text-body);
  max-width: 620px;
  margin-top: 10px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 72px 0 36px;
  background: linear-gradient(180deg, #070809, #0a0b0e);
  color: var(--text-body);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(150px, 0.5fr));
  gap: 44px;
}

.footer h3 {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer a,
.footer p {
  color: var(--muted);
}

.footer a {
  transition: color 0.25s var(--ease);
}

.footer a:hover {
  color: var(--gold-hi);
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

/* ---------- Floating contact CTA ---------- */
.mobile-sticky {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--glow-gold);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.mobile-sticky.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

/* ---------- Custom cursor ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(203, 162, 77, 0.6);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.cursor-ring.hover {
  width: 58px;
  height: 58px;
  background: rgba(203, 162, 77, 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .desktop-nav,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-panel {
    position: fixed;
    inset: 84px 0 auto;
    display: none;
    background: rgba(9, 10, 13, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .menu-open .mobile-panel {
    display: grid;
    gap: 8px;
  }

  .mobile-panel a {
    border-radius: var(--radius);
    padding: 14px 16px;
  }

  .hero-grid,
  .split,
  .why-grid,
  .section-head,
  .contact-wrap,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .visual-card,
  .visual-card img {
    min-height: 440px;
  }

  .grid.four,
  .grid.three,
  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-panel,
  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-grid {
    gap: 40px;
  }

  .why-visual {
    order: -1;
  }

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

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .brand-line {
    display: none;
  }

  .hero {
    padding: 48px 0 40px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .lead {
    font-size: 17px;
  }

  .section {
    padding: 72px 0;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .metric-strip,
  .why-points,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .visual-card,
  .visual-card img {
    min-height: 380px;
  }

  .card,
  .case-card,
  .form,
  .statement,
  .why-visual {
    padding: 24px;
  }

  .statement {
    padding: 40px 26px;
  }

  .why-visual-head strong {
    font-size: 25px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-sticky {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  body {
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .trust-track {
    animation: none;
  }

  .reveal,
  .hero-copy h1 .word {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .vacancy-body,
  .audience-panel {
    transition: none;
  }
}

/* ================= Fase 2: dubbele doelgroep ================= */

/* Split hero (home) */
.split-hero {
  padding: 92px 0 64px;
  position: relative;
}

.split-hero::before {
  content: "";
  position: absolute;
  inset: -120px auto auto 50%;
  width: 640px;
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(203, 162, 77, 0.16), transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.split-hero-intro {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-bottom: 46px;
}

.split-hero-intro h1 {
  margin: 18px 0 20px;
}

.audience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 42px;
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006));
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.audience-panel.seeker {
  background:
    radial-gradient(30rem 22rem at 80% 0%, rgba(203, 162, 77, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(203, 162, 77, 0.12), rgba(255, 255, 255, 0.01));
  border-color: rgba(203, 162, 77, 0.32);
}

.audience-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(203, 162, 77, 0.55);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  color: var(--gold-hi);
  border: 1px solid var(--line);
  background: rgba(203, 162, 77, 0.08);
}

.audience-body {
  display: grid;
  gap: 12px;
}

.audience-h {
  font-family: Fraunces, serif;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--text);
  line-height: 1.04;
}

.audience-p {
  color: var(--text-body);
  font-size: 16px;
  max-width: 430px;
}

.audience-cta {
  margin-top: auto;
}

.audience-panel .btn {
  pointer-events: none;
}

/* Vacancy filters */
.vacancy-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-body);
  cursor: pointer;
  font-size: 14px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.chip:hover {
  border-color: rgba(203, 162, 77, 0.5);
  color: var(--text);
}

.chip.active {
  background: var(--gold-grad);
  color: #1a1206;
  border-color: transparent;
  font-weight: 600;
}

/* Vacancy cards */
.vacancy-grid {
  display: grid;
  gap: 14px;
}

.vacancy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.vacancy.open,
.vacancy:hover {
  border-color: rgba(203, 162, 77, 0.34);
}

.vacancy.open {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.vacancy-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.vacancy-headline {
  display: grid;
  gap: 8px;
}

.vacancy-title {
  font-family: Fraunces, serif;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--text);
  line-height: 1.1;
}

.vacancy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.vacancy-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-soft);
}

.vacancy-tags .vacancy-salary {
  color: var(--gold-hi);
  border-color: rgba(203, 162, 77, 0.3);
  background: rgba(203, 162, 77, 0.08);
}

.vacancy-toggle {
  flex: none;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 13px 1.6px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 1.6px 13px no-repeat;
  transition: transform 0.3s var(--ease);
}

.vacancy.open .vacancy-toggle {
  transform: rotate(135deg);
}

.vacancy-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.vacancy.open .vacancy-body {
  grid-template-rows: 1fr;
}

.vacancy-body-inner {
  overflow: hidden;
  padding: 4px 28px 0;
}

.vacancy-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 18px 0 24px;
}

.vacancy-cols h4 {
  margin: 0 0 14px;
  font-family: Inter, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.vacancy-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line-soft);
}

.vacancy-empty {
  color: var(--muted);
  margin-top: 22px;
}

.vacancy-empty a {
  color: var(--gold-hi);
  text-decoration: underline;
}

/* File input */
input[type="file"] {
  padding: 13px 14px;
  color: var(--text-body);
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(203, 162, 77, 0.1);
  color: var(--gold-hi);
  cursor: pointer;
  font: inherit;
}

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

  .vacancy-cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .audience-panel {
    padding: 28px 24px;
    min-height: 0;
  }

  .vacancy-head {
    padding: 22px;
  }

  .vacancy-body-inner {
    padding: 4px 22px 0;
  }
}

/* Legal / privacyverklaring */
.legal {
  max-width: 760px;
  margin-inline: auto;
}
.legal-updated {
  margin-bottom: 30px;
}
.legal-block {
  margin-bottom: 34px;
}
.legal-block h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin-bottom: 12px;
}
.legal-block p {
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 12px;
}
.legal-block ul {
  margin: 8px 0 0;
  padding-left: 20px;
}
.legal-block li {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 6px;
  list-style: disc;
}
.legal-block a {
  color: var(--gold);
}

/* Honeypot (anti-spam) — visueel verborgen, niet voor gebruikers */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Foutmelding bij mislukte formulierverzending */
.form-submit-error {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  background: rgba(194, 65, 60, 0.12);
  border: 1px solid rgba(194, 65, 60, 0.42);
  color: #f0c9c3;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Toegankelijkheid: skip-link, zichtbare focus, no-JS fallback */
.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 200;
  background: var(--gold);
  color: #0b0d10;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
}
:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 2px;
}
.noscript-fallback {
  max-width: 640px;
  margin: 90px auto;
  padding: 0 24px;
  text-align: center;
  color: var(--text-body);
  line-height: 1.6;
}
.noscript-brand {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.noscript-nav {
  margin-top: 22px;
}
.noscript-nav a {
  color: var(--gold);
  margin: 0 8px;
  display: inline-block;
}

/* Paginafoto's in de illustratievakken: transparant, volledig zichtbaar, gecentreerd */
.visual-card img[src$=".png"] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px 20px 96px;
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  .visual-card img[src$=".png"] {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .visual-card:hover img[src$=".png"] {
    transform: scale(1.015);
  }
}
@media (max-width: 680px) {
  .visual-card img[src$=".png"] {
    padding: 16px 16px 78px;
  }
}

/* Fijn-afstemming van 3 pagina-visuals: Contact, Over ons (onderste sectie) en Werkwijze.
   Waarden visueel gecontroleerd via een kaart-simulatie; behoudt de globale onderruimte,
   object-fit/position, transparantie, donker kader en tekstkaart. Andere visuals NIET geraakt. */
body[data-page="contact"] .visual-card img[src$=".png"],
body[data-page="werkwijze"] .visual-card img[src$=".png"],
body[data-page="over-ons"] .split .visual-card img[src$=".png"] {
  transform: translate(var(--visual-x, 0px), var(--visual-y, 0px)) scale(var(--visual-scale, 1));
  transform-origin: center center;
}
body[data-page="contact"] .visual-card img[src$=".png"] {
  --visual-scale: 0.96;
  --visual-x: 0px;
  --visual-y: -8px;
}
body[data-page="over-ons"] .split .visual-card img[src$=".png"] {
  --visual-scale: 0.97;
  --visual-x: 0px;
  --visual-y: -6px;
}
body[data-page="werkwijze"] .visual-card img[src$=".png"] {
  --visual-scale: 0.94;
  --visual-x: 0px;
  --visual-y: -12px;
}
@media (prefers-reduced-motion: no-preference) {
  body[data-page="contact"] .visual-card:hover img[src$=".png"],
  body[data-page="werkwijze"] .visual-card:hover img[src$=".png"],
  body[data-page="over-ons"] .split .visual-card:hover img[src$=".png"] {
    transform: translate(var(--visual-x, 0px), var(--visual-y, 0px)) scale(calc(var(--visual-scale, 1) * 1.015));
  }
}
