/* ══════════════════════════════════════
   studio Maaike — Global Stylesheet
   ══════════════════════════════════════ */

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

:root {
  --cream: #faf8f5;
  --warm-white: #fffdf9;
  --sage: #8a9a7b;
  --sage-dark: #6b7d5e;
  --sage-light: #d4dece;
  --charcoal: #2d2d2d;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --accent: #c4956a;
  --accent-light: #e8d5c4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── NAVIGATION ─────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, padding .4s;
}
nav.scrolled {
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
  padding: .8rem 3rem;
}

.logo {
  height: 90px;
  transition: height .4s;
}
nav.scrolled .logo { height: 68px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--sage);
  border-radius: 2px;
  transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Contact CTA button in nav */
.nav-cta {
  background: var(--sage);
  color: #fff !important;
  padding: 0 1.4rem;
  height: 36px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  transition: background .3s, transform .2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ── HAMBURGER MENU ─────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--charcoal);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform .35s, opacity .25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(250,248,245,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity .35s;
}
.mobile-menu.show {
  display: flex;
  opacity: 1;
}
.mobile-menu a {
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .02em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--sage-dark); }
.mobile-menu .btn-primary {
  margin-top: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
}

/* ── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .3s;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 20px rgba(138,154,123,.3);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(138,154,123,.4);
}
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(45,45,45,.2);
}
.btn-secondary:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
  background: rgba(138,154,123,.05);
}
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── HERO ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(250,248,245,.88) 0%, rgba(250,248,245,.6) 50%, rgba(212,222,206,.5) 100%),
    url('https://studiomaaike.com/images/rm245-bb-56.jpg') center/cover no-repeat;
}
.hero-content {
  max-width: 720px;
  padding: 8rem 3rem 4rem;
  animation: fadeUp .9s ease-out;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(138,154,123,.12);
  border: 1px solid rgba(138,154,123,.25);
  border-radius: 100px;
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 1.8rem;
  letter-spacing: .03em;
}
.hero-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-dark);
}
.hero p {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── SECTIONS (shared) ──────────────── */
.section-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--sage);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

/* ── SERVICES ───────────────────────── */
.services {
  padding: 6rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .3s, box-shadow .3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.service-icon {
  width: 48px; height: 48px;
  background: var(--sage-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--charcoal);
}
.service-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── WHY / DARK SECTION ─────────────── */
.why {
  background: var(--charcoal);
  color: #fff;
  padding: 6rem 3rem;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why .section-label { color: var(--sage-light); }
.why .section-title { color: #fff; margin-bottom: 1.5rem; }
.why p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.8; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sage-light);
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
}

/* ── CTA SECTION ────────────────────── */
.cta-section {
  padding: 6rem 3rem;
  text-align: center;
}
.cta-section .section-title { margin-bottom: 1rem; }
.cta-section p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── INNER PAGE HERO ────────────────── */
.page-hero {
  padding: 10rem 3rem 4rem;
  background:
    linear-gradient(135deg, rgba(250,248,245,.92) 0%, rgba(212,222,206,.45) 100%),
    url('https://studiomaaike.com/images/rm245-bb-56.jpg') center/cover no-repeat;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .8rem;
}
.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── INNER PAGE CONTENT ─────────────── */
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 3rem 6rem;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.page-content li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .7rem;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}
.page-content li::before {
  content: '';
  position: absolute;
  left: 0; top: .65em;
  width: 7px; height: 7px;
  background: var(--sage);
  border-radius: 50%;
}

/* Pricing cards (for tarieven page) */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.pricing-card {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 2.2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.pricing-card.featured {
  border: 2px solid var(--sage);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem 1rem;
  border-radius: 100px;
  letter-spacing: .04em;
}
.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}
.pricing-price span {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-light);
}
.pricing-card p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* About page — profile */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}
.about-photo {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: var(--sage-light);
}

/* ── CONTACT FORM ───────────────────── */
.contact-form {
  background: var(--warm-white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2.5rem;
}
.form-intro {
  margin-bottom: 2rem;
}
.form-intro p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: .4rem;
}
.form-required-note {
  font-size: .85rem;
  color: var(--text-light);
  font-style: italic;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .01em;
}
.form-label .required {
  color: var(--accent);
  margin-left: 2px;
}
.form-input,
.form-textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  width: 100%;
  transition: border-color .25s, box-shadow .25s, background .25s;
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--sage);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(138,154,123,.15);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(58,58,58,.35);
}
.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}
.form-submit {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: .82rem;
  color: var(--text-light);
  font-style: italic;
}

/* Success message */
.form-success {
  display: none;
  background: rgba(138,154,123,.1);
  border: 1.5px solid var(--sage-light);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.form-success .success-icon {
  font-size: 2.2rem;
  margin-bottom: .8rem;
}
.form-success p {
  color: var(--sage-dark);
  font-weight: 500;
  font-size: 1.02rem;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-form { padding: 2rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: auto; }
}
@media (max-width: 400px) {
  .contact-form { padding: 1.5rem 1rem; }
}

/* ── FOOTER ─────────────────────────── */
footer {
  padding: 2rem 3rem;
  text-align: center;
  font-size: .85rem;
  color: var(--text-light);
  border-top: 1px solid rgba(0,0,0,.06);
}
footer a {
  color: var(--sage-dark);
  text-decoration: none;
}

/* ── SCROLL REVEAL ──────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════════ */
@media (max-width: 960px) {
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid { grid-template-columns: 200px 1fr; gap: 2rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: .7rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: block; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 7rem 1.5rem 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  /* Sections */
  .services { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why { padding: 3.5rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-card { padding: 1.2rem .8rem; }
  .stat-number { font-size: 1.7rem; }
  .cta-section { padding: 3.5rem 1.5rem; }

  /* Inner pages */
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .page-content { padding: 2.5rem 1.5rem 4rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { max-width: 220px; margin: 0 auto; }

  /* Footer */
  footer { padding: 1.5rem; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ══════════════════════════════════════ */
@media (max-width: 400px) {
  nav { padding: .8rem 1rem; }
  .logo { height: 52px; }
  .hero-content { padding: 6rem 1rem 2.5rem; }
  .hero h1 { font-size: 1.7rem; }
  .services { padding: 2.5rem 1rem; }
  .why { padding: 2.5rem 1rem; }
  .page-hero { padding: 7rem 1rem 2.5rem; }
  .page-content { padding: 2rem 1rem 3rem; }
}