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

body {
  font-family: "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--ea-white);
  color: var(--ea-ink);
  line-height: 1.6;
}

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

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

/* utility bar + main nav (Trio style) */
.utility-bar { background: var(--ea-navy); }
.utility-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: #b7c3d6;
}
.utility-left a, .utility-right a { margin-right: 20px; }
.utility-right a:last-child { margin-right: 0; }

.site-header { background: var(--ea-white); border-bottom: 1px solid var(--ea-line); }
.header-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 800; color: var(--ea-navy); }
.header-logo-mark { color: var(--ea-teal); font-size: 26px; }
.header-nav { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 15px; color: var(--ea-navy); font-weight: 500; }
.nav-link:hover { color: var(--ea-teal); }
.nav-arrow { font-size: 11px; margin-left: 3px; opacity: .6; }

/* hero: full photo bg + overlapping navy card bottom-left */
.hero { position: relative; background: var(--ea-navy); }
.hero-media img { width: 100%; height: 620px; object-fit: cover; }
.hero-card {
  position: absolute;
  left: 0;
  bottom: 60px;
  background: var(--ea-navy);
  color: var(--ea-white);
  max-width: 560px;
  padding: 50px 56px;
}
.hero-eyebrow { font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #8ea3c9; margin-bottom: 14px; }
.hero-title { font-size: 42px; font-weight: 400; line-height: 1.15; margin-bottom: 22px; }
.hero-desc { font-size: 15.5px; color: #b7c3d6; margin-bottom: 26px; }
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #4a5b7a;
  color: var(--ea-white);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 500;
}

/* intro: left long statement text, right 2x2 service card grid */
.section { padding: 90px 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.intro-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 1px; color: var(--ea-navy); font-weight: 600; margin-bottom: 26px; }
.intro-eyebrow::before { content: ''; width: 14px; height: 14px; border: 1px solid var(--ea-teal); border-radius: 50%; display: inline-block; }
.intro-statement { font-size: 27px; color: var(--ea-navy); line-height: 1.4; margin-bottom: 30px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ea-navy);
  color: var(--ea-navy);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 500;
}
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { border: 1px solid var(--ea-line); padding: 26px; }
.service-icon { font-size: 26px; color: var(--ea-teal); margin-bottom: 40px; }
.service-title { font-size: 17px; font-weight: 700; color: var(--ea-navy); margin-bottom: 10px; }
.service-desc { font-size: 13.5px; color: var(--ea-grey); }

/* case study: split media/text band */
.case-band { display: grid; grid-template-columns: 1fr 1fr; }
.case-media { position: relative; min-height: 420px; }
.case-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.case-media-card {
  position: relative;
  z-index: 2;
  background: var(--ea-white);
  max-width: 380px;
  margin: 40px;
  padding: 34px;
}
.case-media-tag { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--ea-teal); font-weight: 700; margin-bottom: 12px; }
.case-media-title { font-size: 20px; font-weight: 700; color: var(--ea-navy); margin-bottom: 18px; }
.case-text { background: #f2e9dd; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.case-text-eyebrow { font-size: 13px; color: var(--ea-navy); margin-bottom: 18px; }
.case-text-eyebrow span { color: var(--ea-teal); margin: 0 8px; }
.case-text-title { font-size: 30px; font-weight: 400; color: var(--ea-navy); margin-bottom: 18px; }
.case-text-desc { font-size: 15px; color: #5b5142; margin-bottom: 24px; }

/* our people */
.people-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 46px; }
.people-statement { font-size: 30px; color: var(--ea-navy); font-weight: 400; max-width: 720px; line-height: 1.3; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.people-card img { width: 100%; height: 260px; object-fit: cover; margin-bottom: 16px; }
.people-name { font-size: 17px; font-weight: 700; color: var(--ea-navy); }
.people-role { font-size: 13.5px; color: var(--ea-grey); }
.people-nav { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.people-nav-btn { width: 40px; height: 40px; border: 1px solid var(--ea-line); display: flex; align-items: center; justify-content: center; }
.people-nav-count { font-size: 13px; color: var(--ea-grey); }

/* contact panel: navy full band with two-col form */
.contact-panel { background: var(--ea-navy); color: var(--ea-white); padding: 80px 0; }
.contact-title { font-size: 40px; font-weight: 400; margin-bottom: 16px; }
.contact-desc { font-size: 16px; color: #b7c3d6; margin-bottom: 40px; }
.contact-form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.contact-form-grid.full { grid-template-columns: 1fr; }
.form-field label { display: block; font-size: 13px; margin-bottom: 8px; color: #b7c3d6; }
.form-field input, .form-field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #33456b;
  color: var(--ea-white);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
}
.contact-note { font-size: 12px; color: #8ea3c9; max-width: 520px; margin-bottom: 26px; }
.btn-submit { background: transparent; border: 1px solid var(--ea-white); color: var(--ea-white); padding: 13px 30px; font-size: 15px; cursor: pointer; }

/* footer */
.footer-related { background: var(--ea-mist); border-top: 1px solid var(--ea-line); padding: 20px 0; font-size: 14px; color: var(--ea-grey); }
.footer-related a { margin-left: 24px; color: var(--ea-navy); }
.footer-related strong { color: var(--ea-navy); }
.site-footer { background: var(--ea-mist); padding: 50px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto 1.3fr; gap: 30px; }
.footer-col-title { font-size: 14px; font-weight: 700; color: var(--ea-navy); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--ea-grey); margin-bottom: 10px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--ea-white); border: 1px solid var(--ea-line); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--ea-navy); }
.footer-back-top { font-size: 13px; color: var(--ea-navy); margin-top: 10px; }
.footer-brand-block { background: var(--ea-white); padding: 30px; border: 1px solid var(--ea-line); }
.footer-brand-logo { font-size: 24px; font-weight: 800; color: var(--ea-navy); margin-bottom: 16px; }
.footer-brand-desc { font-size: 13.5px; color: var(--ea-grey); margin-bottom: 16px; }
.footer-copy { font-size: 12.5px; color: var(--ea-grey); }

@media (max-width: 960px) {
  .hero-title { font-size: 30px; }
  .intro-grid, .service-grid, .case-band, .people-grid, .contact-form-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .header-nav { display: none; }
  .hero-card { position: static; max-width: none; }
}
