@import "tailwindcss";

:root {
  --navy: #07375e;
  --navy-deep: #042742;
  --red: #ed1533;
  --ink: #14283a;
  --slate: #5f7181;
  --mist: #edf2f5;
  --stone: #f6f4f0;
  --line: #d9e1e6;
  --white: #ffffff;
  --page: #fbfcfc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(7, 55, 94, 0.12);
  display: flex;
  height: 96px;
  justify-content: space-between;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 1 430px;
  gap: 18px;
  min-width: 260px;
}

.brand img {
  height: auto;
  width: min(210px, 28vw);
}

.brand span {
  border-left: 1px solid var(--line);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  max-width: 132px;
  padding-left: 18px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(20px, 2.4vw, 38px);
}

.desktop-nav > a:not(.header-cta) {
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px 0;
  text-transform: uppercase;
}

.desktop-nav > a:not(.header-cta):hover,
.desktop-nav > a:not(.header-cta):focus-visible {
  color: var(--red);
}

.header-cta {
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 13px 19px;
  text-transform: uppercase;
}

.mobile-nav {
  display: none;
  position: relative;
}

.hero {
  background: white;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  min-height: calc(100vh - 96px);
}

.hero-copy {
  align-self: center;
  max-width: 780px;
  padding: clamp(70px, 8vw, 125px) clamp(48px, 7vw, 120px);
}

.eyebrow {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero h1,
.inner-hero h1,
.section-heading h2,
.experience-copy h2,
.method-section h2,
.closing-section h2 {
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(48px, 5.8vw, 86px);
  margin: 0;
  max-width: 720px;
}

.hero-intro {
  color: var(--slate);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.75;
  margin: 34px 0 0;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 48px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: 160ms ease;
}

.button-primary {
  background: var(--navy);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red);
}

.button-quiet {
  border: 1px solid var(--line);
  color: var(--navy);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--navy);
}

.hero-facts {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin: 58px 0 0;
  padding-top: 25px;
}

.hero-facts div {
  display: grid;
  gap: 2px;
}

.hero-facts dt {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.2;
}

.hero-facts dd {
  color: var(--slate);
  font-size: 10px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.hero-image {
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.hero-image::after {
  background: linear-gradient(180deg, rgba(2, 23, 39, 0.02), rgba(2, 23, 39, 0.38));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-image img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.image-caption {
  bottom: 40px;
  color: white;
  display: grid;
  left: 40px;
  max-width: 440px;
  position: absolute;
  z-index: 2;
}

.image-caption span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.image-caption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  margin-top: 6px;
}

.client-band {
  align-items: center;
  background: var(--navy-deep);
  color: white;
  display: grid;
  gap: 20px;
  grid-template-columns: 0.8fr repeat(5, 1fr);
  padding: 24px 5vw;
}

.client-band span {
  color: #90a7b9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-band p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.section {
  margin: 0 auto;
  max-width: 1500px;
  padding: clamp(90px, 10vw, 150px) 5vw;
}

.section-heading {
  display: grid;
  gap: clamp(22px, 4vw, 70px);
  grid-template-columns: 0.7fr 1.4fr 0.9fr;
  margin-bottom: 68px;
}

.section-heading .eyebrow {
  margin-top: 8px;
}

.section-heading h2,
.experience-copy h2,
.method-section h2,
.closing-section h2 {
  font-size: clamp(40px, 4.6vw, 66px);
  margin: 0;
}

.section-heading > p:last-child,
.experience-copy > p,
.method-copy > p,
.closing-section > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.8;
  margin: 8px 0 0;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(20px, 4vw, 70px);
  grid-template-columns: 0.15fr 0.85fr 1.25fr;
  padding: 35px 0;
}

.service-row > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.service-row h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.service-row p {
  color: var(--slate);
  margin: 0;
}

.section-link {
  margin-top: 38px;
  text-align: right;
}

.section-link a,
.text-link {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-link a span,
.text-link span {
  color: var(--red);
  font-size: 17px;
  margin-left: 8px;
}

.experience-panel {
  background: var(--navy-deep);
  color: white;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.experience-quote,
.experience-copy {
  padding: clamp(70px, 9vw, 135px) clamp(45px, 8vw, 120px);
}

.experience-quote {
  background: linear-gradient(135deg, #092f4d, #061e32);
  border-right: 1px solid rgba(255,255,255,0.12);
}

.eyebrow.light {
  color: #e75a6e;
}

.experience-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 3.3vw, 50px);
  font-weight: 400;
  line-height: 1.22;
  margin: 60px 0 0;
}

.experience-copy h2 {
  color: white;
}

.experience-copy > p {
  color: #becbd4;
  max-width: 680px;
}

.experience-copy > p:first-of-type {
  margin-top: 38px;
}

.light-link {
  color: white;
  display: inline-block;
  margin-top: 30px;
}

.engagements-section {
  background: var(--stone);
  max-width: none;
}

.compact-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 1500px;
}

.engagement-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1500px;
}

.engagement-grid article {
  background: white;
  border-top: 3px solid var(--navy);
  min-height: 330px;
  padding: 42px;
}

.engagement-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.engagement-grid h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
  margin: 42px 0 20px;
}

.engagement-grid p {
  color: var(--slate);
  margin: 0;
}

.method-section {
  background: white;
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr 1fr;
  padding: clamp(90px, 11vw, 160px) 8vw;
}

.method-copy ul {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.method-copy li {
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  padding: 17px 0 17px 22px;
  position: relative;
}

.method-copy li::before {
  color: var(--red);
  content: "—";
  left: 0;
  position: absolute;
}

.credentials-section {
  align-items: center;
  background: var(--mist);
  display: grid;
  gap: 30px;
  grid-template-columns: 0.35fr 1.65fr;
  padding: 42px 8vw;
}

.credentials-section > p {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credentials-section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
}

.credentials-section span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-section {
  background: white;
  padding: clamp(100px, 12vw, 180px) max(8vw, calc((100vw - 1200px) / 2));
  text-align: center;
}

.closing-section h2 {
  margin: 0 auto;
  max-width: 900px;
}

.closing-section > p:not(.eyebrow) {
  margin: 28px auto 0;
  max-width: 690px;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  background: var(--navy-deep);
  color: #c7d2da;
  display: grid;
  gap: 55px 70px;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  padding: 75px 6vw 28px;
}

.footer-brand strong {
  color: white;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.footer-brand p {
  color: #8da2b2;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact,
.footer-links {
  display: grid;
  font-size: 13px;
  gap: 9px;
}

.footer-contact a,
.footer-links a {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.13);
  display: flex;
  font-size: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding-top: 24px;
  text-transform: uppercase;
}

.inner-hero {
  background: linear-gradient(120deg, #f8fafb, #eef3f6);
  border-bottom: 1px solid var(--line);
  padding: clamp(90px, 12vw, 165px) max(7vw, calc((100vw - 1320px) / 2));
}

.inner-hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  margin: 0;
  max-width: 1000px;
}

.inner-intro {
  color: var(--slate);
  font-size: 19px;
  line-height: 1.8;
  margin-top: 36px;
  max-width: 810px;
}

.inner-intro p {
  margin: 0;
}

.content-section {
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(80px, 10vw, 140px) 6vw;
}

.content-grid {
  display: grid;
  gap: clamp(45px, 8vw, 120px);
  grid-template-columns: 0.72fr 1.28fr;
}

.content-kicker {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.content-body h2,
.service-detail h2,
.contact-card h2,
.legal-content h1,
.legal-content h2 {
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.14;
}

.content-body h2 {
  font-size: clamp(36px, 4.2vw, 58px);
  margin: 0 0 30px;
}

.content-body p {
  color: var(--slate);
  font-size: 17px;
  line-height: 1.85;
}

.pullquote {
  border-left: 3px solid var(--red);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.4;
  margin: 48px 0;
  padding-left: 28px;
}

.detail-list {
  display: grid;
  gap: 1px;
  margin-top: 55px;
}

.service-detail {
  background: white;
  border-top: 3px solid var(--navy);
  display: grid;
  gap: 30px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 38px;
}

.service-detail h2 {
  font-size: 31px;
  margin: 0;
}

.service-detail p,
.service-detail li {
  color: var(--slate);
}

.service-detail ul {
  margin: 0;
  padding-left: 20px;
}

.credential-list {
  border-top: 1px solid var(--line);
  margin-top: 45px;
}

.credential-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 18px 0;
}

.credential-list dt {
  color: var(--navy);
  font-weight: 700;
}

.credential-list dd {
  color: var(--slate);
  margin: 0;
}

.contact-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(80px, 10vw, 130px) 6vw;
}

.contact-card {
  background: white;
  border-top: 3px solid var(--navy);
  min-height: 260px;
  padding: 38px;
}

.contact-card h2 {
  font-size: 27px;
  margin: 0 0 24px;
}

.contact-card p,
.contact-card address {
  color: var(--slate);
  font-style: normal;
}

.contact-card a {
  color: var(--navy);
  font-weight: 700;
}

.contact-note {
  background: var(--navy-deep);
  color: white;
  margin: 0 auto 110px;
  max-width: 1100px;
  padding: 46px;
}

.contact-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
}

.contact-note p {
  color: #bdcad4;
  margin-bottom: 0;
}

.legal-content {
  margin: 0 auto;
  max-width: 900px;
  padding: 100px 6vw 140px;
}

.legal-content h1 {
  font-size: clamp(48px, 6vw, 78px);
  margin: 0 0 18px;
}

.legal-content h2 {
  font-size: 27px;
  margin-top: 48px;
}

.legal-content p,
.legal-content li {
  color: var(--slate);
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    color: var(--navy);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    list-style: none;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(4, 39, 66, 0.12);
    display: grid;
    gap: 4px;
    min-width: 230px;
    padding: 15px;
    position: absolute;
    right: 0;
    top: 36px;
  }

  .mobile-nav nav a {
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
  }

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

  .hero-copy {
    max-width: none;
  }

  .hero-image {
    min-height: 66vw;
  }

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

  .client-band span {
    grid-column: 1 / -1;
    text-align: center;
  }

  .section-heading {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .experience-panel,
  .method-section {
    grid-template-columns: 1fr;
  }

  .experience-quote {
    border-bottom: 1px solid rgba(255,255,255,0.12);
    border-right: 0;
  }

  .engagement-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .engagement-grid article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 78px;
    padding: 0 20px;
  }

  .brand {
    gap: 0;
    min-width: 0;
  }

  .brand img {
    width: 180px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 72px 24px 65px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-facts {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 74vw;
  }

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

  .client-band {
    grid-template-columns: 1fr 1fr;
    padding: 28px 22px;
  }

  .client-band p {
    font-size: 13px;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-heading,
  .service-row,
  .content-grid,
  .service-detail,
  .credential-list div {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .service-row {
    gap: 10px;
  }

  .service-row p {
    margin-top: 8px;
  }

  .experience-quote,
  .experience-copy,
  .method-section {
    padding: 75px 24px;
  }

  .engagement-grid article {
    padding: 34px 26px;
  }

  .credentials-section {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .site-footer {
    gap: 35px;
    grid-template-columns: 1fr;
    padding: 65px 24px 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .inner-hero,
  .content-section,
  .contact-layout,
  .legal-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .inner-hero h1 {
    font-size: 50px;
  }

  .contact-note {
    margin: 0 24px 80px;
    padding: 34px 26px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
