:root {
  --bg: #0a0a0a;
  --bg-elev: #121212;
  --text: #f4f1ea;
  --muted: #a8a29a;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.18);
  --wa: #25d366;
  --wa-hover: #2fe472;
  --line: rgba(244, 241, 234, 0.12);
  --radius: 14px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --wrap: min(1120px, calc(100% - 2rem));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }
.wrap { width: var(--wrap); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--gold); color: #000; padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 10, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 3.5rem;
}
.logo {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 600;
}
.logo span { color: var(--gold); }
.nav {
  display: none; gap: 1rem; margin-left: auto; font-size: 0.9rem;
}
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--text); }
.lang { display: flex; gap: 0.25rem; margin-left: auto; }
.nav + .lang { margin-left: 0; }
.lang-btn {
  background: transparent; border: 1px solid var(--line);
  color: var(--muted); border-radius: 999px;
  padding: 0.25rem 0.65rem; font-size: 0.75rem; font-weight: 600;
}
.lang-btn.is-active {
  background: var(--gold-soft); border-color: var(--gold); color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 18%;
}
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.25) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.2) 55%, transparent 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  padding: 4.5rem 0 3.5rem;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; color: var(--gold); margin: 0 0 0.75rem;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 600; line-height: 1.02; margin: 0 0 0.35rem;
}
.aka {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.aka a { color: var(--gold); text-decoration: none; }
.tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--muted); max-width: 34ch; margin: 0 0 1.6rem;
}
.hero-cta, .contact-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.8rem 1.25rem;
  border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: #dbb33a; color: #111; }
.btn-wa { background: var(--wa); color: #0b1a10; }
.btn-wa:hover { background: var(--wa-hover); color: #0b1a10; }
.btn-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.03); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 0.95rem 1.5rem; }

.section { padding: 4.5rem 0; }
.section-head { margin-bottom: 1.75rem; }
.section-head h2, .about-text h2, .contact h2, .facts h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 0.35rem; font-weight: 600;
}
.facts h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-top: 2.5rem; }
.section-head p { margin: 0; color: var(--muted); }

.about { border-top: 1px solid var(--line); }
.about-grid {
  display: grid; gap: 2rem; align-items: center;
}
.about-photo {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden; background: #1a1a1a;
}
.about-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.about-text p { color: var(--muted); font-size: 1.05rem; }
.bio-tags {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.bio-tags li {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.85rem; font-size: 0.82rem; color: var(--gold);
  background: var(--gold-soft);
}

.highlights { background: linear-gradient(180deg, var(--bg) 0%, #0e0e0e 100%); }
.hl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.hl-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.hl-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
}
.hl-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.facts-dl {
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.facts-dl > div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.facts-dl dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.facts-dl dd { margin: 0; color: var(--muted); }

.video-grid {
  display: grid;
  gap: 1.25rem;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--line);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.link-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.link-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.link-btn-soft {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
}

.book-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.book-list li {
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  font-weight: 500;
}
.book-list li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 0.65rem;
}

.contact { padding-bottom: 3rem; }
.contact-card {
  text-align: center;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.contact-lead { color: var(--muted); max-width: 42ch; margin: 0.5rem auto 1.5rem; }
.contact-actions { justify-content: center; }
.fineprint { margin: 1.25rem 0 0; font-size: 0.85rem; color: #6f6a63; }
.fineprint a { color: var(--muted); }

.faq { border-top: 1px solid var(--line); padding-bottom: 5rem; }
.faq-list { display: grid; gap: 0.65rem; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  padding: 0.85rem 1.15rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: var(--muted); font-size: 0.88rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between;
}
.footer-inner p { margin: 0; }

@media (min-width: 720px) {
  .nav { display: flex; }
  .about-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .hl-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .link-grid { grid-template-columns: repeat(4, 1fr); }
  .book-list { grid-template-columns: repeat(2, 1fr); }
  .facts-dl { grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
}

@media (min-width: 980px) {
  .hl-grid { grid-template-columns: repeat(4, 1fr); }
  .book-list { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
