:root {
  color-scheme: light;
  --navy: #10203d;
  --navy-deep: #09162d;
  --accent-blue: #164eb8;
  --accent-light: #8db9f3;
  --ink: #172238;
  --muted: #5d6879;
  --line: #d9dfe8;
  --soft: #f4f6f9;
  --cool-white: #f7f9fc;
  --soft-blue: #edf3fc;
  --white: #ffffff;
  --max-width: 1180px;
  --side: clamp(1.25rem, 4vw, 3.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", "Noto Sans Thai", Tahoma, Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}

html[lang="th"] body {
  line-height: 1.68;
}

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

a {
  color: var(--accent-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.23em;
}

a:hover {
  color: var(--accent-blue);
}

a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: inherit;
  line-height: 1.18;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0.85rem;
  font-size: clamp(3rem, 5.2vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.container {
  width: min(100% - (var(--side) * 2), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-180%);
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(141, 185, 243, 0.22);
  background: var(--navy-deep);
}

.site-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy-deep);
}

.header-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  min-height: 72px;
}

.wordmark {
  display: inline-flex;
  gap: 1.15rem;
  align-items: center;
  flex: 0 0 auto;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.monogram {
  font-size: 1.85rem;
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.primary-nav,
.language-switch,
.site-footer nav {
  display: flex;
  align-items: center;
}

.primary-nav {
  gap: clamp(1.25rem, 2.5vw, 2.4rem);
  margin-left: auto;
}

.language-switch {
  gap: 0.4rem;
  margin-left: 0.5rem;
  color: #93a2b7;
}

.wordmark + .language-switch {
  margin-left: auto;
}

.primary-nav a,
.language-switch a,
.site-footer a {
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-nav a,
.language-switch a {
  color: #dce4ef;
}

.wordmark:hover,
.primary-nav a:hover,
.primary-nav a:active,
.language-switch a:hover {
  color: var(--accent-light);
}

.primary-nav a:active {
  text-decoration: underline;
  text-decoration-color: var(--accent-light);
  text-decoration-thickness: 2px;
}

.primary-nav a[aria-current="page"],
.language-switch a[aria-current="page"] {
  color: var(--accent-light);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--accent-light);
}

.site-header a:focus-visible {
  color: var(--accent-light);
  outline-color: var(--accent-light);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #f2f4f8;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  background-color: #dbe6f3;
  background-image: url("/assets/images/mountain-panorama.jpg");
  background-repeat: repeat-x;
  background-position: 0 bottom;
  background-size: 1500px 500px;
  background-blend-mode: multiply;
  filter: grayscale(0.55) saturate(0.6) contrast(0.9);
  opacity: 0.52;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0.38) 38%, rgba(0, 0, 0, 0.64) 60%, rgba(0, 0, 0, 0.9) 84%, #000 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 15%, rgba(0, 0, 0, 0.38) 38%, rgba(0, 0, 0, 0.64) 60%, rgba(0, 0, 0, 0.9) 84%, #000 100%);
  animation: mountain-drift 100s linear infinite;
}

.hero::after {
  background:
    radial-gradient(ellipse 72% 88% at 18% 34%, rgba(242, 244, 248, 0.88) 0%, rgba(242, 244, 248, 0.74) 34%, rgba(242, 244, 248, 0.32) 62%, transparent 100%),
    linear-gradient(to bottom, rgba(242, 244, 248, 0.12), transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(23rem, 0.92fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: stretch;
  height: 560px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 2.75rem;
}

.eyebrow,
.initiative-label {
  color: var(--accent-blue);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 1.1rem;
  color: var(--accent-blue);
}

.hero h1,
.hero-statement {
  color: #071936;
}

.hero-statement {
  max-width: 23ch;
  margin-bottom: 1.15rem;
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 650;
  line-height: 1.26;
  letter-spacing: -0.025em;
}

.hero-support {
  max-width: 59ch;
  margin-bottom: 1.35rem;
  color: #1b2b47;
  font-size: 0.96rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0;
  margin-bottom: 0;
  color: #14233f;
  font-size: 0.78rem;
  font-weight: 550;
}

.hero-meta span {
  padding-inline: 0.85rem;
  border-left: 1px solid var(--line);
}

.hero-meta span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.hero-actions .button {
  flex: 0 0 170px;
  width: 170px;
  height: 44px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--accent-blue);
  color: var(--white);
  background: var(--accent-blue);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.button:hover {
  border-color: var(--accent-blue);
  color: var(--white);
  background: var(--accent-blue);
  filter: brightness(0.88);
}

.button-secondary {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: var(--white);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--accent-blue);
}

.portrait {
  position: relative;
  z-index: 1;
  align-self: stretch;
  overflow: hidden;
  margin-bottom: 0;
  min-width: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.portrait img {
  width: 108%;
  height: 100%;
  max-width: none;
  margin-left: -4%;
  object-fit: cover;
  object-position: 50% 38%;
}

.section {
  padding-block: 3.6rem;
}

.section-heading {
  margin-bottom: 2.2rem;
  text-align: center;
}

.section-heading::after {
  display: block;
  width: 42px;
  height: 2px;
  margin: 0.8rem auto 0;
  background: var(--accent-blue);
  content: "";
}

.section-heading h2 {
  color: var(--accent-blue);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.expertise-list article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 0 2rem 2.4rem;
  text-align: center;
}

.expertise-list article + article {
  border-left: 1px solid var(--line);
}

.expertise-icon {
  width: 35px;
  height: 35px;
  margin: 0 auto 1.1rem;
  fill: none;
  stroke: var(--accent-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.expertise-list h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6em;
  max-width: 340px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.02rem;
}

.expertise-list p {
  max-width: 340px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.88rem;
}

.expertise {
  background: var(--white);
}

.career {
  padding-top: 2.2rem;
  background: var(--cool-white);
}

.career .section-heading {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--accent-blue);
  opacity: 0.3;
  content: "";
}

.timeline li {
  position: relative;
  padding: 2.1rem clamp(0.75rem, 1.8vw, 1.5rem) 0;
  text-align: center;
}

.timeline li::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid var(--cool-white);
  border-radius: 50%;
  background: var(--accent-blue);
  outline: 1px solid var(--accent-blue);
  z-index: 1;
  transform: translateX(-50%);
  content: "";
}

.timeline li > div {
  max-width: 360px;
  margin-inline: auto;
}

.timeline-date {
  max-width: 360px;
  margin-right: auto;
  margin-bottom: 0.75rem;
  margin-left: auto;
  color: var(--accent-blue);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.timeline h3 {
  min-height: 3.9em;
  margin-bottom: 0.65rem;
  font-size: 0.98rem;
  line-height: 1.3;
}

.timeline p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.impact {
  margin-top: 3.3rem;
  padding-block: 3.2rem;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.metrics div {
  padding: 0.5rem 1.5rem 0.75rem;
  text-align: center;
}

.metrics div + div {
  border-left: 1px solid var(--line);
}

.metrics dt {
  color: var(--navy);
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
}

.metrics dd {
  max-width: 18ch;
  margin: 0.7rem auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.metric-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.85rem;
  fill: none;
  stroke: var(--accent-blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.initiative {
  padding-block: 1rem;
  background: var(--white);
}

.initiative-inner {
  display: grid;
  grid-template-columns: auto minmax(10rem, 0.8fr) minmax(17rem, 1.5fr) auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 78px;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.initiative-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.initiative-label {
  margin-bottom: 0.05rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.initiative h2 {
  font-size: 1.18rem;
  letter-spacing: -0.015em;
}

.initiative-inner > p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.86rem;
}

.initiative-inner > a {
  color: var(--accent-blue);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.initiative-inner > a:hover {
  text-decoration: underline;
}

.contact {
  padding-block: 3.2rem;
  border-top: 0;
  background: var(--navy-deep);
}

.contact-inner {
  display: block;
}

.contact .section-heading h2 {
  color: var(--white);
}

.contact .section-heading::after {
  background: #8db9f3;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(141, 185, 243, 0.24);
  border-bottom: 1px solid rgba(141, 185, 243, 0.24);
}

.contact-link {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0.05rem 0.65rem;
  align-items: center;
  height: 108px;
  padding: 1.25rem 1.5rem;
  border: 0;
  color: var(--white);
  background: transparent;
  text-decoration: none;
}

.contact-link + .contact-link {
  border-left: 1px solid rgba(141, 185, 243, 0.24);
}

.contact-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.contact-link:focus-visible {
  outline-color: #8db9f3;
}

.contact-link strong {
  grid-column: 2;
  align-self: end;
  color: var(--white);
  font-size: 0.86rem;
}

.contact-link span {
  grid-column: 2;
  align-self: start;
  color: #b9c6d8;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.contact-icon {
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
}

.contact-linkedin .contact-icon {
  fill: var(--white);
}

.contact-email .contact-icon {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-line .contact-icon {
  fill: var(--white);
}

.contact-line .contact-icon-cutout {
  fill: var(--navy-deep);
  stroke: none;
}

.contact-whatsapp .contact-icon {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.site-footer {
  padding-block: 1.35rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.home-page .site-footer {
  border-top-color: rgba(255, 255, 255, 0.16);
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.home-page .site-footer p {
  color: #c7d1e0;
}

.home-page .site-footer a {
  color: #dce8f8;
}

.home-page .site-footer a:hover {
  color: var(--white);
}

.home-page .site-footer a:focus-visible {
  outline-color: #8db9f3;
}

.site-footer nav {
  gap: 1.5rem;
}

@keyframes mountain-drift {
  from {
    background-position: 0 bottom;
  }

  to {
    background-position: -1500px bottom;
  }
}

.legal-page,
.error-page {
  min-height: calc(100vh - 10rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(9rem, 0.26fr) minmax(0, 0.74fr);
  gap: 2rem;
}

.legal-content {
  max-width: 46rem;
}

.legal-content h1,
.error-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.45rem;
}

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

.legal-address {
  color: var(--muted);
  font-style: normal;
}

.legal-note {
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent-blue);
  background: var(--soft);
}

.error-page {
  display: grid;
  align-items: center;
}

.error-content {
  max-width: 48rem;
}

.error-code {
  margin-bottom: 1rem;
  color: var(--accent-blue);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 750;
  line-height: 0.8;
}

.error-content .button {
  margin-top: 1.5rem;
}

@media (min-width: 901px) {
  .hero h1 {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .header-inner {
    gap: 1rem;
  }

  .wordmark {
    gap: 0.8rem;
  }

  .wordmark-name {
    font-size: 0.8rem;
  }

  .primary-nav {
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: 2rem;
    height: 540px;
  }

  .hero-meta span {
    padding-inline: 0.55rem;
  }

  .initiative-inner {
    grid-template-columns: auto minmax(9rem, 0.8fr) minmax(15rem, 1.3fr);
  }

  .initiative-inner > a {
    grid-column: 3;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 8rem;
  }

  .header-inner {
    flex-wrap: wrap;
    padding-top: 0.8rem;
  }

  .language-switch {
    margin-left: auto;
  }

  .primary-nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    padding-bottom: 0.8rem;
    overflow-x: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    height: 520px;
  }

  .hero-support {
    font-size: 0.9rem;
  }

  .hero-meta {
    display: grid;
    gap: 0.2rem;
  }

  .hero-meta span,
  .hero-meta span:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .expertise-list article {
    padding-inline: 1.3rem;
  }

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

  .contact-link:nth-child(3) {
    border-left: 0;
  }

  .contact-link:nth-child(n + 3) {
    border-top: 1px solid rgba(141, 185, 243, 0.24);
  }
}

@media (max-width: 700px) {
  .hero::before {
    background-size: 900px 300px;
    background-position: center 43%;
    opacity: 0.46;
    animation: none;
  }

  .hero::after {
    background:
      radial-gradient(ellipse 110% 62% at 20% 23%, rgba(242, 244, 248, 0.84), rgba(242, 244, 248, 0.44) 58%, transparent 100%),
      linear-gradient(to bottom, rgba(242, 244, 248, 0.1), transparent 58%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    height: auto;
  }

  .hero-copy {
    padding-block: 3.25rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 3.7rem);
  }

  .hero-statement {
    max-width: 25ch;
  }

  .hero-meta {
    display: flex;
    gap: 0.35rem 0;
  }

  .hero-meta span {
    padding-inline: 0.65rem;
    border-left: 1px solid var(--line);
  }

  .hero-meta span:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .portrait {
    width: calc(100% + (var(--side) * 2));
    height: min(118vw, 640px);
    margin-left: calc(var(--side) * -1);
  }

  .portrait img {
    width: 106%;
    margin-left: -3%;
    object-position: 50% 32%;
  }

  .section {
    padding-block: 3.1rem;
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .expertise-list article,
  .expertise-list article:first-child,
  .expertise-list article:last-child {
    display: block;
    padding: 1.35rem 0 1.65rem;
    text-align: left;
  }

  .expertise-list article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .expertise-icon {
    margin: 0 0 0.8rem;
  }

  .expertise-list h3,
  .expertise-list p {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .expertise-list h3 {
    display: block;
    min-height: 0;
  }

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

  .timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .timeline li,
  .timeline li:first-child,
  .timeline li:last-child {
    padding: 0 0 2rem 2.1rem;
    text-align: left;
  }

  .timeline li::before,
  .timeline li:first-child::before {
    top: 1px;
    left: 0;
    transform: none;
  }

  .timeline li > div,
  .timeline-date {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .timeline h3 {
    min-height: 0;
  }

  .impact {
    margin-top: 1.4rem;
  }

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

  .metrics div {
    padding: 1.2rem 0.75rem;
  }

  .metrics div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metrics div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .initiative-inner {
    grid-template-columns: auto 1fr;
  }

  .initiative-inner > p,
  .initiative-inner > a {
    grid-column: 1 / -1;
  }

  .contact-link {
    padding: 1rem;
  }
}

@media (max-width: 500px) {
  .wordmark {
    gap: 0.65rem;
  }

  .monogram {
    font-size: 1.55rem;
  }

  .wordmark-name {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .primary-nav {
    gap: 1.2rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-actions .button {
    flex-basis: auto;
    width: 100%;
  }

  .hero-meta {
    display: grid;
    gap: 0.25rem;
  }

  .hero-meta span,
  .hero-meta span:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .metrics dt {
    font-size: 2.55rem;
  }

  .initiative-inner {
    padding: 0.85rem 0;
  }

  .initiative-logo {
    width: 44px;
    height: 44px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-link {
    height: auto;
    min-height: 96px;
  }

  .contact-link + .contact-link,
  .contact-link:nth-child(3) {
    border-top: 1px solid rgba(141, 185, 243, 0.24);
    border-left: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .hero::before {
    animation: none;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .site-footer {
    display: none;
  }

  body {
    font-size: 11pt;
  }

  .hero-grid {
    height: auto;
  }

  .section {
    padding-block: 2rem;
  }
}
