:root{
  --bg:#f6f1e8;
  --bg-soft:#fbf8f3;
  --surface:#fffdfa;
  --surface-2:#f1eadf;
  --text:#111111;
  --muted:#5f5a53;
  --line:#ddd3c4;
  --line-strong:#cbbda3;
  --gold:#b89a62;
  --gold-soft:#d9c7a2;
  --shadow:0 24px 60px rgba(0,0,0,.08);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(184,154,98,.14), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(17,17,17,.04), transparent 18%),
    linear-gradient(180deg, #f8f4ec 0%, #f4eee4 100%);
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}

.site-header{
  width:min(1180px, calc(100% - 32px));
  margin:18px auto 0;
  padding:14px 18px;
  border:1px solid rgba(17,17,17,.08);
  border-radius:999px;
  background:rgba(255,253,250,.88);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:12px;
  z-index:100;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#111;
  color:#fff;
  font-family:"Playfair Display", serif;
  font-size:22px;
}

.brand-text{
  font-size:18px;
  letter-spacing:-.02em;
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
  color:var(--muted);
}

.nav a:hover{color:#111}

.nav-button{
  background:#111;
  color:#fff !important;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
}

.hero{
  width:min(1180px, calc(100% - 32px));
  margin:28px auto 0;
  padding:64px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
  background:linear-gradient(180deg, rgba(255,253,250,.78), rgba(250,246,239,.92));
  border:1px solid rgba(17,17,17,.08);
  border-radius:var(--radius-xl);
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.ink{
  position:absolute;
  border-radius:49% 51% 39% 61% / 58% 42% 58% 42%;
  background:#111;
  opacity:.045;
  pointer-events:none;
}

.ink-1{
  width:340px;
  height:260px;
  left:-120px;
  top:80px;
  transform:rotate(-16deg);
}

.ink-2{
  width:380px;
  height:280px;
  right:-150px;
  bottom:-80px;
  transform:rotate(18deg);
}

.eyebrow{
  margin:0 0 18px;
  color:#8d7447;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:800;
}

.eyebrow.dark{color:#7a6540}

h1,h2,h3{
  margin:0;
  letter-spacing:-.05em;
}

h1,h2{
  font-family:"Playfair Display", Georgia, serif;
}

h1{
  font-size:clamp(52px, 7vw, 102px);
  line-height:.9;
  max-width:680px;
}

.hero-text{
  margin:24px 0 0;
  max-width:620px;
  color:var(--muted);
  font-size:20px;
  line-height:1.75;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.button{
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  transition:transform .2s ease, opacity .2s ease;
}

.button:hover{transform:translateY(-2px)}

.button.primary{
  background:#111;
  color:#fff;
}

.button.secondary{
  background:transparent;
  color:#111;
  border:1px solid rgba(17,17,17,.14);
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:40px;
}

.stat-box{
  padding:20px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(17,17,17,.08);
  border-radius:var(--radius-md);
}

.stat-box strong{
  display:block;
  font-size:28px;
  line-height:1;
}

.stat-box span{
  display:block;
  margin-top:8px;
  font-size:13px;
  color:var(--muted);
  line-height:1.45;
}

.photo-card{
  padding:22px;
  background:linear-gradient(180deg, #fffefa 0%, #f4ede1 100%);
  border:1px solid rgba(17,17,17,.09);
  border-radius:28px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.photo-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:18px;
}

.photo-label{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:800;
  color:#6e6558;
  background:rgba(17,17,17,.05);
  padding:10px 14px;
  border-radius:999px;
}

.photo-dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold);
  box-shadow:0 0 0 8px rgba(184,154,98,.16);
}

.photo-placeholder{
  height:420px;
  border-radius:24px;
  border:1px dashed rgba(17,17,17,.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(243,236,226,.94));
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.photo-placeholder-inner{
  width:100%;
  height:100%;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,154,98,.10), transparent 20%),
    radial-gradient(circle at 80% 80%, rgba(17,17,17,.05), transparent 20%),
    rgba(255,255,255,.55);
}

.photo-placeholder-inner span{
  color:#7b7265;
  font-weight:700;
  letter-spacing:.02em;
}

.photo-copy{
  margin-top:18px;
  padding:22px;
  border-radius:20px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(17,17,17,.08);
}

.photo-copy h2{
  font-size:38px;
  line-height:.98;
}

.photo-copy p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.75;
}

.section{
  width:min(940px, calc(100% - 32px));
  margin:110px auto 0;
  text-align:center;
}

.section-badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.6);
  border:1px solid rgba(17,17,17,.08);
  color:#8d7447;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.14em;
  margin-bottom:22px;
}

.section h2{
  font-size:clamp(36px, 5vw, 70px);
  line-height:.98;
}

.section p{
  max-width:760px;
  margin:22px auto 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}

.steps{
  width:min(1180px, calc(100% - 32px));
  margin:46px auto 0;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.step-card{
  padding:30px;
  border-radius:var(--radius-lg);
  background:rgba(255,255,255,.6);
  border:1px solid rgba(17,17,17,.08);
  box-shadow:0 10px 24px rgba(0,0,0,.04);
}

.step-number{
  display:inline-block;
  margin-bottom:28px;
  color:#8d7447;
  font-size:13px;
  font-weight:900;
  letter-spacing:.14em;
}

.step-card h3{
  font-size:30px;
  line-height:1.05;
}

.step-card p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.75;
}

.split{
  width:min(1180px, calc(100% - 32px));
  margin:84px auto 0;
  padding:48px;
  background:#fffdfa;
  border:1px solid rgba(17,17,17,.08);
  border-radius:var(--radius-xl);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
  align-items:center;
  box-shadow:0 16px 36px rgba(0,0,0,.05);
}

.split h2{
  font-size:clamp(34px, 4vw, 56px);
  line-height:1;
}

.split-right{
  display:grid;
  gap:14px;
}

.check-item{
  padding:18px;
  border-radius:18px;
  border:1px solid rgba(17,17,17,.08);
  background:rgba(246,241,232,.75);
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-weight:600;
  line-height:1.55;
}

.check-item span{
  width:10px;
  height:10px;
  margin-top:7px;
  flex:0 0 10px;
  border-radius:50%;
  background:var(--gold);
}

.cta{
  width:min(1180px, calc(100% - 32px));
  margin:84px auto 0;
  padding:72px 28px;
  text-align:center;
  background:linear-gradient(180deg, #111111 0%, #1f1b16 100%);
  color:#fff;
  border-radius:var(--radius-xl);
  position:relative;
  overflow:hidden;
}

.cta::before{
  content:"";
  position:absolute;
  width:320px;
  height:240px;
  left:-100px;
  bottom:-70px;
  background:#fff;
  opacity:.05;
  border-radius:44% 56% 52% 48% / 48% 39% 61% 52%;
}

.cta h2{
  font-size:clamp(38px, 5vw, 70px);
  line-height:.97;
}

.cta p:not(.eyebrow){
  max-width:650px;
  margin:18px auto 28px;
  color:rgba(255,255,255,.76);
  font-size:18px;
  line-height:1.75;
}

.footer{
  width:min(1180px, calc(100% - 32px));
  margin:36px auto 0;
  padding:28px 0 40px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#6a6359;
  font-size:14px;
}

.footer p{margin:0}

@media (max-width: 980px){
  .hero{
    grid-template-columns:1fr;
    padding:44px;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .split{
    grid-template-columns:1fr;
    padding:34px;
  }

  .nav{
    gap:14px;
    flex-wrap:wrap;
    justify-content:flex-end;
  }
}

@media (max-width: 680px){
  .site-header{
    width:calc(100% - 20px);
    padding:14px;
    border-radius:24px;
    flex-direction:column;
    align-items:flex-start;
    position:relative;
    top:0;
  }

  .nav{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .nav a{
    text-align:center;
    padding:10px 12px;
    border:1px solid rgba(17,17,17,.08);
    border-radius:999px;
    background:rgba(255,255,255,.72);
  }

  .nav-button{
    grid-column:1 / -1;
  }

  .hero,
  .section,
  .steps,
  .split,
  .cta,
  .footer{
    width:calc(100% - 20px);
  }

  .hero{
    margin-top:18px;
    padding:28px 20px;
    border-radius:24px;
  }

  h1{
    font-size:clamp(44px, 15vw, 68px);
  }

  .hero-text{
    font-size:17px;
  }

  .hero-actions{
    display:grid;
  }

  .button{
    width:100%;
  }

  .hero-stats{
    grid-template-columns:1fr;
  }

  .photo-placeholder{
    height:300px;
  }

  .photo-copy h2{
    font-size:30px;
  }

  .section{
    margin-top:72px;
  }

  .steps{
    margin-top:34px;
  }

  .split{
    margin-top:58px;
    padding:26px;
    border-radius:24px;
  }

  .cta{
    margin-top:58px;
    padding:52px 20px;
    border-radius:24px;
  }

  .footer{
    flex-direction:column;
    padding-bottom:30px;
  }
}

.brand-logo{
  height:48px;
  width:auto;
  display:block;
}

.brand{
  gap:0;
}

.brand-mark,
.brand-text{
  display:none;
}

@media (max-width:680px){
  .brand-logo{
    height:42px;
  }
}

/* Logo fix */
.brand{
  display:flex;
  align-items:center;
  gap:0;
}

.brand-logo{
  height:62px;
  width:auto;
  display:block;
  object-fit:contain;
}

.brand-mark,
.brand-text{
  display:none !important;
}

.site-header{
  min-height:82px;
}

@media (max-width:680px){
  .brand-logo{
    height:48px;
  }

  .site-header{
    min-height:auto;
  }
}

/* Frontpage image */
.photo-image-wrap{
  height:420px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(17,17,17,.08);
  background:#f4eee4;
}

.frontpage-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:saturate(.72) contrast(1.04);
}

@media (max-width:680px){
  .photo-image-wrap{
    height:300px;
  }
}

/* Hero image final fix */
.photo-top{
  display:none !important;
}

.photo-image-wrap{
  height:420px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(17,17,17,.08);
  background:#f4eee4;
}

.frontpage-image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  filter:saturate(.75) contrast(1.04);
}

@media (max-width:680px){
  .photo-image-wrap{
    height:300px;
  }
}

/* ===== HERO POLISH ===== */
.hero{
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
}

.hero-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right{
  display: flex;
  align-items: center;
  justify-content: center;
}

h1{
  max-width: 640px;
  font-size: clamp(50px, 6vw, 88px);
}

.hero-text{
  max-width: 560px;
}

.photo-card{
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-image-wrap{
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
}

.frontpage-image{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.photo-copy{
  margin-top: 16px;
  padding: 18px 18px 16px;
}

.photo-copy h2{
  font-size: 26px;
  line-height: 1.02;
}

.photo-copy p{
  font-size: 15px;
  line-height: 1.65;
}

/* ===== STATS NETTER MAKEN ===== */
.hero-stats{
  max-width: 520px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.stat-box{
  min-height: 112px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-box strong{
  font-size: 20px;
  line-height: 1.05;
}

.stat-box span{
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .hero{
    grid-template-columns: 1fr;
  }

  .photo-card{
    max-width: 440px;
  }

  .hero-stats{
    max-width: 100%;
  }
}

@media (max-width: 680px){
  h1{
    font-size: clamp(42px, 14vw, 64px);
  }

  .photo-card{
    max-width: none;
  }
}
