/* ============================================
   Jani Rad — design tokens
   ============================================ */
:root {
  --ink: #12181F;
  --ink-soft: #4B5563;
  --ink-faint: #8A93A1;
  --paper: #FFFFFF;
  --paper-dim: #F5F7F9;
  --line: #E4E8ED;

  --blue-50: #EAF3FC;
  --blue-100: #D3E7F8;
  --blue-400: #4E8FCB;
  --blue-600: #2E6BA3;
  --blue-900: #16324E;

  --teal-900: #0E3B33;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
  display: inline-block;
}

section { padding: 96px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--blue-900); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ---------- nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-soft); transition: color .15s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links .nav-cta {
  color: var(--blue-600);
  font-weight: 600;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 28px 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all .18s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--paper-dim); }
  .nav-toggle { display: block; }
}

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 96px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-name {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 18px;
}
.hero-name .accent { color: var(--blue-600); }
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-credentials {
  font-size: 13.5px;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--blue-50);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.1; }
.hero-photo-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 56px; }
}

/* ---------- about ---------- */
.about .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-photo-block { position: sticky; top: 100px; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/3.6;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.about h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 22px; }
.about-copy p { margin-bottom: 18px; color: var(--ink-soft); font-size: 16.5px; }
.about-copy strong { color: var(--ink); }
.mural-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 16px;
  background: var(--blue-50);
  border-radius: var(--radius-md);
}
.mural-strip img { width: 108px; height: 108px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.mural-strip p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 860px) {
  .about .wrap { grid-template-columns: 1fr; }
  .about-photo-block { position: static; }
  .about-photo { aspect-ratio: 4/3; max-width: 420px; }
}

/* ---------- section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); }
.section-head p { color: var(--ink-soft); font-size: 16.5px; margin-top: 12px; }

/* ---------- ventures ---------- */
.ventures { background: var(--paper-dim); }
.venture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.venture-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.venture-photo { aspect-ratio: 16/10; overflow: hidden; }
.venture-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.venture-card:hover .venture-photo img { transform: scale(1.03); }
.venture-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.venture-body h3 { font-size: 23px; margin-bottom: 6px; }
.venture-role { font-size: 13px; color: var(--blue-600); font-weight: 600; margin-bottom: 14px; }
.venture-body p.desc { color: var(--ink-soft); font-size: 15px; margin-bottom: 22px; flex: 1; }
@media (max-width: 780px) { .venture-grid { grid-template-columns: 1fr; } }

/* ---------- speaking ---------- */
.speaking-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 32px;
}
.speaking-hero img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/8; }
.speaking-hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 32px;
  background: linear-gradient(0deg, rgba(10,14,20,0.75), rgba(10,14,20,0));
  color: #fff;
}
.speaking-hero-caption h3 { font-size: clamp(22px, 3vw, 30px); color: #fff; margin-bottom: 8px; }
.speaking-hero-caption p { color: rgba(255,255,255,0.85); font-size: 15px; max-width: 60ch; }
.speaking-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.speak-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}
.speak-card .num { font-size: 13px; color: var(--blue-600); font-weight: 700; letter-spacing: .05em; }
.speak-card h4 { font-size: 17px; margin: 10px 0 8px; }
.speak-card p { font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 780px) { .speaking-row { grid-template-columns: 1fr; } }
.speaking-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.speaking-gallery .sg-photo { border-radius: var(--radius-md); overflow: hidden; }
.speaking-gallery .sg-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 780px) { .speaking-gallery { grid-template-columns: 1fr; } }

/* ---------- podcast ---------- */
.podcast { background: var(--blue-900); color: #fff; }
.podcast .wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.podcast-cover { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.podcast .eyebrow { color: var(--blue-100); }
.podcast h2 { color: #fff; font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 16px; }
.podcast p.desc { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 14px; }
.podcast p.desc strong { color: #fff; }
.podcast-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.podcast .btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; }
.podcast .btn-outline:hover { border-color: #fff; }
.podcast-photo { margin-top: 26px; border-radius: var(--radius-md); overflow: hidden; }
@media (max-width: 860px) {
  .podcast .wrap { grid-template-columns: 1fr; }
}

/* ---------- press ---------- */
.press-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press-strip a,
.press-strip .press-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: 0 1px 2px rgba(18,24,31,0.04);
  transition: transform .15s ease, border-color .15s ease;
}
.press-strip a:hover { transform: translateY(-2px); border-color: var(--blue-400); }
.press-strip img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.press-strip img.press-logo-darken {
  filter: brightness(0.35) contrast(1.3);
}
.press-strip .press-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.press-more { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 28px; }
.press-more a { font-size: 14.5px; color: var(--blue-600); font-weight: 500; }
.press-more a:hover { text-decoration: underline; }

/* ---------- travel ---------- */
.travel { background: var(--paper-dim); }
.travel-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.travel-grid .t-item { border-radius: var(--radius-md); overflow: hidden; }
.travel-grid .t-item img { width: 100%; height: 100%; object-fit: cover; }
.travel-grid .t-big { grid-row: span 2; }
.travel-grid .t-item img { aspect-ratio: 1/1; }
.travel-grid .t-big img { aspect-ratio: 3/4.2; }
.travel-intro { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.travel-intro .btn { flex-shrink: 0; }
@media (max-width: 860px) {
  .travel-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .travel-grid .t-big { grid-row: span 1; grid-column: span 2; }
  .travel-grid .t-big img { aspect-ratio: 16/10; }
  .travel-intro { grid-template-columns: 1fr; align-items: start; }
}

/* ---------- testimonials ---------- */
.testimonials { position: relative; color: #fff; }
.testimonials-bg { position: absolute; inset: 0; z-index: 0; }
.testimonials-bg img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,20,28,0.88), rgba(14,20,28,0.82));
}
.testimonials .wrap { position: relative; z-index: 1; }
.testimonials .eyebrow { color: var(--blue-100); }
.testimonials h2 { color: #fff; margin-bottom: 40px; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.quote-card p.q { font-size: 15.5px; line-height: 1.65; color: rgba(255,255,255,0.92); margin-bottom: 16px; }
.quote-card p.who { font-size: 13.5px; color: var(--blue-100); font-weight: 600; }
@media (max-width: 780px) { .quote-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact .wrap { text-align: center; max-width: 640px; }
.contact h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 16px; }
.contact p { color: var(--ink-soft); font-size: 17px; margin-bottom: 30px; }
.contact-email {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--blue-600);
  display: inline-block;
  margin-bottom: 30px;
}
.contact-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--ink-faint);
}
footer a { color: var(--ink-faint); }
footer a:hover { color: var(--ink); }
footer .foot-links { display: flex; gap: 20px; }

/* ============================================
   Acting page
   ============================================ */
.acting-hero {
  padding: 64px 0 72px;
  background: var(--blue-900);
  color: #fff;
}
.acting-hero .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.acting-hero-photo { border-radius: var(--radius-lg); overflow: hidden; }
.acting-hero-photo img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.acting-hero .eyebrow { color: var(--blue-100); }
.acting-hero h1 { color: #fff; font-size: clamp(36px, 5.4vw, 58px); margin-bottom: 16px; }
.acting-hero p { color: rgba(255,255,255,0.82); font-size: 17px; margin-bottom: 26px; max-width: 52ch; }
.acting-hero .btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; }
.acting-hero .btn-outline:hover { border-color: #fff; }
@media (max-width: 860px) { .acting-hero .wrap { grid-template-columns: 1fr; } }

.resume-section { padding: 72px 0; border-bottom: 1px solid var(--line); }
.resume-section:last-of-type { border-bottom: none; }
.resume-section .wrap { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: 48px; }
.resume-label h2 { font-size: 22px; }
.resume-label p { color: var(--ink-faint); font-size: 13.5px; margin-top: 8px; text-transform: uppercase; letter-spacing: .06em; }
.resume-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.resume-list li:last-child { border-bottom: none; }
.resume-list .r-title { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.resume-list .r-desc { color: var(--ink-soft); font-size: 14.5px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: var(--blue-50);
  color: var(--blue-600);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
}
.two-col-list { columns: 2; column-gap: 32px; }
.two-col-list li { break-inside: avoid; padding: 8px 0; font-size: 14.5px; color: var(--ink-soft); border-bottom: none; }
@media (max-width: 780px) {
  .resume-section .wrap { grid-template-columns: 1fr; gap: 16px; }
  .two-col-list { columns: 1; }
}
.samples-row { display: flex; gap: 14px; flex-wrap: wrap; }
.samples-row a {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 12px 20px; font-size: 14.5px; font-weight: 500;
}
.samples-row a:hover { border-color: var(--ink); }
.theatre-photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.theatre-photo-row img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; }
.acting-cta { background: var(--paper-dim); text-align: center; padding: 80px 0; }
.acting-cta h2 { font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 14px; }
.acting-cta p { color: var(--ink-soft); margin-bottom: 26px; }
