:root {
  --home-ink: #111820;
  --home-ink-soft: #25313a;
  --home-blue: #124a72;
  --home-blue-deep: #0c2f4a;
  --home-gold: #bd9655;
  --home-paper: #f3f5f4;
  --home-white: #ffffff;
  --home-line: #d8dfe0;
  --home-muted: #68747d;
  --home-serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --home-lishu: "STLiti", "华文隶书", "LiSu", "隶书", var(--home-serif);
  --home-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--home-ink);
  background: var(--home-paper);
  font-family: var(--home-sans);
  line-height: 1.7;
}

body.home-menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.home-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 4vw;
  color: var(--home-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.home-header.is-solid,
.home-header.scrolled {
  color: var(--home-ink);
  border-color: rgba(17, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(17, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.home-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.home-brand-copy {
  display: grid;
  min-width: 0;
}

.home-brand-copy strong {
  font-family: var(--home-lishu);
  font-size: 21px;
  line-height: 1.25;
}

.home-brand-copy small {
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.2;
  opacity: 0.72;
}

.home-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.home-nav a {
  position: relative;
  white-space: nowrap;
}

.home-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--home-gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

.home-language {
  padding-left: 22px;
  border-left: 1px solid currentColor;
}

.home-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
}

.home-menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.home-hero {
  position: relative;
  height: min(790px, calc(100svh - 44px));
  min-height: 650px;
  overflow: hidden;
  color: var(--home-white);
}

.home-hero-image,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  background-image: url("/assets/site/hero-shenyang-law-v2.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.01);
}

.home-hero-shade {
  background: rgba(5, 15, 25, 0.7);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 8vw));
  margin: 0 auto;
  padding-top: 178px;
}

.home-kicker {
  margin: 0 0 18px;
  color: var(--home-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-kicker-dark {
  color: var(--home-blue);
}

.home-hero h1 {
  max-width: 920px;
  margin: 0 0 24px;
  font-family: var(--home-lishu);
  font-size: 68px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero-lead {
  max-width: 800px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.85;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.home-button-primary {
  color: var(--home-ink);
  background: var(--home-gold);
}

.home-button-primary:hover,
.home-button-primary:focus-visible {
  background: #d1ae72;
}

.home-button-ghost {
  color: var(--home-white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.04);
}

.home-button-ghost:hover,
.home-button-ghost:focus-visible {
  color: var(--home-ink);
  background: var(--home-white);
}

.home-hero-facts {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.home-hero-facts div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 12px;
  min-height: 112px;
  padding: 25px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.home-hero-facts div:last-child {
  border-right: 0;
}

.home-hero-facts span {
  grid-row: 1 / 3;
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 18px;
}

.home-hero-facts strong {
  font-size: 16px;
}

.home-hero-facts small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.home-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 0 4vw;
  color: var(--home-white);
  background: var(--home-blue-deep);
}

.home-ticker > strong {
  color: var(--home-gold);
  font-size: 14px;
}

.home-ticker-window {
  min-width: 0;
  overflow: hidden;
}

.home-ticker-track {
  display: flex;
  gap: 52px;
  width: max-content;
  white-space: nowrap;
  animation: home-ticker 26s linear infinite;
}

.home-ticker-track a {
  font-size: 14px;
  opacity: 0.86;
}

@keyframes home-ticker {
  to {
    transform: translateX(-50%);
  }
}

.home-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--home-blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.home-ticker .home-arrow-link {
  color: var(--home-white);
}

.home-arrow-link b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.home-arrow-link:hover b,
.home-arrow-link:focus-visible b {
  transform: translateX(4px);
}

.home-section {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 54px;
  width: min(1320px, calc(100% - 8vw));
  margin: 0 auto;
}

.home-section-index {
  padding-top: 5px;
  border-top: 1px solid var(--home-line);
}

.home-section-index span {
  display: block;
  margin-top: 15px;
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 30px;
}

.home-section-index p {
  margin: 8px 0 0;
  color: var(--home-muted);
  font-size: 10px;
  font-weight: 800;
}

.home-about {
  padding-top: 118px;
  padding-bottom: 126px;
}

.home-about-content h2,
.home-section-heading h2,
.home-contact-copy h2 {
  margin: 0;
  font-family: var(--home-serif);
  font-size: 46px;
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: 0;
}

.home-about-content h2 {
  max-width: 930px;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--home-line);
}

.home-about-grid p {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 16px;
}

.home-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-top: 3px solid var(--home-ink);
  border-bottom: 1px solid var(--home-line);
}

.home-principles div {
  display: grid;
  gap: 8px;
  padding: 27px 28px;
  border-right: 1px solid var(--home-line);
}

.home-principles div:first-child {
  padding-left: 0;
}

.home-principles div:last-child {
  padding-right: 0;
  border-right: 0;
}

.home-principles strong {
  font-size: 18px;
}

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

.home-practice-band {
  padding: 118px 0 126px;
  background: #e9eeee;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 50px;
  margin-bottom: 56px;
}

.home-section-heading > p {
  margin: 0 0 8px;
  color: var(--home-muted);
  font-size: 14px;
}

.home-practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 3px solid var(--home-ink);
}

.home-practice-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  grid-template-rows: auto 1fr;
  gap: 9px 14px;
  min-height: 158px;
  padding: 26px 24px;
  border-right: 1px solid #cbd4d5;
  border-bottom: 1px solid #cbd4d5;
  transition: color 160ms ease, background 160ms ease;
}

.home-practice-grid a:nth-child(3n) {
  border-right: 0;
}

.home-practice-grid a:hover,
.home-practice-grid a:focus-visible {
  color: var(--home-white);
  background: var(--home-blue);
  outline: 0;
}

.home-practice-grid span {
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 14px;
}

.home-practice-grid strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 17px;
  line-height: 1.45;
}

.home-practice-grid small {
  grid-column: 2;
  grid-row: 2;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.65;
}

.home-practice-grid a:hover small,
.home-practice-grid a:focus-visible small {
  color: rgba(255, 255, 255, 0.7);
}

.home-practice-grid b {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 18px;
  font-weight: 400;
}

.home-advantage {
  color: var(--home-white);
  background: var(--home-ink);
}

.home-advantage-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 9vw;
  width: min(1240px, calc(100% - 8vw));
  margin: 0 auto;
  padding: 122px 0;
}

.home-advantage-intro h2 {
  margin: 0 0 30px;
  font-family: var(--home-serif);
  font-size: 52px;
  font-weight: 650;
  line-height: 1.35;
}

.home-advantage-intro > p:last-child {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.home-advantage-list {
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.home-advantage-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.home-advantage-list article > span {
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 14px;
}

.home-advantage-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.home-advantage-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.home-insights {
  padding-top: 120px;
  padding-bottom: 128px;
}

.home-insights .home-section-heading {
  grid-template-columns: 1fr auto;
}

.home-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 46px;
}

.home-news-feature {
  display: grid;
  border-top: 3px solid var(--home-ink);
}

.home-news-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.78) contrast(1.04);
}

.home-news-feature > div {
  padding: 25px 0 0;
}

.home-news-feature span,
.home-news-list span,
.home-news-list time {
  color: var(--home-muted);
  font-size: 12px;
}

.home-news-feature h3 {
  margin: 10px 0 12px;
  font-family: var(--home-serif);
  font-size: 25px;
  line-height: 1.55;
}

.home-news-feature p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
}

.home-news-list {
  border-top: 3px solid var(--home-ink);
}

.home-news-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  min-height: 132px;
  padding: 21px 0;
  border-bottom: 1px solid var(--home-line);
}

.home-news-list strong {
  grid-column: 1;
  font-size: 16px;
  line-height: 1.65;
}

.home-news-list b {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  color: var(--home-blue);
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.home-news-list a:hover b,
.home-news-list a:focus-visible b {
  transform: translateX(4px);
}

.home-contact {
  padding: 112px 4vw;
  background: var(--home-white);
}

.home-contact-inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 9vw;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.home-contact-copy > p:not(.home-kicker) {
  margin: 24px 0 38px;
  color: var(--home-muted);
}

.home-contact-copy dl {
  margin: 0;
  border-top: 1px solid var(--home-line);
}

.home-contact-copy dl div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--home-line);
}

.home-contact-copy dt {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 700;
}

.home-contact-copy dd {
  margin: 0;
  color: var(--home-ink-soft);
  font-size: 14px;
}

.home-contact-form {
  display: grid;
  gap: 22px;
  align-self: end;
  padding-top: 18px;
  border-top: 3px solid var(--home-ink);
}

.home-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.home-contact-form label {
  display: grid;
  gap: 8px;
}

.home-contact-form label span {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 700;
}

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #adb7bb;
  border-radius: 0;
  padding: 10px 0;
  color: var(--home-ink);
  background: transparent;
  outline: 0;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
  border-color: var(--home-blue);
}

.home-contact-form textarea {
  height: 116px;
  resize: none;
}

.field-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.home-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-form-actions p {
  margin: 0;
  color: var(--home-muted);
  font-size: 12px;
}

.home-form-actions button {
  flex: 0 0 auto;
  min-width: 142px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--home-white);
  border: 0;
  border-radius: 4px;
  background: var(--home-blue);
  font-weight: 800;
  cursor: pointer;
}

.home-form-actions button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.home-careers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 64px max(4vw, calc((100vw - 1240px) / 2));
  color: var(--home-white);
  background: var(--home-blue-deep);
}

.home-careers > div {
  max-width: 790px;
}

.home-careers h2 {
  margin: 0 0 10px;
  font-family: var(--home-serif);
  font-size: 34px;
  font-weight: 650;
}

.home-careers p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.home-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 52px 4vw 34px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  background: var(--home-ink);
}

.home-footer > img {
  width: min(540px, 76vw);
  opacity: 0.72;
}

.home-footer > strong {
  color: var(--home-white);
  font-family: var(--home-lishu);
  font-size: 20px;
}

.home-footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 22px;
  font-size: 11px;
}

.home-footer-legal a {
  display: inline-flex;
  align-items: center;
}

.home-footer-police {
  gap: 5px;
}

.home-footer-police img {
  width: 18px;
  height: 20px;
  object-fit: contain;
}

.home-footer p {
  margin: 0;
}

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

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

@media (max-width: 1060px) {
  .home-header {
    height: 72px;
  }

  .home-brand img {
    width: 47px;
    height: 47px;
  }

  .home-brand-copy strong {
    font-size: 18px;
  }

  .home-menu-button {
    display: block;
  }

  .home-nav {
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    color: var(--home-ink);
    border: 1px solid var(--home-line);
    border-radius: 6px;
    background: var(--home-white);
    box-shadow: 0 24px 60px rgba(17, 24, 32, 0.18);
  }

  .home-nav.open {
    display: grid;
  }

  .home-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--home-line);
  }

  .home-nav a:last-child {
    border-bottom: 0;
  }

  .home-nav a::after {
    display: none;
  }

  .home-language {
    border-left: 0;
  }

  .home-hero-inner {
    padding-top: 144px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .home-section {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 34px;
  }

  .home-about-content h2,
  .home-section-heading h2,
  .home-contact-copy h2 {
    font-size: 38px;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-practice-grid a:nth-child(3n) {
    border-right: 1px solid #cbd4d5;
  }

  .home-practice-grid a:nth-child(2n) {
    border-right: 0;
  }

  .home-advantage-inner,
  .home-contact-inner {
    gap: 6vw;
  }

  .home-news-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .home-header {
    padding: 0 18px;
  }

  .home-brand-copy strong {
    font-size: 16px;
  }

  .home-brand-copy small {
    display: none;
  }

  .home-hero {
    height: 690px;
    min-height: 0;
  }

  .home-hero-image {
    background-position: 60% top;
  }

  .home-hero-inner {
    width: calc(100% - 36px);
    padding-top: 132px;
  }

  .home-hero h1 {
    font-size: 31px;
    line-height: 1.2;
  }

  .home-hero-lead {
    font-size: 16px;
    line-height: 1.75;
  }

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

  .home-button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 14px;
  }

  .home-hero-facts {
    right: 18px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .home-hero-facts div {
    grid-template-columns: 30px 1fr;
    min-height: 64px;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-hero-facts div:last-child {
    border-bottom: 0;
  }

  .home-hero-facts span {
    font-size: 14px;
  }

  .home-hero-facts strong {
    font-size: 14px;
  }

  .home-hero-facts small {
    font-size: 11px;
  }

  .home-ticker {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    padding: 0 18px;
  }

  .home-ticker > .home-arrow-link {
    display: none;
  }

  .home-section {
    display: block;
    width: calc(100% - 36px);
  }

  .home-section-index {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 36px;
  }

  .home-section-index span,
  .home-section-index p {
    margin-top: 10px;
  }

  .home-about,
  .home-insights {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .home-about-content h2,
  .home-section-heading h2,
  .home-contact-copy h2 {
    font-size: 31px;
  }

  .home-about-grid,
  .home-principles,
  .home-form-row {
    grid-template-columns: 1fr;
  }

  .home-about-grid {
    gap: 22px;
    margin-top: 34px;
  }

  .home-principles {
    margin-top: 42px;
  }

  .home-principles div,
  .home-principles div:first-child,
  .home-principles div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-practice-band {
    padding: 78px 0 84px;
  }

  .home-section-heading {
    margin-bottom: 34px;
  }

  .home-practice-grid {
    grid-template-columns: 1fr;
  }

  .home-practice-grid a,
  .home-practice-grid a:nth-child(2n),
  .home-practice-grid a:nth-child(3n) {
    min-height: 132px;
    padding: 21px 4px;
    border-right: 0;
  }

  .home-advantage-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    width: calc(100% - 36px);
    padding: 82px 0;
  }

  .home-advantage-intro h2 {
    font-size: 38px;
  }

  .home-news-feature h3 {
    font-size: 22px;
  }

  .home-contact {
    padding: 78px 18px 86px;
  }

  .home-contact-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .home-form-actions {
    display: grid;
  }

  .home-form-actions button {
    width: 100%;
  }
}

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

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

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

/* Alternate hero concept */
.home-header {
  height: 80px;
  padding-inline: max(32px, 4vw);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.home-header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-brand img {
  width: 50px;
  height: 50px;
}

.home-brand-copy strong {
  font-size: 20px;
}

.home-brand-copy small {
  font-size: 9px;
}

.home-nav {
  gap: 27px;
}

.home-language {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}

.home-language a.active {
  color: var(--home-gold);
}

.home-advantage-intro h2 span {
  display: block;
  white-space: nowrap;
}

.home-hero {
  height: min(690px, calc(100svh - 72px));
  min-height: 620px;
}

.home-hero-image {
  background-position: center top;
  transform: none;
}

.home-hero-shade {
  background: rgba(6, 17, 28, 0.62);
}

.home-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 8vw;
  width: min(1280px, calc(100% - 8vw));
  height: 100%;
  margin: 0 auto;
  padding-top: 184px;
}

.home-hero-inner {
  width: auto;
  margin: 0;
  padding: 0;
}

.home-hero h1 {
  max-width: none;
  margin-bottom: 26px;
  font-size: 54px;
  line-height: 1.18;
  white-space: nowrap;
}

.home-hero h1 span {
  display: inline;
}

.home-hero h1 span:first-child {
  margin-right: 18px;
}

.home-hero-lead {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.9;
}

.home-hero-practices {
  align-self: start;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.home-hero-practices > p {
  margin: 15px 0 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}

.home-hero-practices a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero-practices a > span {
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 12px;
}

.home-hero-practices a > strong {
  font-size: 14px;
  font-weight: 700;
}

.home-hero-practices a > b {
  font-size: 15px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.home-hero-practices a:hover b,
.home-hero-practices a:focus-visible b {
  transform: translateX(4px);
}

.home-hero-foot {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 0;
  left: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.home-hero-foot p,
.home-hero-foot a {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.home-hero-foot a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.home-hero-foot a b {
  color: var(--home-gold);
  font-size: 17px;
  font-weight: 400;
}

.home-ticker {
  min-height: 70px;
  color: var(--home-ink);
  border-bottom: 1px solid var(--home-line);
  background: var(--home-white);
}

.home-ticker-label {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.home-ticker-label span {
  color: var(--home-gold);
  font-family: var(--home-serif);
  font-size: 10px;
}

.home-ticker-label strong {
  font-size: 14px;
}

.home-ticker-track a {
  color: var(--home-ink-soft);
}

.home-ticker .home-arrow-link {
  color: var(--home-blue);
}

@media (max-width: 1060px) {
  .home-header {
    height: 72px;
    padding-inline: 20px;
  }

  .home-header-right {
    gap: 0;
  }

  .home-nav {
    top: 72px;
  }

  .home-nav.open {
    display: grid;
  }

  .home-hero {
    height: 680px;
  }

  .home-hero-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding-top: 152px;
  }

  .home-hero-practices {
    display: none;
  }

  .home-hero h1 {
    font-size: 46px;
    white-space: normal;
  }

  .home-hero h1 span {
    display: block;
    white-space: nowrap;
  }

  .home-hero h1 span:first-child {
    margin-right: 0;
  }

  .home-hero-foot {
    right: 20px;
    left: 20px;
  }
}

@media (max-width: 720px) {
  .home-brand img {
    width: 46px;
    height: 46px;
  }

  .home-brand-copy strong {
    font-size: 16px;
  }

  .home-hero {
    height: 680px;
  }

  .home-hero-image {
    background-position: 58% top;
  }

  .home-hero-layout {
    width: calc(100% - 36px);
    padding-top: 144px;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .home-hero-lead {
    max-width: 350px;
    font-size: 15px;
    line-height: 1.85;
  }

  .home-hero-foot {
    right: 18px;
    left: 18px;
    min-height: 58px;
  }

  .home-hero-foot a {
    font-size: 11px;
  }

  .home-ticker {
    grid-template-columns: auto minmax(0, 1fr);
    padding-inline: 18px;
  }

  .home-ticker-label span {
    display: none;
  }
}

@media (max-width: 1060px) {
  .home-language {
    display: flex;
    padding-left: 0;
    border-left: 0;
  }

  .home-language a {
    flex: 1;
    text-align: center;
  }

  .home-careers {
    align-items: flex-start;
    padding-inline: 20px;
  }
}

@media (max-width: 720px) {
  .home-careers {
    display: grid;
    gap: 24px;
    padding: 48px 18px;
  }

  .home-careers h2 {
    font-size: 29px;
  }

  .home-careers .home-button {
    width: 100%;
  }
}

.lang-en .home-hero h1 {
  font-family: var(--home-sans);
  font-size: 48px;
  font-weight: 700;
}

.lang-en .home-brand-copy strong {
  font-family: var(--home-sans);
  font-size: 17px;
}

@media (max-width: 720px) {
  .lang-en .home-hero h1 {
    font-size: 31px;
  }
}

@media (min-width: 1600px) {
  .home-hero-image {
    background-position: right center;
    background-size: cover;
  }
}
