/* =========================================================
   Angelique Houtveen, Presence site
   Bold, warm, soulful. Bordeaux + lime. Strak, schreefloos.
   ========================================================= */

:root {
  --bordeaux: #92315C;
  --bordeaux-soft: #F8E2EA;
  --lime: #D6FF3F;
  --lime-soft: #F1FFC9;
  --ink: #1A1A1A;
  --ink-soft: #4A4A46;
  --cream: #FFFDF6;
  --white: #FFFFFF;
  --line: rgba(26, 26, 26, 0.1);

  --radius: 8px;
  --radius-lg: 10px;

  --font-display: 'Poppins', 'Arial', sans-serif;
  --font-body: 'Work Sans', 'Arial', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 1.05rem;
}

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

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------
   Typography
   --------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
}

p {
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--lime);
  padding: 6px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.lead {
  font-size: 1.25rem;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-primary:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-secondary:hover {
  box-shadow: 8px 8px 0 var(--ink);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------------------------------------------------------
   Header / Nav
   --------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo span {
  background: var(--lime);
  padding: 2px 8px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--lime);
}

.nav-toggle {
  display: none;
}

@media (max-width: 760px) {
  .nav.container {
    padding-left: 32px;
    padding-right: 32px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 18px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
  }

  .nav {
    position: relative;
  }
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: var(--bordeaux);
  color: var(--cream);
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero .container.hero-split {
  max-width: 1100px;
  align-items: center;
  grid-template-columns: 1.7fr 1fr;
  gap: 48px;
}

.hero .portrait-frame {
  aspect-ratio: 4/5;
  max-width: 240px;
  margin-left: auto;
  box-shadow: 10px 10px 0 var(--lime);
}

@media (max-width: 860px) {
  .hero .container.hero-split {
    grid-template-columns: 1fr;
  }

  .hero .portrait-frame {
    max-width: 220px;
    margin: 0 auto;
  }
}

.hero h1 {
  margin: 18px 0 24px;
  color: var(--cream);
}

.hero .lead {
  color: rgba(255, 253, 246, 0.85);
}

.hero p a {
  color: var(--lime);
  font-weight: 600;
  text-decoration: underline;
}

.hero .highlight {
  background: var(--lime);
  color: var(--ink);
  padding: 0 10px;
  border-radius: var(--radius);
  display: inline;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Scherpe wedge in plaats van ronde blobs */
.blob {
  position: absolute;
  z-index: 1;
}

.blob-yellow {
  display: none;
}

.blob-lime {
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: var(--lime);
  opacity: 1;
  clip-path: polygon(100% 0, 100% 100%, 35% 100%);
}

@media (max-width: 760px) {
  .blob-lime {
    width: 160px;
    clip-path: polygon(100% 0, 100% 100%, 55% 100%);
  }
}

@media (max-width: 600px) {
  .hero .container {
    padding-right: 100px;
  }
}

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */

section {
  padding: 80px 0;
}

.section-yellow {
  background: var(--bordeaux-soft);
}

.section-lime {
  background: var(--lime-soft);
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-header {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------------------------------
   Cards (aanbod / offerings)
   --------------------------------------------------------- */

.grid {
  display: grid;
  gap: 28px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 860px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-top: 6px solid var(--lime);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card .tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--lime);
  padding: 5px 14px;
  border-radius: var(--radius);
  width: fit-content;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0;
}

.card ul li {
  padding-left: 28px;
  position: relative;
}

.card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--ink);
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-footer .btn:only-child {
  margin-left: auto;
  flex-wrap: wrap;
}

.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
}

/* ---------------------------------------------------------
   Reviews
   --------------------------------------------------------- */

.review-card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-top: 6px solid var(--bordeaux);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.review-stars {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--ink);
}

.review-quote {
  font-size: 1.05rem;
  font-style: italic;
}

.review-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author span {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.review-note {
  margin-top: 28px;
  padding: 18px 22px;
  border: 2px dashed var(--ink);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: var(--ink-soft);
  background: var(--white);
}

/* ---------------------------------------------------------
   Pull-quote / split content
   --------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  border-left: 6px solid var(--bordeaux);
  padding-left: 24px;
}

.portrait-frame {
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.portrait-frame:has(img) {
  background: none;
  padding: 0;
  overflow: hidden;
  box-shadow: 14px 14px 0 var(--lime);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-grid h4 {
  color: var(--lime);
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-grid li {
  opacity: 0.85;
}

.footer-grid a {
  text-decoration: none;
  color: var(--white);
  opacity: 1;
}

.footer-grid a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid var(--lime);
}

/* ---------------------------------------------------------
   Mobile refinements
   --------------------------------------------------------- */

@media (max-width: 600px) {
  .hero {
    padding: 48px 0 60px;
  }

  section {
    padding: 52px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
    text-align: center;
  }

  .card {
    padding: 24px !important;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .pull-quote {
    font-size: 1.3rem;
  }

  .eyebrow {
    white-space: normal;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }

  .card-footer {
    flex-wrap: wrap;
    gap: 16px;
  }

  .card-footer .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ---------------------------------------------------------
   Product page title: outlined letters
   --------------------------------------------------------- */

.h1-stroke {
  -webkit-text-stroke: 1px var(--cream);
  color: transparent;
  paint-order: stroke fill;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 600px) {
  .h1-stroke {
    -webkit-text-stroke: 0;
    color: var(--cream);
  }
}

/* ---------------------------------------------------------
   Price note (btw etc.)
   --------------------------------------------------------- */

.price-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------------------------------------------------------
   Utilities
   --------------------------------------------------------- */

.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tag-row span,
.tag-row a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 6px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease, transform 0.15s ease;
}

.tag-row a:hover {
  background: var(--lime);
  transform: translate(-2px, -2px);
}

/* ---------------------------------------------------------
   Review carousel
   --------------------------------------------------------- */

.review-carousel {
  position: relative;
  min-height: 180px;
  max-width: 760px;
  margin: 0 auto;
}

.review-carousel .review-card {
  display: none;
  animation: fadeInReview 0.4s ease;
}

.review-carousel .review-card.active {
  display: block;
}

@keyframes fadeInReview {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.25;
  cursor: pointer;
  border: none;
  padding: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  opacity: 1;
  background: var(--bordeaux);
}

.carousel-arrow {
  background: none;
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.carousel-arrow:hover {
  background: var(--ink);
  color: var(--white);
}
