/* ────────────────────────────────────────────────────────────────
   Memories of Damascus — Shared styles for SEO landing pages & blog
   Brand-matched: same tokens, fonts en feel als hoofdsite
   ──────────────────────────────────────────────────────────────── */

:root {
  --ink:        #160808;
  --deep:       #1e0d0d;
  --wine:       #4a0e0e;
  --terracotta: #7c2d12;
  --copper:     #9a4a1a;
  --gold:       #c9942a;
  --gold-lt:    #e8c46a;
  --parchment:  #f5edd6;
  --cream:      #fdf8ef;
  --muted:      #9e8060;
  --divider:    rgba(201,148,42,.25);
  --font-display: 'Cormorant SC', serif;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Crimson Pro', serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--parchment);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold-lt); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

/* ─── TOP BAR ─── */
.seo-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22,8,8,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider);
  padding: 1rem 1.5rem;
}
.seo-topbar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.seo-brand {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500; letter-spacing: .15em;
  color: var(--parchment); text-transform: uppercase;
  text-decoration: none;
}
.seo-brand:hover { color: var(--gold); }
.seo-brand small { display: block; font-size: .58rem; letter-spacing: .2em; color: var(--gold); margin-top: 2px; }
.seo-topbar-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.2rem;
  background: var(--gold);
  color: var(--ink); font-family: var(--font-display); font-weight: 500;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(201,148,42,.25);
}
.seo-topbar-cta:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,148,42,.4); color: var(--ink); }
@media (max-width:640px){
  .seo-topbar { padding: .8rem 1rem; }
  .seo-topbar-cta { padding: .5rem .9rem; font-size: .72rem; }
  .seo-brand { font-size: 1rem; }
}

/* ─── HERO ─── */
.seo-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(124,45,18,.35), transparent 60%),
    linear-gradient(180deg, var(--deep) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../sfeerimpressie.webp') center/cover no-repeat;
  opacity: .12; pointer-events: none;
}
.seo-hero-inner { position: relative; max-width: 880px; margin: 0 auto; }
.seo-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .78rem; letter-spacing: .25em;
  color: var(--gold); text-transform: uppercase;
  padding: .4rem 1.1rem;
  border: 1px solid var(--divider);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.seo-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400; line-height: 1.15;
  margin: 0 0 1.2rem;
  color: var(--cream);
}
.seo-hero h1 em { color: var(--gold); font-style: italic; }
.seo-hero p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(245,237,214,.78);
  max-width: 680px; margin: 0 auto 2rem;
  line-height: 1.7;
}
.seo-hero-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 2.2rem;
  background: var(--gold);
  color: var(--ink); font-family: var(--font-display); font-weight: 500;
  font-size: .92rem; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 22px rgba(201,148,42,.3);
}
.seo-hero-cta:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,148,42,.5); color: var(--ink); }
.seo-hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
  margin-top: 2.2rem;
  font-size: .82rem; color: rgba(245,237,214,.55);
}
.seo-hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.seo-hero-meta .dot { width:5px; height:5px; border-radius:50%; background: var(--gold); }

/* ─── BODY SECTIONS ─── */
.seo-section { padding: 4rem 1.5rem; border-bottom: 1px solid var(--divider); }
.seo-section.alt { background: var(--deep); }
.seo-section-inner { max-width: 880px; margin: 0 auto; }
.seo-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 400; line-height: 1.2;
  margin: 0 0 1.4rem;
  color: var(--cream);
}
.seo-section h2 em { color: var(--gold); font-style: italic; }
.seo-section h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem; font-weight: 500;
  color: var(--gold-lt);
  margin: 2rem 0 .8rem;
}
.seo-section p { color: rgba(245,237,214,.82); margin: 0 0 1.1rem; }
.seo-section ul { padding-left: 1.2rem; color: rgba(245,237,214,.82); }
.seo-section ul li { margin-bottom: .55rem; }
.seo-section ul li::marker { color: var(--gold); }
.seo-section strong { color: var(--cream); font-weight: 600; }

/* ─── INFO CARDS GRID ─── */
.seo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.seo-card {
  padding: 1.5rem 1.3rem;
  background: rgba(245,237,214,.04);
  border: 1px solid var(--divider);
  border-radius: 6px;
}
.seo-card h4 {
  font-family: var(--font-display);
  font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .7rem;
}
.seo-card p { font-size: .94rem; margin: 0; color: rgba(245,237,214,.75); }

/* ─── PACKAGES ─── */
.seo-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.seo-pkg {
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(124,45,18,.18), rgba(74,14,14,.18));
  border: 1px solid var(--divider);
  border-radius: 6px;
}
.seo-pkg-name {
  font-family: var(--font-heading);
  font-size: 1.15rem; color: var(--gold);
  margin-bottom: .4rem;
}
.seo-pkg-min {
  font-size: .78rem; color: rgba(245,237,214,.55);
  font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase;
}

/* ─── FAQ ─── */
.seo-faq { margin: 2rem 0; }
.seo-faq-item {
  border: 1px solid var(--divider);
  border-radius: 6px;
  padding: 1.2rem 1.4rem;
  margin-bottom: .8rem;
  background: rgba(245,237,214,.03);
  cursor: pointer;
  transition: background .2s;
}
.seo-faq-item:hover { background: rgba(245,237,214,.06); }
.seo-faq-q {
  font-family: var(--font-heading);
  font-size: 1.1rem; color: var(--cream);
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.seo-faq-q::after {
  content: '+';
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  transition: transform .2s;
}
.seo-faq-item.open .seo-faq-q::after { transform: rotate(45deg); }
.seo-faq-a {
  max-height: 0; overflow: hidden;
  color: rgba(245,237,214,.75);
  font-size: .96rem;
  transition: max-height .3s, margin .3s;
}
.seo-faq-item.open .seo-faq-a { max-height: 500px; margin-top: .9rem; }

/* ─── BOTTOM CTA ─── */
.seo-bottom-cta {
  padding: 4rem 1.5rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(201,148,42,.12), transparent 70%);
}
.seo-bottom-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 1rem;
}
.seo-bottom-cta p { color: rgba(245,237,214,.7); max-width: 580px; margin: 0 auto 2rem; }

/* ─── FOOTER ─── */
.seo-footer {
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  background: var(--deep);
  border-top: 1px solid var(--divider);
  font-size: .85rem;
  color: rgba(245,237,214,.55);
}
.seo-footer a { color: var(--gold-lt); }
.seo-footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; margin-bottom: 1rem; }

/* ─── BLOG-SPECIFIC ─── */
.blog-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  font-size: .85rem; color: rgba(245,237,214,.55);
  margin-bottom: 1rem;
}
.blog-meta time { color: var(--gold-lt); }
.blog-article {
  max-width: 740px; margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}
.blog-article h2 { margin-top: 2.5rem; }
.blog-article h3 { margin-top: 1.8rem; }
.blog-article blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(245,237,214,.04);
  color: rgba(245,237,214,.75);
  font-style: italic;
}

/* Blog index list */
.blog-list { display: grid; gap: 1.5rem; max-width: 880px; margin: 0 auto; }
.blog-card {
  display: block;
  padding: 1.8rem 1.6rem;
  background: rgba(245,237,214,.04);
  border: 1px solid var(--divider);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(245,237,214,.06); }
.blog-card-meta { font-size: .8rem; color: var(--gold); margin-bottom: .5rem; font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; }
.blog-card-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--cream); margin: 0 0 .5rem; line-height: 1.25; }
.blog-card-excerpt { color: rgba(245,237,214,.75); font-size: .95rem; margin: 0; }

/* Responsive tweaks */
@media (max-width:640px){
  body { font-size: 16px; }
  .seo-hero { padding: 3.5rem 1.2rem 3rem; }
  .seo-section { padding: 3rem 1.2rem; }
  .blog-article { padding: 2.5rem 1.2rem 3.5rem; }
}
