/* =====================================================================
   PALIDRESS — Stylesheet (design system + componenten)
   Palestijns erfgoed: diep rood, olijfgroen, houtskool, crème, goud
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Kleuren */
  --red:        #8C2B2F;   /* tatreez-rood (primair) */
  --red-dark:   #6E2024;
  --green:      #4A5D3A;   /* olijfgroen (secundair) */
  --green-dark: #364429;
  --ink:        #23201C;   /* houtskool / tekst */
  --ink-soft:   #4a443c;
  --cream:      #F8F3E9;   /* ivoor achtergrond */
  --cream-2:    #F1E9DA;
  --gold:       #C2A14D;   /* luxe accent */
  --gold-soft:  #d8c084;
  --muted:      #8a8275;
  --line:       #e4dac6;
  --white:      #ffffff;

  /* Typografie */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Maatvoering */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 12px 40px rgba(35, 32, 28, 0.10);
  --shadow-soft: 0 6px 22px rgba(35, 32, 28, 0.07);
  --transition: 0.35s cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.3px;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--red);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow--gold { color: var(--gold); }
.lead { font-size: 1.2rem; color: var(--ink-soft); }
.text-center { text-align: center; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.section--cream2 { background: var(--cream-2); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: #d6cfc2; }
.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section-head p { margin-top: 0.6rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--primary { background: var(--red); color: var(--cream); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 243, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 42px; width: auto; }
.brand__name {
  font-family: var(--font-head);
  font-size: 1.7rem; font-weight: 600; letter-spacing: 1px; color: var(--ink);
}
.site-nav ul { display: flex; gap: 2rem; align-items: center; }
.site-nav a {
  font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 400; color: var(--ink); position: relative; padding: 4px 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--red); transition: var(--transition);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { width: 100%; }
.site-nav a[aria-current="page"] { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--cream-2); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: clamp(30px, 5vw, 70px); min-height: min(86vh, 760px); padding: 60px 0;
}
.hero__content { max-width: 540px; }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--red); font-style: italic; }
.hero p { font-size: 1.15rem; margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/5; }
.hero__badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--white);
  padding: 1rem 1.4rem; border-radius: var(--radius); box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.hero__badge strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--red); display:block; }
.hero__badge span { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ---------- Tatreez patroon-divider ---------- */
.pattern-divider {
  height: 26px; width: 100%;
  background-image: url("../patterns/tatreez-divider.svg");
  background-repeat: repeat-x; background-size: auto 26px; background-position: center;
  opacity: 0.9;
}
.pattern-divider--center { max-width: 280px; margin: 1.2rem auto 0; }

/* ---------- USP / kenmerken ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.usp { text-align: center; padding: 1.4rem; }
.usp__icon { width: 54px; height: 54px; margin: 0 auto 1rem; color: var(--red); }
.usp h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.usp p { font-size: 0.95rem; }

/* ---------- Grids & kaarten ---------- */
.grid { display: grid; gap: 2rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--products { grid-template-columns: repeat(3, 1fr); gap: 2.4rem; }

.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card__media { position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--cream-2); }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-card__media img { transform: scale(1.05); }
.product-card__tag {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--ink);
  font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  padding: 5px 10px; border-radius: 2px;
}
.product-card__body { padding: 1.3rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card__cat { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.product-card__title { font-size: 1.4rem; }
.product-card__price { color: var(--red); font-weight: 500; font-size: 1.05rem; }
.product-card__price span { color: var(--muted); font-size: 0.8rem; font-weight: 300; }
.product-card__cta { margin-top: auto; }
.product-card__cta .btn { width: 100%; justify-content: center; }

/* ---------- Collectie filter ---------- */
.filters { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.55rem 1.4rem; border: 1.5px solid var(--line); border-radius: 40px;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft);
  transition: var(--transition); background: var(--white);
}
.filter-btn:hover { border-color: var(--red); color: var(--red); }
.filter-btn.is-active { background: var(--red); border-color: var(--red); color: var(--cream); }
.is-hidden { display: none !important; }

/* ---------- Verhaal / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split__content { max-width: 520px; }
.split__content h2 { margin-bottom: 1.2rem; }
.split__content p + p { margin-top: 1rem; }
.signature { font-family: var(--font-head); font-style: italic; font-size: 1.6rem; color: var(--red); margin-top: 1.4rem; }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-soft); border-top: 3px solid var(--gold); }
.testimonial p { font-family: var(--font-head); font-size: 1.35rem; font-style: italic; color: var(--ink); line-height: 1.45; }
.testimonial cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 0.8rem; }

/* ---------- Instagram strook ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.ig-strip a { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream-2); }
.ig-strip img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.ig-strip a:hover img { transform: scale(1.08); opacity: 0.85; }

/* ---------- CTA banner ---------- */
.cta-banner { text-align: center; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { max-width: 540px; margin: 0 auto 2rem; }

/* ---------- Contact / formulier ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-info .ci-icon { width: 26px; height: 26px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.contact-info strong { display: block; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.form-group { margin-bottom: 1.3rem; }
.form-group label { display: block; font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--ink-soft); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--ink); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.5rem; }

/* ---------- FAQ / accordion ---------- */
.accordion { max-width: 760px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.3rem 0; font-family: var(--font-head); font-size: 1.3rem; color: var(--ink);
}
.acc-trigger .acc-plus { font-size: 1.5rem; color: var(--red); transition: var(--transition); flex-shrink: 0; }
.acc-trigger[aria-expanded="true"] .acc-plus { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-panel-inner { padding: 0 0 1.4rem; }

/* ---------- Maattabel ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
table.sizes { width: 100%; border-collapse: collapse; background: var(--white); min-width: 480px; }
table.sizes th, table.sizes td { padding: 0.9rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); }
table.sizes thead th { background: var(--green); color: var(--cream); font-family: var(--font-body); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; font-size: 0.78rem; }
table.sizes tbody tr:nth-child(even) { background: var(--cream); }

/* ---------- Pagina-banner (kop op subpagina's) ---------- */
.page-banner { background: var(--green-dark); color: var(--cream); text-align: center; padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.page-banner h1 { color: var(--cream); margin-bottom: 0.6rem; }
.page-banner p { color: #d6cfc2; max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--cream); }

/* ---------- Productdetail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.pd-gallery .pd-main img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 0.8rem; }
.pd-thumbs img { border-radius: var(--radius); aspect-ratio: 1; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: var(--transition); }
.pd-thumbs img:hover { border-color: var(--gold); }
.pd-info .price { font-size: 1.8rem; color: var(--red); font-family: var(--font-head); margin: 0.6rem 0 1.4rem; }
.pd-info .price span { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.pd-meta { list-style: none; margin: 1.6rem 0; }
.pd-meta li { display: flex; gap: 0.8rem; padding: 0.6rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.pd-meta strong { min-width: 130px; color: var(--ink); }
.size-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 0.6rem 0 1.6rem; }
.size-pills button { padding: 0.5rem 1.1rem; border: 1.5px solid var(--line); border-radius: var(--radius); transition: var(--transition); }
.size-pills button:hover, .size-pills button.is-active { border-color: var(--red); color: var(--red); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #cfc7ba; padding: clamp(50px, 7vw, 80px) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 500; }
.site-footer a { color: #cfc7ba; transition: var(--transition); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand .brand__name { color: var(--cream); }
.footer-brand p { color: #a39c90; font-size: 0.92rem; margin-top: 1rem; max-width: 280px; }
.footer-links li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid #46403a; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid #3a3530; padding-top: 1.6rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; color: #8d867b; }

/* ---------- Reveal-animatie ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 78px 0 auto 0; background: var(--cream);
    border-bottom: 1px solid var(--line); transform: translateY(-130%);
    transition: var(--transition); padding: 1.5rem 0; box-shadow: var(--shadow);
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li { width: 100%; text-align: center; }
  .site-nav a { display: block; padding: 1rem 0; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { margin: 0 auto; }
  .hero__actions { justify-content: center; }
  .hero__media { order: -1; max-width: 420px; margin: 0 auto; }
  .split, .split--reverse, .product-detail, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .usp-grid, .grid--3, .grid--products { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .usp-grid, .grid--3, .grid--products { grid-template-columns: 1fr; }
  .ig-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .header-actions .btn { display: none; }
}

/* =====================================================================
   PREMIUM UPGRADE — logo, brand hero, stappen, TikTok, verfijning
   ===================================================================== */

/* Dieper zwart, passend bij het zwart-wit logo */
.section--ink { background: #14110E; }
.site-footer { background: #14110E; }

/* Logo in de header */
.brand__logo { height: 30px; width: auto; display: block; }
@media (max-width: 560px) { .brand__logo { height: 26px; } }

/* Subtiele gouden lijn onder sectiekoppen */
.section-head h2 { position: relative; }
.section-head h2::after {
  content: ""; display: block; width: 54px; height: 2px; background: var(--gold);
  margin: 0.9rem auto 0; opacity: 0.85;
}

/* Hero-motto (merkzin met watermeloen) */
.brand-hero__motto {
  font-family: var(--font-head); font-style: italic; font-size: 1.5rem;
  color: var(--gold-soft); margin: 0.2rem 0 0;
}

/* Footer-credit */
.footer-bottom a { color: var(--gold-soft); }
.footer-bottom a:hover { color: var(--cream); text-decoration: underline; }

/* Header schaduw bij scrollen */
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(20,17,14,0.10); }

/* Productkaart hover-overlay "Bekijk" */
.product-card__media a { position: relative; }
.product-card__media a::after {
  content: "Bekijk"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(20,17,14,0.32); color: var(--cream); font-size: 0.74rem; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card__media a::after { opacity: 1; }

/* Terug-naar-boven knop */
.to-top {
  position: fixed; right: 18px; bottom: 18px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px); transition: var(--transition); z-index: 90;
  box-shadow: var(--shadow-soft); border: 1px solid rgba(194,161,77,0.3);
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--gold); color: var(--ink); }
.to-top svg { width: 20px; height: 20px; }

/* Lightbox (vergroot productfoto) */
.pd-main img { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; background: rgba(10,8,6,0.93); display: none;
  align-items: center; justify-content: center; z-index: 200; padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 6px; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.lightbox__close {
  position: absolute; top: 16px; right: 22px; color: #fff; font-size: 2.4rem; line-height: 1;
  background: none; border: none; cursor: pointer;
}

@media (max-width: 560px) { .brand-hero__motto { font-size: 1.25rem; } }

/* Screenreader-only helper */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Hero scroll-cue */
.brand-hero__scroll {
  display: inline-flex; margin-top: 1.8rem; color: var(--gold-soft); opacity: 0.85;
  animation: bob 1.9s ease-in-out infinite; transition: var(--transition);
}
.brand-hero__scroll:hover { opacity: 1; color: var(--cream); }
.brand-hero__scroll svg { width: 28px; height: 28px; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- Brand hero ---------- */
.brand-hero {
  position: relative; overflow: hidden; text-align: center; color: #f1e9dc;
  background:
    linear-gradient(165deg, rgba(20,17,14,0.93) 0%, rgba(24,20,16,0.80) 50%, rgba(20,17,14,0.95) 100%),
    url("../img/thobe-zwart-goud-2.jpeg") center 22%/cover no-repeat;
  padding: clamp(96px, 17vh, 168px) 0 clamp(72px, 13vh, 128px);
}
.brand-hero__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(194,161,77,0.18), rgba(20,17,14,0) 62%);
}
.brand-hero__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.brand-hero__eyebrow {
  font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-soft); font-weight: 500;
}
.brand-hero__logo { width: clamp(250px, 42vw, 430px); height: auto; filter: drop-shadow(0 6px 24px rgba(0,0,0,0.4)); }
.brand-hero__rule {
  width: 240px; height: 22px; background: url("../patterns/tatreez-divider.svg") center/auto 22px repeat-x; opacity: 0.85;
}
.brand-hero__tagline {
  font-family: var(--font-head); font-weight: 500; color: #f4ecdf;
  font-size: clamp(1.9rem, 4.4vw, 3.3rem); line-height: 1.14; max-width: 900px; margin: 0;
}
.brand-hero__tagline em { font-style: italic; color: var(--gold-soft); }
.brand-hero__tagline sup { font-size: 0.55em; }
.brand-hero__sub { max-width: 620px; color: #cfc5b6; font-size: 1.12rem; margin: 0; }
.brand-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 0.4rem; }
.brand-hero__stats {
  display: flex; gap: clamp(1.6rem, 5vw, 3.4rem); margin-top: 2rem; flex-wrap: wrap; justify-content: center;
}
.brand-hero__stats div { display: flex; flex-direction: column; gap: 0.2rem; position: relative; padding: 0 0.4rem; }
.brand-hero__stats div + div::before {
  content: ""; position: absolute; left: calc(-1 * clamp(0.8rem, 2.5vw, 1.7rem)); top: 12%; height: 76%; width: 1px; background: rgba(194,161,77,0.35);
}
.brand-hero__stats strong { font-family: var(--font-head); font-size: 2.1rem; color: var(--gold-soft); line-height: 1; }
.brand-hero__stats span { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: #b3a795; }

/* ---------- Stappen ---------- */
.steps .step-num {
  font-family: var(--font-head); font-size: 2.6rem; font-weight: 600; color: var(--gold-soft);
  line-height: 1; margin-bottom: 0.5rem;
}

/* ---------- TikTok ---------- */
.tiktok-embed-wrap { display: flex; justify-content: center; }
.tiktok-embed { margin: 0 auto !important; width: 100%; }

/* ---------- Bridal feature ---------- */
.bridal-feature { max-width: 760px; margin: 0 auto; text-align: center; }
.bridal-feature__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.bridal-feature__img img { width: 100%; display: block; aspect-ratio: 1 / 1; object-fit: cover; }
.bridal-feature p { margin-top: 1.4rem; }

/* ---------- Productkaart: klikbare media ---------- */
.product-card__media a { display: block; height: 100%; }
.coming-soon { position: relative; }
.coming-soon::after {
  content: "Binnenkort"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(20,17,14,0.55); color: var(--cream); font-family: var(--font-head); font-size: 1.4rem; letter-spacing: 2px;
}

/* ---------- Toegankelijkheid ---------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 0.75rem 1.3rem;
  border-radius: var(--radius); font-size: 0.85rem; letter-spacing: 1px;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 12px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
