/* ==========================================================================
   FORTDELIS PHARMA — DESIGN SYSTEM
   Palette:  navy-deep #0A1E3F · navy #11305C · gold #C7972C · gold-light #E8C168
             cream #F6F3EA · ink #1B1F27 · steel #5B6472 · white #FFFFFF
   Display:  "Oswald" (condensed, government-stencil energy)
   Body:     "Public Sans" (the U.S. federal design-system typeface — a deliberate
             nod to the agencies this company serves)
   Signature: the "seal" — a hexagonal compliance-shield motif drawn from the
              logo's anchor badge, used as a divider, bullet, and stat marker.
   ========================================================================== */

:root{
  --navy-deep:#0A1E3F;
  --navy:#11305C;
  --navy-soft:#1B3A6B;
  --gold:#C7972C;
  --gold-light:#E8C168;
  --cream:#F6F3EA;
  --ink:#1B1F27;
  --steel:#5B6472;
  --steel-light:#8A93A3;
  --white:#FFFFFF;
  --line:rgba(10,30,63,0.12);
  --line-light:rgba(255,255,255,0.18);

  --font-display:'Oswald', 'Arial Narrow', sans-serif;
  --font-body:'Public Sans', -apple-system, 'Segoe UI', sans-serif;

  --radius:2px;
  --shadow-soft:0 10px 30px rgba(10,30,63,0.10);
  --shadow-deep:0 20px 50px rgba(10,30,63,0.25);
  --max:1180px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--white);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;}
button{font-family:inherit;}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}

:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:2px;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
}

/* ---------- Typography ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.01em;
  font-weight:600;
  color:var(--navy-deep);
  line-height:1.08;
  margin:0;
}
h1{font-size:clamp(2.6rem,5.4vw,4.6rem); font-weight:700;}
h2{font-size:clamp(1.9rem,3.4vw,2.7rem);}
h3{font-size:1.3rem;}
p{margin:0 0 1.1em;}
p:last-child{margin-bottom:0;}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:0.78rem;
  font-weight:600;
  color:var(--gold);
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:28px;height:2px;
  background:var(--gold);
  display:inline-block;
}
.eyebrow--light{color:var(--gold-light);}

.lede{
  font-size:1.18rem;
  color:var(--steel);
  max-width:640px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:0.92rem;
  font-weight:600;
  padding:16px 30px;
  border:2px solid transparent;
  border-radius:var(--radius);
  transition:transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{background:var(--gold); color:var(--navy-deep);}
.btn-gold:hover{background:var(--gold-light);}
.btn-outline{border-color:var(--line-light); color:var(--white);}
.btn-outline:hover{background:rgba(255,255,255,0.1); border-color:var(--white);}
.btn-navy{background:var(--navy-deep); color:var(--white);}
.btn-navy:hover{background:var(--navy);}

/* ---------- Seal / signature motif ---------- */
.seal{
  --s:18px;
  width:var(--s); height:calc(var(--s) * 1.15);
  position:relative;
  display:inline-block;
  background:var(--gold);
  clip-path:polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.divider-seal{
  display:flex;
  align-items:center;
  gap:16px;
  margin:0 0 28px;
}
.divider-seal::after{
  content:"";
  flex:1;
  height:1px;
  background:var(--line);
}
.divider-seal--light::after{background:var(--line-light);}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:100;
  background:var(--navy-deep);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:84px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--white);
}
.brand-mark{
  width:46px;height:46px;
  border-radius:50%;
  background:var(--gold);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.brand-mark svg{width:26px;height:26px;}
.brand-text{font-family:var(--font-display); line-height:1.05;}
.brand-text strong{display:block; font-size:1.18rem; letter-spacing:0.04em;}
.brand-text span{display:block; font-size:0.66rem; letter-spacing:0.2em; color:var(--gold-light);}

.main-nav ul{
  display:flex; gap:6px; list-style:none;
}
.main-nav a{
  display:inline-block;
  padding:10px 16px;
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.07em;
  font-size:0.85rem;
  font-weight:500;
  color:rgba(255,255,255,0.82);
  border-radius:var(--radius);
  transition:color .15s ease, background .15s ease;
}
.main-nav a:hover,
.main-nav .current-menu-item a{
  color:var(--white);
  background:rgba(255,255,255,0.08);
}
.main-nav .btn-gold{margin-left:8px; padding:10px 20px; font-size:0.82rem;}

.nav-toggle{
  display:none;
  background:none;border:0;color:var(--white);
  width:44px;height:44px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
  cursor:pointer;
}
.nav-toggle span{width:24px;height:2px;background:var(--white);display:block;}

@media (max-width:920px){
  .nav-toggle{display:flex;}
  .main-nav{
    position:fixed; inset:84px 0 0 0;
    background:var(--navy-deep);
    transform:translateX(100%);
    transition:transform .25s ease;
    padding:24px;
    overflow-y:auto;
  }
  .main-nav.is-open{transform:translateX(0);}
  .main-nav ul{flex-direction:column; gap:2px;}
  .main-nav a{padding:16px; font-size:1rem;}
  .main-nav .btn-gold{margin:14px 0 0; text-align:center; justify-content:center;}
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  background:linear-gradient(105deg, var(--navy-deep) 0%, var(--navy-deep) 46%, var(--navy-soft) 100%);
  color:var(--white);
  overflow:hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:48px;
  min-height:640px;
  padding-top:64px;
  padding-bottom:64px;
}
.hero-copy h1{color:var(--white); margin-bottom:22px;}
.hero-copy h1 em{color:var(--gold); font-style:normal;}
.hero-copy .lede{color:rgba(255,255,255,0.78); margin-bottom:34px;}
.hero-actions{display:flex; gap:14px; flex-wrap:wrap;}

.hero-badges{
  display:flex; gap:28px; margin-top:46px; flex-wrap:wrap;
}
.hero-badge{display:flex; align-items:center; gap:10px;}
.hero-badge strong{display:block; font-family:var(--font-display); font-size:0.85rem; letter-spacing:0.05em;}
.hero-badge span{display:block; font-size:0.74rem; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.1em;}

.hero-visual{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  aspect-ratio:4/5;
  box-shadow:var(--shadow-deep);
  border:1px solid rgba(255,255,255,0.15);
}
.hero-visual img{width:100%;height:100%;object-fit:cover;}
.hero-visual::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(10,30,63,0.55) 0%, transparent 45%);
}
.hero-visual-tag{
  position:absolute; left:18px; bottom:18px; z-index:2;
  background:var(--navy-deep);
  border:1px solid var(--gold);
  color:var(--gold-light);
  font-family:var(--font-display);
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-size:0.72rem;
  padding:10px 16px;
}

@media (max-width:920px){
  .hero .wrap{grid-template-columns:1fr; min-height:auto; padding-top:48px;}
  .hero-visual{order:-1; aspect-ratio:16/10;}
}

/* ==========================================================================
   STAT STRIP
   ========================================================================== */
.stat-strip{background:var(--gold); color:var(--navy-deep);}
.stat-strip .wrap{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding:30px 28px;
}
.stat{
  text-align:center;
  padding:0 14px;
  border-left:1px solid rgba(10,30,63,0.18);
}
.stat:first-child{border-left:0;}
.stat strong{display:block; font-family:var(--font-display); font-size:1.9rem;}
.stat span{display:block; font-size:0.75rem; text-transform:uppercase; letter-spacing:0.1em; font-weight:600;}
@media (max-width:760px){
  .stat-strip .wrap{grid-template-columns:repeat(2,1fr); gap:22px 0;}
  .stat:nth-child(3){border-left:0;}
}

/* ==========================================================================
   SECTIONS — general
   ========================================================================== */
section{padding:96px 0;}
.section-cream{background:var(--cream);}
.section-navy{background:var(--navy-deep); color:var(--white);}
.section-navy h2{color:var(--white);}
.section-head{max-width:680px; margin-bottom:54px;}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head.center .divider-seal{justify-content:center;}
.section-head.center .divider-seal::after{display:none;}

/* Pillars / service cards */
.pillars{
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.pillar{
  background:var(--white);
  border:1px solid var(--line);
  padding:38px 32px;
  border-radius:var(--radius);
  transition:transform .2s ease, box-shadow .2s ease;
}
.pillar:hover{transform:translateY(-6px); box-shadow:var(--shadow-soft);}
.pillar .seal-icon{
  width:54px;height:54px;
  border-radius:50%;
  background:var(--navy-deep);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:22px;
}
.pillar .seal-icon svg{width:26px;height:26px;}
.pillar h3{margin-bottom:12px; color:var(--navy-deep);}
.pillar p{color:var(--steel); font-size:0.98rem;}
@media (max-width:880px){.pillars{grid-template-columns:1fr;}}

/* Two-col feature */
.feature-split{
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
}
.feature-split .ph-img{
  border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-soft);
  aspect-ratio:4/3;
}
.feature-split .ph-img img{width:100%;height:100%;object-fit:cover;}
.value-list{margin-top:28px; display:flex; flex-direction:column; gap:18px;}
.value-list li{
  display:flex; gap:16px; align-items:flex-start;
  list-style:none;
}
.value-list .seal{flex-shrink:0; margin-top:5px;}
.value-list strong{display:block; color:var(--navy-deep); font-family:var(--font-display); letter-spacing:0.02em; margin-bottom:3px;}
.value-list span{color:var(--steel); font-size:0.96rem;}
@media (max-width:880px){.feature-split{grid-template-columns:1fr; gap:36px;}}

/* CTA band */
.cta-band{
  background:var(--navy-deep);
  color:var(--white);
  border-top:4px solid var(--gold);
  padding:64px 0;
}
.cta-band .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta-band h2{color:var(--white); margin-bottom:10px;}
.cta-band p{color:rgba(255,255,255,0.72); max-width:520px;}

/* Hiring banner (homepage) */
.hiring-banner{
  background:linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  color:var(--navy-deep);
}
.hiring-banner .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  padding:22px 28px;
}
.hiring-banner .htext{display:flex; align-items:center; gap:16px; flex-wrap:wrap;}
.hiring-banner strong{font-family:var(--font-display); text-transform:uppercase; letter-spacing:0.04em; font-size:1.05rem;}
.hiring-banner span{font-size:0.92rem;}

/* ==========================================================================
   MISSION PAGE
   ========================================================================== */
.mission-hero{
  background:var(--navy-deep); color:var(--white); padding:120px 0 90px;
  text-align:center;
}
.mission-hero h1{color:var(--white);}
.mission-statement{
  font-family:var(--font-display);
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  font-weight:400;
  text-transform:none;
  letter-spacing:0.01em;
  max-width:780px; margin:30px auto 0;
  color:var(--gold-light);
  line-height:1.5;
}

.values-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.value-card{
  background:var(--white); border:1px solid var(--line); padding:34px;
  display:flex; gap:20px;
}
.value-card .seal-icon{
  width:50px;height:50px;border-radius:50%;background:var(--cream);
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.value-card .seal-icon svg{width:24px;height:24px;}
.value-card h3{margin-bottom:8px;}
.value-card p{color:var(--steel); font-size:0.96rem;}
@media (max-width:760px){.values-grid{grid-template-columns:1fr;}}

.commitment-strip{
  display:flex; gap:0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.commitment-strip .col{
  flex:1; padding:34px 30px; border-left:1px solid var(--line);
}
.commitment-strip .col:first-child{border-left:0;}
.commitment-strip h3{font-size:1.05rem; margin-bottom:10px;}
.commitment-strip p{color:var(--steel); font-size:0.94rem;}
@media (max-width:820px){
  .commitment-strip{flex-direction:column;}
  .commitment-strip .col{border-left:0; border-top:1px solid var(--line);}
  .commitment-strip .col:first-child{border-top:0;}
}

/* ==========================================================================
   BIO PAGE
   ========================================================================== */
.bio-hero{
  display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center;
}
.bio-portrait{
  aspect-ratio:3/4; border-radius:var(--radius); overflow:hidden;
  background:var(--navy-deep);
  position:relative;
  box-shadow:var(--shadow-soft);
}
.bio-portrait img{width:100%;height:100%;object-fit:cover;}
.bio-portrait .tag{
  position:absolute; left:0; bottom:24px;
  background:var(--gold); color:var(--navy-deep);
  font-family:var(--font-display); text-transform:uppercase; letter-spacing:0.08em;
  font-size:0.78rem; font-weight:600; padding:10px 18px;
}
.bio-copy h1{margin-bottom:6px;}
.bio-role{
  font-family:var(--font-display); color:var(--gold); text-transform:uppercase;
  letter-spacing:0.1em; font-size:0.95rem; margin-bottom:24px; display:block;
}
.bio-copy p{color:var(--steel); font-size:1.04rem;}
@media (max-width:880px){.bio-hero{grid-template-columns:1fr;}}

.pullquote{
  border-left:4px solid var(--gold);
  padding:6px 0 6px 28px;
  margin:36px 0;
  font-family:var(--font-display);
  font-size:1.3rem;
  font-weight:400;
  text-transform:none;
  color:var(--navy-deep);
  letter-spacing:0.01em;
}

.timeline{display:flex; flex-direction:column;}
.timeline-item{
  display:grid; grid-template-columns:140px 1fr; gap:28px;
  padding:28px 0; border-top:1px solid var(--line);
}
.timeline-item:first-child{border-top:0;}
.timeline-item .yr{font-family:var(--font-display); color:var(--gold); font-size:1.05rem; letter-spacing:0.04em;}
.timeline-item h3{margin-bottom:6px; font-size:1.1rem;}
.timeline-item p{color:var(--steel); font-size:0.95rem;}
@media (max-width:600px){.timeline-item{grid-template-columns:1fr; gap:6px;}}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid{
  display:grid; grid-template-columns:0.95fr 1.05fr; gap:0;
  border:1px solid var(--line);
}
.contact-info{
  background:var(--navy-deep); color:var(--white); padding:56px 48px;
}
.contact-info h2{color:var(--white); margin-bottom:16px;}
.contact-info > p{color:rgba(255,255,255,0.7); margin-bottom:38px;}
.contact-block{display:flex; gap:16px; padding:20px 0; border-top:1px solid rgba(255,255,255,0.12);}
.contact-block:first-of-type{border-top:0;}
.contact-block .seal-icon{
  width:42px;height:42px;border-radius:50%; background:rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.contact-block .seal-icon svg{width:20px;height:20px;}
.contact-block strong{display:block; font-family:var(--font-display); text-transform:uppercase; letter-spacing:0.05em; font-size:0.85rem; margin-bottom:4px; color:var(--gold-light);}
.contact-block span,.contact-block a{color:rgba(255,255,255,0.82); font-size:0.95rem;}

.contact-form-wrap{background:var(--white); padding:56px 48px;}
.contact-form-wrap h2{margin-bottom:8px;}
.contact-form-wrap > p{color:var(--steel); margin-bottom:30px;}

.cform{display:flex; flex-direction:column; gap:20px;}
.cform .row2{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.cform label{
  display:block; font-family:var(--font-display); text-transform:uppercase;
  letter-spacing:0.06em; font-size:0.78rem; color:var(--navy-deep); margin-bottom:8px;
}
.cform input,.cform select,.cform textarea{
  width:100%; border:1px solid var(--line); border-radius:var(--radius);
  padding:13px 14px; font-family:var(--font-body); font-size:0.98rem; color:var(--ink);
  background:var(--cream);
  transition:border-color .15s ease;
}
.cform input:focus,.cform select:focus,.cform textarea:focus{
  outline:none; border-color:var(--gold); background:var(--white);
}
.cform textarea{min-height:140px; resize:vertical;}
.cform .btn{align-self:flex-start; margin-top:6px;}
.form-note{font-size:0.82rem; color:var(--steel-light); margin-top:4px;}
.form-success{
  background:#1F5E3A; color:var(--white); padding:18px 20px; border-radius:var(--radius); font-size:0.95rem;
}
.form-error{
  background:#7A2424; color:var(--white); padding:18px 20px; border-radius:var(--radius); font-size:0.95rem;
}
@media (max-width:920px){
  .contact-grid{grid-template-columns:1fr;}
  .cform .row2{grid-template-columns:1fr;}
  .contact-info,.contact-form-wrap{padding:42px 28px;}
}

.map-frame{
  border:1px solid var(--line); aspect-ratio:16/7; overflow:hidden; margin-top:0;
}
.map-frame iframe{width:100%;height:100%;border:0;}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{background:var(--navy-deep); color:rgba(255,255,255,0.7);}
.footer-top{
  padding:64px 0 44px;
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text strong{color:var(--white);}
.footer-brand p{margin-top:16px; max-width:300px; font-size:0.92rem;}
.footer-col h3{
  font-size:0.78rem; color:var(--gold-light); letter-spacing:0.12em; margin-bottom:18px;
}
.footer-col ul{list-style:none; display:flex; flex-direction:column; gap:10px;}
.footer-col a{font-size:0.92rem; transition:color .15s ease;}
.footer-col a:hover{color:var(--white);}
.footer-bottom{
  padding:24px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:0.82rem;
}
@media (max-width:780px){
  .footer-top{grid-template-columns:1fr; gap:32px;}
}

/* ==========================================================================
   UTILS
   ========================================================================== */
.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--gold); color:var(--navy-deep);
  padding:12px 18px; z-index:1000; font-family:var(--font-display); text-transform:uppercase;
}
.skip-link:focus{left:12px; top:12px;}
.entry-content{padding:90px 0;}
.entry-content .wrap{max-width:820px;}
