
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Nunito:wght@700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root{
  --page:#eeeeee;
  --paper:#ffffff;
  --ink:#171513;
  --muted:#666058;
  --line:#d8d0c6;
  --line-2:#e7e0d7;
  --soft:#f3eee7;
  --soft-2:#ece7df;
  --header:#0e0e0f;
  --header-line:#242323;
  --gold:#cfc1ac;
  --max:1120px;
  --shadow:0 14px 32px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--page);
  color:var(--ink);
  font-family:"Source Sans 3", Arial, Helvetica, sans-serif;
  line-height:1.55;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}
.page-wrap{min-height:100vh}

.site-header{
  background:linear-gradient(180deg,#171718,#0d0d0e);
  border-bottom:1px solid var(--header-line);
  position:sticky;
  top:0;
  z-index:30;
}
.header-inner{
  height:48px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
}
.main-nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.main-nav.left{justify-content:flex-end}
.main-nav.right{justify-content:flex-start}
.main-nav a{
  color:#ddd4c8;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:.76rem;
  font-weight:400;
  letter-spacing:.12em;
  text-transform:none;
  padding:0;
  line-height:48px;
  display:block;
}
.main-nav a:hover{color:#f6efe3}
.logo-wrap{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top:0;
}
.logo-wrap img{
  width:150px;
  height:auto;
  opacity:.95;
  transform:translateY(-2px);
}

.hero-shell{
  padding:0 0 34px;
  border-bottom:1px solid var(--line);
}
.hero-card{
  background:var(--paper);
}
.hero-media{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}


.section-title.compact{
  font-size:clamp(2rem,3.2vw,3rem);
  line-height:1.02;
  font-style:normal;
  text-transform:none;
  letter-spacing:0;
  font-weight:600;
}

@media (max-width:700px){
  .section-title.compact{font-size:clamp(1.65rem,5vw,2.2rem);}
}
.hero-summary{
  background:var(--paper);
  text-align:center;
  padding:18px 24px 0;
}
.hero-overline{
  display:block;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:.76rem;
  text-transform:none;
  letter-spacing:.24em;
  color:#b0a38f;
  margin-bottom:6px;
}
.hero-title{
  margin:0;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(3.15rem,5.8vw,5.2rem);
  line-height:.9;
  font-weight:700;
  letter-spacing:.01em;
  text-transform:none;
}
.hero-sub{
  margin:8px auto 0;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(.92rem,1.55vw,1.14rem);
  letter-spacing:.18em;
  text-transform:none;
  color:#8a8072;
  max-width:940px;
}
.hero-tabs{
  width:min(100%, 704px);
  margin:18px auto 0;
  background:var(--soft);
  border:1px solid var(--line);
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.hero-tabs a{
  min-height:72px;
  padding:12px 12px;
  border-left:1px solid var(--line);
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:.84rem;
  line-height:1.28;
  color:#7a7369;
  display:flex;
  align-items:center;
}
.hero-tabs a:first-child{
  border-left:none;
  box-shadow: inset 0 3px 0 #4e92ff;
}
.hero-tabs a:hover{background:#e9e2d8}

.section{padding:56px 0}
.kicker{
  display:block;
  color:#8d8479;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:.72rem;
  text-transform:none;
  letter-spacing:.16em;
  margin-bottom:8px;
}
.section-title{
  margin:0 0 12px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(2.65rem,4.8vw,4.55rem);
  line-height:.91;
  font-weight:700;
  letter-spacing:0;
  text-transform:none;
  font-style:italic;
}
.lead{
  color:#47413b;
  font-size:1.02rem;
  max-width:760px;
}
.btn-link{
  display:inline-block;
  margin-top:12px;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid #ccbda8;
  color:#6e6253;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:.82rem;
  letter-spacing:.1em;
  text-transform:none;
}
.btn-link:hover{background:#f6f0e7}

.grid-main{
  display:grid;
  grid-template-columns:minmax(0,1.46fr) minmax(280px,.7fr);
  gap:34px;
}
.panel{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.panel.pad{padding:22px}
.sidebar-title{
  margin:0 0 16px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:1.12rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:none;
}
.news-list{display:grid;gap:18px}
.news-list article{display:grid;gap:10px}
.news-list img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border:1px solid var(--line);
}
.news-list strong{
  font-family:"Source Sans 3", Arial, sans-serif;
  font-size:1rem;
  line-height:1.35
}

.feature-layout{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(260px,.78fr);
  gap:28px;
  align-items:start;
}
.feature-main{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.feature-main img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.feature-main .copy{padding:22px}
.feature-main h3{
  margin:0 0 8px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:2.95rem;
  line-height:.9;
  font-weight:700;
  text-transform:none;
  font-style:italic;
}
.feature-main p{margin:0;color:#4a433a}
.side-stack{
  display:grid;
  gap:18px;
}
.side-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.side-card img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
}
.side-card .copy{padding:16px}
.side-card h4{
  margin:0 0 6px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:1.92rem;
  line-height:.94;
  font-weight:700;
  text-transform:none;
  font-style:italic;
}
.side-card p{margin:0;color:#564f46;font-size:.96rem}

.bio-layout{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(280px,.76fr);
  gap:28px;
}
.bio-copy{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:28px;
}
.bio-copy p{
  margin:0 0 16px;
  color:#3f3933;
  font-size:1.04rem;
}
.profile-side{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:20px;
}
.profile-side img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  border:1px solid var(--line);
  margin-bottom:18px;
}
.fact{
  margin:0 0 16px;
}
.fact .kicker{margin-bottom:4px}
.fact strong{display:block}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.contact-card img{
  width:100%;
  aspect-ratio:16/7;
  object-fit:cover;
}
.contact-card .copy{
  padding:28px;
}
.contact-card h2{
  margin:0 0 10px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(2.5rem,4.1vw,3.85rem);
  line-height:.9;
  font-weight:700;
  text-transform:none;
  font-style:italic;
}
.contact-card p{margin:0;color:#4b453f;max-width:760px}

.footer{
  padding:24px 0 34px;
  color:#6e665b;
  font-size:.9rem;
}
.footer .container{
  border-top:1px solid var(--line);
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

@media (max-width:980px){
  .header-inner{grid-template-columns:1fr auto}
  .main-nav.left{display:none}
  .logo-wrap{justify-self:start}
  .main-nav.right{gap:12px}
  .hero-tabs,
  .grid-main,
  .feature-layout,
  .bio-layout{grid-template-columns:1fr}
}
@media (max-width:700px){
  .hero-tabs{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .hero-tabs{grid-template-columns:1fr}
  .main-nav a{font-size:.66rem}
  .logo-wrap img{width:108px}
}

.hero-title{
  text-transform:none;
  letter-spacing:0.02em;
  font-weight:600;
}
.section-title{
  font-family:"Barlow Semi Condensed", sans-serif;
  font-weight:600;
  text-transform:none;
}

.hero-media-forest{
  position:relative;
  background:url('assets/images/hero/hero-legacy-ih.png') center/cover no-repeat;
}
.hero-media-forest a{
  display:flex;align-items:center;justify-content:center;height:100%;
}
.hero-media-forest img{
  max-height:70%;max-width:70%;object-fit:contain;
}

.hero-media img{
  object-fit:contain !important;
  background:#111;
}


/* V14 targeted fixes */
.hero-title{
  font-weight:600;
  letter-spacing:0.01em;
}
.hero-summary{
  padding:16px 24px 0;
}

.hero-media-top{
  background:url('assets/images/hero/hero-main-v2.png') center/cover no-repeat;
}
.hero-media-works{
  background:url('assets/images/hero/hero-split-v1.png') center/cover no-repeat;
}
.hero-media-bio{
  background:url('assets/images/hero/hero-main-v2.png') center/cover no-repeat;
}

.hero-media-center a,
.hero-media-top a,
.hero-media-works a{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px;
}
.hero-media-top img,
.hero-media-works img{
  width:auto !important;
  height:auto !important;
  max-width:60%;
  max-height:72%;
  object-fit:contain !important;
  box-shadow:0 10px 24px rgba(0,0,0,.28);
}

.hero-media-bio img{
  width:100%;
  height:100%;
  object-fit:cover !important;
}

.section-title.compact,
.profile-overview-title,
.works-lead-title{
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(2.05rem,3.2vw,3.05rem);
  line-height:1.03;
  font-style:normal;
  text-transform:none;
  letter-spacing:0;
  font-weight:600;
  margin:0 0 12px;
}

.profile-overview-title{
  max-width:620px;
}

.side-card img{
  width:100%;
  height:220px;
  object-fit:contain !important;
  background:#fff;
}

.news-list img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border:1px solid var(--line);
  background:#111;
}

.feature-layout{
  margin-top:8px;
}

@media (max-width:700px){
  .hero-media-top img,
  .hero-media-works img{
    max-width:72%;
    max-height:70%;
  }
  .section-title.compact,
  .profile-overview-title,
  .works-lead-title{
    font-size:clamp(1.7rem,4.8vw,2.3rem);
  }
}

/* V15 forest blend tuning */
.hero-media-top{
  background:
    linear-gradient(to bottom, rgba(10,14,18,0.3), rgba(10,14,18,0.7)),
    url('assets/images/hero/hero-main-v2.png') center/cover no-repeat;
}

.hero-media-works{
  background:
    linear-gradient(to bottom, rgba(10,14,18,0.3), rgba(10,14,18,0.7)),
    url('assets/images/hero/hero-main-v2.png') center/cover no-repeat;
}

/* subtle bottom fade to connect logo */
.hero-media-top img,
.hero-media-works img{
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.5));
}

/* V21 FORCE HEADER FIX */
.site-header .header-inner{
  height:48px !important;
  min-height:48px !important;
  display:grid !important;
  grid-template-columns:1fr auto 1fr !important;
  align-items:center !important;
}

.site-header .main-nav{
  display:flex !important;
  align-items:center !important;
  height:48px !important;
}

.site-header .main-nav ul{
  display:flex !important;
  align-items:center !important;
  height:48px !important;
}

.site-header .main-nav a{
  line-height:1 !important;
  padding:0 8px !important;
  display:flex !important;
  align-items:center !important;
  height:48px !important;
}

.site-header .logo-wrap{
  padding-top:0 !important;
  display:flex !important;
  align-items:center !important;
}

.site-header .logo-wrap img{
  transform:translateY(-3px) !important;
}


/* V24 corrections */
.hero-media{
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.feature-main img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:contain;
  background:#fff;
}


/* V25 20260413_1105 */
/* Cache-busting ready build: HTML points to versioned CSS/JS, images get version query */

.hero-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.contact-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.feature-main img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain !important;
  background: #fff;
}

.side-card img {
  width: 100%;
  height: 220px;
  object-fit: contain !important;
  background: #fff;
}


/* V26 20260413_1115 */
.contact-hero-shell {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}
.contact-hero-shell .container {
  margin-top: 0;
}


/* V27 20260413_1135 */
.contact-card img {
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  margin:0;
  border:0;
}
.contact-card {
  overflow:hidden;
}
.contact-card .copy {
  border-top:0;
}

/* Footer refresh */
.footer {
  padding: 24px 0 34px;
  color: #6e665b;
  font-size: .9rem;
}
.footer .container {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.footer-grid {
  display:grid !important;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 18px;
  align-items:start;
}
.footer-brand,
.footer-links,
.footer-meta {
  display:grid;
  gap: 8px;
}
.footer-brand strong {
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:1rem;
  font-weight:600;
  color:#2a2723;
}
.footer-links a {
  color:#6e665b;
}
.footer-links a:hover {
  color:#2a2723;
}
.footer-meta {
  text-align:right;
}
@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns:1fr;
  }
  .footer-meta {
    text-align:left;
  }
}


/* V28 20260413_1148 */
.hero-title-soft {
  font-family: "Nunito", "Barlow Semi Condensed", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
}

.news-list img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #111;
}

/* Footer nav horizontally, more current feel */
.footer-links {
  display:flex !important;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
}
.footer-links a {
  display:inline-block;
}

/* Remove contact white seam under header */
.contact-hero-shell {
  padding-top: 0 !important;
  margin-top: 0 !important;
  border-top: 0 !important;
}
.contact-hero-shell .contact-card {
  margin-top: -1px;
}
.contact-hero-shell .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.site-header {
  margin-bottom: 0 !important;
}


/* V29 20260413_1205 */
/* Unified hero structure across all pages */
.hero-title-soft {
  font-family: "Nunito", "Barlow Semi Condensed", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: .95;
}

.hero-shell {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.hero-card {
  background: var(--paper);
}

.hero-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}

.contact-card {
  margin: 0;
}

/* Reset older contact-specific spacing fixes now that structure is unified */
.contact-hero-shell,
.contact-hero-shell .container,
.contact-hero-shell .contact-card {
  padding-top: 0 !important;
  margin-top: 0 !important;
  border-top: 0 !important;
}

/* Footer remains horizontal */
.footer-links {
  display:flex !important;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
}


/* V30 20260413_1225 */
/* Keep layout from shifting between pages with/without vertical scrollbar */
html {
  scrollbar-gutter: stable;
}
body {
  overflow-y: scroll;
}

/* Contact title should use the original stronger display face */
.hero-shell .hero-title {
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
}


/* V31 20260521_0001 — Prize page */
.award-intro {
  padding-bottom: 18px;
}
.award-section {
  padding-top: 18px;
}
.award-list {
  display:grid;
  gap:18px;
}
.award-card {
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns: 220px 1fr auto;
  align-items:center;
  gap:24px;
  padding:24px;
}
.award-mark {
  min-height:142px;
  border-right:1px solid var(--line-2);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#a8792c;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  letter-spacing:.08em;
}
.award-mark .award-laurel {
  font-size:2.6rem;
  line-height:1;
  color:#b38a45;
}
.award-mark strong {
  margin-top:8px;
  font-size:1.2rem;
  color:#8b6327;
}
.award-copy h3 {
  margin:.1rem 0 .2rem;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(1.7rem,2.5vw,2.35rem);
  line-height:1.05;
  font-weight:700;
}
.award-org {
  margin:.1rem 0 .65rem;
  color:#9a6d2f;
  font-weight:600;
}
.award-copy p {
  margin:.35rem 0;
  color:#3f3a34;
}
.award-link {
  justify-self:end;
  border:1px solid #b38a45;
  color:#805815;
  padding:11px 16px;
  border-radius:24px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  letter-spacing:.08em;
  white-space:nowrap;
}
.award-link:hover {
  background:#f3eee7;
}
@media (max-width:900px) {
  .award-card {
    grid-template-columns:1fr;
  }
  .award-mark {
    border-right:0;
    border-bottom:1px solid var(--line-2);
    min-height:auto;
    padding-bottom:18px;
  }
  .award-link {
    justify-self:start;
  }
}


/* V32 20260521_0015 — Prize badges, source labels, responsive pass */

/* Hero tabs can now handle 5 items. */
.hero-tabs {
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
}

/* Prize hero overlays are HTML, not baked into the image. */
.prize-hero-media {
  position: relative;
}
.prize-hero-media > img {
  filter: saturate(.82) contrast(1.02);
}
.prize-hero-overlay {
  position:absolute;
  inset:0;
  pointer-events:none;
}
.prize-badge {
  position:absolute;
  width:170px;
  height:170px;
  border:3px solid rgba(255,255,255,.82);
  border-radius:50%;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  text-shadow:0 2px 8px rgba(0,0,0,.65);
  box-shadow:0 0 0 1px rgba(255,255,255,.14) inset;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
}
.prize-badge::before,
.prize-badge::after {
  content:"";
  position:absolute;
  top:26px;
  bottom:26px;
  width:18px;
  border-top:3px solid rgba(255,255,255,.75);
  border-bottom:3px solid rgba(255,255,255,.75);
  opacity:.8;
}
.prize-badge::before {
  left:20px;
  border-left:3px solid rgba(255,255,255,.75);
  border-radius:100% 0 0 100%;
}
.prize-badge::after {
  right:20px;
  border-right:3px solid rgba(255,255,255,.75);
  border-radius:0 100% 100% 0;
}
.prize-badge strong {
  font-size:1.42rem;
  letter-spacing:.05em;
}
.prize-badge span {
  font-size:1rem;
  color:#eee2d2;
}
.badge-cannes { left:9%; top:16%; }
.badge-cineverse { right:9%; top:16%; }
.badge-la { left:12%; bottom:14%; }
.badge-pitch { right:12%; bottom:14%; }

/* Award cards with logo-like monochrome marks. */
.award-card {
  grid-template-columns: 220px 1fr auto;
}
.award-logo {
  min-height:142px;
  border-right:1px solid var(--line-2);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}
.laurel-mark {
  width:142px;
  height:102px;
  border:2px solid #222;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  background:#fff;
  font-family:Georgia, "Times New Roman", serif;
  font-weight:700;
  font-size:1.35rem;
  line-height:1;
  color:#151515;
  text-transform:uppercase;
}
.laurel-mark::before,
.laurel-mark::after {
  content:"";
  position:absolute;
  top:14px;
  bottom:14px;
  width:18px;
  border-top:2px solid #222;
  border-bottom:2px solid #222;
  opacity:.85;
}
.laurel-mark::before {
  left:12px;
  border-left:2px solid #222;
  border-radius:100% 0 0 100%;
}
.laurel-mark::after {
  right:12px;
  border-right:2px solid #222;
  border-radius:0 100% 100% 0;
}
.award-logo strong {
  color:#8b6327;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:1.05rem;
  letter-spacing:.08em;
}
.award-actions {
  justify-self:end;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.award-link {
  text-align:center;
  min-width:110px;
}

/* Mobile/responsive pass */
@media (max-width: 900px) {
  .container {
    width:min(calc(100% - 24px), var(--max));
  }
  .header-inner {
    height:auto;
    min-height:58px;
    grid-template-columns:1fr;
    gap:6px;
    padding:8px 0;
  }
  .main-nav.left,
  .main-nav.right {
    justify-content:center;
  }
  .main-nav {
    flex-wrap:wrap;
    gap:14px;
  }
  .logo-wrap {
    order:-1;
  }
  .logo-wrap img {
    width:132px;
  }
  .main-nav a {
    line-height:1.2;
    font-size:.78rem;
    padding:4px 0;
  }
  .hero-summary {
    padding:18px 14px 0;
  }
  .hero-title {
    font-size:clamp(2.35rem,10vw,4rem);
  }
  .hero-sub {
    font-size:.9rem;
    letter-spacing:.13em;
  }
  .hero-tabs {
    grid-template-columns:1fr;
  }
  .hero-tabs a {
    min-height:52px;
  }
  .grid-main,
  .bio-layout,
  .feature-layout,
  .contact-card {
    grid-template-columns:1fr !important;
  }
  .side-stack {
    display:grid;
    grid-template-columns:1fr;
  }
  .award-card {
    grid-template-columns:1fr;
  }
  .award-logo {
    border-right:0;
    border-bottom:1px solid var(--line-2);
    padding-bottom:18px;
  }
  .award-actions {
    justify-self:start;
    flex-direction:row;
    flex-wrap:wrap;
  }
  .prize-badge {
    width:112px;
    height:112px;
    border-width:2px;
  }
  .prize-badge strong {
    font-size:.95rem;
  }
  .prize-badge span {
    font-size:.72rem;
  }
  .badge-cannes { left:5%; top:12%; }
  .badge-cineverse { right:5%; top:12%; }
  .badge-la { left:6%; bottom:13%; }
  .badge-pitch { right:6%; bottom:13%; }
}

@media (max-width: 520px) {
  .hero-media {
    aspect-ratio: 4 / 3;
  }
  .prize-badge {
    display:none;
  }
  .section {
    padding:38px 0;
  }
  .section-title.compact,
  .profile-overview-title {
    font-size:clamp(1.65rem,8vw,2.3rem);
  }
  .footer-grid {
    gap:12px;
  }
  .footer-links {
    gap:12px;
  }
}


/* Prize hero and award logos use site-facing image assets. */
.prize-hero-media > picture,
.prize-hero-media > picture > img {
  display:block;
  width:100%;
  height:100%;
}
.prize-hero-media > picture > img {
  object-fit:cover;
  filter:none;
}
.prize-hero-overlay,
.prize-badge {
  display:none !important;
}
.award-logo {
  min-height:142px;
}
.award-logo img {
  display:block;
  max-width:170px;
  max-height:100px;
  width:auto;
  height:auto;
  object-fit:contain;
}
.award-logo.logo-2 img {
  max-width:190px;
}
.award-logo.logo-4 img {
  max-width:160px;
}
.award-logo.logo-5 img {
  max-width:180px;
}
@media (max-width: 520px) {
  .prize-hero-media {
    aspect-ratio: 16 / 9;
  }
  .award-logo img {
    max-width:180px;
  }
}


/* V36 20260521_1836 — Prize hero crop/gap fix.
   Actual hero uses the approved award-layout image; clean background remains in source_images/prize/. */
.prize-hero-media {
  aspect-ratio: 1536 / 420 !important;
  background:#111;
}
.prize-hero-media > picture,
.prize-hero-media > picture > img {
  display:block;
  width:100%;
  height:100%;
}
.prize-hero-media > picture > img {
  object-fit:cover !important;
  object-position:center center !important;
}
.hero-shell {
  padding-bottom:0 !important;
}
.award-intro {
  padding-top:34px !important;
  padding-bottom:10px !important;
}
.award-section {
  padding-top:0 !important;
}
@media (max-width: 700px) {
  .prize-hero-media {
    aspect-ratio: 16 / 9 !important;
  }
  .prize-hero-media > picture > img {
    object-fit:cover !important;
    object-position:center center !important;
  }
}


/* V37 20260521_1908 — cleanup, prize hero, tabs, and spacing fixes. */
.hero-tabs {
  grid-template-columns: repeat(5, 1fr) !important;
}
.prize-hero-media {
  aspect-ratio: 16 / 9 !important;
  background:#111;
}
.prize-hero-media > picture,
.prize-hero-media > picture > img {
  display:block;
  width:100%;
  height:100%;
}
.prize-hero-media > picture > img {
  object-fit:cover !important;
  object-position:center center !important;
}
.hero-shell {
  padding-bottom:0 !important;
}
.award-intro {
  padding-top:42px !important;
  padding-bottom:18px !important;
}
.award-section {
  padding-top:0 !important;
}
.prize-hero-media + .hero-summary {
  padding-top:18px !important;
}
@media (max-width: 900px) {
  .hero-tabs { grid-template-columns: 1fr 1fr !important; }
  .hero-tabs a { min-height:58px !important; }
  .award-card { grid-template-columns: 1fr !important; }
  .award-actions { align-items:flex-start !important; }
}
@media (max-width: 520px) {
  .hero-tabs { grid-template-columns: 1fr !important; }
  .prize-hero-media { aspect-ratio: 4 / 3 !important; }
}


/* IH/OT project expansion */
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover !important;
  background:#111;
}
.work-card-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:start;
}
.work-card{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.work-card img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
  background:#111;
}
.work-card .copy{padding:22px;}
.work-card h3{
  margin:0 0 8px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(2.2rem,3.4vw,3.2rem);
  line-height:.92;
  font-weight:700;
}
.work-card p{margin:0;color:#4a433a;}
.minor-work{grid-column:1 / -1;display:grid;grid-template-columns:minmax(240px,.45fr) 1fr;}
.minor-work img{height:100%;aspect-ratio:auto;object-fit:contain;background:#fff;}
.project-visual-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}
.project-visual{
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:block;
  overflow:hidden;
}
.project-visual img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
  background:#111;
}
.project-visual strong{
  display:block;
  padding:16px 18px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:1.6rem;
  letter-spacing:.04em;
}
.project-detail{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
  gap:28px;
  align-items:start;
}
@media (max-width:800px){
  .work-card-grid,.project-visual-grid,.project-detail{grid-template-columns:1fr;}
  .minor-work{grid-template-columns:1fr;}
}


/* V46 IH/OT submenu and top hero overlay fixes */
.hero-tabs {
  width:min(100%, 880px) !important;
  grid-template-columns:repeat(auto-fit, minmax(130px, 1fr)) !important;
}
.top-hero-media {
  position:relative;
}


/* V48 visual fixes: avoid portrait crop and update IH secondary visual fit */
.bio-portrait-img{
  width:100%;
  height:auto !important;
  aspect-ratio:auto !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#111;
}
.ih-secondary-visual{
  width:100%;
  aspect-ratio:4/3 !important;
  object-fit:cover !important;
  object-position:center center !important;
  background:#111;
}


/* V49 OT secondary visual */
.ot-secondary-visual{
  width:100%;
  aspect-ratio:4/3 !important;
  object-fit:cover !important;
  object-position:center center !important;
  background:#111;
}



/* V51 contact body mailto section */
.contact-body-shell{
  padding:0 0 42px;
  border-bottom:1px solid var(--line);
}
.contact-body-card{
  background:var(--paper);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:clamp(26px,4vw,46px);
  text-align:center;
}
.contact-kicker{
  display:block;
  margin:0 0 8px;
  color:#8a7a66;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:.86rem;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.contact-body-card h2{
  margin:0 0 12px;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:clamp(2.4rem,4.8vw,4.2rem);
  line-height:.95;
  font-weight:600;
  letter-spacing:.02em;
}
.contact-body-card p{
  max-width:620px;
  margin:0 auto 20px;
  color:var(--muted);
  font-size:1rem;
}
.contact-email-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:10px 24px;
  border:1px solid #1d1a16;
  background:#1d1a16;
  color:#fff;
  font-family:"Barlow Semi Condensed", Arial, sans-serif;
  font-size:1rem;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.contact-email-button:hover{
  background:#3a332a;
  border-color:#3a332a;
}
.contact-email-note{
  margin:16px auto 0 !important;
  font-size:.95rem !important;
}
.contact-email-note a{
  color:#1d1a16;
  border-bottom:1px solid rgba(29,26,22,.35);
}
@media (max-width: 560px) {
  .contact-body-shell{padding-bottom:30px;}
  .contact-body-card{text-align:left;}
  .contact-email-button{width:100%;}
}
