:root {
  --navy: #0b1b2b;
  --navy-2: #172c3f;
  --navy-3: #223b50;
  --green: #2f8359;
  --green-bright: #58b77f;
  --green-pale: #e5f0e9;
  --yellow: #e2b94c;
  --paper: #f5f7f4;
  --surface: #fff;
  --surface-soft: #eef3ef;
  --white: #fff;
  --ink: #102132;
  --muted: #5f6f7d;
  --line: #d9e0db;
  --text-on-dark: #edf3f6;
  --muted-on-dark: #afbec9;
  --shell: min(1240px, calc(100% - 48px));
  --shadow: 0 22px 70px rgba(11, 27, 43, .12);
  --shadow-soft: 0 14px 38px rgba(11, 27, 43, .07);
  --radius-lg: 14px;
  --radius: 10px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
[data-route-view][hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { display: block; }
h1, h2, h3, p { margin-top: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 12px 18px;
  color: #fff;
  background: var(--green);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  color: #fff;
  background: linear-gradient(180deg, rgba(4, 13, 22, .72) 0%, rgba(4, 13, 22, .24) 72%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s ease, height .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  height: 70px;
  background: rgba(11, 26, 42, .96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(16px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; }
.brand-logo { display: block; width: auto; height: 60px; filter: brightness(0) invert(1); }
.site-nav { display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 0; margin-left: clamp(32px, 4.5vw, 70px); font-size: 15px; font-weight: 680; }
.site-nav > a { position: relative; padding-block: 9px; color: rgba(255, 255, 255, .78); white-space: nowrap; transition: color .2s ease; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav > a:hover, .site-nav > a.is-active { color: #fff; }
.site-nav > a:hover::after, .site-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta {
  padding: 11px 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  transition: background .2s ease, border-color .2s ease;
}
.site-nav .nav-cta:hover { background: var(--green); border-color: var(--green); }
.menu-toggle { display: none; }
.mobile-detail-menu { display: none; }

/* Honors-style mega menu */
.mega-menu {
  position: absolute;
  inset: 100% 0 auto;
  color: #fff;
  background: rgba(7, 19, 31, .97);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 55px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .24s ease, transform .3s var(--ease), visibility .24s;
}
.site-header.is-mega-open { background: rgba(11,26,42,.98); }
.site-header.is-mega-open .mega-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mega-grid { display: grid; min-height: 240px; }
.mega-grid-company { grid-template-columns: minmax(240px, .85fr) minmax(280px, .9fr) minmax(360px, 1.4fr); }
.mega-intro { padding: 32px 34px 32px 0; }
.mega-intro span,
.mega-menu section > span { display: block; margin-bottom: 22px; color: #6f8799; font: 800 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .16em; text-transform: uppercase; }
.mega-intro strong { color: #dbe5eb; font: 700 18px/1.45 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: -.04em; }
.mega-menu section { padding: 32px 25px; border-left: 1px solid rgba(255,255,255,.1); }
.mega-menu section a { position: relative; display: block; padding: 8px 0; color: var(--muted-on-dark); font-size: 14px; line-height: 1.45; transition: color .2s ease, transform .2s ease; }
.mega-menu section a::before { content: ""; position: absolute; left: -12px; top: 50%; width: 4px; height: 4px; background: var(--green-bright); opacity: 0; transform: translateY(-50%); transition: opacity .2s ease; }
.mega-menu section a:hover,
.mega-menu section a:focus-visible { color: #fff; outline: none; transform: translateX(8px); }
.mega-menu section a:hover::before,
.mega-menu section a:focus-visible::before { opacity: 1; }
.mega-message { display: flex; flex-direction: column; justify-content: center; padding: 32px 0 32px clamp(34px, 5vw, 76px); border-left: 1px solid rgba(255,255,255,.1); }
.mega-message > span { margin-bottom: 20px; color: #6f8799; font: 800 9px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .16em; text-transform: uppercase; }
.mega-message strong { color: #e4ebef; font-size: 21px; line-height: 1.55; letter-spacing: -.025em; }
.mega-message p { max-width: 440px; margin: 18px 0 0; color: #97a8b4; font-size: 14px; line-height: 1.7; word-break: keep-all; }

/* Hero */
.hero {
  position: relative;
  min-height: max(720px, 100svh);
  padding-top: 82px;
  color: #fff;
  background: #071522;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 13, 22, .86) 0%, rgba(4, 13, 22, .69) 42%, rgba(4, 13, 22, .25) 74%, rgba(4, 13, 22, .36) 100%),
    linear-gradient(180deg, rgba(4, 13, 22, .45) 0%, rgba(4, 13, 22, .12) 45%, rgba(4, 13, 22, .68) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.13);
}
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image:
    linear-gradient(rgba(126, 176, 148, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 176, 148, .14) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 0, #000 48%, #000 100%);
}
.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: #071522 url("assets/hero-new-york-36244259-smooth-poster.jpg") center / cover no-repeat;
}
.hero-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.84) contrast(1.05) brightness(.92);
  transform: scale(1.015);
}
.hero-video-control {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 80px);
  bottom: 30px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: #fff;
  background: rgba(5, 15, 25, .72);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0,0,0,.24);
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
}
.hero-video-control[hidden] { display: none; }
.hero-video-control span { color: var(--green-bright); font-size: 11px; }
.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - 82px);
  align-items: center;
}
.hero-copy {
  width: min(1080px, 82vw);
  padding: clamp(78px, 10vh, 130px) 0 76px;
  text-shadow: 0 3px 26px rgba(0, 0, 0, .28);
}
.eyebrow, .section-kicker {
  margin-bottom: 24px;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 14px; color: var(--green-bright); }
.hero h1 {
  max-width: none;
  margin-bottom: 30px;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.065em;
  font-weight: 800;
}
.hero-title-line { display: block; white-space: nowrap; }
.hero h1 em { color: var(--green-bright); font-style: normal; }
.hero-lead { max-width: 570px; margin-bottom: 0; color: var(--muted-on-dark); font-size: 19px; line-height: 1.75; word-break: keep-all; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 760;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--green); }
.button-primary:hover { background: #349663; }
.hero-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 82px;
  align-items: center;
  color: #8ea0ad;
  border-top: 1px solid rgba(255,255,255,.13);
  font: 12px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .08em;
}
.hero-strip span { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.13); }
.hero-strip span:first-child { padding-left: 0; border-left: 0; }

/* Proof band */
.proof-band { position: relative; z-index: 4; background: #fff; border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); }
.proof-intro, .proof-stat { min-height: 158px; padding: 30px 25px; }
.proof-intro { display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: var(--green); }
.proof-intro span, .proof-stat > span {
  color: inherit;
  font: 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.proof-intro span { color: rgba(255,255,255,.65); }
.proof-intro strong { font-size: 20px; line-height: 1.5; letter-spacing: -.025em; }
.proof-stat { display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.proof-stat strong { color: var(--navy); font: 800 37px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: -.08em; }
.proof-stat strong small { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
.proof-stat > span { color: var(--muted); letter-spacing: -.01em; text-transform: none; }
.proof-stat-accent { background: var(--green-pale); border-right: 0; }
.proof-stat-accent strong { color: var(--green); }

/* Page navigation system */
.page-banner {
  position: relative;
  padding-top: 82px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 19, 31, .98), rgba(16, 48, 59, .93)),
    var(--navy);
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -175px;
  top: -295px;
  border: 1px solid rgba(76, 189, 125, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 105px rgba(76, 189, 125, .035), 0 0 0 210px rgba(76, 189, 125, .025);
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 82px 0 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
  pointer-events: none;
}
.page-banner-main {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 354px;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  padding-block: 70px 62px;
}
.page-eyebrow {
  margin-bottom: 20px;
  color: #6fc494;
  font: 800 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.page-banner h1 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1.08;
  letter-spacing: -.065em;
}
.page-banner-main > p {
  max-width: 410px;
  margin: 44px 0 0;
  color: #aebdca;
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}
/* Home directory */
.home-directory { background: var(--paper); }
.home-directory .split-heading > p { color: var(--muted); }
.directory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.directory-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease, color .25s ease, background .25s ease;
}
.directory-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -115px; bottom: -115px; border: 1px solid rgba(45,130,87,.35); transform: rotate(45deg); transition: transform .45s var(--ease); }
.directory-card:hover { color: #fff; background: var(--navy); border-color: var(--navy); border-top-color: var(--yellow); box-shadow: var(--shadow); transform: translateY(-8px); }
.directory-card:hover::before { transform: translate(-20px, -20px) rotate(45deg); border-color: rgba(102,191,139,.55); }
.directory-card > span { color: var(--green); font: 800 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .13em; text-transform: uppercase; }
.directory-card h3 { margin-bottom: 14px; font-size: 28px; letter-spacing: -.045em; }
.directory-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; word-break: keep-all; }
.directory-card > strong { position: absolute; right: 27px; top: 27px; color: #9aa69f; font-size: 18px; }
.directory-card:hover > span,
.directory-card:hover > strong { color: #77ca9a; }
.directory-card:hover p { color: #aebbc5; }
.directory-card-featured { color: #fff; background: var(--green); border-color: var(--green); }
.directory-card-featured > span,
.directory-card-featured > strong { color: #cde8d8; }
.directory-card-featured p { color: rgba(255,255,255,.72); }

/* Newsroom */
.newsroom { background: var(--surface-soft); }
.news-heading-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.news-heading-copy p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  word-break: keep-all;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.news-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 340px;
  flex-direction: column;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: #b8d4c3;
  box-shadow: var(--shadow);
}
.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}
.news-card-meta span {
  color: var(--green);
  font-weight: 800;
}
.news-card-type {
  margin: 38px 0 12px;
  color: #7b8c83;
  font: 800 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.news-card h3 {
  max-width: 560px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(23px, 2vw, 27px);
  line-height: 1.38;
  letter-spacing: -.04em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.news-card > p:not(.news-card-type) {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.news-card > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.news-card > a span { color: var(--green); }

/* Shared sections */
.section { padding: 120px 0; }
.section-heading { margin-bottom: 66px; }
.section-heading h2, .strengths-heading h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.2;
  letter-spacing: -.055em;
  font-weight: 800;
  word-break: keep-all;
}
.split-heading { display: grid; grid-template-columns: 1.5fr .75fr; gap: 80px; align-items: end; }
.split-heading > p {
  margin-bottom: 8px;
  color: #9cadba;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}
.section-kicker.light { color: #71c293; }

/* About */
.about { background: var(--surface); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; }
.about-layout .section-heading { margin: 0; }
.about-content { padding-top: 36px; }
.intro-copy { margin-bottom: 48px; color: #425466; font-size: 19px; line-height: 1.85; letter-spacing: -.02em; word-break: keep-all; }
.company-facts { border-top: 1px solid var(--line); }
.company-facts > div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.company-facts span { color: #73818c; font-size: 14px; font-weight: 650; }
.company-facts strong { font-size: 16px; font-weight: 700; line-height: 1.6; word-break: keep-all; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 0; }
.philosophy { background: var(--surface-soft); }
.philosophy-heading { margin-bottom: 54px; }
.value-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 34px 32px 36px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}
.value-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--green); }
.value-card::after { position: absolute; right: 25px; bottom: 16px; color: rgba(47, 131, 89, .07); font: 850 84px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: -.08em; }
.value-card:nth-child(1)::after { content: "01"; }
.value-card:nth-child(2)::after { content: "02"; }
.value-card:nth-child(3)::after { content: "03"; }
.value-card:hover { transform: translateY(-6px); border-color: #b8d4c3; box-shadow: var(--shadow); }
.value-card-featured { color: var(--ink); background: var(--surface); border-color: var(--line); }
.card-index { display: inline-flex; width: fit-content; min-height: auto; margin: 10px 0 62px; padding: 9px 13px; align-items: center; color: var(--green); background: var(--green-pale); border-radius: 999px; font: 850 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .16em; }
.value-card-featured .card-index { color: var(--green); }
.value-card h3 { position: relative; z-index: 1; margin-bottom: 22px; color: var(--ink); font-size: 32px; line-height: 1.25; letter-spacing: -.045em; }
.value-card p { position: relative; z-index: 1; max-width: none; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; word-break: keep-all; }
.value-card-featured p { color: var(--muted); }

/* Services */
.services { color: var(--ink); background: var(--surface-soft); }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; border-top: 0; }
.service-item {
  display: grid;
  grid-template-columns: 42px 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 300px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease;
}
.service-item:hover { padding-inline: 32px; transform: translateY(-5px); background: var(--surface); border-color: #b8d4c3; box-shadow: var(--shadow); }
.service-number { color: var(--green); font: 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; }
.service-icon { display: grid; width: 58px; height: 58px; place-items: center; color: var(--green); background: #f5faf6; border: 1px solid #b9d6c4; border-radius: var(--radius); }
.service-icon svg { width: 33px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-copy h3 { margin-bottom: 10px; font-size: 27px; letter-spacing: -.035em; }
.service-copy p { max-width: 650px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; word-break: keep-all; }
.service-item ul { grid-column: 3; margin: 16px 0 0; padding: 18px 0 0; color: #52645c; border-top: 1px solid var(--line); list-style: none; font-size: 14px; line-height: 1.9; }
.service-item li::before { content: "/"; margin-right: 9px; color: var(--green); }

/* Strengths */
.strengths { background: var(--surface); }
.strengths-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 82px; align-items: start; }
.strengths-heading { position: sticky; top: 115px; }
.strengths-heading > p:not(.section-kicker) { max-width: 480px; margin: 34px 0 0; color: #52645c; font-size: 16px; line-height: 1.8; word-break: keep-all; }
.strength-list { display: grid; gap: 14px; border-top: 0; }
.strength-list article { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 28px 30px 30px; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.strength-list article:hover { transform: translateX(5px); border-color: #b8d4c3; box-shadow: var(--shadow-soft); }
.strength-list article > span { padding-top: 7px; color: var(--green); font: 800 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; }
.strength-list h3 { margin-bottom: 15px; font-size: 28px; letter-spacing: -.035em; }
.strength-list p { margin: 0; color: #52645c; font-size: 16px; line-height: 1.8; word-break: keep-all; }

/* Projects */
.projects { background: var(--surface-soft); }
.dark-text > p { color: var(--muted); }
.project-filter { display: flex; justify-content: flex-end; gap: 8px; margin: -22px 0 28px; }
.project-filter button { min-height: 42px; padding: 9px 18px; color: var(--muted); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 14px; font-weight: 720; transition: all .2s ease; }
.project-filter button:hover, .project-filter button.is-active { color: #fff; background: var(--green); border-color: var(--green); }
.project-group { margin-top: 42px; }
.project-group + .project-group { margin-top: 82px; }
.project-group-heading { display: grid; grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr); align-items: end; gap: 56px; margin-bottom: 26px; padding-top: 28px; border-top: 1px solid #c9d3cf; }
.project-group-current .project-group-heading { border-top: 3px solid var(--green); }
.project-group-heading > div:first-child > p { margin: 0 0 10px; color: var(--green); font: 700 10px/1.35 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .14em; text-transform: uppercase; }
.project-group-heading h3 { margin: 0; font-size: clamp(27px, 2.35vw, 36px); line-height: 1.2; letter-spacing: -.045em; }
.project-group-summary { display: grid; grid-template-columns: 96px minmax(0, 1fr); align-items: start; gap: 24px; }
.project-group-summary > span { padding-top: 3px; color: var(--green); font: 700 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.project-group-summary p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; word-break: keep-all; }
.project-group-prior .project-group-heading > div:first-child > p, .project-group-prior .project-group-summary > span { color: #687a72; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.project-card { min-width: 0; padding: 12px 12px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s ease, border-color .35s ease; }
.project-card[data-project-scope="current"] { border-color: #b9d5c4; }
.project-card:hover { transform: translateY(-7px); border-color: #b8d4c3; box-shadow: var(--shadow); }
.project-card.is-hidden { display: none; }
.project-art { position: relative; min-height: 235px; aspect-ratio: 16 / 10; background: var(--navy-2); border-radius: calc(var(--radius-lg) - 4px); overflow: hidden; }
.project-art::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7, 19, 31, .2)); pointer-events: none; }
.project-art::after { content: ""; position: absolute; z-index: 2; inset: auto 0 0; height: 5px; background: var(--green); }
.project-art img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.project-scope { position: absolute; z-index: 3; top: 16px; left: 16px; max-width: calc(100% - 32px); padding: 8px 11px 7px; color: #fff; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; font: 800 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 7px 20px rgba(4,16,26,.16); }
.project-scope-current { background: rgba(42,137,91,.94); }
.project-scope-prior { background: rgba(11,27,43,.86); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.project-card:hover .project-art img { transform: scale(1.04); }
.art-one img { object-position: 50% 48%; }
.art-two img, .art-three img { object-position: 50% 50%; }
.art-four img, .art-six img { object-position: 50% 52%; }
.art-five img { object-position: 50% 47%; }
.project-meta { display: flex; justify-content: space-between; gap: 10px; margin: 23px 4px 14px; color: #657582; font-size: 12px; font-weight: 700; }
.project-card h3 { margin: 0 4px 24px; font-size: 24px; letter-spacing: -.035em; }
.project-card dl { margin: 0 4px; padding-top: 17px; border-top: 1px solid #e2e5e2; }
.project-card dl > div { display: grid; grid-template-columns: 46px 1fr; gap: 8px; margin: 9px 0; font-size: 14px; line-height: 1.55; }
.project-card dt { color: var(--green); font-weight: 800; }
.project-card dd { margin: 0; color: #53616d; }

/* Organization */
.organization { color: var(--ink); background: var(--surface-soft); }
.org-chart { position: relative; padding-top: 18px; }
.org-ceo { position: relative; z-index: 3; width: min(370px, 80%); margin: 0 auto 94px; padding: 25px 30px; color: #fff; background: var(--green); border-radius: var(--radius); box-shadow: var(--shadow-soft); text-align: center; }
.org-ceo span, .org-teams article > span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.72); font: 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .12em; text-transform: uppercase; }
.org-ceo strong { font-size: 22px; }
.org-lines { position: absolute; z-index: 1; top: 95px; left: 16.66%; right: 16.66%; height: 68px; border: 1px solid rgba(83, 173, 121, .62); border-bottom: 0; }
.org-lines::after { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 68px; background: rgba(83, 173, 121, .62); }
.org-teams { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.org-teams article { min-height: 280px; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.org-teams article > span { margin-bottom: 38px; color: var(--green); }
.org-teams h3 { margin-bottom: 28px; color: var(--ink); font-size: 26px; letter-spacing: -.035em; }
.org-teams ul { margin: 0; padding: 0; color: var(--muted); list-style: none; font-size: 15px; line-height: 1.95; }
.org-teams li::before { content: "—"; margin-right: 10px; color: var(--green); }

/* Directions */
.directions { background: var(--surface); }
.directions-map { width: 100%; min-height: 390px; max-height: 510px; aspect-ratio: 16 / 5.4; background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); overflow: hidden; }
.directions-map iframe { display: block; width: 100%; height: 100%; min-height: inherit; border: 0; }
.directions-info { margin-top: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.directions-info > div { display: grid; grid-template-columns: 150px minmax(0, 1fr) auto; gap: 24px; align-items: center; min-height: 72px; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.directions-info > div:last-child { border-bottom: 0; }
.directions-info span { color: var(--green); font: 800 11px/1.3 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .1em; text-transform: uppercase; }
.directions-info strong { color: var(--ink); font-size: 16px; line-height: 1.65; }
.directions-info strong a { color: inherit; }
.directions-info strong i { margin: 0 14px; color: #a7b2aa; font-style: normal; }
.directions-info > div > a { color: var(--green); font-size: 14px; font-weight: 760; white-space: nowrap; }

/* Contact */
.contact { position: relative; padding: 120px 0; color: var(--ink); background: var(--surface-soft); overflow: hidden; }
.contact::before { content: ""; position: absolute; width: 580px; height: 580px; right: -180px; top: -210px; border: 1px solid rgba(47,131,89,.22); border-radius: 50%; box-shadow: 0 0 0 100px rgba(47,131,89,.025), 0 0 0 200px rgba(47,131,89,.018); }
.contact-grid { opacity: .16; mask-image: linear-gradient(90deg, transparent, #000); }
.contact-layout { position: relative; display: grid; grid-template-columns: 1fr .83fr; gap: 120px; align-items: center; }
.contact h2 { margin-bottom: 33px; color: var(--ink); }
.contact .section-kicker.light { color: var(--green); }
.contact-layout > div:first-child > p:last-child { max-width: 560px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.8; word-break: keep-all; }
.contact-card { padding: 38px; background: var(--surface); border: 1px solid var(--line); border-top: 4px solid var(--green); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.contact-row { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 17px 0; color: var(--ink); border-bottom: 1px solid #e2e6e3; align-items: baseline; }
.contact-row > span { color: #6d7c88; font-size: 13px; font-weight: 720; }
.contact-row a, .contact-row strong { font-size: 18px; font-weight: 750; line-height: 1.55; letter-spacing: -.02em; }
.contact-row a { transition: color .2s ease; }
.contact-row a:hover { color: var(--green); }
.address-row { align-items: start; }
.address-row a { font-size: 15px; font-weight: 650; }
.contact-button { width: 100%; margin-top: 25px; justify-content: center; cursor: pointer; }

.inquiry-dialog {
  width: min(92vw, 520px);
  max-width: none;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  overflow: visible;
}
.inquiry-dialog::backdrop { background: rgba(3, 13, 22, .72); backdrop-filter: blur(6px); }
.inquiry-dialog-panel {
  position: relative;
  padding: clamp(30px, 6vw, 48px);
  background: #fff;
  border-top: 5px solid var(--green);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(3, 13, 22, .32);
}
.inquiry-dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  color: #667785;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}
.inquiry-dialog h2 { margin-bottom: 14px; font-size: clamp(30px, 6vw, 42px); letter-spacing: -.05em; }
.inquiry-dialog-panel > p:not(.section-kicker, .inquiry-copy-status) { margin-bottom: 24px; color: var(--muted); word-break: keep-all; }
.inquiry-phone {
  display: block;
  padding: 20px 0 22px;
  color: var(--navy);
  border-block: 1px solid var(--line);
  font: 800 clamp(30px, 8vw, 44px)/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: -.06em;
}
.inquiry-dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.inquiry-dialog-actions .button { justify-content: center; cursor: pointer; }
.inquiry-copy-button { color: var(--navy); background: #fff; border-color: #bcc8d0; }
.inquiry-copy-button:hover { color: #fff; background: var(--navy); border-color: var(--navy); }
.inquiry-copy-status { min-height: 24px; margin: 12px 0 0; color: var(--green); font-size: 13px; font-weight: 700; text-align: center; }

/* Footer */
.site-footer { padding: 58px 0 24px; color: #a7b5c0; background: #071522; }
.footer-main { display: grid; grid-template-columns: auto 1fr; gap: 50px; padding-bottom: 45px; align-items: start; }
.footer-brand .brand-logo { height: 76px; }
.footer-info { padding-top: 6px; }
.footer-info p { margin-bottom: 9px; font-size: 13px; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #758897; font: 10px/1.45 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .08em; }

/* Reveal motion */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero-video-control { display: none !important; }
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 40px, 960px); }
  .site-nav { gap: 0; margin-left: 28px; }
  .site-nav > a { font-size: 13px; }
  .site-nav .nav-cta { padding-inline: 14px; }
  .hero { min-height: max(720px, 100svh); }
  .hero-copy { width: min(700px, 75vw); }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .directory-card { min-height: 285px; }
  .about-layout { gap: 60px; }
  .value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-item { min-height: 290px; padding: 28px; }
  .service-item:hover { padding-inline: 28px; }
  .strengths-layout { gap: 65px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 75px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 36px); }
  html { scroll-padding-top: 68px; }
  .site-header, .site-header.is-scrolled {
    height: 68px;
    background: rgba(11,27,43,.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .brand-logo { height: 50px; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 22px; height: 1.5px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0 0 auto;
    width: 100%;
    height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 94px 24px calc(36px + env(safe-area-inset-bottom));
    background: var(--navy);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav > a { display: none; }
  .mega-menu { display: none; }
  .mobile-detail-menu { display: grid; width: min(100%, 720px); margin-inline: auto; grid-template-columns: 1fr; gap: 18px; }
  .mobile-menu-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .mobile-detail-menu section { padding: 18px 18px 22px; background: var(--navy-2); border-top: 3px solid var(--green); }
  .mobile-detail-menu a { display: block; padding: 8px 0; color: var(--muted-on-dark); font-size: 14px; line-height: 1.5; }
  .mobile-detail-menu .mobile-menu-title { margin-bottom: 10px; padding: 0 0 13px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
  .page-banner { padding-top: 68px; }
  .page-banner::after { inset-block-start: 68px; }
  .page-banner-main { min-height: 310px; gap: 32px; padding-block: 58px 50px; }
  .page-banner h1 { font-size: clamp(48px, 10vw, 68px); }
  .page-banner-main > p { max-width: 340px; font-size: 16px; }
  .hero {
    min-height: max(680px, 100svh);
    padding-top: 68px;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(4, 13, 22, .8) 0%, rgba(4, 13, 22, .55) 64%, rgba(4, 13, 22, .42) 100%),
      linear-gradient(180deg, rgba(4, 13, 22, .42) 0%, rgba(4, 13, 22, .16) 42%, rgba(4, 13, 22, .76) 100%);
  }
  .hero-media {
    background-image: url("assets/hero-new-york-36244259-smooth-mobile-poster.jpg");
    background-position: center;
  }
  .hero-video { object-position: center; }
  .hero-video-control { right: 18px; bottom: calc(22px + env(safe-area-inset-bottom)); }
  .hero-layout { min-height: calc(100svh - 68px); }
  .hero-copy { width: min(620px, 92vw); padding: 80px 0 64px; }
  .hero h1 { font-size: clamp(30px, 6.8vw, 48px); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); gap: 0; padding: 17px 0; }
  .hero-strip span { padding: 10px 15px; }
  .hero-strip span:nth-child(3) { padding-left: 0; border-left: 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-intro { grid-column: 1 / -1; min-height: 135px; }
  .proof-stat { min-height: 140px; border-bottom: 1px solid var(--line); }
  .section { padding: 95px 0; }
  .section-heading { margin-bottom: 48px; }
  .about-layout, .split-heading, .strengths-layout, .contact-layout { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 0; }
  .about-layout { gap: 25px; }
  .about-content { padding-top: 0; }
  .split-heading { gap: 28px; }
  .value-grid { grid-template-columns: 1fr; margin-top: 0; }
  .value-card-featured { grid-column: auto; }
  .value-card { min-height: 360px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: 40px 62px minmax(0, 1fr); min-height: 0; }
  .service-item > ul { grid-column: 3; }
  .strengths-layout { gap: 70px; }
  .strengths-heading { position: static; }
  .project-group { margin-top: 36px; }
  .project-group + .project-group { margin-top: 64px; }
  .project-group-heading { grid-template-columns: 1fr; gap: 20px; }
  .org-teams { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .org-teams article { padding: 28px 20px; }
  .directions-info > div { grid-template-columns: 120px minmax(0, 1fr); }
  .directions-info > div > a { grid-column: 2; justify-self: start; }
  .contact-layout { gap: 55px; }
  .footer-main { grid-template-columns: auto 1fr; }
  .footer-info { grid-column: auto; grid-row: auto; }
}

@media (max-width: 700px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-art { min-height: 0; aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  .page-banner-main { min-height: 300px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; padding-block: 56px 48px; }
  .page-eyebrow { margin-bottom: 14px; }
  .page-banner h1 { font-size: 46px; }
  .page-banner-main > p { margin: 0; font-size: 15px; }
  .mobile-detail-menu { grid-template-columns: 1fr; gap: 14px; }
  .site-nav { padding: 82px 16px calc(20px + env(safe-area-inset-bottom)); }
  .mobile-menu-groups { grid-template-columns: 1fr; gap: 10px; }
  .mobile-detail-menu section { padding: 14px 16px 16px; }
  .mobile-detail-menu a { padding: 5px 0; line-height: 1.4; }
  .mobile-detail-menu .mobile-menu-title { margin-bottom: 6px; padding-bottom: 9px; font-size: 18px; }
  .hero-copy { width: 100%; padding: 62px 0 48px; }
  .eyebrow { margin-bottom: 19px; font-size: 10px; }
  .hero h1 { margin-bottom: 24px; font-size: clamp(24px, 7.1vw, 38px); line-height: 1.1; letter-spacing: -.055em; }
  .hero-lead { margin-bottom: 0; font-size: 16px; line-height: 1.7; }
  .hero-strip { font-size: 10px; }
  .hero-strip span { padding-left: 10px; }
  .proof-intro, .proof-stat { padding: 24px 19px; }
  .proof-intro { min-height: 125px; }
  .proof-stat { min-height: 125px; }
  .proof-stat strong { font-size: 30px; }
  .proof-stat > span { font-size: 10px; line-height: 1.5; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-card { min-height: 245px; padding: 26px 24px; }
  .news-card { padding: 25px 22px; }
  .news-card-meta { flex-wrap: wrap; }
  .news-card-type { margin-top: 30px; }
  .news-card h3 { font-size: 24px; }
  .section { padding: 78px 0; }
  .section-heading h2, .strengths-heading h2, .contact h2 { font-size: 38px; line-height: 1.25; }
  .section-kicker { margin-bottom: 17px; }
  .intro-copy { margin-bottom: 35px; font-size: 17px; }
  .company-facts > div { grid-template-columns: 78px 1fr; }
  .company-facts strong { font-size: 15px; }
  .value-grid { grid-template-columns: 1fr; gap: 13px; margin-top: 0; }
  .value-card-featured { grid-column: auto; }
  .value-card { min-height: 335px; padding: 28px 24px 30px; }
  .card-index { min-height: auto; margin: 8px 0 44px; padding: 8px 12px; font-size: 11px; }
  .value-card h3 { font-size: 28px; }
  .service-item { grid-template-columns: 34px 1fr; gap: 16px; padding: 24px; align-items: start; }
  .service-item:hover { padding-inline: 24px; }
  .service-icon { grid-column: 2; grid-row: 1; width: 54px; height: 54px; }
  .service-copy { grid-column: 2; }
  .service-copy h3 { font-size: 24px; }
  .service-item > ul { grid-column: 2; }
  .strengths-layout { gap: 58px; }
  .strength-list article { grid-template-columns: 40px 1fr; gap: 15px; padding: 24px 20px; }
  .strength-list h3 { font-size: 23px; }
  .project-filter { flex-wrap: wrap; justify-content: flex-start; gap: 5px; margin: -10px 0 25px; }
  .project-group-heading { gap: 16px; margin-bottom: 20px; padding-top: 22px; }
  .project-group-heading h3 { font-size: 27px; }
  .project-group-summary { grid-template-columns: 1fr; gap: 7px; }
  .project-group-summary > span { padding-top: 0; }
  .project-grid { grid-template-columns: 1fr; }
  .project-art { min-height: 0; aspect-ratio: 4 / 3; }
  .project-scope { top: 12px; left: 12px; max-width: calc(100% - 24px); padding: 7px 9px 6px; font-size: 9px; letter-spacing: .055em; }
  .project-card h3 { font-size: 22px; }
  .org-ceo { margin-bottom: 56px; }
  .org-lines { display: none; }
  .org-teams { grid-template-columns: 1fr; }
  .org-teams article { min-height: auto; }
  .contact { padding: 80px 0; }
  .contact-layout { gap: 45px; }
  .contact-card { padding: 25px 20px; }
  .contact-row { grid-template-columns: 76px 1fr; }
  .contact-row a, .contact-row strong { font-size: 16px; }
  .inquiry-dialog-actions { grid-template-columns: 1fr; }
  .address-row a { font-size: 14px; }
  .directions-map { min-height: 320px; aspect-ratio: auto; }
  .directions-info > div { grid-template-columns: 1fr; gap: 8px; padding: 19px 16px; }
  .directions-info > div > a { grid-column: 1; margin-top: 2px; white-space: normal; }
  .directions-info strong { font-size: 15px; }
  .directions-info strong i { margin-inline: 8px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-info { grid-column: auto; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
