:root {
  --bg: #f6f1e8;
  --bg-accent: #e8dfd0;
  --ink: #1c1914;
  --muted: #5c5348;
  --accent: #2d4a3a;
  --accent-hover: #1f3428;
  --gold: #9a7b4f;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(28, 25, 20, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(154, 123, 79, 0.12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-accent) 100%);
}

.page {
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 1.5rem);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;

  @media (max-width: 768px) {
    max-width: 100%;
  }
}

.header {
  text-align: center;
}

.logo {
  display: block;
  width: min(275px, 65vw);
  margin: 0 auto;
  /* Witte JPG-achtergrond laat de pagina-kleur door op de beige achtergrond */
  mix-blend-mode: multiply;
}

.content {
  height: fit-content;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 1.1rem + 1.1vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  margin: 0 0 10px;
}

.cta {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--accent);
}

.brand-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.98em;
}

.brand-line strong {
  color: var(--ink);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.sep {
  margin: 0 0.35em;
  color: var(--gold);
  font-weight: 300;
}

.nowrap {
  white-space: nowrap;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.contact {
  font-style: normal;
  font-weight: 500;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(154, 123, 79, 0.25);
}

.contact a {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.contact-sep {
  display: inline-block;
  margin: 0 0.5rem;
  color: var(--muted);
  font-weight: 400;
}

.footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 640px) {
  html {
    font-size: 85%;
  }

  .page {
    justify-content: start;
  }

  .logo {
    width: min(50vw, 200px);
  }
}

@media (max-width: 520px) {
  .brand-line .sep {
    display: none;
  }

  .brand-line {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .brand-line .nowrap {
    white-space: normal;
  }

  .contact-sep {
    display: none;
  }

  .contact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
}
