/* ============================================================
   Studio Aurum — stylesheet
   Palet: beige · wit · goud   |   Sfeer: Apple-strak, fris
   ============================================================ */

:root {
  /* Kleuren */
  --white:        #ffffff;
  --beige:        #f6f1e9;   /* zachte beige achtergrond          */
  --beige-deep:   #efe7d9;   /* iets warmer voor secties          */
  --cream:        #fbf8f3;   /* bijna-wit, warm                   */
  --ink:          #1d1d1f;   /* Apple near-black tekst            */
  --ink-soft:     #55524d;   /* subtekst                          */
  --line:         #e7ddcd;   /* fijne lijnen                      */
  --gold:         #c2a05a;   /* hoofdgoud                         */
  --gold-deep:    #a9873f;   /* diep goud voor tekst/hover        */
  --gold-soft:    #e8d9b6;   /* zacht goud voor glow              */
  --whatsapp:     #25d366;

  /* Typografie */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
          "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Ritme */
  --container: 1120px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & basis ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Herbruikbare tekststijlen ---------- */
.eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

.gold { color: var(--gold-deep); }

h1, h2, h3 { letter-spacing: -0.02em; line-height: 1.08; font-weight: 600; }

h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 980px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              box-shadow 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--ink);
  color: var(--white);
}
.btn--primary:hover { background: #000; box-shadow: 0 12px 30px rgba(0,0,0,0.18); }

.btn--ghost { color: var(--ink); }
.btn--ghost:hover { color: var(--gold-deep); }

.btn--whatsapp { background: var(--whatsapp); color: var(--white); }
.btn--whatsapp:hover { box-shadow: 0 12px 30px rgba(37,211,102,0.32); }

.btn--big { padding: 18px 34px; font-size: 1.08rem; }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled { border-color: var(--line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.nav__logo { font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  color: var(--ink) !important;
  font-weight: 500;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 980px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__cta:hover { border-color: var(--gold); background: var(--gold-soft); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 860px; }

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 38px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* zachte gouden gloed rechtsboven */
.hero__glow {
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--gold-soft) 0%, rgba(232,217,182,0) 68%);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   USP STRIP
   ============================================================ */
.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -46px;
  position: relative;
  z-index: 3;
}
.usp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 18px 50px rgba(120, 95, 40, 0.06);
}
.usp__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.usp h3 { margin-bottom: 8px; }
.usp p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   SECTIES (algemeen)
   ============================================================ */
.section { padding: 108px 0; }
.section--beige { background: var(--beige); }

.section__head { max-width: 640px; margin-bottom: 52px; }
.section__lead { color: var(--ink-soft); font-size: 1.12rem; margin-top: 14px; }

/* ---------- Diensten cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(120, 95, 40, 0.10);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Prijzen ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: 0 18px 50px rgba(120, 95, 40, 0.05);
}
.price-list { list-style: none; }
.price-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-3px);
}
.price-list .price { font-weight: 600; color: var(--gold-deep); white-space: nowrap; }

.price-note { margin-top: 18px; font-size: 0.85rem; color: var(--ink-soft); }
code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85em;
  background: var(--beige-deep);
  padding: 2px 7px;
  border-radius: 6px;
}

/* ---------- Split secties (nazorg / studio) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split--reverse .split__media { order: -1; }
.split h2 { margin-bottom: 8px; }

.checks { list-style: none; margin-top: 22px; }
.checks li {
  position: relative;
  padding: 11px 0 11px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}
.checks li::before {
  content: "✓";
  position: absolute; left: 0; top: 11px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  font-size: 0.75rem;
  font-weight: 700;
}

.split__card { display: flex; }
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px 38px;
  box-shadow: 0 18px 50px rgba(120, 95, 40, 0.06);
}
.quote p { font-size: 1.4rem; line-height: 1.35; letter-spacing: -0.01em; }
.quote span { display: block; margin-top: 20px; color: var(--gold-deep); font-weight: 500; }

/* ---------- Stats ---------- */
.stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stats strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stats span { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Media placeholder ---------- */
.media-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--beige-deep), var(--white));
  border: 1px dashed var(--gold);
  display: grid;
  place-content: center;
  text-align: center;
  color: var(--ink-soft);
  gap: 6px;
}
.media-placeholder span { font-size: 1.1rem; font-weight: 500; color: var(--gold-deep); }
.media-placeholder small { font-size: 0.8rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 100%); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}
.contact__actions { display: flex; flex-direction: column; gap: 16px; }
.contact__actions .btn { justify-content: center; }

.contact__info { display: grid; gap: 26px; }
.info-row h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.info-row p { color: var(--ink-soft); }
.info-row a { color: var(--ink); border-bottom: 1px solid var(--gold); }
.info-row a:hover { color: var(--gold-deep); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: #d9d4cc;
  padding: 46px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__logo { font-weight: 600; font-size: 1.1rem; color: var(--white); }
.footer p { font-size: 0.86rem; }

/* ============================================================
   SCROLL-REVEAL ANIMATIE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .usps { grid-template-columns: 1fr; margin-top: -30px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 0 0; padding: 30px 28px; }
  .split, .contact__grid { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 138px 0 84px; }
  .cards { grid-template-columns: 1fr; }

  /* Mobiel menu */
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 62px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(251, 248, 243, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 12px 0; font-size: 1.05rem; width: 100%; }
  .nav__cta { margin-top: 6px; }
}
