/* =========================================================
   ZIJDEBLOEMEN EXPRESS — design tokens
   Luxury editorial identity: thin gold rules, tall serif display,
   wine/gold for the Fleurop/luxe-vers side, deep jade for zijde.
   Deliberately distinct from trnds.nl (different palette, type,
   structural signature) rather than a reskinned clone.
   ========================================================= */

:root {
  --ink: #241F1D;
  --ink-soft: #59504B;
  --paper: #F7F3EE;
  --paper-raised: #FFFFFF;
  --line: rgba(36, 31, 29, 0.13);
  --line-strong: rgba(36, 31, 29, 0.26);

  --wine-900: #3E1019;
  --wine-700: #6B1E2E;
  --wine-500: #96324A;
  --wine-100: #F2E4E7;
  --gold-600: #B8935A;
  --gold-300: #E6D3B0;

  --jade-900: #1B3B34;
  --jade-700: #3B6E64;
  --jade-500: #689488;
  --jade-100: #E4EDEA;

  --radius-s: 4px;
  --radius-m: 10px;
  --radius-l: 2px; /* sharp corners = editorial/luxury, not soft/organic */

  --shadow-card: 0 1px 2px rgba(36,31,29,0.05), 0 16px 32px -18px rgba(36,31,29,0.28);
  --shadow-pop: 0 24px 50px -20px rgba(36,31,29,0.38);

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2.5px solid var(--wine-700); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* Eyebrow: thin-tracked small caps instead of trnds' monospace nursery-tag */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.wine { color: var(--wine-700); }
.eyebrow.jade { color: var(--jade-700); }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: currentColor; opacity: .55; }

/* thin gold rule signature — used instead of trnds' colored tag-bar */
.gold-rule { border: none; border-top: 1px solid var(--gold-600); width: 64px; margin: 0 0 18px; }
.rule-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 8px 0 48px; color: var(--gold-600); }
.rule-divider::before, .rule-divider::after { content: ""; height: 1px; width: 90px; background: var(--line-strong); }
.rule-divider .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-600); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.03em;
  padding: 14px 26px; border-radius: var(--radius-l);
  border: 1.5px solid transparent; text-decoration: none; cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 14px; height: 14px; }
.btn-wine { background: var(--wine-700); color: #fff; }
.btn-wine:hover { background: var(--wine-900); }
.btn-jade { background: var(--jade-700); color: #fff; }
.btn-jade:hover { background: var(--jade-900); }
.btn-gold { background: var(--gold-600); color: var(--ink); }
.btn-gold:hover { background: var(--gold-300); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-raised); }
.btn-ghost.on-dark { border-color: rgba(255,255,255,0.45); color: #fff; }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.text-link { font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line-strong); }
.text-link:hover { text-decoration-color: currentColor; }
.text-link.wine { color: var(--wine-700); }
.text-link.jade { color: var(--jade-700); }

/* =========================================================
   Header
   ========================================================= */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,243,238,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1; }
.logo-mark { font-family: var(--font-display); font-weight: 700; font-size: 25px; letter-spacing: 0.01em; color: var(--ink); font-style: italic; }
.logo-sub { font-size: 9.5px; letter-spacing: 0.24em; color: var(--ink-soft); text-transform: uppercase; margin-top: 3px; }
.main-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-soft); padding: 4px 0; position: relative; }
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--gold-600); }
.header-ctas { display: flex; align-items: center; gap: 10px; }
.header-ctas .btn { padding: 10px 16px; font-size: 13px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin: -8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease; }
@media (max-width: 900px) {
  .main-nav ul { display: none; }
  .header-ctas .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  body.nav-open .main-nav { position: fixed; inset: 84px 0 0 0; background: var(--paper); padding: 28px var(--gutter); overflow-y: auto; }
  body.nav-open .main-nav ul { display: flex; flex-direction: column; gap: 2px; }
  body.nav-open .main-nav a { display: block; padding: 15px 4px; font-size: 21px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-style: italic; }
  body.nav-open .header-ctas { flex-direction: column; align-items: stretch; margin-top: 24px; }
  body.nav-open .header-ctas .btn { display: flex; justify-content: center; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

.breadcrumb { font-size: 12px; color: var(--ink-soft); padding: 18px var(--gutter) 0; letter-spacing: 0.03em; }
.breadcrumb .container { padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { text-decoration: none; color: var(--ink-soft); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.5; }

/* =========================================================
   Hero
   ========================================================= */
.hero-simple { padding: 60px 0 64px; }
.hero-simple h1 { font-size: clamp(36px, 5.2vw, 58px); max-width: 16ch; font-weight: 500; }
.hero-simple .lede { font-size: 19px; color: var(--ink-soft); max-width: 58ch; margin-top: 18px; }
.hero-simple .hero-ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero-simple.with-image .hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,56px); align-items: center; }
.hero-simple.with-image .hero-photo { aspect-ratio: 4/3; overflow: hidden; box-shadow: var(--shadow-pop); }
.hero-simple.with-image .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) { .hero-simple.with-image .hero-grid { grid-template-columns: 1fr; } .hero-simple.with-image .hero-photo { order: -1; aspect-ratio: 16/9; } }

.hero-split-intro { padding: 74px 0 20px; text-align: center; }
.hero-split-intro .eyebrow { justify-content: center; }
.hero-split-intro h1 { font-size: clamp(38px, 6.4vw, 72px); max-width: 19ch; margin: 18px auto 0; font-weight: 500; font-style: italic; }
.hero-split-intro .lede { max-width: 58ch; margin: 22px auto 0; font-size: 19px; color: var(--ink-soft); }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; margin-top: 50px; }
.split-panel { position: relative; display: flex; align-items: flex-end; padding: 42px clamp(20px,4vw,54px); overflow: hidden; min-height: 420px; }
.split-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-panel .scrim { position: absolute; inset: 0; }
.split-panel.wine .scrim { background: linear-gradient(0deg, rgba(62,16,25,0.94) 0%, rgba(62,16,25,0.4) 55%, rgba(62,16,25,0.05) 100%); }
.split-panel.jade .scrim { background: linear-gradient(0deg, rgba(27,59,52,0.94) 0%, rgba(27,59,52,0.4) 55%, rgba(27,59,52,0.05) 100%); }
.split-panel-content { position: relative; color: #fff; }
.split-panel-content .eyebrow { color: rgba(255,255,255,0.8); }
.split-panel-content h2 { font-size: clamp(28px, 3.2vw, 36px); color: #fff; margin: 10px 0 12px; font-style: italic; font-weight: 500; }
.split-panel-content p { color: rgba(255,255,255,0.88); max-width: 40ch; font-size: 15.5px; }
.split-panel-content .btn { margin-top: 18px; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; min-height: auto; } .split-panel { min-height: 340px; } }

/* =========================================================
   Sections / prose
   ========================================================= */
.section { padding: 66px 0; }
.section.tight { padding: 42px 0; }
.section-head { max-width: 62ch; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 500; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 17px; margin-top: 12px; }

.prose { max-width: 68ch; }
.prose h3 { font-size: 24px; margin: 42px 0 14px; font-weight: 500; }
.prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); font-size: 17px; }
.prose ul, .prose ol { margin: 0 0 22px; padding-left: 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 9px; }
.prose strong { color: var(--ink); }

/* =========================================================
   Cards
   ========================================================= */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.topic-card {
  background: var(--paper-raised); padding: 30px 26px;
  text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.2s ease;
}
.topic-card:hover { background: var(--paper); }
.topic-card .eyebrow { font-size: 10.5px; }
.topic-card h3 { font-size: 20px; font-weight: 500; }
.topic-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; flex-grow: 1; }
.topic-card .card-arrow { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; }
.topic-card.wine .card-arrow { color: var(--wine-700); }
.topic-card.jade .card-arrow { color: var(--jade-700); }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 68ch; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--ink); }
.faq-q .plus { font-family: var(--font-body); font-size: 22px; font-weight: 300; color: var(--ink-soft); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 0 24px; color: var(--ink-soft); max-width: 62ch; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band { padding: 50px clamp(24px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; border: 1px solid var(--gold-600); }
.cta-band.wine { background: var(--wine-700); color: #fff; border-color: var(--wine-700); }
.cta-band.jade { background: var(--jade-700); color: #fff; border-color: var(--jade-700); }
.cta-band.neutral { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-band .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 10px; }
.cta-band h3 { color: #fff; font-size: clamp(23px, 3vw, 30px); max-width: 24ch; font-weight: 500; font-style: italic; }
.cta-band-text { max-width: 42ch; }
.dual-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--gold-600); }
@media (max-width: 640px) { .dual-cta { grid-template-columns: 1fr; } }
.dual-cta .cta-band { flex-direction: column; align-items: flex-start; padding: 38px 32px; border: none; }

/* =========================================================
   Info blocks
   ========================================================= */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 800px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--paper-raised); padding: 28px; }
.info-card .eyebrow { margin-bottom: 12px; }
.info-card dl { margin: 0; }
.info-card dt { font-weight: 600; font-size: 15px; margin-top: 12px; }
.info-card dt:first-child { margin-top: 0; }
.info-card dd { margin: 2px 0 0; color: var(--ink-soft); font-size: 15px; }
.info-card ul { list-style: none; color: var(--ink-soft); font-size: 15px; }
.info-card ul li { padding: 4px 0; display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line); }
.info-card ul li:last-child { border-bottom: none; }
.region-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.region-tag { font-size: 12px; letter-spacing: .03em; background: var(--paper); border: 1px solid var(--line); padding: 5px 12px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.82); margin-top: 40px; }
.footer-top { padding: 66px 0 42px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo-mark { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 34ch; margin-top: 14px; }
.footer-col h4 { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,0.82); font-size: 14.5px; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: underline; }
.footer-socials { display: flex; gap: 14px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.center { text-align: center; }
