:root {
  --black: #060606;
  --charcoal: #101113;
  --charcoal-2: #17191d;
  --gold: #f3c851;
  --gold-soft: #d7a940;
  --cream: #f6f0dd;
  --muted: #b9b4a6;
  --line: rgba(243, 200, 81, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  background: rgba(6, 6, 6, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), #8a651e);
  color: #050505;
  box-shadow: 0 0 28px rgba(243, 200, 81, 0.25);
}
.brand-text { letter-spacing: -0.03em; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 0.9rem; color: var(--muted); }
.main-nav a:hover { color: var(--gold); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px 0; background: var(--cream); }

.section { padding: 96px 0; position: relative; overflow: hidden; }
.hero { min-height: 88vh; display: grid; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(243, 200, 81, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(71, 209, 166, 0.10), transparent 34%),
    linear-gradient(135deg, #050505, #111215 60%, #050505);
}
.hero-grid, .split, .two-column-card, .cuba-grid, .footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; }
h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); letter-spacing: -0.08em; font-weight: 800; }
h2 { font-family: "Playfair Display", serif; font-size: clamp(2.1rem, 4.4vw, 4.2rem); color: #fff7d7; }
h3 { font-size: 1.35rem; color: #fff7d7; }
p { color: var(--muted); margin: 0 0 18px; }
.lead { font-size: clamp(1.25rem, 2vw, 1.7rem); color: var(--gold); font-weight: 700; }

.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button-row.centered { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #050505; box-shadow: 0 10px 32px rgba(243, 200, 81, 0.22); }
.btn-secondary { border: 1px solid var(--line); color: var(--cream); background: rgba(255,255,255,0.04); }

.hero-card, .recipe-card, .content-panel, .contact-card, .resource-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { overflow: hidden; }
.hero-card img { aspect-ratio: 4 / 3; object-fit: cover; }
.hero-card-caption { padding: 22px; }
.hero-card-caption strong { display: block; color: var(--gold); font-size: 1.25rem; }
.hero-card-caption span { color: var(--muted); }

.intro-section { background: #0b0b0c; }
.recipe-card { padding: 34px; }
.recipe-card ol { margin: 16px 0 0; padding-left: 22px; color: var(--cream); }
.recipe-card li { margin: 10px 0; color: var(--muted); }

.dark-section { background: linear-gradient(180deg, #111214, #070707); }
.two-column-card { background: rgba(255,255,255,0.035); border: 1px solid var(--line); border-radius: 30px; overflow: hidden; gap: 0; }
.image-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.content-panel { border: 0; box-shadow: none; padding: 46px; background: transparent; }

.ebook-section { background: #070707; }
.ebook-cover img { border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); max-height: 620px; margin-left: auto; }

.resources-section { background: #101113; }
.section-heading { max-width: 760px; text-align: center; margin: 0 auto 44px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.resource-card { padding: 28px; }
.resource-card a { color: var(--gold); font-weight: 800; }
.method-strip { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.method-strip img { border-radius: 20px; border: 1px solid var(--line); aspect-ratio: 1 / 1; object-fit: cover; background: #000; }

.about-section { background: #070707; }
.image-stack { display: grid; grid-template-columns: 1fr 0.86fr; gap: 16px; align-items: end; }
.image-stack img { border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.image-stack img:nth-child(2) { margin-top: 90px; }

.spanish-section { background: linear-gradient(135deg, #111214, #090909); text-align: center; }
.narrow { max-width: 830px; }

.cuba-section { background: #080808; }
.cuba-copy { background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
blockquote { margin: 24px 0 0; padding-left: 20px; border-left: 3px solid var(--gold); color: #fff7d7; font-family: "Playfair Display", serif; font-size: 1.35rem; }
.cuba-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cuba-gallery img { border-radius: 18px; border: 1px solid var(--line); height: 210px; width: 100%; object-fit: cover; }
.cuba-gallery img:first-child { grid-column: span 2; height: 290px; }

.contact-section { background: linear-gradient(180deg, #101113, #050505); }
.contact-card { max-width: 850px; margin: 0 auto; text-align: center; padding: 48px; }

.site-footer { padding: 36px 0; border-top: 1px solid var(--line); background: #030303; }
.footer-grid { grid-template-columns: 1fr auto; }
.site-footer p { margin: 6px 0 0; }
.footer-links { display: flex; gap: 20px; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 75px; left: 20px; right: 20px;
    display: none; flex-direction: column; align-items: stretch;
    padding: 18px; border: 1px solid var(--line); border-radius: 18px;
    background: rgba(6,6,6,0.96);
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split, .two-column-card, .cuba-grid, .footer-grid { grid-template-columns: 1fr; }
  .resource-grid, .method-strip { grid-template-columns: 1fr 1fr; }
  .ebook-cover img { margin: 0; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .brand-text { font-size: 0.95rem; }
  .section { padding: 72px 0; }
  .container { width: min(100% - 28px, 1120px); }
  .button-row { flex-direction: column; }
  .btn { width: 100%; }
  .resource-grid, .method-strip, .image-stack, .cuba-gallery { grid-template-columns: 1fr; }
  .cuba-gallery img:first-child { grid-column: auto; height: 230px; }
  .image-panel img { min-height: 280px; }
  .content-panel, .contact-card, .recipe-card, .cuba-copy { padding: 26px; }
  .footer-grid { text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

.lead-small {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
}

.bio-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.bio-hero img,
.bio-photo-grid img {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-hero img { min-height: 410px; }

.bio-quote-card,
.bio-text-card,
.bio-final {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.bio-quote-card { padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.bio-quote-card blockquote { margin-top: 18px; }

.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 24px;
}

.bio-text-card { padding: 34px; }
.bio-text-card strong { color: var(--gold); }

.bio-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bio-photo-grid img { min-height: 320px; }

.bio-final {
  margin-top: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 980px) {
  .bio-hero, .bio-grid, .bio-final { grid-template-columns: 1fr; }
  .reverse-bio .bio-photo-grid { order: 2; }
}

@media (max-width: 640px) {
  .bio-photo-grid { grid-template-columns: 1fr; }
  .bio-hero img, .bio-photo-grid img { min-height: 260px; }
  .bio-quote-card, .bio-text-card, .bio-final { padding: 26px; }
}
