﻿*{
  margin:0;
  padding:0;
  box-sizing:border-box
}
:root{
  --cream:#fbf3e8;
  --cream-2:#fff9f1;
  --cream-3:#f2e4d2;
  --ink:#141414;
  --muted:#4f463d;
  --soft:#665b50;
  --orange-dark:#7a2b00;
  --orange:#c94a05;
  --orange-2:#ff7a1a;
  --line:rgba(20,20,20,.09);
  --white:rgba(255,255,255,.72);
  --shadow:0 24px 70px rgba(86,52,20,.12);
  --shadow-2:0 14px 34px rgba(240,90,10,.20);
  --radius-xl:30px;
  --radius-lg:24px;
  --radius-md:18px;
  --max:1320px;
}
html{
  scroll-behavior:smooth
}
body{
  margin:0;
  font-family:Inter,system-ui,sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(255,255,255,.95), transparent 30%),
    radial-gradient(circle at 80% 14%, rgba(255,122,26,.14), transparent 26%),
    linear-gradient(180deg,var(--cream-2),var(--cream));
  color:var(--ink);
  line-height:1.6;
  overflow-x:hidden;
}
a{
  text-decoration:none;
  color:inherit
}
img{
  max-width:100%;
  display:block
}
.page-shell{
  position:relative;
  min-height:100vh;
  overflow-x:hidden
}
.grain{
  pointer-events:none;
  position:fixed;
  inset:0;
  z-index:-1;
  opacity:.38;
  background-image:linear-gradient(rgba(20,20,20,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(20,20,20,.025) 1px,transparent 1px);
  background-size:24px 24px;
  mask-image:linear-gradient(to bottom,black,transparent 92%)
}
.container{
  width:min(var(--max),92%);
  margin:auto
}
.nav{
  position:fixed;
  top:22px;
  left:50%;
  z-index:100;
  width:min(var(--max),92%);
  margin:0;
  transform:translateX(-50%);
  background:rgba(255,255,255,.64);
  border:1px solid rgba(255,255,255,.85);
  box-shadow:0 20px 60px rgba(80,45,18,.10);
  backdrop-filter:blur(18px);
  border-radius:30px
}
.nav-inner{
  min-height:70px;
  padding:0 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:max-content;
  color:var(--ink)
}
.brand-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--orange);
  box-shadow:var(--shadow-2);
  font:800 13px/1 Space Grotesk,sans-serif;
  letter-spacing:-.04em
}
.brand span:last-child{
  font:700 18px/1 Space Grotesk,sans-serif;
  letter-spacing:-.045em
}
.nav-links{
  display:flex;
  align-items:center;
  gap:22px;
  color:#201f1e;
  font-size:14px;
  font-weight:700
}
.nav-links a{
  position:relative;
  padding:10px 0;
  border-radius:0;
  transition:.2s
}
.nav-links a:hover,.nav-links a.active{
  color:var(--orange)
}
.nav-links a.active:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:5px;
  height:5px;
  background:var(--orange);
  border-radius:50%
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 20px!important;
  border-radius:20px!important;
  color:#fff!important;
  background:var(--orange);
  font-weight:800;
  box-shadow:var(--shadow-2);
  white-space:nowrap;
  transition:.25s
}
.nav-cta:hover{
  transform:translateY(-3px);
  color:#fff!important
}
.nav-cta:after{
  display:none!important
}
.menu-btn{
  display:none;
  border:0;
  background:transparent;
  color:var(--ink);
  font-weight:900;
  font-family:Space Grotesk,sans-serif;
  cursor:pointer
}
section{
  padding:92px 0
}
.hero{
  padding:140px 0 44px;
  min-height:calc(100vh - 115px)
}
.page-hero{
  padding:150px 0 58px
}
.hero-grid{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:28px;
  align-items:center;
  position:relative
}
.page-hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:end
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:12px;
  border:1px solid rgba(154,54,0,.28);
  background:rgba(255,255,255,.72);
  border-radius:999px;
  padding:12px 18px;
  color:var(--orange-dark);
  font:800 13px/1 Space Grotesk,sans-serif;
  letter-spacing:.13em;
  text-transform:uppercase;
  margin-bottom:28px
}
.eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--orange);
  box-shadow:0 0 0 6px rgba(240,90,10,.08);
  flex:0 0 auto
}
h1,h2,h3{
  margin:0;
  font-family:Space Grotesk,sans-serif;
  line-height:1.04;
  letter-spacing:-.065em;
  color:var(--ink)
}
h1{
  max-width:850px;
  font-weight:800;
  font-size:clamp(50px,6.4vw,92px)
}
h2{
  font-weight:700;
  font-size:clamp(32px,4vw,54px);
  line-height:1.1;
  letter-spacing:-.045em
}
h3{
  font-weight:700;
  letter-spacing:-.04em
}
.page-title{
  max-width:960px
}
.hero-highlight{
  position:relative;
  display:inline-block;
  color:var(--orange);
  text-shadow:0 14px 30px rgba(240,90,10,.16)
}
.hero-highlight::after{
  content:"";
  position:absolute;
  left:.02em;
  right:-.05em;
  bottom:.08em;
  height:.18em;
  z-index:-1;
  border-radius:999px;
  background:rgba(255,122,26,.22)
}
.hero-pop{
  display:inline-block;
  color:var(--ink);
  background:linear-gradient(180deg,transparent 58%,rgba(255,122,26,.24) 0);
  padding-inline:.02em
}
.hero-lead,.page-lead{
  margin-top:24px;
  max-width:700px;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
  font-weight:500
}
.page-lead{
  max-width:760px
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:56px;
  padding:0 26px;
  border-radius:20px;
  border:0;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  transition:.25s
}
.btn-primary{
  background:var(--orange);
  color:#fff;
  box-shadow:var(--shadow-2)
}
.btn-secondary{
  background:rgba(255,255,255,.55);
  border:1px solid var(--line);
  color:var(--ink)
}
.btn:hover{
  transform:translateY(-3px)
}
.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:36px;
  max-width:760px
}
.stat{
  padding:20px;
  border-radius:22px;
  background:rgba(255,255,255,.56);
  border:1px solid rgba(255,255,255,.82);
  box-shadow:0 16px 38px rgba(72,43,19,.06)
}
.stat b{
  display:block;
  font:800 28px/1 Space Grotesk,sans-serif;
  color:var(--orange);
  letter-spacing:-.04em
}
.stat span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55
}
.profile-card{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center
}
.portrait{
  position:relative;
  width:min(500px,100%);
  height:600px;
  border-radius:46% 54% 39% 61% / 58% 42% 58% 42%;
  background:linear-gradient(135deg,#ffe3bd,#ff8b2d);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.38),0 36px 80px rgba(86,52,20,.15);
  display:grid;
  place-items:center;
  overflow:visible
}
.portrait::before{
  content:"";
  position:absolute;
  inset:22px;
  border:1px solid rgba(255,255,255,.50);
  border-radius:inherit;
  transform:rotate(7deg);
  z-index:2;
  pointer-events:none
}
.portrait::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  border-radius:inherit;
  background:linear-gradient(180deg,rgba(255,255,255,.04),rgba(122,43,0,.18));
  pointer-events:none
}
.portrait-photo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border-radius:inherit;
  object-fit:cover;
  object-position:center top;
  filter:saturate(1.03) contrast(1.02)
}
.floating-note{
  position:absolute;
  left:-24px;
  bottom:62px;
  width:min(320px,78%);
  z-index:3;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.86);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px)
}
.floating-note strong{
  display:block;
  font-family:Space Grotesk,sans-serif;
  font-size:17px;
  line-height:1.25;
  letter-spacing:-.03em
}
.floating-note span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.6
}
.ticker{
  width:100%;
  border-block:1px solid var(--line);
  background:rgba(255,255,255,.38);
  overflow:hidden
}
.ticker-track{
  display:flex;
  width:max-content;
  animation:ticker 28s linear infinite
}
.ticker span{
  display:inline-flex;
  align-items:center;
  gap:16px;
  padding:18px 24px;
  color:var(--ink);
  font:800 14px/1 Space Grotesk,sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase
}
.ticker span::after{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--orange);
  flex:0 0 auto
}
@keyframes ticker{
  from{
  transform:translateX(0)
}
to{
  transform:translateX(-50%)
}

}
.section-head{
  display:grid;
  grid-template-columns:1fr .86fr;
  gap:34px;
  align-items:end;
  margin-bottom:40px
}
.kicker{
  color:var(--orange-dark);
  font:800 12px/1 Space Grotesk,sans-serif;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:18px
}
.section-copy{
  color:var(--muted);
  font-size:17px;
  line-height:1.8
}
.lead-copy{
  font-size:22px;
  line-height:1.65;
  color:#29231e;
  font-weight:600
}
.panel{
  padding:34px;
  border-radius:var(--radius-xl);
  background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.82);
  box-shadow:var(--shadow)
}
.panel.dark{
  background:#1c1713;
  color:#fff;
  border-color:rgba(255,255,255,.08)
}
.panel.dark h2,.panel.dark h3,.panel.dark .lead-copy{
  color:#fff
}
.panel.dark p,.panel.dark span{
  color:rgba(255,255,255,.78)
}
.panel.dark .kicker,.quote-panel .kicker{
  color:#ffb17b
}
.about-photo{
  margin:0 0 24px;
  height:220px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12)
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover
}
.about-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.draft-note{
  margin-top:24px;
  padding:18px;
  border-radius:18px;
  background:rgba(240,90,10,.08);
  color:#784316;
  font-size:14px;
  line-height:1.7
}
.mini-list{
  list-style:none;
  display:grid;
  gap:16px;
  margin-top:26px
}
.mini-list li{
  display:flex;
  gap:14px;
  align-items:flex-start
}
.mini-list i{
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-style:normal;
  font-weight:900;
  flex:0 0 auto
}
.expertise-grid,.works-grid,.article-grid,.recognition-grid,.cards-grid{
  display:grid;
  gap:20px
}
.expertise-grid{
  grid-template-columns:repeat(4,1fr)
}
.works-grid{
  grid-template-columns:repeat(2,1fr)
}
.article-grid{
  grid-template-columns:repeat(3,1fr)
}
.cards-grid{
  grid-template-columns:repeat(3,1fr)
}
.expertise-card,.work-card,.article-card,.award-card,.stack-item,.timeline-content,.mini-card{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.9);
  border-radius:var(--radius-lg);
  box-shadow:0 20px 55px rgba(72,43,19,.08);
  padding:28px;
  transition:.25s
}
.expertise-card:hover,.work-card:hover,.article-card:hover,.mini-card:hover{
  transform:translateY(-5px)
}
.expertise-card::after{
  content:attr(data-no);
  position:absolute;
  right:22px;
  top:18px;
  color:rgba(240,90,10,.13);
  font:800 54px/1 Space Grotesk,sans-serif
}
.icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(154,54,0,.10);
  color:var(--orange-dark);
  font-size:28px;
  margin-bottom:22px
}
.expertise-card h3,.work-card h3,.article-card h3,.mini-card h3{
  font-size:24px;
  line-height:1.12;
  margin-bottom:12px
}
.expertise-card p,.work-card p,.article-card p,.mini-card p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75
}
.work-card{
  padding:0
}
.work-visual{
  position:relative;
  min-height:205px;
  padding:22px;
  background:radial-gradient(circle at 20% 20%,rgba(255,255,255,.85),transparent 34%),linear-gradient(135deg,rgba(240,90,10,.24),rgba(255,244,230,.86));
  display:flex;
  align-items:flex-start;
  overflow:hidden
}
.work-visual::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,rgba(20,20,20,.12),rgba(20,20,20,.44));
  pointer-events:none
}
.work-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center
}
.work-body{
  padding:28px
}
.tag-row{
  position:relative;
  z-index:2;
  display:flex;
  gap:8px;
  flex-wrap:wrap
}
.tag,.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(154,54,0,.18);
  color:var(--orange-dark);
  font-size:11px;
  font-weight:900
}
.case-meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:22px
}
.case-meta div{
  padding:14px;
  border-radius:16px;
  background:rgba(240,90,10,.06);
  border:1px solid rgba(240,90,10,.08)
}
.case-meta span{
  display:block;
  color:#74513a;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em
}
.case-meta b{
  display:block;
  margin-top:5px;
  font-size:13px;
  line-height:1.35
}
.article-card{
  display:flex;
  flex-direction:column;
  min-height:330px
}
.article-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  margin-bottom:20px
}
.source-badge{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(154,54,0,.10);
  color:var(--orange-dark);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em
}
.article-date{
  color:#665548;
  font-size:12px;
  font-weight:900
}
.article-card .btn{
  margin-top:auto;
  width:max-content;
  min-height:44px;
  padding:0 18px;
  font-size:13px
}
.article-role{
  margin:12px 0 16px;
  color:#332b24;
  font-weight:800
}
.timeline{
  display:grid;
  gap:18px
}
.timeline-item{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  align-items:start
}
.dot{
  width:54px;
  height:54px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--orange);
  color:#fff;
  font:900 16px/1 Space Grotesk,sans-serif;
  box-shadow:var(--shadow-2);
  position:sticky;
  top:125px
}
.timeline-content span{
  display:block;
  color:var(--orange-dark);
  font:800 12px/1 Space Grotesk,sans-serif;
  letter-spacing:.11em;
  text-transform:uppercase;
  margin-bottom:12px
}
.timeline-content h3{
  font-size:28px;
  margin-bottom:10px
}
.timeline-content p{
  color:var(--muted);
  line-height:1.75
}
.experience-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px
}
.experience-points div{
  padding:14px;
  border-radius:16px;
  background:rgba(240,90,10,.07);
  border:1px solid rgba(154,54,0,.12);
  font-size:13px;
  color:#3f332b;
  font-weight:800
}
.recognition-grid{
  grid-template-columns:.9fr 1.1fr
}
.award-card{
  min-height:100%;
  background:#1c1713;
  color:#fff
}
.award-visual{
  margin:0 0 24px;
  height:230px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08)
}
.award-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center
}
.award-card h3{
  font-size:34px;
  color:#fff
}
.award-card p{
  margin-top:18px;
  color:rgba(255,255,255,.78);
  line-height:1.75
}
.year{
  display:inline-flex;
  margin-bottom:28px;
  color:#fff;
  background:var(--orange);
  border-radius:999px;
  padding:9px 14px;
  font-weight:900
}
.stack-list{
  display:grid;
  gap:14px
}
.stack-item{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center
}
.stack-item h3{
  font-size:22px;
  margin-bottom:8px
}
.stack-item p{
  color:var(--muted);
  font-size:14px;
  line-height:1.65
}
.contact{
  padding-bottom:110px
}
.contact-card{
  padding:52px;
  border-radius:34px;
  background:linear-gradient(135deg,rgba(255,255,255,.72),rgba(255,244,230,.72));
  border:1px solid rgba(255,255,255,.86);
  box-shadow:var(--shadow)
}
.contact-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:40px;
  align-items:center
}
.contact-card p{
  color:var(--muted);
  font-size:17px;
  line-height:1.8;
  margin-top:18px
}
.contact-actions{
  display:grid;
  gap:14px
}
.contact-actions .btn{
  width:100%
}
.footer-inner{
  padding:34px 0;
  color:var(--soft);
  display:flex;
  justify-content:space-between;
  gap:18px;
  border-top:1px solid var(--line);
  font-size:14px
}
.source-list{
  display:grid;
  gap:10px;
  margin-top:24px
}
.source-list a{
  color:var(--orange-dark);
  font-weight:800;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px
}
.quote-panel{
  padding:42px;
  border-radius:34px;
  background:#1c1713;
  color:#fff;
  box-shadow:var(--shadow)
}
.quote-panel h2{
  color:#fff
}
.quote-panel p{
  color:rgba(255,255,255,.78)
}
.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px
}
.numbered-list{
  display:grid;
  gap:14px;
  list-style:none;
  margin-top:24px
}
.numbered-list li{
  display:grid;
  grid-template-columns:44px 1fr;
  gap:14px;
  align-items:start
}
.numbered-list b{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(154,54,0,.10);
  color:var(--orange-dark);
  font-family:Space Grotesk,sans-serif
}
.numbered-list span{
  color:var(--muted);
  line-height:1.75
}
.note-box{
  padding:22px;
  border-radius:22px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(154,54,0,.15);
  color:#553018;
  line-height:1.75
}
.reveal{
  opacity:0;
  transform:translateY(24px) scale(.985);
  filter:blur(8px);
  transition:opacity .7s ease,transform .7s ease,filter .7s ease
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0) scale(1);
  filter:blur(0)
}
@media (prefers-reduced-motion:reduce){
  html{
  scroll-behavior:auto
}
.ticker-track{
  animation:none
}
.reveal{
  opacity:1!important;
  transform:none!important;
  filter:none!important;
  transition:none!important
}
.btn:hover,.expertise-card:hover,.work-card:hover,.article-card:hover,.mini-card:hover{
  transform:none
}

}
@media(max-width:1100px){
  .nav-links{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top:82px;
  margin:auto;
  width:100%;
  padding:20px;
  border-radius:26px;
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px)
}
.nav-links.open{
  display:grid
}
.menu-btn{
  display:block
}
.hero-grid,.page-hero-grid,.section-head,.contact-grid,.about-box,.split-grid{
  grid-template-columns:1fr
}
.profile-card{
  min-height:520px
}
.portrait{
  height:500px
}
.floating-note{
  left:-10px;
  bottom:52px;
  width:min(300px,78%)
}
.expertise-grid,.cards-grid{
  grid-template-columns:repeat(2,1fr)
}
.works-grid,.article-grid{
  grid-template-columns:1fr
}
.recognition-grid{
  grid-template-columns:1fr
}
.footer-inner{
  flex-direction:column
}
.experience-points{
  grid-template-columns:1fr
}

}
@media(max-width:720px){
  .nav{
  top:12px;
  border-radius:22px
}
.nav-inner{
  padding:0 16px
}
.brand span:last-child{
  font-size:15px
}
.hero{
  padding-top:112px
}
.page-hero{
  padding-top:120px
}
h1{
  font-size:44px
}
.hero-lead,.page-lead{
  font-size:16px
}
.stats,.expertise-grid,.cards-grid{
  grid-template-columns:1fr
}
.profile-card{
  min-height:410px
}
.portrait{
  height:390px
}
.floating-note{
  display:none
}
.btn{
  width:100%
}
.case-meta{
  grid-template-columns:1fr
}
.timeline-item{
  grid-template-columns:1fr
}
.dot{
  position:relative;
  top:auto
}
.contact-card{
  padding:28px
}
.lead-copy{
  font-size:18px
}
section{
  padding:68px 0
}
.stack-item{
  display:grid
}
.page-title{
  font-size:42px
}

}
