:root {
  --steel-blue: #4682b4;
  --steel-blue-deep: #183e5a;
  --steel-blue-muted: #315f85;
  --light-blue: #add8e6;
  --light-blue-soft: #d9edf4;
  --light-blue-pale: #eef7fb;
  --paper: #f8fbfd;
  --accent: #4682b4;
  --ink: #172633;
  --muted: #536b7a;
  --line: rgba(70, 130, 180, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: white;
  transition: right 220ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 150px clamp(24px, 7vw, 110px) 120px;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(rgba(24, 62, 90, 0.2), rgba(24, 62, 90, 0.2)),
    radial-gradient(circle at 82% 20%, rgba(173, 216, 230, 0.28), transparent 31%),
    linear-gradient(118deg, var(--steel-blue-deep), #315f85 58%, #4682b4 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, transparent 18%, black 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

.hero-copy,
.hero-visual,
.hero-footnote {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--steel-blue-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--light-blue);
}

.hero h1,
.statement h2,
.section-heading h2,
.approach-title h2,
.heritage-grid h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 730px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.98;
}

.hero h1 em {
  color: var(--light-blue);
  font-weight: 400;
}

.hero-intro {
  max-width: 620px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button-light {
  color: var(--steel-blue-deep);
  background: var(--light-blue-soft);
}

.button:hover {
  transform: translateY(-2px);
  background: white;
}

.text-link {
  position: relative;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
}

.light-link {
  color: rgba(255, 255, 255, 0.88);
}

.hero-visual {
  width: min(100%, 520px);
  justify-self: end;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  aspect-ratio: 1;
  transform: rotate(5deg);
  border: 1px solid rgba(255,255,255,.14);
}

.visual-grid span {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(173, 216, 230, 0.05);
}

.visual-grid span:nth-child(2),
.visual-grid span:nth-child(6),
.visual-grid span:nth-child(8) {
  background: rgba(173, 216, 230, 0.16);
}

.logo-panel {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  top: 19%;
  left: 18%;
  overflow: hidden;
  border: 11px solid rgba(217, 237, 244, 0.9);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.logo-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

.visual-caption {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-align: right;
  text-transform: uppercase;
}

.hero-footnote {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  bottom: 36px;
  left: clamp(24px, 7vw, 110px);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.statement {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-index {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-copy {
  max-width: 920px;
}

.statement h2 {
  max-width: 880px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.06;
}

.statement-copy > p {
  max-width: 660px;
  margin: 34px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.focus-section {
  padding: 128px 0;
  background: var(--light-blue-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr;
  gap: 80px;
  align-items: end;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.04;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 76px;
  background: rgba(70, 130, 180, 0.2);
  border: 1px solid rgba(70, 130, 180, 0.2);
}

.focus-card {
  min-height: 475px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 44px);
  background: var(--light-blue-pale);
  transition: background 240ms ease, transform 500ms ease, opacity 500ms ease;
}

.focus-card:hover {
  background: var(--paper);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  color: var(--steel-blue-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.focus-card h3 {
  max-width: 260px;
  margin: 82px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.focus-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.card-detail {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--steel-blue-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
}

.approach-section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.approach-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: clamp(48px, 6vw, 88px);
  color: white;
  background: var(--steel-blue-deep);
}

.approach-title h2 {
  max-width: 560px;
  font-size: clamp(44px, 4vw, 66px);
  line-height: 1.05;
}

.principles article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.principles article:first-child {
  padding-top: 0;
}

.principles article > span {
  color: var(--light-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.principles h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.principles p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.7;
}

.heritage-section {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--light-blue);
}

.heritage-year {
  position: absolute;
  right: -0.03em;
  bottom: -0.22em;
  color: rgba(24,62,90,.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(210px, 34vw, 540px);
  line-height: .8;
  letter-spacing: -.08em;
}

.heritage-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 110px;
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 110px;
}

.heritage-grid h2 {
  max-width: 690px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.03;
}

.heritage-grid p {
  margin: 0 0 24px;
  color: var(--steel-blue-deep);
  font-size: 16px;
  line-height: 1.78;
}

.locations {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.location-grid article {
  min-height: 270px;
  padding: 38px;
  background: var(--paper);
}

.location-grid p {
  margin: 0 0 68px;
  color: var(--steel-blue-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.location-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
}

.location-grid span {
  color: var(--muted);
  font-size: 13px;
}

.contact-section {
  padding: 120px 0;
  color: white;
  background: var(--steel-blue-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
}

.contact-section h2 {
  max-width: 650px;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 1.02;
}

.contact-details {
  align-self: end;
}

.contact-details > p {
  max-width: 520px;
  margin: 0 0 36px;
  color: rgba(255,255,255,.63);
  font-size: 15px;
  line-height: 1.75;
}

.contact-details > a {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--light-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
}

.contact-locations {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  color: var(--light-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  min-height: 116px;
  padding: 20px clamp(24px, 5vw, 80px);
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(28px, 8vw, 120px);
  color: white;
  background: var(--steel-blue-deep);
}

.not-found .brand {
  margin-bottom: 72px;
}

.not-found .brand-name {
  color: white;
}

.not-found h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 110px);
  font-weight: 400;
  letter-spacing: -.05em;
}

.not-found p {
  margin: 22px 0 38px;
  color: rgba(255,255,255,.65);
  font-size: 17px;
}

.footer-brand .brand-name {
  color: var(--steel-blue-deep);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(.22,1,.36,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.25);
    color: white;
    background: transparent;
  }

  .menu-button span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .mobile-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 24px;
    color: var(--steel-blue-deep);
    background: var(--light-blue-soft);
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 16px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 160px;
    padding-bottom: 125px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(76vw, 480px);
    justify-self: center;
    margin-top: 10px;
  }

  .statement,
  .locations {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .section-heading,
  .approach-panel,
  .heritage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

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

  .focus-card {
    min-height: 390px;
  }

  .approach-panel {
    padding: 60px 42px;
  }

  .heritage-section {
    min-height: 720px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 78px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 13px;
  }

  .mobile-nav {
    top: 78px;
  }

  .hero {
    padding: 130px 24px 118px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

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

  .hero-footnote {
    bottom: 24px;
    flex-direction: column;
    gap: 8px;
  }

  .section-shell {
    width: min(100% - 36px, 1280px);
  }

  .statement,
  .approach-section,
  .locations {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .focus-section,
  .contact-section {
    padding: 88px 0;
  }

  .statement h2,
  .section-heading h2,
  .approach-title h2,
  .heritage-grid h2,
  .contact-section h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .statement-copy > p {
    margin-left: 0;
  }

  .focus-grid {
    margin-top: 50px;
  }

  .focus-card {
    min-height: 410px;
    padding: 28px;
  }

  .focus-card h3 {
    margin-top: 65px;
  }

  .approach-panel {
    padding: 44px 28px;
  }

  .principles article {
    grid-template-columns: 34px 1fr;
  }

  .heritage-section {
    min-height: 760px;
  }

  .heritage-content {
    padding-top: 88px;
    padding-bottom: 88px;
  }

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

  .location-grid article {
    min-height: 230px;
  }

  .contact-locations {
    flex-direction: column;
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
