
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
  --paper: #f8f6f3;
  --white: #ffffff;
  --ink: #1f1e1b;
  --muted: #6f6b66;
  --gold: #9f7a4c;
  --line: #e7e2dc;
  --dark: #171615;
  --max: 1440px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; color:var(--ink); font-family:var(--sans); background:#fff; -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
button { font:inherit; }
.container { width:min(calc(100% - 96px), var(--max)); margin:0 auto; }

.site-header {
  height:102px; background:rgba(248,246,243,.96); border-bottom:1px solid var(--line);
  display:flex; align-items:center; position:sticky; top:0; z-index:20; backdrop-filter:blur(10px);
}
.header-inner {
  width:min(calc(100% - 96px), 1885px); margin:0 auto; display:flex; align-items:center; justify-content:space-between;
}
.brand { font-family:var(--serif); font-size:22px; white-space:nowrap; }
.brand em { color:var(--gold); font-weight:400; }
.nav-wrap { display:flex; align-items:center; gap:42px; }
.main-nav { display:flex; gap:48px; align-items:center; }
.main-nav a { color:#5e5953; font-size:17px; }
.main-nav a:hover, .main-nav a.active { color:var(--gold); }

.pill, .btn { display:inline-flex; align-items:center; justify-content:center; gap:11px; border-radius:999px; transition:.2s ease; }
.pill { padding:12px 27px; border:1px solid #77716a; font-size:14px; letter-spacing:.18em; text-transform:uppercase; }
.pill:hover { background:var(--ink); color:#fff; }

.hero { background:var(--paper); border-bottom:1px solid var(--line); }
.hero-inner {
  min-height:900px; width:min(calc(100% - 96px), 1885px); margin:0 auto;
  display:grid; grid-template-columns:1.15fr .85fr; align-items:center; gap:100px; padding:95px 0 105px;
}
.eyebrow { color:var(--gold); text-transform:uppercase; font-size:14px; letter-spacing:.30em; font-weight:500; }
.hero h1, .section-title, .page-title { font-family:var(--serif); font-weight:400; }
.hero h1 { font-size:clamp(56px, 5vw, 72px); margin:30px 0 28px; line-height:1.03; }
.hero h1 em { color:var(--gold); font-weight:400; }
.hero-copy { max-width:770px; color:var(--muted); font-size:22px; line-height:1.5; margin:0; }
.hero-actions { display:flex; gap:20px; margin-top:62px; flex-wrap:wrap; }
.btn {
  min-height:54px; padding:0 35px; border:1px solid #d1cbc4; text-transform:uppercase;
  letter-spacing:.17em; font-size:14px; background:transparent;
}
.btn-dark { background:var(--dark); color:#fff; border-color:var(--dark); }
.btn:hover { transform:translateY(-1px); }
.btn-dark:hover { background:#2a2826; }

.portrait-wrap {
  justify-self:center; width:min(100%, 590px); padding:18px; border:1px solid #e1ddd8;
  border-radius:5px; background:#fff; box-shadow:0 26px 40px rgba(33,29,24,.10);
}
.portrait-wrap img { width:100%; aspect-ratio:.80; object-fit:cover; }

.section { padding:82px 0 104px; }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:64px; }
.section-title { font-size:43px; line-height:1.1; margin:18px 0 20px; }
.section-lede { color:var(--muted); font-size:18px; line-height:1.55; max-width:780px; margin:0; }
.text-link { text-transform:uppercase; letter-spacing:.19em; font-size:13px; color:#57524e; white-space:nowrap; }

.reel-grid { display:grid; grid-template-columns:repeat(3, 1fr); gap:42px 44px; }
.reel-card { border:1px solid var(--line); border-radius:4px; overflow:hidden; background:#fff; }
.thumb { position:relative; aspect-ratio:16/9; overflow:hidden; background:#ddd; }
.thumb img { width:100%; height:100%; object-fit:cover; }
.card-body { padding:30px 32px 34px; }
.card-kicker { color:var(--gold); font-size:12px; letter-spacing:.22em; text-transform:uppercase; }
.card-title { font-family:var(--serif); font-size:21px; margin:15px 0 6px; font-weight:400; }
.card-credit { color:#938d87; font-size:15px; }
.card-link { display:inline-block; margin-top:22px; text-transform:uppercase; font-size:12px; letter-spacing:.18em; color:#5d5853; }

.about-strip { background:var(--paper); border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:88px 0 100px; }
.about-grid { display:grid; grid-template-columns:1.3fr .7fr; align-items:center; gap:80px; }
.about-copy h2 { font-family:var(--serif); font-size:34px; line-height:1.33; font-weight:400; max-width:660px; margin:16px 0 24px; }
.about-copy p { color:var(--muted); font-size:17px; line-height:1.62; max-width:760px; }
.about-cta { justify-self:end; }

.contact { padding:112px 0 128px; }
.contact h2 { font-family:var(--serif); font-weight:400; font-size:38px; margin:15px 0 18px; }
.contact-intro { color:var(--muted); font-size:17px; line-height:1.6; max-width:760px; }
.contact-grid { margin-top:58px; display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.contact-card { min-height:176px; border:1px solid var(--line); background:var(--paper); padding:32px; border-radius:4px; }
.contact-icon { color:var(--gold); font-size:21px; }
.contact-label { color:#98918a; letter-spacing:.20em; text-transform:uppercase; font-size:12px; margin-top:20px; }
.contact-value { margin-top:12px; font-size:15px; }
.contact-sub { color:#a09a94; font-size:13px; margin-top:5px; }
.copy-btn { margin-top:16px; border:1px solid var(--line); background:#fff; border-radius:999px; padding:8px 13px; cursor:pointer; color:#6a645f; font-size:12px; }

.site-footer { background:var(--dark); color:#bbb4ad; padding:68px 0 38px; }
.footer-top { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; }
.footer-brand { color:#fff; font-family:var(--serif); font-size:22px; }
.footer-brand em { color:var(--gold); }
.footer-tagline { margin-top:13px; text-transform:uppercase; font-size:11px; letter-spacing:.23em; color:#837d77; }
.footer-nav { display:flex; gap:32px; font-size:14px; }
.footer-rule { border-top:1px solid #2a2826; margin-top:46px; }

.page-hero { background:var(--paper); border-bottom:1px solid var(--line); padding:100px 0 90px; }
.page-title { font-size:56px; margin:18px 0 22px; }
.content-section { padding:80px 0 120px; }
.prose { max-width:820px; color:var(--muted); font-size:18px; line-height:1.8; }
.prose h2 { color:var(--ink); font-family:var(--serif); font-size:32px; font-weight:400; margin-top:46px; }
.resume-grid { display:grid; grid-template-columns:1fr 1fr; gap:42px 70px; margin-top:50px; }
.resume-block h3 { font-family:var(--serif); font-size:26px; font-weight:400; margin:0 0 18px; }
.resume-block p, .resume-block li { color:var(--muted); line-height:1.7; }
.resume-block ul { padding-left:18px; }

.mobile-menu-button { display:none; }

@media (max-width:980px) {
  .container, .header-inner, .hero-inner { width:min(calc(100% - 44px), var(--max)); }
  .main-nav, .header-resume { display:none; }
  .mobile-menu-button { display:block; border:1px solid var(--line); background:#fff; border-radius:999px; padding:9px 14px; font-size:13px; cursor:pointer; }
  .nav-wrap.open .main-nav {
    display:flex; position:absolute; right:22px; top:78px; background:#fff; border:1px solid var(--line);
    flex-direction:column; gap:0; width:220px; box-shadow:0 16px 36px rgba(0,0,0,.08);
  }
  .nav-wrap.open .main-nav a { width:100%; padding:15px 20px; border-bottom:1px solid var(--line); }
  .hero-inner { grid-template-columns:1fr; min-height:auto; padding:80px 0; gap:65px; }
  .portrait-wrap { width:min(100%, 520px); justify-self:start; }
  .reel-grid { grid-template-columns:1fr 1fr; }
  .about-grid { grid-template-columns:1fr; }
  .about-cta { justify-self:start; }
  .contact-grid { grid-template-columns:1fr; }
}

@media (max-width:640px) {
  .site-header { height:78px; }
  .container, .header-inner, .hero-inner { width:min(calc(100% - 32px), var(--max)); }
  .brand { font-size:20px; }
  .hero-inner { padding:62px 0 70px; gap:52px; }
  .hero h1 { font-size:49px; }
  .hero-copy { font-size:18px; }
  .hero-actions { margin-top:38px; }
  .btn { width:100%; }
  .section { padding:70px 0 80px; }
  .section-head { display:block; margin-bottom:40px; }
  .section-head .text-link { display:inline-block; margin-top:24px; }
  .section-title { font-size:36px; }
  .reel-grid { grid-template-columns:1fr; gap:22px; }
  .card-body { padding:24px; }
  .about-strip { padding:70px 0; }
  .about-copy h2 { font-size:30px; }
  .contact { padding:78px 0 90px; }
  .footer-top { align-items:flex-start; flex-direction:column; }
  .footer-nav { flex-wrap:wrap; gap:18px 26px; }
  .page-title { font-size:45px; }
  .resume-grid { grid-template-columns:1fr; }
}


/* === Emergent-style About page === */
.about-page-hero {
  background: var(--paper);
  padding: 88px 0 44px;
}
.about-page-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.03;
  font-weight: 400;
  max-width: 850px;
  margin: 24px 0 0;
}
.about-page-title em {
  color: var(--gold);
  font-weight: 400;
}
.about-detail-section {
  background: var(--paper);
  padding: 28px 0 110px;
}
.about-detail-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 74px;
  align-items: start;
}
.about-photo-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px;
  border-radius: 4px;
}
.about-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.about-facts {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 18px;
}
.about-fact {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 8px 0;
}
.about-fact .label {
  color: #9a948d;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
}
.about-fact .value {
  text-align: right;
  font-size: 13px;
}
.about-copy-stack h2 {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  margin: 0 0 18px;
}
.about-copy-stack p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
.about-copy-stack section + section {
  margin-top: 48px;
}
.training-note {
  margin-top: 14px;
  padding: 26px 28px;
  background: #f3efe8;
  border: 1px solid #e5d9c8;
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
}

/* === Emergent-style Resume page === */
.resume-page {
  background: var(--paper);
}
.resume-page-hero {
  padding: 92px 0 60px;
}
.resume-page-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
}
.resume-page-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 400;
  margin: 22px 0 20px;
}
.resume-page-title em {
  color: var(--gold);
  font-weight: 400;
}
.resume-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 12px;
}
.resume-preview-shell {
  width: min(calc(100% - 96px), var(--max));
  margin: 0 auto;
  padding-bottom: 110px;
}
.resume-preview-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(25,23,20,.06);
}
.resume-preview-bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #9b948c;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.resume-preview-frame {
  background: #202020;
  min-height: 900px;
}
.resume-preview-frame iframe {
  width: 100%;
  height: 900px;
  border: 0;
  display: block;
  background: #202020;
}

@media (max-width: 980px) {
  .about-detail-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .about-photo-column {
    max-width: 480px;
  }
  .resume-page-top {
    display: block;
  }
  .resume-actions {
    margin-top: 28px;
  }
}
@media (max-width: 640px) {
  .about-page-hero { padding: 58px 0 24px; }
  .about-detail-section { padding-bottom: 72px; }
  .about-page-title { font-size: 46px; }
  .about-fact { display: block; }
  .about-fact .value { text-align: left; margin-top: 5px; }
  .resume-page-hero { padding: 58px 0 38px; }
  .resume-page-title { font-size: 45px; }
  .resume-preview-shell { width: min(calc(100% - 32px), var(--max)); }
  .resume-preview-frame,
  .resume-preview-frame iframe { min-height: 620px; height: 620px; }
}

.thumb-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  pointer-events: none;
}
.thumb-play::after {
  content: "";
  display: block;
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #222;
}

.video-title-strip {
  padding: 18px 24px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.video-title-main {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
  color: var(--ink);
}
.video-title-sub {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .video-title-strip {
    padding: 16px 20px 14px;
  }
  .video-title-main {
    font-size: 19px;
  }
}


/* === Final performance-card layout: image + always-visible caption beneath === */
.reel-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.video-card-link {
  display: block;
  background: #fff;
}
.reel-card .thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #ddd;
}
.reel-card .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.video-caption {
  display: block;
  min-height: 132px;
  padding: 20px 24px 22px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.video-caption-source {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .19em;
  font-size: 11px;
  font-weight: 500;
}
.video-caption h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
}
.video-caption-platform {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
}
.video-card-link:hover .video-caption h3 {
  color: var(--gold);
}
@media (max-width: 640px) {
  .video-caption {
    min-height: 0;
    padding: 17px 19px 19px;
  }
  .video-caption h3 {
    font-size: 21px;
  }
}
