:root {
  --black: #070707;
  --charcoal: #141414;
  --ink: #202020;
  --gold: #b89454;
  --gold-soft: #d8bd7a;
  --cream: #f4efe3;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #756f63;
  --line: rgba(184, 148, 84, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --container: 1180px;
  --header: 78px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: calc(100% - 32px);
  max-width: var(--container);
  margin-inline: auto;
}

.section { padding: 86px 0; }
.section--cream { background: var(--cream); }
.section--dark { color: var(--white); background: linear-gradient(135deg, #080808, #181714 62%, #2a2318); }

.kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3, p, blockquote { overflow-wrap: anywhere; }
h1, h2, h3 { word-break: normal; }
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1 { color: var(--white); font-size: clamp(2.35rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.3vw, 3rem); }
h3 { font-size: 1.1rem; }
p { margin: 18px 0 0; }

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: var(--header);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid rgba(216, 189, 122, 0.18);
  backdrop-filter: blur(14px);
}

.navbar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img { width: 160px; height: auto; }
.footer-brand img { width: 178px; height: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  padding: 9px 9px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.nav-link:hover, .nav-link.active { color: var(--gold-soft); background: rgba(255, 255, 255, 0.06); }

.header-cta {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(216, 189, 122, 0.4);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-soft);
}

.hero {
  padding: 44px 0 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98), rgba(15, 14, 12, 0.92) 56%, rgba(41, 32, 18, 0.9)),
    url("img/generated/stock-strategy-leadership.jpg") center / cover no-repeat;
}

.hero__grid {
  min-height: calc(100vh - var(--header) - 40px);
  max-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.hero__content,
.hero__portrait,
.split > *,
.book-layout > *,
.career-layout > *,
.contact-panel > * {
  min-width: 0;
}

.hero__text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

blockquote {
  margin: 24px 0 0;
  padding-left: 18px;
  color: var(--gold-soft);
  border-left: 2px solid var(--gold);
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 900;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn--gold { color: #17130d; background: linear-gradient(135deg, var(--gold-soft), var(--gold)); box-shadow: 0 14px 36px rgba(184, 148, 84, 0.25); }
.btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.32); background: rgba(255, 255, 255, 0.08); }
.btn--dark { color: var(--white); border-color: rgba(216, 189, 122, 0.38); background: rgba(0, 0, 0, 0.34); }

.hero__portrait {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(216, 189, 122, 0.2), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.hero__portrait img {
  width: 100%;
  max-height: 630px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  background: #0d0d0d;
}

.identity-section { margin-top: -28px; padding-top: 0; }
.identity-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }

.identity-card {
  padding: 28px;
  border: 1px solid rgba(184, 148, 84, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.line-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold);
  border: 1px solid rgba(184, 148, 84, 0.45);
  border-radius: var(--radius);
}

.line-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.identity-card p, .split p, .contact-panel p { color: var(--muted); }

.split, .book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.82fr);
  gap: 52px;
  align-items: center;
}

.split--reverse { grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1fr); }

.framed-image, .book-main {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.framed-image img, .book-main img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
}

.bio-image img { max-height: 650px; object-fit: contain; background: #111; }

.facts, .theme-list, .platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.facts span, .theme-list li, .platforms span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #20180f;
  border: 1px solid rgba(184, 148, 84, 0.34);
  border-radius: var(--radius);
  background: rgba(216, 189, 122, 0.16);
  font-weight: 800;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 42px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: career;
}

.timeline li {
  counter-increment: career;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.timeline li::before {
  content: counter(career, decimal-leading-zero);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--black);
  border-radius: var(--radius);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(216, 189, 122, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.career-images { display: grid; gap: 16px; }
.career-images img, .project-images img, .book-gallery img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 148, 84, 0.24);
  object-fit: cover;
}

.career-images img { aspect-ratio: 16 / 10; }

.book-section { background: linear-gradient(180deg, var(--paper), #ffffff); }
.book-main img { max-height: 640px; object-fit: contain; background: #111; }
.theme-list { padding: 0; list-style: none; }

.book-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.book-gallery img { aspect-ratio: 3 / 4; object-fit: contain; background: #111; }
.book-gallery img:last-child { aspect-ratio: 4 / 3; object-fit: cover; background: transparent; }

.platforms { justify-content: center; }
.platforms span { background: var(--white); }

.quote-band {
  padding: 76px 0;
  color: var(--white);
  background: linear-gradient(135deg, #060606, #17130d);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quote-grid blockquote {
  min-height: 150px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(216, 189, 122, 0.32);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.project-label {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  color: #21170c;
  border-radius: var(--radius);
  background: var(--gold-soft);
  font-weight: 900;
}

.project-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.project-images img { aspect-ratio: 3 / 4; object-fit: contain; background: #111; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-button {
  position: relative;
  min-height: 230px;
  padding: 0;
  border: 1px solid rgba(216, 189, 122, 0.24);
  border-radius: var(--radius);
  background: #111;
  overflow: hidden;
  cursor: pointer;
}

.gallery-button.tall { grid-row: span 2; }
.gallery-button img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; transition: transform 0.28s ease; }
.gallery-button.tall img { object-fit: contain; }
.gallery-button:hover img { transform: scale(1.04); }

.gallery-button span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent);
  font-weight: 900;
  text-align: left;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(184, 148, 84, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--black);
  border-radius: 50%;
  background: var(--gold-soft);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p { margin: 0; padding: 0 20px 18px; color: var(--muted); }
.faq-item.active .faq-answer { max-height: 220px; }

.cta-section {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.74)),
    url("img/client/book-promo-poster.jpg") center / cover no-repeat;
}

.cta-inner { max-width: 900px; }
.cta-inner p { max-width: 720px; color: rgba(255, 255, 255, 0.78); }

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(184, 148, 84, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-links li {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid rgba(184, 148, 84, 0.24);
  border-radius: var(--radius);
}

.contact-links strong { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; }
.contact-links a { color: #1b1b1b; font-weight: 900; }

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  display: grid;
  gap: 10px;
}

.floating-contact__button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-contact__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.floating-contact__button--whatsapp {
  background: #25d366;
}

.floating-contact__button--phone {
  background: linear-gradient(135deg, #1f7bd8, #0756a4);
}

.floating-contact__button svg { width: 25px; height: 25px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.open { display: flex; }
.lightbox figure { width: min(96vw, 980px); max-height: 92vh; margin: 0; color: var(--white); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: var(--radius); background: #111; }
.lightbox figcaption { margin-top: 10px; color: var(--gold-soft); font-weight: 800; text-align: center; }

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 34px;
}

.site-footer h2 { margin: 0 0 14px; color: var(--gold-soft); font-size: 1rem; }
.site-footer p { color: rgba(255, 255, 255, 0.72); }
.site-footer ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: var(--gold-soft); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 189, 122, 0.2);
}

.footer-bottom p { margin: 0; }

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: var(--header);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(216, 189, 122, 0.26);
    border-radius: var(--radius);
    background: rgba(8, 8, 8, 0.98);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-link { width: 100%; padding: 12px; }
  .hero__grid, .split, .split--reverse, .book-layout, .career-layout, .contact-panel { grid-template-columns: 1fr; }
  .hero__grid { max-height: none; }
  .identity-grid, .quote-grid { grid-template-columns: 1fr; }
  .media-grid, .book-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  :root { --header: 68px; }
  .container { width: calc(100% - 24px); }
  .hero__grid,
  .identity-grid,
  .split,
  .split--reverse,
  .book-layout,
  .career-layout,
  .media-grid,
  .contact-panel,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    max-width: 366px;
  }
  .section { padding: 62px 0; }
  .brand img { width: 136px; }
  .hero { padding: 34px 0 48px; }
  .hero__grid { min-height: auto; gap: 28px; }
  h1 { font-size: 2.02rem; line-height: 1.12; word-break: break-word; }
  h2 { word-break: break-word; }
  .hero__text { font-size: 1rem; }
  blockquote { font-size: 0.94rem; }
  .hero__content,
  .identity-card,
  .framed-image,
  .book-main,
  .gallery-button,
  .contact-panel {
    max-width: 100%;
  }
  .hero__portrait img { max-height: 520px; }
  .button-row, .project-images, .footer-bottom { flex-direction: column; }
  .btn { width: 100%; }
  .media-grid, .book-gallery { grid-template-columns: 1fr; }
  .gallery-button.tall { grid-row: auto; }
  .contact-panel { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; }
  .floating-contact { right: 12px; bottom: 12px; }
  .floating-contact__button { width: 46px; height: 46px; }
}
