:root {
  --bg: #100d12;
  --bg-soft: #18131b;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f8f3eb;
  --muted: #cfc1b6;
  --muted-2: #9e928c;
  --gold: #d7a44b;
  --gold-light: #f2d18a;
  --rose: #a54b6b;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 24px 70px rgba(0,0,0,0.42);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(215,164,75,0.18), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(165,75,107,0.25), transparent 34rem),
    linear-gradient(135deg, #100d12 0%, #18131b 48%, #0d0a0f 100%);
  color: var(--text);
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(18px);
  background: rgba(16,13,18,0.72);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #1b1112;
  font-size: 1.25rem;
}
.brand-text { font-size: 1.05rem; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .94rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(255,255,255,.09); }
.site-nav .nav-cta { background: var(--text); color: #160f13; font-weight: 750; }
.site-nav .nav-cta:hover { background: var(--gold-light); color: #160f13; }
.nav-toggle { display: none; }

main { overflow: hidden; }
.hero {
  min-height: calc(100vh - 79px);
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 8% 2% auto auto;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  background:
    linear-gradient(120deg, rgba(215,164,75,.20), rgba(165,75,107,.14)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.06) 18px 19px);
  border-radius: 50%;
  filter: blur(.2px);
  opacity: .74;
  z-index: -1;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .74rem;
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 {
  max-width: 850px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 8.2vw, 7.6rem);
  letter-spacing: -.065em;
}
h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.15rem, 4.2vw, 4.4rem);
  letter-spacing: -.045em;
}
h3 { font-size: 1.25rem; letter-spacing: -.02em; }
.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  color: var(--muted);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-actions.center { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #1b1112; }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.06); color: var(--text); }
.button.full { width: 100%; }

.hero-card {
  padding: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.portrait-placeholder {
  min-height: 440px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(140deg, rgba(215,164,75,.24), rgba(165,75,107,.2)),
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.14), transparent 30%),
    linear-gradient(180deg, #2a1d23, #110d13);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  position: relative;
}
.portrait-placeholder::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  top: 70px;
}
.portrait-placeholder::after {
  content: "";
  position: absolute;
  width: 270px;
  height: 250px;
  border-radius: 48% 48% 0 0;
  background: rgba(255,255,255,.08);
  bottom: -34px;
}
.portrait-placeholder span { position: relative; z-index: 1; color: var(--muted); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-card p { color: var(--muted-2); margin: 14px 6px 4px; font-size: .9rem; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 28px);
}
.split { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(28px, 6vw, 84px); align-items: start; }
.text-block p { color: var(--muted); font-size: 1.08rem; margin-top: 0; }
.text-link { color: var(--gold-light); font-weight: 800; border-bottom: 1px solid rgba(242,209,138,.35); }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.card-icon { font-size: 2rem; margin-bottom: 18px; }
.card p { color: var(--muted); margin-bottom: 0; }

.feature-band {
  max-width: var(--max);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(215,164,75,.13), rgba(165,75,107,.16)),
    rgba(255,255,255,.045);
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow);
}
.feature-content p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.social-panel { display: grid; gap: 14px; }
.social-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(0,0,0,.23);
  border: 1px solid var(--line);
}
.social-card span { display: block; color: var(--muted-2); font-size: .88rem; }
.social-card strong { font-size: 1.35rem; }

.cta-section { text-align: center; max-width: 860px; }
.cta-section p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 9vw, 118px) clamp(18px, 4vw, 28px) clamp(30px, 6vw, 70px);
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.2rem); }
.page-hero p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.18rem; }
.content-narrow { max-width: 850px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 28px) 100px; }
.prose { color: var(--muted); font-size: 1.1rem; }
.prose p { margin: 0 0 1.2em; }
.placeholder-note {
  border: 1px dashed rgba(242,209,138,.48);
  background: rgba(215,164,75,.08);
  border-radius: 18px;
  padding: 18px 20px;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.video-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(215,164,75,.18), rgba(165,75,107,.18)), rgba(0,0,0,.24);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--muted);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: grid; gap: 8px; margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
label { color: var(--gold-light); font-weight: 800; font-size: .88rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.075);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(242,209,138,.7); box-shadow: 0 0 0 4px rgba(215,164,75,.12); }
select option { color: #171015; }
.form-help { color: var(--muted-2); font-size: .9rem; margin-top: 8px; }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 28px) 44px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted-2);
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-size: 1.2rem;
  }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(16,13,18,.96);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 15px; }
  .hero, .split, .feature-band { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 520px; }
  .card-grid.three, .card-grid.two, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
}

@media (max-width: 560px) {
  h1 { font-size: 3rem; }
  .portrait-placeholder { min-height: 340px; }
  .button { width: 100%; }
  .site-footer { display: block; }
  .footer-links { margin-top: 12px; }
}

.youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
  margin-bottom: 16px;
  background: rgba(0,0,0,.24);
}

.detail-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}
.detail-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}
.detail-list strong { color: var(--gold-light); }
.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--gold-light);
  font-weight: 800;
}
.form-status.error { color: #ffb3b3; }
.form-status.success { color: #bdf5c7; }

.photo-card { padding: 14px; }
.hero-photo {
  width: 100%;
  min-height: 440px;
  max-height: 620px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.photo-gallery-section { padding-top: 20px; }
.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.photo-gallery img,
.bio-photo-card img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.05);
}
.photo-gallery img {
  height: 520px;
  object-fit: cover;
}
.photo-gallery img:nth-child(1) { object-position: center 22%; }
.photo-gallery img:nth-child(2) { object-position: center 35%; }
.photo-gallery img:nth-child(3) { object-position: center 18%; }
.bio-photo-card { margin-bottom: 34px; }
.bio-photo-card img {
  max-height: 620px;
  object-fit: cover;
  object-position: center 18%;
}

@media (max-width: 880px) {
  .photo-gallery { grid-template-columns: 1fr; }
  .photo-gallery img { height: auto; max-height: 760px; }
}

@media (max-width: 560px) {
  .hero-photo { min-height: 340px; }
}
