:root {
  --cream: #F9F4E8;
  --green: #1B2E22;
  --gold:  #B89B5E;
  --frame: #EDE6D3;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--cream);
  color: var(--green);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
}

/* ── Header ── */

.site-header {
  position: relative;
  padding: 5.5rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.site-header__wapen-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 40vw, 320px);
  height: auto;
  opacity: 0.13;
  pointer-events: none;
  user-select: none;
}

.site-header__title {
  position: relative;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 38px);
  letter-spacing: 0.07em;
  color: var(--green);
  line-height: 1.2;
}

.site-header__subtitle {
  position: relative;
  margin-top: 0.9rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.30em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Photo Box ── */

.photo-box {
  max-width: 680px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.photo-box__frame {
  border-radius: 10px;
  border: 10px solid var(--frame);
  box-shadow:
    0 10px 52px rgba(27, 46, 34, 0.12),
    0 2px 8px rgba(27, 46, 34, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  line-height: 0;
}

.photo-box__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.98) contrast(0.94) saturate(0.92) sepia(0.04);
}

/* ── Main content ── */

.content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem 7rem;
  text-align: center;
}

/* ── Tekst ── */

.main-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(17px, 2.4vw, 20px);
  line-height: 1.6;
  color: var(--green);
}

/* ── Tekst groep ── */

.text-group {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

/* ── Namen ── */

.names {
  margin-top: 1.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.8;
  color: var(--green);
  text-align: center;
}

/* ── Footer ── */

.site-footer {
  background-color: var(--green);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.site-footer__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--gold);
}
