:root {
  --bg: #060606;
  --panel: #0d0d0d;
  --panel-2: #111111;
  --text: #f3efe7;
  --muted: #c7b9a0;
  --line: rgba(198, 152, 67, 0.34);
  --gold: #c69843;
  --gold-soft: #e5c98f;
  --white-soft: #e8e0d2;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(198,152,67,0.16), transparent 28%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 60%, #060606 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  backdrop-filter: blur(10px);
  background: rgba(6,6,6,0.72);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold-soft);
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 26px;
  color: var(--white-soft);
  font-size: 0.96rem;
}

.nav a { opacity: 0.82; }
.nav a:hover { opacity: 1; color: var(--gold-soft); }
.topbar-actions { display: flex; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ddb46b 0%, #c69843 100%);
  color: #111;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(198,152,67,0.18);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.button:hover { transform: translateY(-1px); }
.button-outline, .button-ghost {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-ghost:hover, .button-outline:hover {
  background: rgba(198,152,67,0.08);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 34px 0 56px;
}

.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin: 0 0 16px;
}

.hero h1,
.section h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero h1 { font-size: clamp(3.6rem, 9vw, 6.8rem); }
.section h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }

.hero-text,
.section p,
.feature-card p,
.topic-card p,
.contact-card a,
.quote-panel p,
.check-list li,
.contact-kicker {
  color: #d6cdc0;
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 22px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-points li {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  font-size: 0.92rem;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.06);
}


.hero-visual-text {
  display: flex;
  align-items: stretch;
}

.hero-note-card {
  width: 100%;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.hero-note-list {
  margin: 18px 0 22px;
  padding-left: 20px;
  color: var(--text);
}

.hero-note-list li + li {
  margin-top: 12px;
}

.inline-link {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 6px 0 40px;
}

.stats-band > div {
  padding: 26px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.stat-label { color: #cfc5b4; }

.section {
  padding: 78px 0;
}

.two-column,
.split-callout,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.signature-block {
  margin-top: 28px;
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.image-card {
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(198,152,67,0.18), rgba(255,255,255,0.04));
}

.brand-panel {
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(198,152,67,0.28), rgba(255,255,255,0.05));
  box-shadow: var(--shadow);
}

.brand-panel-inner {
  height: 100%;
  padding: 34px;
  border-radius: 27px;
  background:
    radial-gradient(circle at top right, rgba(198,152,67,0.12), transparent 34%),
    linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
  border: 1px solid rgba(255,255,255,0.06);
}

.brand-metrics {
  display: grid;
  gap: 18px;
  margin: 18px 0 22px;
}

.brand-metrics > div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.brand-metric-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.brand-metrics strong {
  font-size: 1.04rem;
  line-height: 1.5;
  color: var(--white-soft);
}

.brand-panel-note {
  margin: 0;
  color: #d6cdc0;
}

.dark-panel {
  padding: 84px 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(198,152,67,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-intro.narrow {
  max-width: 560px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.topic-card,
.callout-panel,
.quote-panel,
.contact-card {
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow);
}

.feature-card {
  background: rgba(255,255,255,0.03);
  padding: 26px;
}

.feature-card h3,
.topic-card h3 {
  margin-top: 0;
  color: var(--white-soft);
  font-size: 1.2rem;
}

.light-cards .topic-card {
  background: linear-gradient(180deg, #151515 0%, #101010 100%);
  padding: 28px;
}

.topic-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.callout-panel,
.quote-panel,
.contact-card {
  padding: 30px;
  background: rgba(255,255,255,0.03);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

blockquote {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
  color: var(--white-soft);
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--muted);
}

.contact-card a {
  font-size: 1.1rem;
  color: var(--gold-soft);
}

.contact-primary {
  font-size: 1.22rem !important;
  font-weight: 700;
  color: var(--white-soft) !important;
}

.button-linkedin {
  background: rgba(255,255,255,0.04);
  color: var(--white-soft);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}

.button-linkedin:hover {
  background: rgba(255,255,255,0.08);
}

.linkedin-section {
  padding-top: 0;
}

.linkedin-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}

.linkedin-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.linkedin-points li {
  position: relative;
  padding-left: 26px;
  color: #d6cdc0;
  line-height: 1.6;
}

.linkedin-points li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--gold-soft);
}

.linkedin-card {
  border-radius: 24px;
  padding: 28px;
  background: radial-gradient(circle at top right, rgba(198,152,67,0.12), transparent 35%), linear-gradient(180deg, #111111 0%, #0c0c0c 100%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.linkedin-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.linkedin-card-top strong,
.linkedin-card-copy {
  color: var(--white-soft);
}

.linkedin-card-top span:last-child {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.linkedin-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ddb46b 0%, #c69843 100%);
  color: #111;
  font-weight: 800;
  font-size: 1.2rem;
}

.linkedin-card-copy {
  font-size: 1.05rem;
  margin: 0;
}

.linkedin-cta {
  width: 100%;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 16px 34px;
  color: #ae9f87;
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a:hover,
.contact-card a:hover {
  color: var(--white-soft);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ce676 0%, #1fb95c 100%);
  color: #05130a;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.16);
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 46px rgba(0,0,0,0.35);
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-badge::before {
  content: "✦";
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .hero,
  .two-column,
  .split-callout,
  .contact-section,
  .three-up,
  .stats-band,
  .linkedin-panel {
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    flex-wrap: wrap;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 24px), var(--max)); }
  .hero,
  .two-column,
  .split-callout,
  .contact-section,
  .three-up,
  .stats-band,
  .linkedin-panel {
    grid-template-columns: 1fr;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .topbar {
    justify-content: center;
  }

  .hero { min-height: auto; padding-top: 18px; }
  .dark-panel { padding: 34px 18px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.5rem); }
  .button, .button-outline, .button-ghost { width: 100%; }
  .whatsapp-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }
}


.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}

.section-lead {
  max-width: 760px;
}

.faq-section {
  padding-top: 32px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
}

.contact-card {
  font-style: normal;
}


.talks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.talk-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}

.talk-card-featured {
  background: linear-gradient(180deg, rgba(212,175,55,0.12), rgba(255,255,255,0.04));
}

.talk-kicker, .moment-label {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.talk-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.55rem;
}

.talk-card p {
  margin: 0;
  color: var(--muted);
}

.linkedin-moments {
  padding-top: 0;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.moment-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 260px;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  padding: 1.7rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 35%), linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.moment-card strong {
  font-size: 1.15rem;
}

.moment-card p {
  color: var(--muted);
  margin: 0;
}

.moment-link {
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 980px) {
  .talks-grid, .moments-grid {
    grid-template-columns: 1fr;
  }
}
