:root {
  --ink: #152035;
  --muted: #637084;
  --line: #d8dee8;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --navy: #10213c;
  --teal: #0f766e;
  --brass: #b68a42;
  --soft: #eef3f1;
  --shadow: 0 24px 70px rgba(12, 24, 42, 0.14);
  font-family:
    "Inter", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.utility-nav,
.header-main {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
}

.utility-nav {
  justify-content: flex-end;
  gap: 20px;
  min-height: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 22, 39, 0.28);
  font-size: 12px;
  font-weight: 750;
}

.language-link,
.nav-language {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
}

.language-link {
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.header-main {
  justify-content: space-between;
  min-height: 88px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.94);
  box-shadow: 0 10px 30px rgba(17, 31, 52, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .utility-nav,
.site-header.is-open .utility-nav {
  border-bottom-color: rgba(21, 32, 53, 0.1);
  background: transparent;
}

.site-header.is-scrolled .language-link,
.site-header.is-open .language-link,
.site-header.is-scrolled .nav-language,
.site-header.is-open .nav-language {
  color: var(--navy);
  border-color: rgba(21, 32, 53, 0.2);
  background: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 360px;
}

.brand-logo {
  display: grid;
  flex: 0 0 auto;
  width: 58px;
  height: 74px;
  place-items: center;
  overflow: hidden;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 19, 36, 0.12);
  transition: border-color 180ms ease;
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  border-color: rgba(21, 32, 53, 0.18);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.74;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav .nav-language {
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.site-nav .nav-language::after {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(10, 21, 39, 0.86) 0%, rgba(10, 21, 39, 0.55) 43%, rgba(10, 21, 39, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 21, 39, 0.62) 0%, rgba(10, 21, 39, 0) 36%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 36px));
  min-height: 92vh;
  padding: 112px 0 86px;
  margin-left: clamp(18px, 7vw, 92px);
}

.hero-strategy-card {
  display: inline-grid;
  grid-template-columns: auto 118px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(520px, 100%);
  padding: 12px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(10, 21, 39, 0.58);
  box-shadow: 0 22px 58px rgba(5, 16, 31, 0.22);
  backdrop-filter: blur(10px);
}

.strategy-logo {
  display: grid;
  width: 48px;
  height: 64px;
  place-items: center;
  padding: 4px 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.strategy-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strategy-visual {
  position: relative;
  height: 66px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(182, 138, 66, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.chessboard {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.22) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.22) 75%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.22) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.22) 75%);
  background-position:
    0 0,
    8px 8px;
  background-size: 16px 16px;
}

.strategy-visual::before {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(182, 138, 66, 0.5);
  border-radius: 50%;
  content: "";
}

.strategy-visual::after {
  position: absolute;
  top: 32px;
  right: 4px;
  width: 68px;
  height: 1px;
  background: rgba(255, 255, 255, 0.46);
  content: "";
}

.global-arc {
  position: absolute;
  right: 8px;
  width: 56px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.arc-one {
  top: -8px;
}

.arc-two {
  top: -8px;
  right: 24px;
  width: 28px;
}

.strategy-label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.strategy-label small {
  color: var(--brass);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.strategy-label strong {
  color: #fff;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.25;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(48px, 8vw, 92px);
}

.brandline {
  width: max-content;
  max-width: 100%;
  margin: 20px 0 0;
  padding: 9px 14px;
  border-left: 3px solid var(--brass);
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.3;
}

.brandline span {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 750;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--teal);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #0b5e58;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1140px, calc(100% - 36px));
  margin: -42px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.trust-bar div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  margin-bottom: 5px;
  font-size: 17px;
}

.trust-bar span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 610px;
}

.section-heading.wide {
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section h2 {
  font-size: clamp(34px, 5vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-values span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.service-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.service-card p,
.step p,
.profile p,
.feature-article p,
.article-list p,
.video-card p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.resources {
  padding-top: 24px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.resource-grid a {
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.resource-grid a:hover,
.resource-grid a:focus-visible {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 18px 42px rgba(12, 24, 42, 0.1);
  transform: translateY(-2px);
}

.resource-grid span,
.resource-grid strong,
.resource-grid small {
  display: block;
}

.resource-grid span {
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.resource-grid strong {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.24;
}

.resource-grid small {
  color: var(--muted);
  font-size: 14px;
}

.content-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) 1.26fr;
  gap: 18px;
  align-items: end;
  margin-top: 34px;
}

.search-field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 850;
}

.search-field input {
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tabs button {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.filter-tabs button.is-active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.article-card,
.video-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.article-card {
  display: grid;
  grid-template-rows: 170px 1fr;
  min-height: 100%;
}

.article-card.feature {
  grid-column: span 2;
  grid-template-columns: 0.78fr 1fr;
  grid-template-rows: auto;
}

.article-cover {
  display: flex;
  align-items: flex-end;
  min-height: 170px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 33, 60, 0.96), rgba(15, 118, 110, 0.8)),
    var(--navy);
}

.article-cover.estate {
  background:
    linear-gradient(135deg, rgba(16, 33, 60, 0.96), rgba(182, 138, 66, 0.72)),
    var(--navy);
}

.article-cover.leases {
  background:
    linear-gradient(135deg, rgba(21, 32, 53, 0.95), rgba(99, 112, 132, 0.76)),
    var(--ink);
}

.article-cover.updates {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9), rgba(16, 33, 60, 0.86)),
    var(--teal);
}

.article-cover span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.article-body {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.meta-row,
.author-row,
.share-row,
.video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.meta-row {
  margin-bottom: 13px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.article-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.24;
}

.article-card p {
  margin: 0;
  color: var(--muted);
}

.author-row {
  margin-top: auto;
  padding-top: 20px;
  font-size: 13px;
  font-weight: 850;
}

.author-row a:first-child {
  color: var(--navy);
}

.author-row a:last-child,
.video-links a {
  color: var(--teal);
}

.share-row {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
}

.share-row button {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.content-type {
  display: inline-flex;
  width: max-content;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.24;
}

.text-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  color: inherit;
  font-weight: 850;
  border-bottom: 2px solid var(--brass);
}

.archive-link-row {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.article-archive {
  padding-top: 122px;
}

.article-page-header {
  padding-bottom: 42px;
}

.article-page-header h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1.04;
}

.article-page-header > p {
  max-width: 850px;
  color: var(--muted);
  font-size: 19px;
}

.article-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta-strip span,
.article-meta-strip a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 750;
}

.post-list {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.article-post {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: #fff;
}

.article-post h2 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
}

.article-post p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
  font-size: 17px;
}

.source-note {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--soft);
}

.source-note h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.source-note p {
  max-width: 920px;
  color: var(--muted);
}

.videos {
  padding-top: 16px;
}

.video-tabs {
  margin-top: 30px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.video-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.video-thumb {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(135deg, rgba(16, 33, 60, 0.1), rgba(15, 118, 110, 0.22)),
    var(--soft);
  cursor: pointer;
}

.video-thumb.muted {
  background:
    linear-gradient(135deg, rgba(182, 138, 66, 0.18), rgba(16, 33, 60, 0.16)),
    #f4f1eb;
}

.video-thumb.gold {
  background:
    linear-gradient(135deg, rgba(16, 33, 60, 0.18), rgba(182, 138, 66, 0.24)),
    #f8f6f1;
}

.video-thumb.pending {
  border: 1px solid var(--line);
  cursor: default;
}

.video-placeholder-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(16, 33, 60, 0.2);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.play-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(12, 24, 42, 0.2);
}

.play-icon::after {
  position: absolute;
  top: 18px;
  left: 23px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff;
  content: "";
}

.video-links {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 850;
}

.disclaimer {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  padding: 42px;
  border: 1px solid var(--line);
  background: #fff;
}

.disclaimer h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.disclaimer p:last-child {
  margin: 0;
  color: var(--muted);
}

.video-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(12, 22, 39, 0.78);
}

.video-modal.is-open {
  display: flex;
}

.video-modal-panel {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(12, 22, 39, 0.82);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--navy);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-transcript {
  padding: 26px;
}

.video-transcript h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.video-transcript p {
  margin: 0;
  color: var(--muted);
}

.modal-video-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 850;
  border-bottom: 2px solid var(--brass);
}

.approach {
  width: 100%;
  padding: 0;
  background: var(--navy);
}

.approach-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(34px, 7vw, 96px);
  width: min(1140px, calc(100% - 36px));
  padding: 88px 0;
  margin: 0 auto;
  color: #fff;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--brass);
  font-weight: 800;
}

.step h3 {
  margin: 0 0 4px;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.profile {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  max-width: 860px;
  padding: 34px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.profile-mark {
  display: grid;
  width: 160px;
  height: 160px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-family: Georgia, serif;
  font-size: 72px;
}

.profile h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.profile dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 0;
}

.profile dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile dd {
  margin: 2px 0 0;
  font-weight: 750;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.team-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.member-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.team-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.18;
}

.team-card p {
  color: var(--muted);
}

.team-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
  padding-top: 36px;
}

.contact-copy address {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  font-style: normal;
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.22);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.76);
  background: #0c1627;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
  text-align: right;
}

@media (max-width: 920px) {
  .header-main {
    min-height: 86px;
  }

  .brand {
    max-width: calc(100% - 54px);
    min-width: 0;
  }

  .brand strong {
    font-size: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 118px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    width: min(650px, calc(100% - 36px));
    margin: 0 auto;
  }

  .trust-bar,
  .intro,
  .approach-panel,
  .content-toolbar,
  .video-grid,
  .disclaimer,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .article-grid,
  .resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-card.feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .article-archive {
    padding-top: 128px;
  }
}

@media (max-width: 640px) {
  .utility-nav {
    justify-content: center;
    gap: 12px;
    min-height: 32px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 11px;
  }

  .utility-nav a:nth-child(2) {
    display: none;
  }

  .header-main {
    min-height: 78px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 44px;
    height: 58px;
    padding: 4px 5px;
  }

  .brand-logo img {
    width: 100%;
    height: 100%;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    top: 110px;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .hero-strategy-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 11px 12px;
    margin-bottom: 18px;
  }

  .strategy-logo {
    width: 40px;
    height: 54px;
  }

  .strategy-visual {
    display: none;
  }

  .strategy-label small {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .archive-link-row {
    justify-content: stretch;
  }

  .trust-bar {
    margin-top: 0;
  }

  .trust-bar,
  .service-grid,
  .resource-grid,
  .article-grid,
  .article-card.feature,
  .video-card,
  .team-grid,
  .profile,
  .profile dl {
    grid-template-columns: 1fr;
  }

  .team-card {
    min-height: auto;
  }

  .article-card.feature {
    grid-column: span 1;
  }

  .article-cover {
    min-height: 160px;
  }

  .video-card {
    gap: 18px;
  }

  .video-thumb {
    min-height: 190px;
  }

  .content-toolbar {
    gap: 14px;
  }

  .filter-tabs button {
    flex: 1 1 auto;
  }

  .article-archive {
    padding-top: 100px;
  }

  .disclaimer {
    padding: 26px;
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .service-card {
    min-height: auto;
  }

  .profile {
    padding: 24px;
  }

  .profile-mark {
    width: 112px;
    height: 112px;
    font-size: 52px;
  }

  .contact-form {
    padding: 24px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer p {
    text-align: left;
  }
}
