:root {
  --cream: #f7f3ea;
  --cream-2: #efe9db;
  --paper: #ffffff;
  --navy: #16263f;
  --navy-2: #1f3a5f;
  --ink: #1b2a44;
  --muted: #6a7484;
  --gold: #b88a3e;
  --gold-soft: #f3ead6;
  --line: #e7dfce;
  --shadow: 0 10px 34px rgba(22, 38, 63, 0.10);
  --shadow-sm: 0 3px 12px rgba(22, 38, 63, 0.07);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(1100px 460px at 50% -200px, rgba(184, 138, 62, 0.14), transparent 60%),
    linear-gradient(165deg, var(--cream), var(--cream-2));
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: clamp(34px, 8vw, 64px) clamp(16px, 4.5vw, 20px) 80px;
}

/* Header */

header {
  text-align: center;
  margin-bottom: 14px;
}

.mono {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(22, 38, 63, 0.22);
  border: 2px solid var(--gold);
}

header h1 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}

header p {
  max-width: 42ch;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(0.96rem, 3.8vw, 1.06rem);
}

.rule {
  width: 46px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--gold);
  border-radius: 3px;
  opacity: 0.85;
}

/* Secties */

.section-label {
  margin: 38px 4px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Uitgelichte kaart */

.feature {
  position: relative;
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  border-radius: 22px;
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  box-shadow: 0 16px 40px rgba(22, 38, 63, 0.28);
  border: 1px solid rgba(205, 164, 75, 0.25);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(22, 38, 63, 0.34);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 88% -20%, rgba(205, 164, 75, 0.30), transparent 60%);
  pointer-events: none;
}

.feature .inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 24px;
}

.ficon {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(205, 164, 75, 0.16);
  border: 1px solid rgba(205, 164, 75, 0.4);
  font-size: 1.7rem;
}

.ftext {
  flex: 1;
  min-width: 0;
}

.tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature h2 {
  margin: 0 0 4px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.1;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.82;
}

.arrow {
  flex: none;
  font-size: 1.5rem;
  color: var(--gold);
}

/* Tools */

.tile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #dccba6;
}

.ticon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--gold-soft);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ttext {
  flex: 1;
  min-width: 0;
}

.tile h2 {
  margin: 0 0 2px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}

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

.tile .arrow {
  font-size: 1.3rem;
  color: #c9bda2;
  transition: transform 0.15s ease, color 0.15s ease;
}

.tile:hover .arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* Pubgolf kaart */

.tile-pubgolf .ticon {
  background: #eef7df;
  color: #4f7d2a;
}

.tile-pubgolf:hover {
  border-color: #bed69a;
}

/* Footer */

footer {
  margin-top: 40px;
  padding: 22px 6px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  border-top: 1px solid var(--line);
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobiel */

@media (max-width: 480px) {
  .feature .inner,
  .tile {
    padding: 18px;
  }

  .ficon,
  .ticon {
    width: 46px;
    height: 46px;
  }

  .feature h2 {
    font-size: 1.28rem;
  }

  .tile h2 {
    font-size: 1.02rem;
  }
}
