
:root{
  --navy:#111b2d;
  --navy-2:#18253a;
  --cream:#f4f0e8;
  --paper:#fffdf9;
  --gold:#c48a45;
  --gold-light:#efc48d;
  --muted:#667085;
  --line:rgba(17,27,45,.10);
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--navy);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
.shell{width:min(var(--max),calc(100% - 40px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(244,240,232,.88);
  backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  color:var(--navy);
  font-weight:900;
  letter-spacing:-.045em;
  text-decoration:none;
  font-size:1.15rem;
}
.brand span{color:var(--gold)}
.contact-link{
  text-decoration:none;
  font-weight:750;
  padding:10px 15px;
  border-radius:999px;
}
.contact-link:hover{background:rgba(17,27,45,.06)}

.hero{
  background:
    radial-gradient(circle at 80% 14%,rgba(196,138,69,.16),transparent 28%),
    linear-gradient(145deg,var(--navy),#1b2940);
  color:white;
}
.hero-grid{
  min-height:650px;
  display:grid;
  grid-template-columns:minmax(0,1.42fr) minmax(300px,.58fr);
  gap:64px;
  align-items:center;
  padding:72px 0;
}
.eyebrow{
  display:block;
  color:var(--gold-light);
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.14em;
}
.eyebrow.dark{color:#9a632d}
h1{
  margin:18px 0 24px;
  max-width:790px;
  font-size:clamp(4rem,8vw,7.6rem);
  line-height:.91;
  letter-spacing:-.07em;
}
.lead{
  max-width:720px;
  font-size:clamp(1.25rem,2vw,1.62rem);
  line-height:1.45;
  color:#f0f2f6;
}
.status{
  max-width:690px;
  margin:24px 0 0;
  color:#c8ced7;
  line-height:1.65;
}
.actions{display:flex;flex-wrap:wrap;gap:13px;margin-top:34px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 23px;
  border-radius:999px;
  font-weight:800;
  text-decoration:none;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--gold-light);
  color:var(--navy);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.btn-secondary{
  color:white;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.04);
}
.btn-secondary:hover{background:rgba(255,255,255,.10)}
.btn-dark{background:var(--navy);color:white}



.highlights{background:var(--paper);padding:52px 0 0}
.highlight-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  margin-top:20px;
  border-top:1px solid var(--line);
}
.highlight-grid>div{
  min-height:190px;
  padding:36px 26px;
  border-right:1px solid var(--line);
}
.highlight-grid>div:last-child{border-right:0}
.highlight-grid strong{
  display:block;
  font-size:clamp(2rem,3vw,3.25rem);
  line-height:1;
  letter-spacing:-.05em;
  white-space:nowrap;
}
.highlight-grid span{
  display:block;
  margin-top:14px;
  color:var(--muted);
  line-height:1.5;
}

.closing{padding:70px 0;background:var(--cream)}
.closing-panel{
  display:grid;
  grid-template-columns:1fr auto;
  gap:48px;
  align-items:center;
  padding:54px 58px;
  border-radius:34px;
  background:linear-gradient(135deg,#efcfaa,#e9bf8d);
  box-shadow:0 22px 58px rgba(16,26,43,.09);
}
.closing h2{
  margin:12px 0 14px;
  max-width:820px;
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:.98;
  letter-spacing:-.055em;
}
.closing p{margin:0;color:rgba(17,27,45,.78);line-height:1.6}

footer{background:var(--navy);color:#c8ced7}
.footer-inner{
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.footer-inner div{display:flex;gap:20px}
.footer-inner a{text-decoration:none}
.footer-inner a:hover{color:white}
a.external::after{content:" ↗";font-size:.86em}

@media(max-width:980px){
  .hero-grid{grid-template-columns:1fr;min-height:auto}
  .portrait-wrap{justify-self:start;max-width:390px}
  .highlight-grid{grid-template-columns:repeat(2,1fr)}
  .highlight-grid>div{border-bottom:1px solid var(--line)}
  .highlight-grid>div:nth-child(2n){border-right:0}
  .highlight-grid>div:last-child{grid-column:1/-1}
  .closing-panel{grid-template-columns:1fr}
}
@media(max-width:620px){
  .shell{width:min(var(--max),calc(100% - 28px))}
  .hero-grid{padding:52px 0}
  h1{font-size:clamp(3.35rem,16vw,5.3rem)}
  .actions{flex-direction:column}
  .btn{width:100%}
  .highlight-grid{grid-template-columns:1fr}
  .highlight-grid>div,.highlight-grid>div:nth-child(2n){border-right:0}
  .highlight-grid>div:last-child{grid-column:auto}
  .closing-panel{padding:36px 25px;border-radius:26px}
  .footer-inner{padding:28px 0;align-items:flex-start;flex-direction:column}
}

.nav{justify-content:flex-start}.brand{margin-right:auto}.contact-link{display:none}


/* Exact portrait component copied from full portfolio v2.17 */
.hero-grid{
  min-height:520px;
  grid-template-columns:minmax(0,1.55fr) minmax(280px,.45fr);
  gap:48px;
  padding:46px 0;
}

.portrait-wrap{
  position:relative;
  width:100%;
  max-width:390px;
  justify-self:end;
}

.portrait-wrap:before{
  content:"";
  position:absolute;
  inset:14px -14px -14px 14px;
  border:1px solid rgba(231,195,154,.45);
  border-radius:22px;
  transform:none;
}

.portrait{
  position:relative;
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:4/3;
  object-fit:cover;
  object-position:center center;
  border-radius:22px;
  box-shadow:0 35px 100px rgba(0,0,0,.35);
}

@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .portrait-wrap{
    justify-self:start;
    max-width:360px;
  }
}

@media(max-width:560px){
  .portrait-wrap{
    max-width:100%;
  }
}
