:root{
    --navy-deep:   #0A1F45;
    --navy-mid:    #12295F;
    --gold:        #F5C65D;
    --gold-deep:   #DDA531;
    --cream:       #FAF8F2;
    --ink:         #1B2436;
    --slate:       #5B6478;
    --line:        #E4E1D6;
    --radius-none: 0;
  }

  *{ margin:0; padding:0; box-sizing:border-box; }

  html{ scroll-behavior:smooth; }

  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--cream);
    -webkit-font-smoothing:antialiased;
  }

  h1,h2,h3{
    font-family:'Poppins', sans-serif;
    font-weight:800;
    line-height:1.08;
    letter-spacing:-0.01em;
  }

  a{ color:inherit; text-decoration:none; }
  img{ display:block; max-width:100%; }

  .eyebrow{
    font-family:'Inter', sans-serif;
    font-weight:700;
    font-size:0.72rem;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:var(--gold-deep);
  }
  .on-dark .eyebrow{ color:var(--gold); }

  .wrap{
    max-width:1120px;
    margin:0 auto;
    padding:0 32px;
  }

  /* ---------- Skip link / focus ---------- */
  a:focus-visible, button:focus-visible{
    outline:3px solid var(--gold-deep);
    outline-offset:3px;
  }

  /* ---------- NAV (replace ALL existing header.site / nav rules with this block) ---------- */
header.site{
  background:var(--navy-deep);
  padding:18px 0;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 2px 12px rgba(0,0,0,0.15);
}
header.site .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:relative;
}
header.site .logo-img{ height:42px; width:auto; }

header.site nav{
  display:flex;
  gap:28px;
}
header.site nav a{
  font-size:0.88rem;
  font-weight:600;
  color:#DCE3F5;
  transition:color .2s ease;
}
header.site nav a:hover{ color:var(--gold); }
header.site nav a.active{ color:var(--gold); }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px;
  height:36px;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:#DCE3F5;
  transition:transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:640px){
  .nav-toggle{ display:flex; }

  header.site nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    flex-direction:column;
    gap:0;
    background:var(--navy-deep);
    max-height:0;
    overflow:hidden;
    opacity:0;
    pointer-events:none;
    transition:max-height .3s ease, opacity .3s ease;
  }
  header.site nav.open{
    max-height:320px;
    opacity:1;
    pointer-events:auto;
    border-top:1px solid rgba(255,255,255,0.12);
    box-shadow:0 12px 20px rgba(0,0,0,0.18);
  }
  header.site nav a{
    padding:16px 24px;
    border-bottom:1px solid rgba(255,255,255,0.08);
  }
}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:var(--navy-deep);
    color:#fff;
    overflow:hidden;
    padding:88px 0 110px;
  }
  .hero::after{
    /* chevron sliver echoing the logo mark */
    content:"";
    position:absolute;
    top:0; bottom:0;
    right:-6%;
    width:34%;
    background:var(--gold);
    clip-path:polygon(38% 0, 100% 0, 100% 100%, 38% 100%, 0% 50%);
    opacity:0.94;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:0; bottom:0;
    right:12%;
    width:34%;
    background:var(--navy-mid);
    clip-path:polygon(38% 0, 100% 0, 100% 100%, 38% 100%, 0% 50%);
  }
  .hero .wrap{ position:relative; z-index:2; }
  .hero-inner{ max-width:640px; }
  .hero h1{
    font-size:clamp(2.2rem, 4.6vw, 3.4rem);
    margin:18px 0 22px;
    color:#fff;
  }
  .hero h1 span{ color:var(--gold); }
  .hero p.lede{
    font-size:1.08rem;
    color:#C8D2EA;
    max-width:480px;
    margin-bottom:34px;
  }
  .hero .cta-row{ display:flex; gap:14px; flex-wrap:wrap; }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:14px 26px;
    font-weight:700;
    font-size:0.92rem;
    border:2px solid transparent;
    cursor:pointer;
  }
  .btn-primary{
    background:var(--gold);
    color:var(--navy-deep);
  }
  .btn-primary:hover{ background:#fff; }
  .btn-ghost{
    border-color:rgba(255,255,255,0.35);
    color:#fff;
  }
  .btn-ghost:hover{ border-color:var(--gold); color:var(--gold); }

  .hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.16);
    padding:8px 16px;
    font-size:0.78rem;
    font-weight:600;
    color:#E7ECF9;
    margin-bottom:22px;
  }
  .hero-tag::before{
    content:"";
    width:8px; height:8px;
    background:var(--gold);
    clip-path:polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 30% 50%);
  }

  /* ---------- SECTION HEADS ---------- */
  .section{ padding:96px 0; }
  .section-head{ max-width:620px; margin-bottom:56px; }
  .section-head h2{
    font-size:clamp(1.7rem, 3vw, 2.3rem);
    margin-top:12px;
    color:var(--navy-deep);
  }
  .section-head p{
    color:var(--slate);
    font-size:1.02rem;
    margin-top:14px;
    line-height:1.6;
  }

  /* chevron divider between sections */
  .chevron-rule{
    height:26px;
    background:
      linear-gradient(135deg, transparent 49%, var(--gold) 49.5%, var(--gold) 50.5%, transparent 51%) 0 0/26px 26px repeat-x;
    opacity:0.5;
  }

  /* ---------- ABOUT ---------- */
  .about{ background:var(--cream); }
  .about-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:56px;
    align-items:start;
  }
  .about-grid p{ color:var(--slate); line-height:1.75; margin-bottom:16px; font-size:1.01rem; }
  .stat-card{
    background:var(--navy-deep);
    color:#fff;
    padding:34px 30px;
    position:relative;
  }
  .stat-card::before{
    content:"";
    position:absolute; left:0; top:0; bottom:0;
    width:6px;
    background:var(--gold);
  }
  .stat-card .num{
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:2.6rem;
    color:var(--gold);
    line-height:1;
  }
  .stat-card .label{
    margin-top:10px;
    font-size:0.92rem;
    color:#C8D2EA;
    line-height:1.5;
  }
  .stat-card + .stat-card{ margin-top:18px; }
  @media (max-width:760px){
    .about-grid{ grid-template-columns:1fr; }
  }

  /* ---------- SERVICES ---------- */
  .services{ background:var(--navy-deep); color:#fff; }
  .services .section-head h2{ color:#fff; }
  .services .section-head p{ color:#C8D2EA; }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:2px;
    background:rgba(255,255,255,0.12);
  }
  .service-card{
    background:var(--navy-deep);
    padding:34px 32px;
    position:relative;
    clip-path:polygon(0 0, 100% 0, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  }
  .service-card h3{
    font-size:1.12rem;
    color:#fff;
    margin-bottom:10px;
  }
  .service-card p{
    color:#B7C2DE;
    font-size:0.94rem;
    line-height:1.6;
  }
  .service-card .mark{
    display:inline-block;
    width:34px; height:34px;
    background:var(--gold);
    clip-path:polygon(38% 0, 100% 0, 100% 100%, 38% 100%, 0% 50%);
    margin-bottom:18px;
  }
  @media (max-width:640px){
    .service-grid{ grid-template-columns:1fr; }
  }

  /* ---------- PROCESS ---------- */
  .process{ background:var(--cream); }
  .process-list{
    display:grid;
    gap:0;
  }
  .process-item{
    display:grid;
    grid-template-columns:90px 1fr;
    gap:24px;
    padding:26px 0;
    border-bottom:1px solid var(--line);
  }
  .process-item:first-child{ border-top:1px solid var(--line); }
  .process-item .step{
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:1.7rem;
    color:var(--gold-deep);
  }
  .process-item h3{
    font-size:1.08rem;
    color:var(--navy-deep);
    margin-bottom:6px;
  }
  .process-item p{ color:var(--slate); font-size:0.96rem; line-height:1.6; }

  /* ---------- TEAM STRIP ---------- */
  .team-avatar-img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius: 50%;
  }
  .team{ background:var(--navy-mid); color:#fff; }
  .team .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:32px;
    flex-wrap:wrap;
    padding:56px 32px;
  }
  .team h2{ font-size:1.5rem; color:#fff; max-width:480px; }
  .team p{ color:#C8D2EA; margin-top:10px; max-width:480px; line-height:1.6; }
  .team-pill{
    background:var(--gold);
    color:var(--navy-deep);
    font-weight:700;
    font-size:0.85rem;
    padding:12px 20px;
    white-space:nowrap;
  }

  /* ---------- CTA / FOOTER ---------- */
  footer.site{
    background:var(--navy-deep);
    color:#fff;
    padding:70px 0 40px;
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
    padding-bottom:44px;
    border-bottom:1px solid rgba(255,255,255,0.14);
  }
  .footer-top h2{ font-size:1.7rem; color:#fff; max-width:420px; }
  .footer-top p{ color:#C8D2EA; margin-top:12px; max-width:420px; line-height:1.6; }
  .contact-list{ display:flex; flex-direction:column; gap:14px; }
  .contact-list a, .contact-list span{
    display:flex; align-items:center; gap:10px;
    font-size:0.94rem;
    color:#E7ECF9;
  }
  .contact-list .ico{
    width:8px; height:8px;
    background:var(--gold);
    clip-path:polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%, 30% 50%);
    flex:none;
  }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:24px;
    flex-wrap:wrap;
    gap:12px;
  }
  .footer-bottom img{ height:30px; opacity:0.9; }
  .footer-bottom .tiny{ font-size:0.8rem; color:#8F9CC0; }

  @media (max-width:640px){
    .section{ padding:64px 0; }
    .wrap{ padding:0 20px; }
    .hero{ padding:64px 0 84px; }
  }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .reveal.in{
    opacity:1;
    transform:translateY(0);
  }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
  }

  /* ---------- ABOUT IMAGE ---------- */
  .about-photo{
    position:relative;
    margin-bottom:26px;
    overflow:hidden;
    clip-path:polygon(0 0, 100% 0, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  }
  .about-photo img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .6s cubic-bezier(.2,.8,.2,1);
  }
  .about-photo:hover img{ transform:scale(1.06); }
  .about-photo::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,31,69,0) 55%, rgba(10,31,69,0.55) 100%);
  }
  .about-photo .cap{
    position:absolute; left:18px; bottom:14px; z-index:2;
    color:#fff; font-size:0.78rem; font-weight:600;
    letter-spacing:0.04em;
  }

  /* ---------- GALLERY ---------- */
  .gallery{ background:var(--cream); }
  .gallery-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:18px;
  }
  .gallery-item{
    position:relative;
    overflow:hidden;
    height:340px;
  }
  .gallery-item:nth-child(1){ clip-path:polygon(0 0, 100% 0, 100% 100%, 28px 100%, 0 calc(100% - 28px)); }
  .gallery-item:nth-child(2){ height:340px; margin-top:36px; }
  .gallery-item:nth-child(3){ clip-path:polygon(28px 0, 100% 0, 100% 100%, 0 100%, 0 28px); }
  .gallery-item img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .7s cubic-bezier(.2,.8,.2,1);
  }
  .gallery-item:hover img{ transform:scale(1.08); }
  .gallery-item::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(10,31,69,0) 45%, rgba(10,31,69,0.72) 100%);
    pointer-events:none;
  }
  .gallery-item .tag{
    position:absolute; left:20px; bottom:18px; z-index:2;
    color:#fff;
  }
  .gallery-item .tag .eyebrow{ color:var(--gold); }
  .gallery-item .tag h3{
    font-size:1.05rem;
    color:#fff;
    margin-top:6px;
  }
  @media (max-width:760px){
    .gallery-grid{ grid-template-columns:1fr; }
    .gallery-item:nth-child(2){ margin-top:0; }
    .gallery-item{ height:260px; }
  }

  /* ---------- PROCESS IMAGE ---------- */
  .process-grid{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:56px;
    align-items:start;
  }
  .process-photo{
    position:sticky;
    top:32px;
    overflow:hidden;
    clip-path:polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    animation:float 6s ease-in-out infinite;
  }
  .process-photo img{
    width:100%; height:400px;
    object-fit:cover; display:block;
  }
  @keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-10px); }
  }
  @media (prefers-reduced-motion: reduce){
    .process-photo{ animation:none; }
  }
  @media (max-width:900px){
    .process-grid{ grid-template-columns:1fr; }
    .process-photo{ position:static; order:-1; }
    .process-photo img{ height:220px; }
  }

  /* ---------- TEAM BG IMAGE ---------- */
  .team{
    position:relative;
    overflow:hidden;
    background:var(--navy-mid);
  }
  .team .bg-photo{
    position:absolute; inset:0;
    z-index:0;
  }
  .team .bg-photo img{
    width:100%; height:100%;
    object-fit:cover;
    animation:kenburns 18s ease-in-out infinite alternate;
  }
  @keyframes kenburns{
    0%{ transform:scale(1) translate(0,0); }
    100%{ transform:scale(1.12) translate(-1%, -1%); }
  }
  @media (prefers-reduced-motion: reduce){
    .team .bg-photo img{ animation:none; }
  }
  .team .bg-photo::after{
    content:"";
    position:absolute; inset:0;
    background:linear-gradient(100deg, rgba(10,31,69,0.94) 0%, rgba(10,31,69,0.86) 55%, rgba(18,41,95,0.7) 100%);
  }
  .team .wrap{ position:relative; z-index:1; }


/* ---------- NAV ACTIVE STATE ---------- */
header.site nav a.active{ color:var(--gold); }

/* ---------- PAGE HERO (About / Contact) ---------- */
.page-hero{
  position:relative;
  background:var(--navy-deep);
  color:#fff;
  overflow:hidden;
  padding:64px 0 70px;
}
.page-hero::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  right:-6%;
  width:26%;
  background:var(--gold);
  clip-path:polygon(38% 0, 100% 0, 100% 100%, 38% 100%, 0% 50%);
  opacity:0.94;
}
.page-hero .wrap{ position:relative; z-index:2; }
.page-hero .eyebrow{ color:var(--gold); }
.page-hero h1{
  font-size:clamp(1.9rem, 4vw, 2.7rem);
  color:#fff;
  margin-top:14px;
  max-width:620px;
}
.page-hero p{
  color:#C8D2EA;
  font-size:1.02rem;
  max-width:520px;
  margin-top:16px;
}

/* ---------- STATS ---------- */
.stats{ background:var(--navy-deep); color:#fff; }
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:2px;
  background:rgba(255,255,255,0.14);
}
.stats-item{
  background:var(--navy-deep);
  padding:38px 28px;
  text-align:left;
}
.stats-item .num{
  font-family:'Poppins',sans-serif;
  font-weight:800;
  font-size:2.6rem;
  color:var(--gold);
  line-height:1;
  display:flex;
  align-items:baseline;
  gap:2px;
}
.stats-item .label{
  margin-top:10px;
  font-size:0.88rem;
  color:#C8D2EA;
  line-height:1.5;
}
@media (max-width:760px){
  .stats-grid{ grid-template-columns:repeat(2, 1fr); }
}

/* ---------- WORK / PORTFOLIO ---------- */
.work{ background:var(--cream); }
.work-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.work-card{
  background:#fff;
  border:1px solid var(--line);
}
.work-card .thumb{
  position:relative;
  height:190px;
  overflow:hidden;
}
.work-card .thumb img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.2,.8,.2,1);
}
.work-card:hover .thumb img{ transform:scale(1.07); }
.work-card .body{ padding:22px 22px 26px; }
.work-card .eyebrow{ color:var(--gold-deep); }
.work-card h3{
  font-size:1.05rem;
  color:var(--navy-deep);
  margin-top:8px;
}
.work-card p{
  color:var(--slate);
  font-size:0.9rem;
  margin-top:8px;
  line-height:1.6;
}
.work-card .stat-line{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
  font-size:0.82rem;
  font-weight:700;
  color:var(--navy-mid);
}
@media (max-width:900px){
  .work-grid{ grid-template-columns:1fr; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{ background:var(--navy-mid); color:#fff; }
.testimonials .section-head h2{ color:#fff; }
.testimonials .section-head p{ color:#C8D2EA; }
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}
.testi-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.14);
  padding:28px 26px;
  display:flex;
  flex-direction:column;
}
.testi-card .quote-mark{
  font-family:'Poppins',sans-serif;
  font-size:2.4rem;
  font-weight:800;
  color:var(--gold);
  line-height:1;
  margin-bottom:6px;
}
.testi-card p.quote{
  color:#E7ECF9;
  font-size:0.94rem;
  line-height:1.65;
  flex:1;
}
.testi-card .who{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,0.16);
}
.testi-card .who .name{
  font-weight:700;
  font-size:0.92rem;
  color:#fff;
}
.testi-card .who .role{
  font-size:0.8rem;
  color:#9FADCC;
  margin-top:2px;
}
@media (max-width:900px){
  .testi-grid{ grid-template-columns:1fr; }
}

/* ---------- ABOUT PAGE ---------- */
.values-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
  background:rgba(255,255,255,0.12);
}
.value-card{
  background:var(--navy-deep);
  padding:30px 28px;
  clip-path:polygon(0 0, 100% 0, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}
.value-card h3{ color:#fff; font-size:1.05rem; margin-bottom:10px; }
.value-card p{ color:#B7C2DE; font-size:0.92rem; line-height:1.6; }
@media (max-width:900px){
  .values-grid{ grid-template-columns:1fr; }
}

.timeline-mini{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}
.timeline-mini .t-item{
  border-top:3px solid var(--gold);
  padding-top:16px;
}
.timeline-mini .t-item .yr{
  font-family:'Poppins',sans-serif;
  font-weight:800;
  color:var(--navy-deep);
  font-size:1.1rem;
}
.timeline-mini .t-item p{
  color:var(--slate);
  font-size:0.9rem;
  margin-top:8px;
  line-height:1.6;
}
@media (max-width:760px){
  .timeline-mini{ grid-template-columns:1fr; }
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:56px;
  align-items:start;
}
.contact-info-card{
  background:var(--navy-deep);
  color:#fff;
  padding:36px 32px;
}
.contact-info-card h3{ color:#fff; font-size:1.15rem; margin-bottom:18px; }
.contact-info-card .contact-list a,
.contact-info-card .contact-list span{ color:#E7ECF9; }
.contact-info-card .contact-list{ margin-bottom:26px; }
.contact-info-card .hours{
  border-top:1px solid rgba(255,255,255,0.16);
  padding-top:18px;
  font-size:0.86rem;
  color:#B7C2DE;
  line-height:1.7;
}

.contact-form{
  background:#fff;
  border:1px solid var(--line);
  padding:32px;
}
.form-row{ margin-bottom:20px; }
.form-row label{
  display:block;
  font-size:0.82rem;
  font-weight:700;
  letter-spacing:0.02em;
  color:var(--navy-deep);
  margin-bottom:8px;
}
.form-row input,
.form-row textarea{
  width:100%;
  border:1px solid var(--line);
  background:var(--cream);
  padding:12px 14px;
  font-family:'Inter', sans-serif;
  font-size:0.94rem;
  color:var(--ink);
}
.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--gold-deep);
}
.form-row textarea{ resize:vertical; min-height:130px; }
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
@media (max-width:760px){
  .contact-grid{ grid-template-columns:1fr; }
  .two-col{ grid-template-columns:1fr; }
}
.form-note{
  font-size:0.82rem;
  color:var(--slate);
  margin-top:4px;
}
.form-success{
  display:none;
  background:#EFF6EC;
  border:1px solid #BFE0B4;
  color:#2B5B22;
  padding:14px 16px;
  font-size:0.9rem;
  margin-bottom:20px;
}
.form-success.show{ display:block; }


















/* ---------- OUR TEAM ---------- */
.meet-team{ background:var(--cream); }
.team-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:28px;
}
.team-card{
  background:#fff;
  border:1px solid var(--line);
  padding:28px 24px 26px;
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
}
.team-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 30px rgba(10,31,69,0.1);
}
.team-avatar{
  width:84px;
  height:84px;
  margin:0 auto 18px;
  border-radius:50%;
  background:var(--navy-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.team-avatar::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:50%;
  border:2px solid var(--gold);
  opacity:0;
  transition:opacity .3s ease;
}
.team-card:hover .team-avatar::after{ opacity:1; }
.team-avatar span{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:1.4rem;
  color:var(--gold);
}
.team-card h3{
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:1.02rem;
  color:var(--navy-deep);
  margin-bottom:4px;
}
.team-card .role{
  font-size:0.8rem;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  color:var(--gold-deep);
  margin-bottom:12px;
}
.team-card p.bio{
  font-size:0.88rem;
  color:var(--slate);
  line-height:1.6;
}
@media (max-width:900px){
  .team-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:520px){
  .team-grid{ grid-template-columns:1fr; }
}