/* Noordelijk Goud — landing styles */
:root {
  --ink: #0f1419;
  --ink-soft: #1a222c;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --gold-deep: #8b6914;
  --cream: #f7f4ec;
  --muted: #8a92a0;
  --white: #faf9f6;
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --shadow: 0 24px 48px rgba(15, 20, 25, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--gold-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 20, 25, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-deep));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover {
  color: var(--gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
}

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

.btn-primary {
  background: linear-gradient(165deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45);
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Hero */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto -20%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  color: var(--white);
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--gold-light);
  line-height: 1.2;
}

.stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-card {
  background: linear-gradient(160deg, var(--ink-soft), #121920);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 1rem;
  color: var(--white);
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.hero-card li:last-child {
  border-bottom: none;
}

.hero-card li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--ink-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .cards.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: left;
  padding: 1.5rem;
  background: rgba(15, 20, 25, 0.5);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 39, 0.12);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Trust */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px dashed rgba(201, 162, 39, 0.3);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.25rem;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.quote-block {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.45;
  color: var(--cream);
  font-style: italic;
}

.quote-block cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--muted);
}

/* CTA */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--ink) 0%, #0a0e12 100%);
}

.cta-box {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(15, 20, 25, 0.9));
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}

.cta-box p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer small {
  display: block;
  max-width: 48ch;
}

.alert-banner {
  background: rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding: 0.65rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gold-light);
}
