/* ============================================================
   BLUE COMPASS GROUP — Stylesheet
   Design: Luxury/Refined | Navy · White · Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0f1f3d;
  --navy-mid:   #162847;
  --navy-light: #1e3560;
  --gold:       #b8975a;
  --gold-light: #d4ad72;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --gray-light: #eef0f4;
  --gray:       #8a93a6;
  --text:       #1a2744;
  --text-muted: #6b7690;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-width:  1200px;
  --section-v:  96px;
  --radius:     4px;
  --transition: 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 500; }

p { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }
p + p { margin-top: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Divider ── */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 32px;
}
.gold-line.centered { margin: 20px auto 32px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,151,90,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 31, 61, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-text .brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

/* Language switcher */
.lang-switcher {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.lang-switcher img {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50%;
  cursor: pointer;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 40px 32px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 40%, rgba(184,151,90,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(30,53,96,0.6) 0%, transparent 70%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-text {}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-highlight {
  color: #b8975a;
  font-style: italic;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-logo-card {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.hero-logo-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-logo-card img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

/* ── INTRO SECTION ── */
.intro {
  padding: var(--section-v) 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.stat-block {
  background: var(--off-white);
  padding: 36px 28px;
}

.stat-block:first-child { background: var(--navy); }
.stat-block:first-child .stat-number,
.stat-block:first-child .stat-label { color: var(--white) !important; }
.stat-block:first-child .stat-label { color: rgba(255,255,255,0.55) !important; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.stat-number span {
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ── SERVICES SECTION ── */
.services {
  padding: var(--section-v) 0;
  background: var(--off-white);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.service-card {
  background: var(--white);
  padding: 44px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15,31,61,0.1);
  z-index: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover { color: var(--gold); gap: 10px; }

/* ── WHY SECTION ── */
.why {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-text h2 { color: var(--white); }
.why-text p  { color: rgba(255,255,255,0.6); }

.why-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.why-item:last-child { border-bottom: none; }

.why-item-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 36px;
}

.why-item-content h4 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: 1rem;
}

.why-item-content p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 80px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { font-size: 1.8rem; }

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
}

.footer-m2d {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  text-align: right;
}

.footer-m2d a {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.footer-m2d a:hover { opacity: 1; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,151,90,0.07) 0%, transparent 70%);
}

.page-header-inner { position: relative; z-index: 1; }

.page-header .section-label { display: block; margin-bottom: 16px; }
.page-header h1 { color: var(--white); max-width: 720px; }
.page-header p {
  color: rgba(255,255,255,0.58);
  max-width: 600px;
  margin-top: 20px;
  font-size: 1.05rem;
}

/* ── CONTENT SECTIONS ── */
.content-section {
  padding: var(--section-v) 0;
}

.content-section.bg-off { background: var(--off-white); }
.content-section.bg-navy { background: var(--navy); }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.content-grid.centered { grid-template-columns: 1fr; max-width: 720px; margin: 0 auto; }

/* ── ITEMS LIST (diensten detail) ── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.item-block {
  background: var(--off-white);
  padding: 36px 28px;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.item-block:hover {
  border-left-color: var(--gold);
  background: var(--white);
}

.item-block h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.item-block p { font-size: 0.875rem; }

/* ── CONTACT CTA (page variant) ── */
.page-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,151,90,0.4), transparent);
}

.page-cta h2 { color: var(--white); margin-bottom: 16px; }
.page-cta p  { color: rgba(255,255,255,0.55); margin-bottom: 36px; }

/* ── OVER ONS ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-block {
  background: var(--white);
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
}

.value-block h4 { margin-bottom: 10px; }
.value-block p  { font-size: 0.875rem; }

/* ── ORG BLOCK ── */
.org-block {
  background: rgba(255,255,255,0.04);
  padding: 20px 24px;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.org-block:first-child {
  border-left-color: var(--gold);
}

.org-block:hover {
  border-left-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.org-block p:first-child {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0;
}

.org-block p:last-child {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 896px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 40px;
  }
  .hero h1 { font-size: 2rem; word-break: break-word; overflow-wrap: break-word; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-visual { justify-content: center; }
  .hero-logo-card { width: 240px; height: 240px; }
  .intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-header-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .page-header-inner img { max-height: 280px; width: 100%; object-fit: contain; }
}

@media (max-width: 768px) {
  :root { --section-v: 64px; }
  body { overflow-x: hidden; }
  * { box-sizing: border-box; max-width: 100%; }
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
    overflow: hidden;
  }
  .hero h1 {
    font-size: 1.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero-sub { font-size: 0.9rem; max-width: 100%; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-visual { justify-content: center; }
  .hero-logo-card { width: 200px; height: 200px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .items-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-eyebrow { font-size: 0.6rem; }
  .hero-logo-card { width: 160px; height: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .intro-stats { grid-template-columns: 1fr; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 1.25rem; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── CONTACT SECTION ── */
.contact-section {
  padding: var(--section-v) 0;
  background: var(--navy);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-intro h2 { color: var(--white); }
.contact-intro p  { color: rgba(255,255,255,0.6); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-size: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.form-required { color: var(--gold); margin-left: 2px; }

.form-optional {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(184,151,90,0.15);
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #e05555;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8975a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255,255,255,0.06);
  padding-right: 40px;
}

.form-select option { background: var(--navy-mid); color: var(--white); }

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* Checkbox */
.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 2px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  accent-color: var(--gold);
  margin-top: 2px;
}

.form-checkbox-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  cursor: pointer;
}

.form-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.form-link:hover { color: var(--gold-light); }

/* Per-field errors */
.form-error {
  font-size: 0.78rem;
  color: #e07070;
  min-height: 1.1em;
  display: block;
}

/* Status message */
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-status.success {
  display: block;
  background: rgba(184,151,90,0.12);
  border: 1px solid rgba(184,151,90,0.4);
  color: var(--gold-light);
}

.form-status.error {
  display: block;
  background: rgba(224,85,85,0.1);
  border: 1px solid rgba(224,85,85,0.35);
  color: #f08080;
}

/* Submit */
.form-submit { align-self: flex-start; margin-top: 4px; }

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Responsive */
@media (max-width: 896px) {
  .contact-form-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .form-submit { width: 100%; justify-content: center; }

  /* Contact form — mobile */
  .contact-form-wrap { gap: 32px; }
  .contact-form { gap: 16px; }
  .form-group { width: 100%; }
  .form-label { display: block; width: 100%; }
  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    min-width: 0;
    font-size: 1rem; /* voorkomt iOS auto-zoom bij focus */
  }
  .form-textarea { resize: none; }
}

/* ── LINKEDIN ── */
.footer-col a.footer-linkedin {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  opacity: 0.7;
}
.footer-col a.footer-linkedin:hover { opacity: 1; color: var(--gold); }
.footer-col a.footer-linkedin svg { flex-shrink: 0; }

.bio-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 8px;
  transition: opacity var(--transition);
  text-decoration: none;
}
.bio-linkedin:hover { opacity: 1; }
.bio-linkedin svg { flex-shrink: 0; }
