:root {
  --bg: #f6f8fb;
  --bg-soft: #eef4f8;
  --text: #0f1722;
  --muted: #5f6a77;
  --line: rgba(15, 23, 34, 0.12);
  --line-strong: rgba(15, 23, 34, 0.22);
  --accent: #184f86;
  --accent-soft: #7fd6ea;
  --accent-glow: rgba(127, 214, 234, 0.18);
  --container: min(1120px, calc(100% - 3rem));
  --header-height: 70px;
  --header-offset: 70px;
  --motion: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Inter", sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(24, 79, 134, 0.08), transparent 34%),
    radial-gradient(circle at bottom left, rgba(127, 214, 234, 0.09), transparent 28%),
    linear-gradient(180deg, #fbfcfd 0%, #f3f6f9 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: radial-gradient(circle at 75% 16%, rgba(24, 79, 134, 0.08), transparent 24%);
}

body::after {
  opacity: 0.026;
  background-image: radial-gradient(rgba(0, 0, 0, 0.7) 0.55px, transparent 0.55px);
  background-size: 18px 18px;
}

.js body {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js body.is-ready {
  opacity: 1;
  transform: none;
}

.js body.is-transitioning {
  opacity: 0;
  transform: translateY(18px);
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.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;
}

p {
  margin: 0 0 1rem;
}

h1,
h2 {
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

::selection {
  color: #ffffff;
  background: var(--accent);
}

.inner {
  width: var(--container);
  margin-inline: auto;
}

.site-footer,
main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: block;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(252, 253, 254, 0.82) 0%, rgba(246, 248, 251, 0.76) 100%);
  border-bottom: 1px solid rgba(15, 23, 34, 0.08);
  box-shadow: 0 10px 26px rgba(15, 23, 34, 0.04);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  overflow: visible;
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3.2rem);
  min-height: 78px;
  padding: 10px 40px;
}

.page-header__actions {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.page-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 58px;
  text-decoration: none;
  transition: transform var(--motion), opacity var(--motion);
}

.page-header__brand img {
  width: auto;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.page-header__brand:hover,
.page-header__brand:focus-visible {
  transform: translateY(-1px);
  opacity: 0.88;
}

.page-header__brand:hover img,
.page-header__brand:focus-visible img {
  opacity: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.language-switcher {
  position: relative;
}

.language-switcher__toggle,
.language-switcher__option {
  font: inherit;
}

.language-switcher__toggle {
  min-width: 7.2rem;
  padding: 0.45rem 0 0.35rem;
  border: none;
  background: transparent;
  color: rgba(15, 23, 34, 0.68);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--motion), opacity var(--motion);
}

.language-switcher__toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 79, 134, 0.4), rgba(24, 79, 134, 0.12));
  opacity: 0.8;
}

.language-switcher__toggle:hover,
.language-switcher.is-open .language-switcher__toggle {
  color: var(--text);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 12.5rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.45rem 0;
  border: 1px solid rgba(15, 23, 34, 0.08);
  border-radius: 14px;
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 18px 36px rgba(15, 23, 34, 0.08);
}

.language-switcher__option {
  padding: 0.7rem 1rem;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: color var(--motion), background-color var(--motion);
}

.language-switcher__option:hover,
.language-switcher__option.is-active {
  color: var(--text);
  background: rgba(24, 79, 134, 0.05);
}

.site-nav__link {
  position: relative;
  padding: 0.25rem 0;
  color: rgba(15, 23, 34, 0.68);
  font-size: 0.93rem;
  font-weight: 550;
  text-decoration: none;
  transition: color var(--motion), opacity var(--motion);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(24, 79, 134, 0.3));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion);
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-main {
  min-height: calc(100svh - var(--header-offset, var(--header-height)));
  min-height: calc(100dvh - var(--header-offset, var(--header-height)));
}

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--header-offset, var(--header-height)));
  min-height: calc(100dvh - var(--header-offset, var(--header-height)));
  box-sizing: border-box;
  padding: 80px 20px 120px;
  background: #0f172a;
  isolation: isolate;
  overflow: hidden;
}

.home-hero__inner {
  width: min(95vw, 1400px);
  max-width: none;
  min-height: 100%;
  display: flex;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: center;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1px);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 12, 22, 0.42) 0%, rgba(7, 12, 22, 0.34) 100%),
    rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content,
.hero-mark {
  width: min(100%, 72rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  min-height: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
  transform: translateY(-60px);
}

.hero-mark__visual {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.hero-mark__image {
  display: block;
  width: auto;
  max-width: 95vw;
  max-height: 65vh;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

.hero-copy {
  width: min(100%, 42rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

.hero-tagline {
  max-width: 40rem;
  margin: 0;
  color: rgba(248, 250, 252, 0.82);
  font-size: clamp(1.08rem, 1.48vw, 1.34rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.45;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.22);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 40px;
  display: grid;
  justify-items: center;
  gap: 0;
  margin-top: 0;
  color: rgba(248, 250, 252, 0.72);
  opacity: 0.6;
  text-decoration: none;
  transform: translateX(-50%);
  transition: color var(--motion), opacity var(--motion), transform var(--motion);
}

.scroll-cue:hover {
  color: var(--accent);
  opacity: 0.86;
  transform: translateX(-50%) translateY(0.14rem);
}

.scroll-cue__label {
  display: none;
}

.scroll-cue__icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  color: inherit;
  animation: arrowDrift 1.5s ease-in-out infinite;
}

.scroll-cue__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.js .hero-mark {
  opacity: 1;
  transform: translateY(-60px);
}

.js .hero-mark__image {
  transform: scale(1.08);
  opacity: 0;
  filter: blur(8px) brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
  transition:
    transform 1200ms ease-out,
    opacity 1200ms ease-out,
    filter 1200ms ease-out;
}

.js body.is-ready .hero-mark__image {
  transform: scale(1);
  opacity: 1;
  filter: blur(0) brightness(0) invert(1) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

.js .hero-tagline {
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 900ms ease-out 400ms,
    opacity 900ms ease-out 400ms;
}

.js body.is-ready .hero-tagline {
  transform: translateY(0);
  opacity: 1;
}

.js .scroll-cue {
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition:
    transform 900ms ease-out 650ms,
    opacity 900ms ease-out 650ms,
    color var(--motion);
}

.js body.is-ready .scroll-cue {
  opacity: 0.6;
  transform: translateX(-50%) translateY(0);
}

.service-gateway {
  padding: 0.5rem 0 5rem;
}

.gateway-intro {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.gateway-intro__text {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-label,
.ruled-item__meta,
.service-entry__meta,
.contact-details__label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-entry-list,
.ruled-list {
  border-top: 1px solid var(--line);
}

.service-entry,
.ruled-item {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.service-entry {
  position: relative;
  grid-template-columns: 5rem minmax(0, 1fr) auto;
  align-items: center;
  text-decoration: none;
  transition: transform var(--motion), color var(--motion);
}

.service-entry::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width var(--motion);
}

.service-entry:hover {
  transform: translateX(0.45rem);
}

.service-entry:hover::before {
  width: 100%;
}

.service-entry--static {
  cursor: default;
}

.service-entry--static:hover {
  transform: none;
}

.service-entry--static:hover::before {
  width: 0;
}

.service-entry__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: color var(--motion), transform var(--motion), background-color var(--motion);
}

.service-entry__icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--motion), stroke var(--motion);
}

.service-entry:hover .service-entry__icon {
  color: var(--accent-soft);
  transform: translateY(-0.15rem);
}

.service-entry:hover .service-entry__icon svg {
  transform: translateX(0.15rem);
}

.service-entry__content {
  min-width: 0;
}

.service-entry__head {
  display: grid;
  gap: 0.3rem;
}

.service-entry__head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.service-entry__meta {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.service-entry__description {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
}

.service-entry-list--navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 2.6rem);
  border-top: none;
}

.service-entry--navigation {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.95rem;
  padding: 0;
  border-bottom: none;
}

.service-entry--navigation::before {
  display: none;
}

.service-entry--navigation:hover {
  transform: translateY(-0.18rem);
}

.listing-row__media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
}

.listing-row__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.listing-row:hover .listing-row__media img {
  transform: scale(1.03);
}

.service-entry--navigation .service-entry__content {
  display: grid;
  gap: 0.85rem;
}

.service-entry--navigation .service-entry__head {
  gap: 0.45rem;
}

.service-entry--navigation .service-entry__head h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

.service-entry--navigation .service-entry__description {
  max-width: 30rem;
}

.service-entry--navigation .service-entry__action {
  margin-top: 0.15rem;
}

.service-entry--navigation .service-entry__icon {
  width: 2.9rem;
  height: 2.9rem;
  opacity: 0.82;
}

.service-entry--navigation .service-entry__icon svg {
  width: 2.1rem;
  height: 2.1rem;
  stroke-width: 1.6;
}

.service-entry--navigation:hover .service-entry__icon,
.service-entry--navigation:focus-visible .service-entry__icon {
  color: var(--accent);
  opacity: 1;
  transform: scale(1.1);
}

.service-entry--navigation:hover .service-entry__icon svg,
.service-entry--navigation:focus-visible .service-entry__icon svg {
  transform: none;
}

.service-entry__action,
.inline-link,
.button {
  position: relative;
  width: fit-content;
  padding-bottom: 0.22rem;
  font-weight: 600;
  text-decoration: none;
}

.service-entry__action::after,
.inline-link::after,
.button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.45);
  transform-origin: right;
  transition: transform var(--motion), color var(--motion);
}

.service-entry:hover .service-entry__action::after,
.inline-link:hover::after,
.button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-entry:hover .service-entry__head h2,
.inline-link:hover,
.button:hover {
  color: var(--accent);
}

.page-main {
  padding: 4.25rem 0 6rem;
}

.page-main .inner {
  display: grid;
  gap: 4rem;
}

.page-hero,
.editorial-split,
.contact-layout,
.page-detail-intro {
  display: grid;
  gap: 3rem;
}

.intro-block {
  max-width: 56rem;
}

.lead,
.body-column p,
.ruled-item__content p,
.closing-note p,
.contact-details p,
.section-copy p {
  color: var(--muted);
}

.lead {
  max-width: 48rem;
  font-size: clamp(1.1rem, 1.9vw, 1.38rem);
  line-height: 1.8;
  font-weight: 400;
}

.body-column {
  max-width: 40rem;
}

.body-column p {
  font-size: 1.02rem;
}

.editorial-split,
.contact-layout,
.page-detail-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.page-detail-note {
  max-width: 28rem;
  justify-self: end;
  padding-top: 0.35rem;
}

.page-detail-note__label {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-detail-note p {
  color: var(--muted);
}

.image-plain {
  margin: 0;
}

.image-plain img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: var(--bg-soft);
}

.image-plain figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.ruled-item {
  grid-template-columns: 4.25rem minmax(0, 1fr);
  align-items: start;
}

.ruled-item__content h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
}

.ruled-item__content p {
  max-width: 44rem;
  margin-bottom: 0;
}

.listing-stack {
  display: grid;
  gap: clamp(2rem, 3vw, 2.6rem);
}

.listing-row {
  display: grid;
  grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
  align-items: center;
  gap: 1.35rem 2rem;
  padding: 0;
}

.listing-row__head {
  display: grid;
  gap: 0.45rem;
}

.listing-row__head h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.8vw, 3rem);
}

.listing-row__meta {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: left;
}

.listing-row__content {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}

.listing-row__content > p {
  max-width: 44rem;
  margin-bottom: 0;
  color: var(--muted);
}

.ad-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px 0;
}

.ad-container .adsbygoogle {
  display: block;
  width: min(100%, 46rem);
  min-height: 90px;
}

.ad-container--bottom {
  margin-top: 0;
  margin-bottom: 0;
}

.closing-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.inline-link {
  color: var(--text);
}

.contact-details {
  max-width: 22rem;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.form-field {
  display: grid;
  gap: 0.7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.form-field label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  width: 100%;
  appearance: none;
  border: none;
  padding: 0;
  color: var(--text);
  background: transparent;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(102, 107, 104, 0.75);
}

input:focus,
textarea:focus {
  outline: none;
}

.button {
  border: none;
  background: transparent;
  padding-left: 0;
  cursor: pointer;
  color: var(--text);
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 0;
  color: var(--accent);
  font-size: 0.95rem;
}

.site-footer {
  padding: 1rem 0 2rem;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__brand {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

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

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(1rem, -1.2rem, 0) scale(1.04);
  }
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes arrowDrift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  :root {
    --container: min(1120px, calc(100% - 2rem));
  }

  .gateway-intro,
  .editorial-split,
  .contact-layout,
  .closing-note,
  .page-detail-intro {
    grid-template-columns: 1fr;
  }

  .service-entry {
    grid-template-columns: 4rem minmax(0, 1fr);
  }

  .service-entry > .service-entry__action {
    grid-column: 2;
  }

  .service-entry-list--navigation {
    grid-template-columns: 1fr;
  }

  .service-entry--navigation,
  .listing-row {
    grid-template-columns: 1fr;
  }

  .service-entry-list--navigation,
  .listing-stack {
    gap: 1.8rem;
  }

  .closing-note {
    display: grid;
  }

  .page-detail-note {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .page-header__inner {
    align-items: flex-start;
    gap: 0.85rem;
    min-height: auto;
    padding: 12px 20px;
  }

  .page-header__actions {
    width: 100%;
    align-items: flex-end;
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav {
    justify-content: flex-end;
    gap: 0.8rem 1rem;
  }

  .page-header__brand {
    height: 50px;
  }

  .page-header__brand img {
    height: 100%;
  }

  .site-nav__link {
    font-size: 0.84rem;
  }

  .language-switcher__toggle {
    min-width: auto;
    padding: 0.35rem 0 0.25rem;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .language-switcher__menu {
    left: auto;
    right: 0;
  }

  .home-hero {
    padding: 72px 20px 96px;
  }

  .home-hero__video {
    opacity: 0.88;
  }

  .hero-mark {
    width: min(100%, 95vw);
    transform: translateY(-38px);
  }

  .hero-mark__image {
    max-width: 92vw;
    max-height: 54vh;
  }

  .hero-tagline {
    max-width: 24rem;
    font-size: 1rem;
  }

  .scroll-cue {
    bottom: 32px;
  }

  .service-gateway {
    padding-bottom: 4rem;
  }

  .service-entry,
  .ruled-item,
  .listing-row__head {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .service-entry--navigation,
  .listing-row {
    gap: 1rem;
  }

  .ad-container {
    margin: 32px 0;
  }

  .ad-container .adsbygoogle {
    width: 100%;
  }

  .ruled-item__meta,
  .listing-row__meta {
    margin-bottom: 0.15rem;
    text-align: left;
  }

  .page-main {
    padding: 3.25rem 0 4.75rem;
  }

  .site-footer__inner {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .page-header__inner {
    gap: 0.65rem;
    padding: 12px 14px;
  }

  .page-header__actions {
    gap: 0.65rem;
  }

  .site-nav {
    gap: 0.55rem;
  }

  .site-nav__link {
    font-size: 0.78rem;
  }

  .language-switcher__toggle {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .page-header__brand {
    height: 44px;
  }

  .page-header__brand img {
    height: 100%;
  }
}

@media (max-height: 900px) {
  .home-hero {
    padding: 64px 20px 104px;
  }

  .hero-mark {
    transform: translateY(-48px);
  }

  .hero-mark__image {
    max-height: 58vh;
  }

  .hero-tagline {
    font-size: 0.94rem;
  }
}

@media (max-height: 760px) {
  .home-hero {
    padding: 48px 20px 88px;
  }

  .hero-mark {
    transform: translateY(-32px);
  }

  .hero-mark__image {
    max-height: 46vh;
  }

  .hero-tagline {
    font-size: 0.88rem;
  }

  .scroll-cue {
    bottom: 24px;
  }
}

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

  .js body,
  .js body.is-ready,
  .js body.is-transitioning,
  .js [data-reveal],
  .js [data-reveal].is-visible,
  .js .hero-mark,
  .js .hero-mark__image,
  .js body.is-ready .hero-mark__image,
  .js .hero-tagline,
  .js body.is-ready .hero-tagline,
  .js .scroll-cue,
  .js body.is-ready .scroll-cue,
  .site-nav__link::after,
  .service-entry__action::after,
  .inline-link::after,
  .button::after,
  .home-hero::before,
  .home-hero::after,
  .scroll-cue__icon,
  .home-hero {
    transition: none;
    animation: none;
    transform: none;
  }

  .hero-mark__image {
    opacity: 1;
    filter: none;
  }

  .js body,
  .js [data-reveal],
  .js .hero-mark,
  .js .hero-tagline,
  .js .scroll-cue {
    opacity: 1;
  }

  .js .hero-mark {
    transform: translateY(-60px);
  }

  .js .scroll-cue,
  .js body.is-ready .scroll-cue {
    transform: translateX(-50%);
  }
}
