/* MBEE — standalone stylesheet. No framework or external font dependency. */
:root {
  --navy:#101f2b;
  --ink:#152732;
  --red:#ef263e;
  --paper:#f5f7f8;
  --muted:#61717c;
  --line:#d6dfe4;
  --radius:30px;
  --space:clamp(24px,5.5vw,100px)
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:110px
}

body {
  margin:0;
  background:#e4f6ffa8;
  color:var(--ink);
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
  line-height:1.6
}

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

button,input,textarea {
  font:inherit
}

button,a,input,textarea {
  -webkit-tap-highlight-color:transparent
}

button,a {
  touch-action:manipulation
}

button {
  cursor:pointer
}

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

button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible {
  outline:3px solid var(--red);
  outline-offset:5px
}

h1,h2,h3,p {
  margin:0
}

h1,h2,h3 {
  font-weight:500;
  line-height:1.06;
  letter-spacing:-.045em
}

em {
  font-style:normal;
  color:#7497ad
}

.red {
  color:var(--red)
}

p+p {
  margin-top:20px
}

.eyebrow {
  font-size:12px;
  letter-spacing:.15em;
  font-weight:700;
  line-height:1.5
}

.section {
  padding:110px var(--space)
}

h2 {
  font-size:clamp(36px,4.4vw,68px)
}

.skip {
  position:fixed;
  top:-80px;
  left:20px;
  z-index:1000;
  background:white;
  padding:10px
}

.skip:focus {
  top:15px
}

.header {
  height:86px;
  position:absolute;
  top:26px;
  left:var(--space);
  right:var(--space);
  z-index:20;
  display:flex;
  align-items:center;
  gap:30px;
  color:white
}

.brand {
  width:118px;
  flex-shrink:0
}

.brand img {
  width:118px;
  height:67px;
  object-fit:contain
}

.desktop-nav {
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:center;
  margin:auto;
  padding:16px 30px;
  background:#142a3cb8;
  backdrop-filter:blur(16px);
  border:1px solid #ffffff20;
  border-radius:60px;
  font-size:14px
}

.desktop-nav>a,.dropdown>a {
  position:relative
}

.desktop-nav>a:after {
  content:'';
  position:absolute;
  bottom:-5px;
  left:0;
  width:0;
  height:2px;
  background:var(--red);
  transition:width .25s
}

.desktop-nav>a:hover:after {
  width:100%
}

.dropdown {
  position:relative
}

.dropdown-panel {
  position:absolute;
  top:100%;
  left:-25px;
  padding:25px 12px 12px;
  width:270px;
  display:none;
  flex-direction:column;
  background:var(--navy);
  border-radius:18px
}

.dropdown:hover .dropdown-panel,.dropdown:focus-within .dropdown-panel {
  display:flex
}

.dropdown-panel a {
  padding:9px 14px;
  border-radius:8px
}

.dropdown-panel a:hover {
  background:#ffffff12
}

.header-cta {
  font-size:14px;
  display:flex;
  align-items:center;
  gap:25px;
  border-bottom:1px solid #ffffff70;
  padding:12px 0;
  white-space:nowrap
}

.header-cta span {
  font-size:24px
}

.menu-toggle {
  display:none
}

.mobile-nav[hidden] {
  display:none
}

.dropdown a span{
    position:relative;
    bottom:4px;
}

.hero {
  position:relative;
  margin:14px;
  border-radius:30px 30px 0px 0px;
  overflow:hidden;
  background:var(--navy);
  color:white;
  isolation:isolate
}

.home-hero {
  min-height:760px;
  height:calc(100svh - 28px);
  max-height:1080px
}

.hero-media {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-3
}

.hero-shade {
  position:absolute;
  inset:0;
  z-index:-2;
  background:linear-gradient(90deg,#0a1a2be6 0%,#0a1a2ba8 43%,#0a1a2b20 100%),linear-gradient(0deg,#091925a6,transparent 40%)
}

.hero-content {
  padding:210px calc(var(--space) - 14px) 130px;
  max-width:1100px
}

.hero h1 {
  font-size:clamp(55px,7.1vw,108px);
  line-height:1.02;
  letter-spacing:-.055em;
  margin:28px 0 42px
}

.hero h1 em {
  color:#a9d0e3
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
  padding:17px 27px;
  border:0;
  border-radius:50px;
  background:var(--red);
  color:#fff;
  font-size:15px;
  line-height:1.5;
  transition:background .25s,transform .25s
}

.button:hover {
  background:#cf1730;
  transform:translateY(-3px)
}

.button span {
  font-size:24px;
  line-height:1
}

.hero-bottom {
  position:absolute;
  bottom:34px;
  left:calc(var(--space) - 14px);
  right:calc(var(--space) - 14px);
  display:flex;
  justify-content:space-between;
  border-top:1px solid #ffffff35;
  padding-top:22px;
  font-size:12px;
  letter-spacing:.1em
}

.hero-bottom a {
  margin-right:170px
}

.video-toggle {
  position:absolute;
  right:calc(var(--space) - 14px);
  bottom:26px;
  z-index:3;
  background:#ffffff15;
  color:#fff;
  border:1px solid #ffffff50;
  padding:10px 18px;
  border-radius:30px;
  font-size:13px;
  backdrop-filter:blur(12px)
}

.section-heading {
  position:relative;
  margin-bottom:52px
}

.section-heading .eyebrow {
  margin-bottom:30px
}

.section-count {
  position:absolute;
  right:0;
  bottom:0;
  font-size:64px;
  letter-spacing:-.06em;
  line-height:1
}

.section-count small {
  display:block;
  font-size:12px;
  letter-spacing:0;
  color:var(--muted);
  margin-top:12px
}

.service-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}

.service-card {
  position:relative;
  min-height:300px;
  overflow:hidden;
  border-radius:20px;
  padding:28px;
  background:#e4ebef;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  isolation:isolate;
  transition:background .4s,color .4s,transform .4s
}

.card-photo {
  position:absolute;
  inset:0;
  height:100%;
  width:100%;
  object-fit:cover;
  z-index:-2;
  opacity:0;
  transform:scale(1.08);
  transition:opacity .5s,transform .8s
}

.service-card:after {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(0deg,#081826eb,#08182665);
  opacity:0;
  z-index:-1;
  transition:opacity .5s
}

.card-top,.card-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px
}

.card-top>span {
  font-size:13px;
  color:var(--muted)
}

.service-icon {
  width:42px;
  height:42px;
  object-fit:contain;
  opacity:.7
}

.card-bottom h3 {
  font-size:30px;
  max-width:240px
}

.circle {
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border:1px solid #9bacb8;
  border-radius:50%;
  flex-shrink:0;
  transition:background .4s,border .4s;
  font-size:22px
}

.service-card:hover,.service-card:focus-visible {
  color:white;
  transform:translateY(-4px)
}

.service-card:hover .card-photo,.service-card:focus-visible .card-photo {
  opacity:1;
  transform:scale(1)
}

.service-card:hover:after,.service-card:focus-visible:after {
  opacity:1
}

.service-card:hover .card-top>span {
  color:white
}

.service-card:hover .service-icon {
  filter:invert(1)
}

.service-card:hover .circle {
  background:var(--red);
  border-color:var(--red)
}

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8vw;
  border-top:1px solid var(--line)
}

.about-photo {
  position:relative;
  min-height:640px;
  border-radius:24px;
  overflow:hidden
}

.about-photo>img {
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute
}

.photo-label {
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  background:#112634d9;
  backdrop-filter:blur(15px);
  padding:30px;
  color:white;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
  letter-spacing:.1em
}

.photo-label span {
  font-size:42px
}

.about-copy .eyebrow {
  margin-bottom:30px
}

.about-copy h2 {
  font-size:clamp(34px,3vw,48px);
  margin-bottom:30px
}

.about-copy h3 {
  font-size:20px;
  letter-spacing:-.015em;
  line-height:1.4;
  margin:26px 0 16px
}

.about-copy p {
  font-size:16px;
  color:#526471
}

.stories {
  background:var(--navy);
  color:white;
  border-radius:var(--radius);
  margin:0 14px;
  padding-top:100px;
  padding-bottom:100px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  column-gap:8vw
}

.stories .eyebrow {
  grid-column:1/-1;
  margin-bottom:35px
}

.stories h2 {
  font-size:clamp(40px,5vw,76px)
}

.stories>p:last-child {
  align-self:end;
  font-size:20px;
  color:#b2c3cf;
  line-height:1.6
}

.client-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden
}

.client-logo {
  background:white;
  display:grid;
  place-items:center;
  padding:30px;
  min-height:150px
}

.client-logo img {
  max-width:150px;
  max-height:78px;
  width:100%;
  height:78px;
  object-fit:contain;
  transition:transform .3s
}

.client-logo:hover img {
  transform:scale(1.08)
}

.contact {
  background:#e6edf1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9vw
}

.contact h2 {
  font-size:clamp(58px,6vw,90px);
  margin:28px 0
}

.contact-copy>p {
  max-width:500px;
  color:#536774
}

.contact-links {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin:25px 0;
  font-size:24px;
  letter-spacing:-.02em
}

.contact-links a:hover {
  color:var(--red)
}

.small-copy {
  font-size:14px
}

.inquiry-form,.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-content:center
}

.inquiry-form label {
  font-size:14px;
  color:#3c5363
}

.inquiry-form input,.inquiry-form textarea {
  width:100%;
  display:block;
  background:transparent;
  border:0;
  border-bottom:1px solid #91a5b2;
  border-radius:0;
  padding:12px 0;
  color:var(--navy);
  min-width:0
}

.inquiry-form textarea {
  resize:vertical
}

.wide {
  grid-column:1/-1
}

.inquiry-form .button {
  justify-self:start;
  min-width:225px
}

.form-note {
  font-size:13px;
  color:#536774
}

.form-status {
  font-size:14px
}

.form-status:empty {
  display:none
}

fieldset {
  border:0;
  padding:0;
  margin:0;
  min-width:0
}

legend {
  font-size:24px;
  letter-spacing:-.03em;
  margin-bottom:24px
}

.registration {
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:10vw
}

.registration h2 {
  margin:25px 0
}

.registration .inquiry-form {
  align-content:start
}

.registration fieldset+fieldset {
  margin-top:25px
}

footer {
  background:var(--navy);
  color:#b5c6d0;
  padding:50px var(--space) 25px;
  font-size:13px
}

.footer-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding-bottom:35px
}

.footer-top img {
  width:115px;
  height:70px;
  object-fit:contain
}

.footer-top p {
  margin-right:auto
}

.footer-bottom {
  display:flex;
  justify-content:space-between;
  gap:25px;
  border-top:1px solid #ffffff25;
  padding-top:22px;
  font-size:12px
}

.service-hero {
  min-height:520px
}

.service-hero .hero-content {
  max-width:1250px;
  padding-top:230px;
  padding-bottom:75px
}

.service-hero h1 {
  font-size:clamp(50px,6.7vw,96px);
  max-width:1000px;
  margin-bottom:25px
}

.service-hero .video-toggle,.register-hero .video-toggle {
  bottom:30px
}

.breadcrumb {
  display:inline-block
}

.service-intro {
  display:grid;
  grid-template-columns:1fr 2.3fr;
  gap:6vw;
  padding-bottom:65px
}

.service-intro>div>p {
  font-size:clamp(21px,2.3vw,32px);
  line-height:1.5;
  letter-spacing:-.02em
}

.service-layout {
  display:grid;
  grid-template-columns:1fr 2.3fr;
  gap:6vw;
  padding-top:20px
}

.service-sidebar {
  position:sticky;
  top:35px;
  align-self:start;
  display:flex;
  flex-direction:column
}

.service-sidebar>.eyebrow {
  margin-bottom:25px
}

.service-sidebar>a:not(.button) {
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:14px;
  padding:16px 0;
  border-bottom:1px solid var(--line)
}

.service-sidebar>a[aria-current] {
  color:var(--red)
}

.service-sidebar .button {
  margin-top:30px;
  align-self:start
}

.expertise-block {
  padding:36px 0;
  border-top:1px solid var(--line)
}

.expertise-heading {
  display:flex;
  gap:20px;
  margin-bottom:25px
}

.expertise-heading .eyebrow {
  margin-top:9px;
  color:var(--red)
}

.expertise-heading h2 {
  font-size:clamp(28px,3vw,40px);
  letter-spacing:-.03em
}

.expertise-block p {
  color:#536774;
  margin-top:14px
}

.expertise-block p.detail-label {
  font-weight:700;
  color:var(--ink);
  margin-top:22px
}

.expertise-image {
  width:100%;
  height:310px;
  object-fit:cover;
  border-radius:18px;
  margin:25px 0
}

.detail-gallery {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px
}

.detail-gallery img {
  height:220px;
  width:100%;
  object-fit:cover;
  border-radius:16px
}

.register-hero {
  min-height:550px
}

.register-hero .hero-content {
  padding-bottom:55px
}

.register-hero h1 {
  margin-bottom:20px
}

/* Motion is progressive: content remains visible without JavaScript. */
@media(prefers-reduced-motion:no-preference) {
  .reveal.is-pending {
    opacity:0;
    transform:translateY(26px)
  }

  .reveal {
    transition:opacity .75s ease,transform .75s cubic-bezier(.2,.7,.2,1)
  }

  .hero-content {
    animation:enter .9s ease both
  }

  @keyframes enter {
    from {
      opacity:0;
      transform:translateY(20px)
    }

    to {
      opacity:1;
      transform:none
    }

  }

}

@media(min-width:1600px) {
  body {
    max-width:2100px;
    margin:auto
  }

  .header {
    max-width:1880px;
    margin:auto
  }

}

@media(max-width:1100px) {
  .desktop-nav {
    gap:18px;
    padding:14px 20px
  }

  .header {
    gap:20px
  }

  .header-cta {
    gap:10px
  }

  .service-card {
    min-height:260px;
    padding:22px
  }

  .card-bottom h3 {
    font-size:25px
  }

  .about {
    gap:5vw
  }

  .client-grid {
    grid-template-columns:repeat(3,1fr)
  }

  .section-count {
    display:none
  }

  .contact {
    gap:6vw
  }

  .home-hero {
    min-height:720px
  }

  .hero-content {
    padding-top:210px
  }

}

@media(max-width:800px) {
  :root {
    --radius:22px
  }

  .header {
    top:23px;
    height:60px;
    left:32px;
    right:32px;
    gap:16px
  }

  .brand,.brand img {
    width:94px;
    height:54px
  }

  .desktop-nav,.header-cta {
    display:none
  }

  .menu-toggle {
    display:flex;
    align-items:center;
    gap:14px;
    margin-left:auto;
    color:white;
    background:#112838bd;
    border:1px solid #ffffff40;
    border-radius:50px;
    padding:10px 17px;
    font-size:14px
  }

  .mobile-nav {
    position:absolute;
    top:74px;
    left:0;
    right:0;
    max-height:calc(100svh - 140px);
    overflow:auto;
    background:var(--navy);
    border:1px solid #ffffff25;
    border-radius:20px;
    padding:20px;
    box-shadow:0 20px 50px #0005;
    display:flex;
    flex-direction:column;
    gap:9px
  }

  .mobile-nav>a {
    padding:4px 7px
  }

  .mobile-nav .sub-link {
    font-size:14px;
    color:#afc3d1;
    padding-left:22px
  }

  .section {
    padding-top:70px;
    padding-bottom:70px
  }

  .hero {
    margin:10px
  }

  .home-hero {
    height:auto;
    min-height:720px
  }

  .hero-content {
    padding:175px 24px 140px
  }

  .hero h1 {
    font-size:clamp(47px,9vw,72px)
  }

  .hero-content .eyebrow {
    max-width:270px;
    font-size:11px
  }

  .hero-bottom {
    left:24px;
    right:24px;
    bottom:25px
  }

  .hero-bottom>span {
    display:none
  }

  .hero-bottom a {
    margin-right:130px;
    font-size:11px;
    letter-spacing:0
  }

  .video-toggle {
    right:24px;
    bottom:15px
  }

  .service-grid {
    grid-template-columns:1fr 1fr
  }

  .service-card {
    min-height:260px
  }

  .about {
    grid-template-columns:1fr
  }

  .about-photo {
    min-height:420px
  }

  .about-copy h2 {
    font-size:40px
  }

  .stories {
    grid-template-columns:1fr;
    gap:28px
  }

  .stories .eyebrow {
    margin-bottom:0
  }

  .stories>p:last-child {
    font-size:18px
  }

  .contact {
    grid-template-columns:1fr;
    gap:45px
  }

  .client-logo {
    padding:22px;
    min-height:120px
  }

  .client-logo img {
    height:65px
  }

  .service-intro,.service-layout {
    grid-template-columns:1fr;
    gap:28px
  }

  .service-sidebar {
    position:static;
    display:none
  }

  .service-intro {
    padding-bottom:30px
  }

  .service-layout {
    padding-top:0
  }

  .service-hero {
    min-height:450px
  }

  .service-hero .hero-content {
    padding:180px 24px 75px
  }

  .service-hero h1 {
    font-size:clamp(44px,8vw,64px)
  }

  .registration {
    grid-template-columns:1fr;
    gap:40px
  }

  .register-hero {
    min-height:450px
  }

  .register-hero .hero-content {
    padding-top:170px
  }

  .footer-top {
    flex-wrap:wrap
  }

  .footer-bottom {
    flex-direction:column;
    gap:12px
  }

}

@media(max-width:480px) {
  .service-grid {
    grid-template-columns:1fr
  }

  .service-card {
    min-height:220px
  }

  .card-bottom h3 {
    font-size:30px
  }

  .client-grid {
    grid-template-columns:1fr 1fr
  }

  .client-logo {
    padding:20px
  }

  .about-photo {
    min-height:360px
  }

  .inquiry-form,.form-grid {
    grid-template-columns:1fr
  }

  .wide {
    grid-column:auto
  }

  .hero h1 {
    font-size:48px
  }

  .hero-content {
    padding-left:20px;
    padding-right:20px
  }

  .hero-bottom {
    left:20px;
    right:20px
  }

  .home-hero {
    min-height:690px
  }

  .contact-links {
    font-size:22px
  }

  .footer-top p {
    font-size:12px
  }

  .expertise-image {
    height:220px
  }

  .detail-gallery {
    grid-template-columns:1fr
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }

  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }

  .reveal {
    opacity:1!important;
    transform:none!important
  }

}

.group-heading  {
  font-size: 26px;
  margin: 35px 0 25px;
  color: var(--muted);
}

/* Preserve the navy design; keep navigation visible on scroll. */
.header { position:fixed; z-index:100; }
.header.is-scrolled { background:#101f2bf5; border-radius:24px; box-shadow:0 8px 28px #0003; }
.header.is-scrolled::before { content:''; position:absolute; inset:0 -18px; background:inherit; border-radius:24px; z-index:-1; }
.contact-form-map { min-width:0; }
.contact-map { margin-top:32px; }
.contact-map .map-frame iframe { height:320px; }
.contact-map .map-link { left:15px; bottom:18px; padding:11px 16px; font-size:12px; }
@media(max-width:480px) { .contact-map .map-frame iframe { height:280px; } }
/* Compact edge-to-edge navigation after scrolling. */
.header.is-scrolled {
  top:0;
  left:0;
  right:0;
  width:100%;
  max-width:none;
  height:62px;
  margin:0;
  padding:0 clamp(18px,4vw,70px);
  border-radius:0;
  gap:22px;
  background:#101f2bfA;
  box-shadow:0 3px 14px #0002;
}
.header.is-scrolled::before { display:none; }
.header.is-scrolled .brand,
.header.is-scrolled .brand img { width:82px; height:46px; }
.header.is-scrolled .desktop-nav {
  padding:0;
  gap:26px;
  border:0;
  border-radius:0;
  background:transparent;
  backdrop-filter:none;
  font-size:13px;
}
.header.is-scrolled .header-cta { padding:6px 0; font-size:13px; gap:20px; border-bottom:0; }
.header.is-scrolled .header-cta span { font-size:20px; }
@media(max-width:800px) {
  .header.is-scrolled { height:56px; padding:0 20px; }
  .header.is-scrolled .brand,
  .header.is-scrolled .brand img { width:72px; height:42px; }
  .header.is-scrolled .menu-toggle { padding:7px 13px; font-size:13px; }
  .header.is-scrolled .mobile-nav { top:64px; left:16px; right:16px; }
}


/* Social profile icons in the contact section and every footer. */
.social-links { display:flex; flex-wrap:wrap; gap:12px; margin:22px 0; }
.social-icon { display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border:1px solid currentColor; border-radius:50%; color:inherit; text-decoration:none; }
.social-icon svg { width:20px; height:20px; fill:currentColor; }
.social-icon[aria-disabled="true"] { cursor:default; }
.social-icon[href]:hover { color:var(--red,#d71920); }
.social-icon:focus-visible { outline:3px solid currentColor; outline-offset:4px; }
