:root {
  --trust-color-dark: #202020;
  --trust-color-text: #111;
  --trust-color-muted: #777;
  --trust-color-gold: #b89b5e;
  --trust-color-bg: #f7f6f4;
  --trust-content-width: 1200px;
}

body.has-mobile-menu-open {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px clamp(20px, 4vw, 48px);
}

/*
 * When logged in, keep the sticky header below the WordPress admin bar
 * (32px from 783px up, 46px at 782px and below). Logged-out visitors have no
 * `admin-bar` class, so the header stays flush at top: 0 with no extra gap.
 */
.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--trust-content-width);
  min-height: 76px;
  padding: 0 clamp(24px, 4vw, 56px);
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--trust-color-text);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.site-logo:hover,
.site-logo:focus-visible {
  opacity: 0.78;
}

.site-logo__mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 34px;
  height: 42px;
  border-left: 6px solid var(--trust-color-gold);
  border-bottom: 6px solid var(--trust-color-gold);
  border-radius: 2px;
}

.site-logo__mark::before,
.site-logo__mark::after {
  position: absolute;
  content: "";
  border-radius: 2px;
}

.site-logo__mark::before {
  top: 4px;
  left: 8px;
  width: 12px;
  height: 28px;
  border-left: 5px solid #3a3a3a;
  border-bottom: 5px solid #3a3a3a;
  transform: skewY(-24deg);
}

.site-logo__mark::after {
  top: 0;
  right: 1px;
  width: 7px;
  height: 30px;
  background: linear-gradient(to bottom, var(--trust-color-gold) 0 48%, transparent 48% 58%, var(--trust-color-gold) 58% 100%);
}

.site-logo__text {
  display: grid;
  gap: 0;
  line-height: 1.1;
}

.site-logo__name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-logo__sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-logo__image {
  display: block;
  max-height: 42px;
  width: auto;
}

/* Header-only: single combined logo image */
.site-logo__symbol {
  display: block;
  width: 150px;
  max-width: 100%;
  height: auto;
}

.site-nav__list,
.footer-nav__list,
.mobile-menu__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 34px);
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--trust-color-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.footer-nav__link:hover,
.footer-nav__link:focus-visible,
.site-footer__privacy:hover,
.site-footer__privacy:focus-visible,
.mobile-menu__link:hover,
.mobile-menu__link:focus-visible,
.mobile-menu__privacy:hover,
.mobile-menu__privacy:focus-visible {
  color: var(--trust-color-gold);
}

.site-menu-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--trust-color-text);
  cursor: pointer;
  background: transparent;
  border: 0;
}

.site-menu-button__line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  flex-shrink: 0;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

/*
 * Keep the overlay clear of the WordPress admin bar (shown only when logged in,
 * 46px on small screens / 32px from 783px up). Without this the fixed overlay
 * covers the whole viewport and the close button hides behind the bar.
 * Logged-out visitors have no `admin-bar` class, so no extra offset is added.
 */
.admin-bar .mobile-menu {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar .mobile-menu {
    top: 32px;
  }
}

.mobile-menu__inner {
  display: flex;
  min-height: 100%;
  padding: max(76px, calc(env(safe-area-inset-top, 0px) + 64px)) clamp(20px, 5vw, 28px) 56px;
  flex-direction: column;
}

.mobile-menu__close {
  position: absolute;
  top: max(24px, env(safe-area-inset-top, 0px));
  right: clamp(20px, 6vw, 44px);
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--trust-color-gold);
  cursor: pointer;
  background: transparent;
  border: 0;
}

.mobile-menu__close span,
.mobile-menu__close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-menu__nav {
  margin-top: 24px;
}

.mobile-menu__list {
  display: grid;
  gap: clamp(16px, 2.5vh, 22px);
}

.mobile-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--trust-color-text);
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.mobile-menu__privacy {
  display: inline-flex;
  align-self: flex-start;
  margin-top: clamp(32px, 5vh, 48px);
  color: var(--trust-color-text);
  font-size: clamp(16px, 4.5vw, 20px);
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.site-footer {
  color: #fff;
  background: var(--trust-color-dark);
}

.site-footer__inner {
  max-width: var(--trust-content-width);
  padding: 66px clamp(24px, 5vw, 72px) 50px;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

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

.site-logo--footer .site-logo__mark::before {
  border-color: #d8d8d8;
}

/* Footer logo: mark (trust-logo.png) + company name (footer-company.png) */
.footer-logo__mark {
  display: block;
  width: 48px;
  height: auto;
}

.footer-logo__name {
  display: block;
  width: 144px;
  height: auto;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 30px;
}

.footer-nav__link {
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 58px;
}

.site-footer__copyright {
  color: #f2f2f2;
  font-size: 12px;
  font-weight: 700;
}

.site-footer__privacy {
  color: #f2f2f2;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.lower-page {
  background: #fff;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 148px 24px 92px;
  overflow: hidden;
  isolation: isolate;
  color: var(--trust-color-text);
  text-align: center;
  background: #fff;
}

.page-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--trust-page-hero-background, linear-gradient(180deg, #fff 0%, var(--trust-color-bg) 100%));
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--trust-page-hero-overlay, transparent);
}

.page-hero__inner {
  width: 100%;
  max-width: 920px;
}

.page-hero__label {
  margin: 0 0 20px;
  color: var(--trust-color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.page-hero__label--after {
  margin: 22px 0 0;
}

.page-hero__title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.page-hero--visual {
  --trust-page-hero-overlay: rgba(18, 23, 27, 0.58);
  min-height: 440px;
  padding-top: 160px;
  padding-bottom: 112px;
  color: #fff;
}

.page-hero--visual .page-hero__background {
  background:
    linear-gradient(128deg, rgba(184, 155, 94, 0.28) 0 16%, transparent 16% 40%, rgba(255, 255, 255, 0.12) 40% 42%, transparent 42%),
    linear-gradient(232deg, rgba(0, 0, 0, 0.5) 0 24%, transparent 24% 58%, rgba(184, 155, 94, 0.2) 58% 76%, transparent 76%),
    #1d313d;
}

.page-hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--visual .page-hero__title {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.page-hero--visual .page-hero__label {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.page-hero--simple {
  min-height: 240px;
  padding-top: 136px;
  padding-bottom: 56px;
  background: var(--trust-color-bg);
}

.page-hero--simple .page-hero__background {
  background: var(--trust-color-bg);
}

.page-hero--simple .page-hero__title {
  font-size: 34px;
}

.page-content {
  padding: 88px 24px 120px;
  background: #fff;
}

.page-content__inner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.page-content__body {
  color: var(--trust-color-text);
  font-size: 16px;
  line-height: 2;
}

.page-content__body > *:first-child {
  margin-top: 0;
}

.page-content__body > *:last-child {
  margin-bottom: 0;
}

.page-content__body p {
  margin: 0 0 1.5em;
}

.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
  line-height: 1.5;
}

.page-content__body h2 {
  padding-bottom: 16px;
  margin: 3em 0 1.2em;
  font-size: 24px;
  border-bottom: 1px solid #e7e4df;
}

.page-content__body h3 {
  margin: 2.5em 0 1em;
  font-size: 20px;
}

.page-content__body h4 {
  margin: 2em 0 0.8em;
  font-size: 17px;
}

.page-content__body ul,
.page-content__body ol {
  padding-left: 1.4em;
  margin: 0 0 1.5em;
}

.page-content__body li + li {
  margin-top: 0.35em;
}

.page-content__body a {
  color: var(--trust-color-gold);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.page-content__body img,
.page-content__body video,
.page-content__body iframe {
  max-width: 100%;
}

.page-content__body img,
.page-content__body video {
  height: auto;
}

.page-content__body figure {
  max-width: 100%;
  margin: 2.2em 0;
}

.page-content__body figcaption {
  margin-top: 0.6em;
  color: var(--trust-color-muted);
  font-size: 13px;
  line-height: 1.6;
}

.page-content__body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.page-content__body th,
.page-content__body td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e7e4df;
}

.page-content__body pre {
  max-width: 100%;
  padding: 18px;
  overflow-x: auto;
  white-space: pre-wrap;
  background: var(--trust-color-bg);
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.lower-section {
  padding: 120px 24px;
  background: #fff;
}

.lower-section--muted {
  background: var(--trust-color-bg);
}

.lower-section--compact {
  padding-top: 104px;
}

.lower-section__inner {
  width: 100%;
  max-width: var(--trust-content-width);
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}

.section-heading__caption {
  position: relative;
  margin: 18px 0 0;
  padding-left: 52px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.section-heading__caption::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  background: currentColor;
}

.text-block {
  display: grid;
  gap: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.text-block p {
  margin: 0;
}

.company-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.company-split--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.company-split--reverse .company-split__content {
  grid-column: 2;
}

.company-split--reverse .page-visual {
  grid-column: 1;
  grid-row: 1;
}

.company-catch {
  max-width: 720px;
  margin: 0 0 52px;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.65;
}

.page-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(184, 155, 94, 0.26), rgba(255, 255, 255, 0.04) 42%),
    linear-gradient(160deg, #efebe1, #d6dde1);
}

.page-visual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-visual--mission {
  background:
    linear-gradient(145deg, rgba(32, 32, 32, 0.1), transparent 36%),
    linear-gradient(25deg, rgba(184, 155, 94, 0.38), transparent 34%),
    linear-gradient(160deg, #f2ede3, #d5dce0);
}

.page-visual--vision {
  background:
    radial-gradient(circle at 48% 36%, rgba(113, 144, 82, 0.55) 0 16%, transparent 17%),
    linear-gradient(180deg, #f3ead3, #d6e1ca 56%, #564a36 57% 100%);
}

.page-visual--values,
.page-visual--community {
  background:
    linear-gradient(120deg, rgba(184, 155, 94, 0.18), transparent 34%),
    linear-gradient(25deg, #dfe9ed, #f6f5f2 54%, #ced7dc);
}

.page-visual--money {
  background:
    radial-gradient(circle at 76% 28%, rgba(66, 100, 86, 0.32) 0 14%, transparent 15%),
    linear-gradient(135deg, #faf4dc, #e3ece2 48%, #c8d5df);
}

.company-values {
  display: grid;
  gap: 42px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: company-value;
}

.company-values li {
  counter-increment: company-value;
}

.company-values h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.company-values h3::before {
  content: counter(company-value) ". ";
}

.company-values p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.company-profile {
  margin: 68px 0 0;
  border-top: 1px solid #dedbd5;
}

.company-profile__row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 64px;
  padding: 32px 0;
  border-bottom: 1px solid #dedbd5;
}

.company-profile dt,
.company-profile dd {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}

.company-profile ul {
  padding-left: 1.2em;
  margin: 0;
}

.services-page {
  background: var(--trust-color-bg);
}

.services-intro {
  background: var(--trust-color-bg);
}

.service-list {
  display: grid;
  gap: 72px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  padding: clamp(48px, 6vw, 78px);
  background: #fff;
  border-radius: 8px;
  transition: box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.08);
}

.service-card__title {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.35;
}

.service-card__lead {
  margin: 0 0 44px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.6;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  margin-top: 72px;
  color: #fff;
  background: var(--trust-color-dark);
  border-radius: 8px;
}

.service-cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: var(--trust-color-gold);
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.button-primary:hover,
.button-primary:focus-visible {
  opacity: 0.84;
}

.privacy-page {
  background: var(--trust-color-bg);
}

.privacy-content {
  padding: 54px 24px 132px;
  background: var(--trust-color-bg);
}

.privacy-content__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.privacy-document {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.privacy-document__lead {
  margin: 0 0 34px;
  font-size: 18px;
  font-weight: 700;
}

.privacy-document h2 {
  padding-bottom: 16px;
  margin: 56px 0 24px;
  font-size: 24px;
  line-height: 1.5;
  border-bottom: 1px solid #dedbd5;
}

.privacy-document p,
.privacy-document ul,
.privacy-document ol {
  margin-top: 0;
  margin-bottom: 24px;
}

.privacy-document ul,
.privacy-document ol {
  padding-left: 1.4em;
}

.privacy-document li + li {
  margin-top: 10px;
}

.privacy-document a {
  color: #006de5;
}

.contact-page {
  background: var(--trust-color-bg);
}

.contact-content {
  padding: 54px 24px 132px;
  background: var(--trust-color-bg);
}

.contact-content__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.contact-intro {
  margin-bottom: 52px;
  text-align: center;
}

.contact-intro__lead {
  margin: 0 0 20px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.7;
}

.contact-intro__note {
  margin: 0;
  color: var(--trust-color-muted);
  font-size: 15px;
  line-height: 1.9;
}

.contact-form {
  display: flex;
  justify-content: center;
}

.contact-form__frame {
  display: block;
  width: 100%;
  max-width: 640px;
  height: 1011px;
  border: 0;
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 16px;
  }

  .site-header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    column-gap: 8px;
    min-height: 64px;
    padding: 0 14px;
  }

  .site-logo {
    gap: 10px;
  }

  .site-header__logo {
    min-width: 0;
  }

  .site-logo__image {
    max-height: 35px;
  }

  .site-logo__symbol {
    width: 110px;
  }

  .site-logo__mark {
    width: 28px;
    height: 35px;
    border-left-width: 5px;
    border-bottom-width: 5px;
  }

  .site-logo__mark::before {
    left: 7px;
    width: 10px;
    height: 23px;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }

  .site-logo__mark::after {
    width: 6px;
    height: 25px;
  }

  .site-logo__name {
    font-size: 19px;
  }

  .site-logo__sub {
    font-size: 8px;
  }

  .site-header__nav {
    display: none;
  }

  .site-menu-button {
    display: flex;
    position: static;
    justify-self: end;
  }

  .mobile-menu__link,
  .mobile-menu__privacy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .button-primary,
  .button-secondary {
    max-width: 100%;
    padding-top: 12px;
    padding-bottom: 12px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
  }

  .page-hero__inner,
  .page-content__inner,
  .lower-section__inner,
  .privacy-content__inner,
  .contact-content__inner,
  .news-archive__inner,
  .news-article,
  .top-hero__inner,
  .top-concept__inner,
  .top-services__inner,
  .top-news__inner,
  .top-contact__inner,
  .top-careers__inner {
    min-width: 0;
  }

  .page-hero__title,
  .section-heading__title,
  .company-catch,
  .company-values h3,
  .service-card__title,
  .service-card__lead,
  .news-card__title,
  .news-article__title,
  .privacy-document h2,
  .contact-intro__lead,
  .top-concept__catch,
  .top-contact__lead,
  .error-404__title {
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .page-hero {
    min-height: 240px;
    padding: 112px 22px 68px;
  }

  .page-hero__label {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .page-hero__title {
    font-size: 32px;
    line-height: 1.45;
  }

  .page-hero--visual {
    min-height: 340px;
    padding-top: 116px;
    padding-bottom: 68px;
  }

  .page-hero--visual .page-hero__title {
    font-size: clamp(42px, 14vw, 58px);
  }

  .page-hero--visual .page-hero__label {
    font-size: 14px;
  }

  .page-hero--simple {
    min-height: 220px;
    padding-top: 100px;
    padding-bottom: 46px;
  }

  .page-hero--simple .page-hero__title {
    font-size: 28px;
  }

  .page-content {
    padding: 64px 22px 84px;
  }

  .page-content__body {
    font-size: 15px;
    line-height: 1.9;
  }

  .page-content__body h2 {
    padding-bottom: 14px;
    margin-top: 2.5em;
    font-size: 21px;
  }

  .page-content__body h3 {
    font-size: 18px;
  }

  .page-content__body th,
  .page-content__body td {
    padding: 14px 12px;
  }

  .lower-section {
    padding: 76px 22px;
  }

  .lower-section--compact {
    padding-top: 72px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading__title {
    font-size: 34px;
  }

  .section-heading__caption {
    margin-top: 12px;
    padding-left: 40px;
    font-size: 12px;
  }

  .section-heading__caption::before {
    width: 26px;
  }

  .text-block {
    gap: 14px;
    font-size: 15px;
    line-height: 1.9;
  }

  .company-split,
  .company-split--reverse,
  .service-card {
    grid-template-columns: 1fr;
  }

  .company-split--reverse .company-split__content,
  .company-split--reverse .page-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .company-split--reverse .page-visual {
    order: -1;
  }

  .company-catch {
    margin-bottom: 34px;
    font-size: 21px;
  }

  .page-visual {
    min-height: 260px;
  }

  .company-values {
    gap: 32px;
  }

  .company-values h3 {
    font-size: 20px;
  }

  .company-profile {
    margin-top: 46px;
  }

  .company-profile__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .company-profile dt,
  .company-profile dd {
    font-size: 15px;
  }

  .service-list {
    gap: 40px;
  }

  .service-card {
    gap: 34px;
    padding: 32px 22px;
  }

  .service-card .page-visual {
    order: -1;
  }

  .service-card__title {
    font-size: 30px;
  }

  .service-card__lead {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
    margin-top: 48px;
  }

  .privacy-content {
    padding: 44px 22px 88px;
  }

  .privacy-document {
    font-size: 15px;
    line-height: 1.9;
  }

  .privacy-document h2 {
    margin-top: 42px;
    font-size: 20px;
  }

  .contact-content {
    padding: 40px 22px 88px;
  }

  .contact-intro {
    margin-bottom: 40px;
  }

  .contact-intro__note {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-logo__symbol {
    width: min(108px, calc(100vw - 132px));
  }

  .page-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .page-hero--visual {
    min-height: 320px;
    padding-top: 112px;
    padding-bottom: 58px;
  }

  .page-hero--visual .page-hero__title {
    font-size: clamp(40px, 13vw, 52px);
  }

  .page-hero--simple .page-hero__title {
    font-size: 26px;
  }

  .lower-section,
  .page-content,
  .privacy-content,
  .contact-content,
  .news-archive,
  .news-single {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-heading__title {
    font-size: 32px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-card__title {
    font-size: 26px;
  }

  .news-card__body {
    padding: 20px 20px 24px;
  }

  .news-article__card {
    padding: 24px 18px;
  }
}

@media (max-width: 767px) {
  .site-footer__inner {
    padding: 58px 24px 48px;
  }

  .site-footer__top {
    justify-content: center;
  }

  .site-footer__logo {
    transform: none;
  }

  .footer-logo__mark {
    width: 40px;
  }

  .footer-logo__name {
    width: 120px;
  }

  .footer-nav {
    display: none;
  }

  .site-footer__bottom {
    align-items: center;
    flex-direction: column-reverse;
    gap: 28px;
    margin-top: 34px;
    text-align: center;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/* ------------------------------------------------------------------ */
/* News archive                                                        */
/* ------------------------------------------------------------------ */

.news-page {
  background: var(--trust-color-bg);
}

.news-archive {
  padding: 88px 24px 120px;
  background: var(--trust-color-bg);
}

.news-archive__inner {
  width: 100%;
  max-width: var(--trust-content-width);
  margin: 0 auto;
}

.news-archive__heading {
  margin: 0 0 48px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.4;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  color: var(--trust-color-text);
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

.news-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #ece9e3;
}

.news-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__noimage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3bfb6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px 26px;
}

.news-card__title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
}

.news-card__excerpt {
  margin: 0;
  color: var(--trust-color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.news-card__date {
  margin-top: auto;
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
}

.news-empty {
  margin: 0;
  padding: 40px 0;
  color: var(--trust-color-muted);
  font-size: 16px;
  font-weight: 700;
}

/* Pagination (the_posts_pagination markup) */
.news-archive .pagination {
  margin-top: 64px;
}

.news-archive .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-archive .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  color: var(--trust-color-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e0ddd6;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.news-archive a.page-numbers:hover,
.news-archive a.page-numbers:focus-visible {
  color: #fff;
  background: var(--trust-color-gold);
  border-color: var(--trust-color-gold);
}

.news-archive .page-numbers.current {
  color: #fff;
  background: var(--trust-color-dark);
  border-color: var(--trust-color-dark);
}

.news-archive .page-numbers.dots {
  min-width: auto;
  background: transparent;
  border-color: transparent;
}

/* ------------------------------------------------------------------ */
/* News article detail                                                 */
/* ------------------------------------------------------------------ */

.news-single {
  padding: 72px 24px 120px;
  background: var(--trust-color-bg);
}

.news-article {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}

.news-article__header {
  margin-bottom: 40px;
  text-align: center;
}

.news-article__label {
  margin: 0 0 18px;
  color: var(--trust-color-muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.news-article__title {
  margin: 0 0 20px;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.news-article__meta {
  margin: 0;
  color: #aaa;
  font-size: 14px;
  font-weight: 700;
}

.news-article__card {
  padding: clamp(32px, 5vw, 64px);
  background: #fff;
  border-radius: 8px;
}

.news-article__thumb {
  margin: 0 0 40px;
}

.news-article__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.news-article__back {
  margin-top: 56px;
  text-align: center;
}

.news-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--trust-color-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-back-link:hover,
.news-back-link:focus-visible {
  color: var(--trust-color-gold);
}

@media (max-width: 900px) {
  .news-archive {
    padding: 56px 22px 84px;
  }

  .news-archive__heading {
    margin-bottom: 32px;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-archive .pagination {
    margin-top: 48px;
  }

  .news-single {
    padding: 48px 22px 84px;
  }

  .news-article__header {
    margin-bottom: 32px;
  }

  .news-article__card {
    padding: 28px 22px;
  }

  .news-article__thumb {
    margin-bottom: 28px;
  }

  .news-article__back {
    margin-top: 44px;
  }
}

/* ------------------------------------------------------------------ */
/* TOP page (front-page.php)                                           */
/* ------------------------------------------------------------------ */

.front-page {
  background: #fff;
}

/* Shared TOP helpers */
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: var(--trust-color-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #e0ddd6;
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--trust-color-gold);
  border-color: var(--trust-color-gold);
}

.view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--trust-color-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.view-more__arrow {
  transition: transform 0.2s ease;
}

.view-more:hover,
.view-more:focus-visible {
  color: var(--trust-color-gold);
}

.view-more:hover .view-more__arrow,
.view-more:focus-visible .view-more__arrow {
  transform: translateX(4px);
}

.view-more--light {
  margin-top: 40px;
  color: #fff;
}

.view-more--light:hover,
.view-more--light:focus-visible {
  color: var(--trust-color-gold);
}

.top-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

/* First view */
.top-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 620px;
  padding: 96px clamp(20px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
}

.top-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #c7d2d8;
}

.top-hero__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transform-origin: center 45%;
}

.top-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.78) 0 30%, rgba(255, 255, 255, 0.28) 52%, transparent 74%);
}

.top-hero__inner {
  width: 100%;
  max-width: var(--trust-content-width);
  margin: 0 auto;
}

.top-hero__copy {
  max-width: 22em;
  margin: 0;
  color: var(--trust-color-text);
  font-size: clamp(30px, 4.6vw, 56px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.top-hero__sp-break,
.top-hero__mobile-break,
.top-concept__sp-break {
  display: none;
}

.top-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: clamp(32px, 4vw, 48px);
}

/* OUR CONCEPT */
.top-concept {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--trust-color-dark);
}

.top-concept__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  width: 100%;
  max-width: var(--trust-content-width);
  margin: 0 auto;
}

.top-concept .section-heading__title {
  color: #fff;
}

.top-concept__catch {
  margin: 0 0 36px;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.7;
}

.top-concept .text-block {
  font-weight: 500;
  color: #e7e5e1;
}

.top-concept__mark {
  overflow: hidden;
  border-radius: 8px;
}

.top-concept__image {
  display: block;
  width: 100%;
  height: auto;
}

/* SERVICES */
.top-services {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.top-services__inner,
.top-news__inner {
  width: 100%;
  max-width: var(--trust-content-width);
  margin: 0 auto;
}

.top-section-head.section-heading {
  margin-bottom: 48px;
}

.service-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-preview__card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
}

.service-preview__visual {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-preview__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service image fallback backgrounds (shown if image fails to load). */
.service-preview__visual--money {
  background:
    radial-gradient(circle at 74% 26%, rgba(66, 100, 86, 0.4) 0 14%, transparent 15%),
    linear-gradient(135deg, #f3eccf, #dfe6dc 48%, #c4d1db);
}

.service-preview__visual--invest {
  background:
    linear-gradient(120deg, rgba(184, 155, 94, 0.28), transparent 36%),
    linear-gradient(28deg, #c9d4da, #eef1f2 52%, #b7c4cc);
}

.service-preview__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 52px);
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 24, 28, 0.32), rgba(20, 24, 28, 0.62));
}

.service-preview__name {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.4;
}

.service-preview__desc {
  max-width: 30em;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.9;
}

.service-preview__card:hover .service-preview__visual,
.service-preview__card:focus-visible .service-preview__visual {
  transform: scale(1.04);
}

/* NEWS preview */
.top-news {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
  background: var(--trust-color-bg);
}

.news-list--preview {
  margin-top: 0;
}

/* Contact CTA */
.top-contact {
  padding: clamp(80px, 10vw, 130px) clamp(20px, 5vw, 72px);
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #3a3a3a 0%, #202020 60%, #161616 100%);
}

.top-contact__inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.top-contact .section-heading {
  display: inline-block;
  margin-bottom: 28px;
  text-align: left;
}

.top-contact .section-heading__title {
  color: #fff;
}

.top-contact__lead {
  margin: 0 0 36px;
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 700;
  line-height: 1.9;
}

/* CAREERS */
.top-careers {
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px);
  background: #fff;
}

.top-careers__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
  width: 100%;
  max-width: var(--trust-content-width);
  margin: 0 auto;
}

.top-careers__visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #c8d2d8;
}

.top-careers__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-careers .text-block {
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .top-hero {
    min-height: 460px;
    padding: 64px 22px;
  }

  .top-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0 34%, rgba(255, 255, 255, 0.40) 60%, transparent 88%);
  }

  .top-hero__copy {
    line-height: 1.6;
  }

  .top-hero__sp-break,
  .top-hero__mobile-break,
  .top-concept__sp-break {
    display: inline;
  }

  .top-concept__catch {
    max-width: 19em;
    font-size: 19px;
  }

  .top-concept__inner,
  .top-careers__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .top-concept__mark {
    max-width: 280px;
    margin: 0 auto;
  }

  .top-careers__visual {
    order: -1;
  }

  .service-preview {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-preview__visual {
    aspect-ratio: 4 / 3;
  }

  .service-preview__overlay {
    gap: 10px;
    padding: 24px 20px;
  }

  .service-preview__name {
    font-size: 22px;
  }

  .service-preview__desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .top-section-head {
    align-items: flex-end;
  }

  .top-section-head.section-heading {
    margin-bottom: 36px;
  }
}

/* 404 page */
.error-404__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 24px 0;
  text-align: center;
}

.error-404__code {
  margin: 0;
  color: var(--trust-color-gold);
  font-size: clamp(72px, 16vw, 140px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.error-404__title {
  margin: 20px 0 0;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.error-404__content {
  padding-top: 36px;
}

.error-404__body {
  text-align: center;
}

.error-404__actions {
  margin-top: 40px;
}

/* ------------------------------------------------------------------ */
/* Hero-overlay header: TOP + lower pages (shared sizing)             */
/* ------------------------------------------------------------------ */

/* Position, size, and padding are identical on all pages;
   only `top` placement is page-specific (same value here). */
body.home .site-header,
body.page:not(.home) .site-header,
body.blog .site-header,
body.error404 .site-header {
  position: absolute;
  top: clamp(24px, 2.2vw, 32px);
  left: 0;
  right: 0;
  padding: 0 clamp(20px, 5vw, 72px);
}

/* Admin-bar offset (32px bar at ≥783px) */
body.home.admin-bar .site-header,
body.page.admin-bar:not(.home) .site-header,
body.blog.admin-bar .site-header,
body.admin-bar.error404 .site-header {
  top: calc(32px + clamp(24px, 2.2vw, 32px));
}

@media (max-width: 782px) {
  body.home.admin-bar .site-header,
  body.page.admin-bar:not(.home) .site-header,
  body.blog.admin-bar .site-header,
  body.admin-bar.error404 .site-header {
    top: calc(46px + clamp(24px, 2.2vw, 32px));
  }
}

/* Hero fills the viewport from the very top of the page */
body.home .top-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(160px, 19vh, 220px);
  align-items: flex-start;
}

/* Dark left-side gradient so white copy stays readable */
body.home .top-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.52) 34%, rgba(0, 0, 0, 0.20) 58%, transparent 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 34%);
}

/* White copy, narrower column so text stacks vertically */
body.home .top-hero__copy {
  max-width: 7.6em;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 58px);
  line-height: 1.34;
}

body.home .top-hero__sp-break {
  display: inline;
}

body.home .top-hero__actions {
  margin-top: 30px;
}

/* Secondary button on dark hero bg: transparent with white border */
body.home .top-hero__actions .button-secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
}

body.home .top-hero__actions .button-secondary:hover,
body.home .top-hero__actions .button-secondary:focus-visible {
  color: var(--trust-color-gold);
  border-color: var(--trust-color-gold);
}

/* SP (≤900px): vertical dark overlay + tighter top padding */
@media (max-width: 900px) {
  /* SP: tighter header offset — shared across all hero-overlay pages */
  body.home .site-header,
  body.page:not(.home) .site-header,
  body.blog .site-header,
  body.error404 .site-header {
    top: 16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  /* Admin-bar 32px at 783–900px */
  body.home.admin-bar .site-header,
  body.page.admin-bar:not(.home) .site-header,
  body.blog.admin-bar .site-header,
  body.admin-bar.error404 .site-header {
    top: 48px;
  }

  body.home .top-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 150px;
    align-items: flex-start;
  }

  body.home .top-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.40) 46%, rgba(0, 0, 0, 0.14) 72%, transparent 92%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, transparent 72%);
  }

  body.home .top-hero__copy {
    max-width: 10em;
    font-size: clamp(30px, 7vw, 34px);
    line-height: 1.6;
    letter-spacing: 0;
  }

  body.home .top-hero__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    width: min(100%, 320px);
    margin-top: 28px;
  }

  body.home .top-hero__actions .button-primary,
  body.home .top-hero__actions .button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 1.4;
    text-align: center;
  }

  /* SP: 404 hero — slightly less top padding than PC */
  .error-404__hero {
    padding-top: 108px;
  }
}

@media (max-width: 480px) {
  .top-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .service-preview__overlay {
    padding: 22px 18px;
  }

  body.home .site-header,
  body.page:not(.home) .site-header,
  body.blog .site-header,
  body.error404 .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/* ------------------------------------------------------------------ */
/* Scroll fade-in (class added dynamically by IntersectionObserver)   */
/* ------------------------------------------------------------------ */

@keyframes trust-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-up {
  opacity: 0;
}

.anim-fade-up.is-visible {
  animation: trust-fade-up 0.55s ease forwards;
}

/* Stagger delay for sibling card groups */
.service-preview .anim-fade-up.is-visible:nth-child(2),
.news-list       .anim-fade-up.is-visible:nth-child(2) {
  animation-delay: 0.08s;
}

.news-list .anim-fade-up.is-visible:nth-child(3) {
  animation-delay: 0.16s;
}

/* ------------------------------------------------------------------ */
/* Page transition overlay                                             */
/* ------------------------------------------------------------------ */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  transform-origin: right;
  animation: page-reveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

.page-transition--leaving {
  transform-origin: left;
  animation: page-leave 0.4s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes page-reveal {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}

@keyframes page-leave {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ------------------------------------------------------------------ */
/* prefers-reduced-motion                                              */
/* ------------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  /* Ensure JS-injected fade-up class never hides content */
  .anim-fade-up {
    opacity: 1;
  }

  .anim-fade-up.is-visible {
    animation: none;
  }

  /* Remove transform-based motion from existing hover transitions */
  .news-card {
    transition: box-shadow 0.2s ease;
  }

  .news-card:hover,
  .news-card:focus-visible {
    transform: none;
  }

  .service-preview__card:hover .service-preview__visual,
  .service-preview__card:focus-visible .service-preview__visual {
    transform: none;
  }

  .view-more:hover .view-more__arrow,
  .view-more:focus-visible .view-more__arrow {
    transform: none;
  }

  .site-logo:hover,
  .site-logo:focus-visible {
    opacity: 1;
  }

  .page-transition {
    display: none;
  }
}
