/* Sex in Amsterdam - donker en elegant */
:root {
  --bg: #0d0d0f;
  --bg-soft: #16161a;
  --bg-card: #1b1b20;
  --line: #2a2a31;
  --text: #e9e7e2;
  --muted: #a5a3a0;
  --gold: #c9a24b;
  --gold-soft: #d9b968;
  --maxw: 1080px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.5em;
}

h1 { font-size: 2.8rem; letter-spacing: 0.3px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; font-family: "Inter", sans-serif; font-weight: 600; }

p { margin: 0 0 1.1em; color: var(--text); }

a { color: var(--gold-soft); text-decoration: none; }
a:hover { color: #fff; }

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

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

.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.lead { font-size: 1.2rem; color: var(--muted); max-width: 640px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,13,15,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.4px;
}
.brand span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 84px;
  background:
    radial-gradient(1200px 500px at 70% -10%, rgba(201,162,75,0.14), transparent 60%),
    linear-gradient(180deg, #101013, #0d0d0f);
  border-bottom: 1px solid var(--line);
}
.hero h1 { max-width: 780px; }
.hero .lead { margin-top: 8px; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--gold); color: #14110a; }
.btn-primary:hover { background: var(--gold-soft); color: #14110a; transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: #fff; }

/* Grid cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin-bottom: 0; }
.card .icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Feature list */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--text);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

/* Quote */
.quote {
  border-left: 3px solid var(--gold);
  padding: 6px 0 6px 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #efe9dd;
  font-style: italic;
  max-width: 720px;
}
.quote cite { display: block; font-size: 0.9rem; color: var(--muted); font-style: normal; margin-top: 10px; font-family: "Inter", sans-serif; }

/* Author */
.author {
  display: flex;
  gap: 22px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.author img { width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0; border: 2px solid var(--gold); }
.author .name { font-weight: 600; color: #fff; }
.author .role { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.author p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* Price */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card { text-align: center; }
.price-card .amount { font-family: "Cormorant Garamond", serif; font-size: 2.4rem; color: var(--gold); margin: 6px 0; }
.price-card .amount small { font-size: 0.9rem; color: var(--muted); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item h3 { margin: 0 0 8px; font-size: 1.12rem; }
.faq-item p { margin: 0; color: var(--muted); }

/* CTA band */
.cta-band {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(201,162,75,0.16), transparent 65%),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

/* Footer */
.site-footer {
  background: #0a0a0c;
  border-top: 1px solid var(--line);
  padding: 56px 0 30px;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 0.95rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.disclaimer-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 26px;
}

/* Contact */
.contact-mail {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold);
  word-break: break-word;
}

@media (max-width: 860px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .grid-3, .grid-2, .price-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 62px; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .author { flex-direction: column; text-align: center; }
}
