/* ========== Base / Reset ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  color: #2b1e17;
  background:
    radial-gradient(1200px 600px at 20% -10%, #f7eee6 0%, rgba(247, 238, 230, 0) 60%),
    radial-gradient(1000px 700px at 110% 10%, #f3e7dd 0%, rgba(243, 231, 221, 0) 55%),
    #fbf7f3;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

/* ========== Theme ========== */
:root {
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.86);
  --stroke: rgba(79, 52, 38, 0.14);
  --text: #2b1e17;
  --muted: rgba(43, 30, 23, 0.72);

  --accent: #8b5a3c;
  --accent-2: #b07b5a;
  --sand: #f3e7dd;

  --shadow: 0 18px 50px rgba(43, 30, 23, 0.1);
  --shadow-soft: 0 10px 28px rgba(43, 30, 23, 0.08);

  --radius: 18px;
  --radius-sm: 14px;
  --container: 1120px;
}

.muted {
  color: var(--muted);
}

/* Skip link (toegankelijkheid) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  border: 1px solid var(--stroke);
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus {
  left: 10px;
  z-index: 9999;
}

/* ========== Layout ========== */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* ========== Header / Nav ========== */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(251, 247, 243, 0.92), rgba(251, 247, 243, 0.62));
  border-bottom: 1px solid var(--stroke);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-text small {
  display: block;
  font-weight: 600;
  color: var(--muted);
  margin-top: 2px;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(145deg, var(--sand), #fff);
}

.links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.links a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: rgba(43, 30, 23, 0.8);
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease;
}
.links a:hover {
  background: rgba(243, 231, 221, 0.7);
  color: var(--text);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}
.cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.cta:active {
  transform: translateY(0px);
  opacity: 0.92;
}

/* Mobile menu */
.menu-btn {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--panel);
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-weight: 700;
}

.mobile {
  display: none;
  padding: 0 0 1rem 0;
}
.mobile a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--panel);
  margin-top: 0.55rem;
  font-weight: 700;
  color: rgba(43, 30, 23, 0.82);
}
.mobile.open {
  display: block;
}

/* ========== Hero ========== */
.hero {
  padding: 3.2rem 0 1.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(243, 231, 221, 0.75);
  border: 1px solid var(--stroke);
  color: rgba(43, 30, 23, 0.8);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(139, 90, 60, 0.16);
}

h1 {
  margin: 0.8rem 0 0.65rem;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.lead {
  margin: 0 0 1.15rem;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  font-weight: 750;
  color: rgba(43, 30, 23, 0.88);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn.ghost {
  background: transparent;
  box-shadow: none;
}

/* Hero card */
.hero-card {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(176, 123, 90, 0.28), rgba(176, 123, 90, 0) 65%);
  filter: blur(2px);
}
.mini-title {
  font-weight: 850;
  letter-spacing: 0.2px;
  margin: 0 0 0.25rem;
}
.mini {
  margin: 0 0 0.85rem;
  color: var(--muted);
}
.list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.65rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(243, 231, 221, 0.42);
  border: 1px solid rgba(79, 52, 38, 0.1);
}
.check {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(139, 90, 60, 0.14);
  border: 1px solid rgba(139, 90, 60, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.check svg {
  width: 14px;
  height: 14px;
}

/* ========== Sections ========== */
section {
  padding: 2.2rem 0;
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  letter-spacing: -0.2px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 30% 30%, rgba(139, 90, 60, 0.18), rgba(139, 90, 60, 0) 70%);
  transform: rotate(6deg);
}
.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(243, 231, 221, 0.6);
  border: 1px solid rgba(79, 52, 38, 0.12);
  margin-bottom: 0.7rem;
}
.icon svg {
  width: 22px;
  height: 22px;
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.panel {
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}
.quote {
  border-left: 3px solid rgba(139, 90, 60, 0.35);
  padding-left: 0.9rem;
  margin: 0.85rem 0 0;
  color: rgba(43, 30, 23, 0.78);
}
.pill-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 52, 38, 0.12);
  background: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  color: rgba(43, 30, 23, 0.82);
  width: fit-content;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}
.info {
  display: grid;
  gap: 0.75rem;
}
.info .row {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: rgba(243, 231, 221, 0.45);
  border: 1px solid rgba(79, 52, 38, 0.1);
}
.info .row strong {
  font-weight: 850;
}
.small {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0.9rem 0 0;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  border: 1px solid rgba(79, 52, 38, 0.12);
  background: rgba(255, 255, 255, 0.65);
}
.social:hover {
  box-shadow: var(--shadow-soft);
}
.social-icon {
  width: 22px;
  height: 22px;
}

/* Footer */
footer {
  padding: 2rem 0 2.3rem;
  border-top: 1px solid var(--stroke);
  color: rgba(43, 30, 23, 0.72);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}
.fine {
  font-size: 0.92rem;
  margin: 0;
}
.footlinks {
  display: inline-flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.footlinks a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(43, 30, 23, 0.75);
  font-weight: 700;
}
.footlinks a:hover {
  border-color: var(--stroke);
  background: rgba(243, 231, 221, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .links {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
