@charset "UTF-8";

:root{
  --bg: #f8f4f3;
  --surface: #ffffff;
  --ink: #141414;
  --muted: #5d636a;

  --bordeaux: #7e2133;
  --bordeaux-2: #a3344b;
  --bordeaux-soft: #f6e8eb;

  --azure: #2f88c5;
  --azure-soft: #eaf4fb;

  --sand: #f6efe8;

  --gray-1: rgba(20,20,20,.06);
  --gray-2: rgba(20,20,20,.10);
  --gray-3: rgba(20,20,20,.18);

  --radius: 18px;
  --radius2: 14px;
  --shadow: 0 18px 45px rgba(17, 17, 17, .10);

  --pad: clamp(16px, 3.6vw, 28px);
  --max: 1120px;

  --h1: clamp(32px, 5.2vw, 64px);
  --h2: clamp(20px, 2.8vw, 32px);
  --h3: clamp(16px, 2vw, 20px);
  --p: clamp(15px, 1.15vw, 16.5px);

  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif;
}

/* =========================
   RESET / BASE
========================= */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 1800px at 10% 0%, rgba(111, 29, 44, 0.1), transparent 60%),
    radial-gradient(1000px 1700px at 90% 10%, rgba(42, 125, 183, 0.1), transparent 60%),
    linear-gradient(180deg, #faf9f8 0%, #f4f6f9 100%);
  font-family: var(--font-sans);
  font-size: var(--p);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img,
iframe{
  display: block;
  max-width: 100%;
}

a{
  color: inherit;
  text-decoration: none;
}

strong{
  color: #2a2a2a;
}

body.noScroll{
  overflow: hidden;
}

.wrap{
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

.section{
  padding: 42px 0;
}

section{
  scroll-margin-top: 90px;
}

/* =========================
   TYPOGRAPHY
========================= */

.h1{
  font-size: var(--h1);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  font-weight: 900;
}

.h2{
  font-size: var(--h2);
  line-height: 1.15;
  margin: 0;
	color: var(--bordeaux);
}

.h3{
  font-size: var(--h3);
  line-height: 1.2;
  margin: 0 0 10px;
	
}

.lead,
.sub,
.serviceBody,
.note,
.staffRole{
  font-weight: 500;
}

.lead{
  color: var(--muted);
  max-width: 65ch;
  margin: 0 0 14px;
}

.sub{
  color: var(--muted);
  margin: 6px 0 0;
  font-style: italic;
}

/* =========================
   GENERIC UI
========================= */

.card{
  background: rgba(255,255,255,.94);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(15, 20, 40, 0.06);
  overflow: hidden;
}

.pad{
  padding: 18px;
}

.divider{
  height: 1px;
  background: var(--gray-2);
  margin: 18px 0;
}

.pill{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--gray-2);
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
  margin-bottom: 12px;
  max-width: 100%;
}

.btn{
  font-family: var(--font-sans);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 999px;
  letter-spacing: .02em;
  border: 1px solid var(--gray-3);
  background: rgba(255,255,255,.75);
  min-height: 44px;
  max-width: 100%;
  white-space: nowrap;
}

.btnPrimary{
  background: linear-gradient(135deg, var(--bordeaux), #9f3148);
  color: #fff;
  border: none;
  box-shadow: 0 8px 18px rgba(111,29,44,.14), 0 3px 8px rgba(0,0,0,.10);
}

.btnPrimary:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(111,29,44,.16), 0 4px 10px rgba(0,0,0,.12);
}

.btnGhost{
  border: 1px solid rgba(20,20,20,.20);
  background: rgba(255,255,255,.9);
}

.btnGhost:hover{
  background: rgba(255,255,255,.78);
}

.actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* =========================
   TOPBAR / HEADER
========================= */

.topbar{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,250,249,.78);
  border-bottom: 1px solid var(--gray-2);
  backdrop-filter: blur(12px);
}

.nav{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  min-width: 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.logo{
  display: block;
  height: auto;
  width: clamp(170px, 40vw, 270px);
  max-width: 100%;
  flex-shrink: 1;
}

.navRight{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brandMark{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(135deg, rgba(111,29,44,.18), rgba(111,29,44,.04)),
    rgba(255,255,255,.7);
  border: 1px solid rgba(111,29,44,.22);
}

.brandText{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brandName{
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
}

.brandSub{
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
  margin-top: -2px;
}

.menu{
  display: none;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.menuLink{
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .2s ease;
}

.menuLink:hover{
  background: rgba(20,20,20,.05);
}

.topbar .btnPrimary{
  min-width: 116px;
  justify-content: center;
  white-space: nowrap;
}

/* =========================
   BURGER + DRAWER
========================= */

.burger{
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-2);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  flex: 0 0 42px;
}

.burger span{
  width: 18px;
  height: 2px;
  background: rgba(20,20,20,.70);
  border-radius: 2px;
}

.drawer{
  border-top: 1px solid var(--gray-2);
  background: rgba(251,250,249,.92);
  overflow: clip;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .25s ease, opacity .2s ease, transform .25s ease;
}

.drawer.open{
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.drawerInner{
  padding: 14px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawerLink{
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--gray-2);
  background: rgba(255,255,255,.65);
  font-weight: 800;
  color: var(--muted);
}

.drawerActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* =========================
   HERO
========================= */

.hero{
  padding-top: 60px;
  padding-bottom: 40px;
}

.heroGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.heroCard{
  padding: 30px;
  opacity: 1;
  transform: translateY(0);
  min-width: 0;
	 background:
    radial-gradient(1000px 320px at 50% 85%, rgba(47,136,197,.08), transparent 60%),
    rgba(255,255,255,.92);
}

html.js body.ready .heroCard{
  animation: heroFade .8s ease;
}

@keyframes heroFade{
  from{
    opacity: 0;
    transform: translateY(20px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.heroMedia{
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.mediaFrame{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(111,29,44,.18);
  min-height: 450px;
  overflow: hidden;
}

.mediaFrame::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,.06)),
    linear-gradient(90deg, rgba(111,29,44,.10), rgba(42,125,183,.06));
  z-index: 1;
}

.heroImg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.09) contrast(1.06) saturate(1.09);
}

.mediaHint{
  position: relative;
  z-index: 2;
  border-radius: 14px;
  border: 1px solid rgba(20,20,20,.10);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(6px);
  padding: 10px 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.mediaTitle{
  font-weight: 900;
  letter-spacing: .06em;
}

.mediaSub{
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.trust{
  border-radius: var(--radius);
  border:  1px solid rgba(47,136,197,.15);
  background: rgba(255,255,255,.66);
  padding: 14px;
}

.trustRow{
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 650;
  font-size: clamp(15px, 1vw, 17px);
  padding: 8px 0;
}

.trustRow + .trustRow{
  border-top: 1px solid rgba(20,20,20,.06);
}

.dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(42,125,183,.35), rgba(42,125,183,.10));
  border: 1px solid rgba(42,125,183,.25);
}

/* =========================
   QUICK FACTS
========================= */

.quick{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

.quickItem{
  border: 1px solid var(--gray-2);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.65);
  padding: 12px;
  min-width: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.quickItem:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.k{
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quickItem .v{
  font-weight: 850;
  margin-top: 6px;
  font-size: 14px;
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* =========================
   SECTION HEAD
========================= */

.sectionHead{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}


.mt{
  margin-top: 22px;
}

/* =========================
   TWO COLS
========================= */

.twoCols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.note{
  border-radius: 16px;
  border: 1px solid rgba(42,125,183,.18);
  background: rgba(42,125,183,.06);
  color: var(--muted);
  padding: 12px;
  margin-top: 24px;
}

/* =========================
   STAFF
========================= */

.staffStrip{
  margin-top: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.staffGrid{
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 2px 2px 6px;
}

.staffCard{
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
	background:
    linear-gradient(135deg, rgba(42, 125, 183,.02), rgba(111,29,44,.05));
}


.avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.avatar{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(111,29,44,.18);
  
}
.staffCard:hover .avatar img{
  transform: scale(1.04);
}

.staffName{
  font-weight: 900;
  letter-spacing: .02em;
}

.staffRole{
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
}

.staffStrip::-webkit-scrollbar{
  height: 10px;
}

.staffStrip::-webkit-scrollbar-track{
  background: rgba(20,20,20,.06);
  border-radius: 999px;
}

.staffStrip::-webkit-scrollbar-thumb{
  background: rgba(20,20,20,.18);
  border-radius: 999px;
}

/* =========================
   SERVICES
========================= */

.service{
  break-inside: avoid;
  margin: 0 0 12px;
  display: inline-block;
  width: 100%;
}

summary{
  list-style: none;
  cursor: pointer;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

summary::-webkit-details-marker{
  display: none;
}

.sumLeft{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.badge{
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(126,33,51,.22);
  background: linear-gradient(135deg, rgba(126,33,51,.18), rgba(47,136,197,.08));
  color: var(--bordeaux);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.chev{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.12);
  background: rgba(255,255,255,.70);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
  flex: 0 0 34px;
}

.chev::before{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(20,20,20,.55);
  border-bottom: 2px solid rgba(20,20,20,.55);
  transform: rotate(45deg);
  transition: transform .25s ease, border-color .25s ease;
}

details[open] .chev::before{
  transform: rotate(-135deg);
}

summary:hover .chev{
  transform: scale(1.05);
}

summary:hover .chev,
details[open] .chev{
  background: var(--bordeaux);
  border-color: var(--bordeaux);
}

summary:hover .chev::before,
details[open] .chev::before{
  border-right-color: #fff;
  border-bottom-color: #fff;
}

.serviceBody{
  padding: 10px 20px 20px;
  border-top: none;
  background: linear-gradient(180deg, rgba(111,29,44,.03), transparent);
  color: var(--muted);
}

.serviceBody p{
  margin: 12px 0;
}

.serviceBody ul{
  margin: 8px 0 0;
  padding-left: 18px;
}

.serviceBody li{
  margin: 6px 0;
}

.miniCols{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.miniCard{
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  padding: 12px;
}

.miniTitle{
  font-weight: 950;
  margin-bottom: 6px;
}

.softCallout{
  border-radius: 16px;
  border: 1px solid rgba(42,125,183,.18);
  background: rgba(42,125,183,.06);
  padding: 12px;
}

/* =========================
   CTA BAND
========================= */

.ctaBand{
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(111,29,44,.18);
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(111,29,44,.14), transparent 60%),
    rgba(255,255,255,.72);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.ctaTitle{
  font-weight: 950;
  font-size: 18px;
}

.ctaSub{
  color: var(--muted);
  font-weight: 550;
}

/* =========================
   CONTACTS
========================= */

.contactGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.contactGrid .card.pad{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactActions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 12px;
}

.contactList{
  border-top: 1px solid rgba(20,20,20,.08);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contactGrid .h3{
  text-align: center;
}

.contactActions{
  justify-content: center;
}

.contactList{
  align-items: center;
}

.row{
  width: 100%;
  max-width: 460px;
  justify-content: space-between;
}

.contactList .row{
  border-bottom: 1px solid rgba(20,20,20,.06);
  padding-bottom: 10px;
}

.contactList .row:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.lab{
  color: var(--muted);
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
}

.val{
  font-weight: 850;
  font-size: 14px;
}

.mapCard{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(20,20,20,.12);
  background: #fff;
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.mapCard iframe{
  width: 100%;
  height: 100%;
  border: 0;
}
.contactBanner{
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(47,136,197,.18);
  background: rgba(47,136,197,.10);
  color: var(--muted);
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(15,20,40,.05);
}

.contactBanner strong{
  color: var(--bordeaux);
}
/* =========================
   FOOTER
========================= */

.footer{
  padding: 22px 0 34px;
  border-top: 1px solid rgba(20,20,20,.08);
  color: var(--muted);
  font-size: 14px;
}

.footRow{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footLinks{
  display: flex;
  gap: 12px;
}

.footLinks a{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,.08);
  background: rgba(255,255,255,.55);
}

/* =========================
   REVEAL
========================= */

.reveal{}

html.js .reveal{
  opacity: 0;
  transform: translateY(30px);
  transition: all .6s ease;
}

html.js .reveal.visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TABLET / DESKTOP
========================= */

@media (min-width: 768px){
  .pad{
    padding: 22px;
  }

  .menu{
    display: flex;
  }

  .burger{
    display: none;
  }

  .logo{
    width: 270px;
  }

  .heroGrid{
    grid-template-columns: 1.25fr .75fr;
    align-items: stretch;
  }

  .heroCard{
    padding: 24px;
  }

  .quick{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .twoCols{
    grid-template-columns: 1fr 1fr;
  }

  .staffCard{
    width: 240px;
  }

  .servicesGrid{
    column-count: 2;
  }

  .miniCols{
    grid-template-columns: 1fr 1fr;
  }

  .ctaBand{
    flex-direction: row;
    align-items: center;
  }

  .contactGrid{
    grid-template-columns: 1fr 1fr;
  }

  .mapCard{
    aspect-ratio: 4 / 3;
    min-height: 360px;
  }
}

@media (min-width: 1100px){
  .staffCard{
    width: 260px;
  }
}

/* =========================
   MOBILE FIXES
========================= */

@media (max-width: 767px){
  .wrap{
    width: min(var(--max), calc(100% - 24px));
  }

  .nav{
    gap: 8px;
  }

  .logo{
    width: clamp(145px, 38vw, 220px);
  }

  .navRight{
    gap: 8px;
  }

  .topbar .btnPrimary{
    min-width: 96px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .hero{
    padding-top: 32px;
    padding-bottom: 28px;
  }

  .heroCard{
    padding: 22px;
  }

  .h1{
    font-size: clamp(28px, 8.8vw, 46px);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .lead{
    font-size: 16px;
  }

  .mediaFrame{
    min-height: 320px;
  }

  .sectionHead{
    align-items: flex-start;
    flex-direction: column;
  }

  .ctaBand .btn{
    width: 100%;
  }
}

@media (max-width: 480px){
  .wrap{
    width: calc(100% - 20px);
  }

  .nav{
    gap: 6px;
  }

  .logo{
    width: clamp(125px, 34vw, 170px);
  }

  .topbar .btnPrimary{
    min-width: auto;
    padding: 10px 12px;
    font-size: 14px;
  }

  .burger{
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .heroCard{
    padding: 18px;
  }

  .pill{
    font-size: 12px;
    line-height: 1.3;
  }

  .h1{
    font-size: clamp(26px, 8.5vw, 38px);
  }

  .actions{
    flex-direction: column;
    align-items: stretch;
  }

  .actions .btn{
    width: 100%;
  }

  .contactActions .btn{
    width: 100%;
  }
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
  }

  html{
    scroll-behavior: auto;
  }
}

/* MAPPE MOBILE FIX */
@media (max-width: 768px){

  .mapCard{
    width: 100%;
    max-width: 100%;
    min-width: 0;

    aspect-ratio: auto;
    height: 240px;

    border-radius: var(--radius);
    overflow: hidden;
  }

  .mapCard iframe{
    width: 100%;
    height: 100%;
  }

}

@media (max-width: 480px){
  .val{
    font-size: 13px;
  }

  .badge{
    font-size: 9px;
    letter-spacing: .06em;
    padding: 5px 8px;
  }

  .trustRow{
    font-size: 14px;
  }
}

.director {
	font-size: 14px;
	padding-top: 20px;
}