:root {
  --tl-ivory: #f4eee4;
  --tl-sand: #d8c5a5;
  --tl-sage: #78866b;
  --tl-sage-dark: #53604d;
  --tl-terra: #b56f4a;
  --tl-cocoa: #3b2e2a;
  --tl-ink: #332e29;
  --tl-white: #fffdf9;
  --tl-line: rgba(59, 46, 42, .16);
  --tl-shell: min(1180px, calc(100vw - 64px));
  --tl-radius: 6px;
  --tl-shadow: 0 28px 70px rgba(55, 43, 35, .13);
}

html { scroll-behavior: smooth; }

body.trilink-corporate-home {
  margin: 0;
  color: var(--tl-ink);
  background: var(--tl-ivory);
  font-family: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: .045em;
  -webkit-font-smoothing: antialiased;
}

.trilink-corporate-home *,
.trilink-corporate-home *::before,
.trilink-corporate-home *::after { box-sizing: border-box; }

.trilink-corporate-home img { max-width: 100%; }
.trilink-corporate-home a { color: inherit; text-decoration: none; }
.trilink-corporate-home button,
.trilink-corporate-home input,
.trilink-corporate-home textarea,
.trilink-corporate-home select { font: inherit; }
.trilink-corporate-home h1,
.trilink-corporate-home h2,
.trilink-corporate-home h3 {
  margin-top: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.trilink-corporate-home h1::before,
.trilink-corporate-home h1::after,
.trilink-corporate-home h2::before,
.trilink-corporate-home h2::after,
.trilink-corporate-home h3::before,
.trilink-corporate-home h3::after { content: none !important; display: none !important; }
.trilink-corporate-home p { margin-top: 0; }
.tl-shell { width: var(--tl-shell); margin-inline: auto; }
.tl-main { overflow: hidden; }

.tl-header {
  position: fixed;
  z-index: 9990;
  top: 0;
  right: 0;
  left: 0;
  color: var(--tl-white);
  border-bottom: 1px solid rgba(255,255,255,.23);
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}
.admin-bar .tl-header { top: 32px; }
.tl-header.is-scrolled,
.tl-header.is-menu-open {
  color: var(--tl-white);
  background: rgba(45, 39, 35, .96);
  box-shadow: 0 10px 35px rgba(45, 34, 28, .08);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(59,46,42,.1);
}
.tl-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100vw - 48px));
  height: 88px;
  margin: 0 auto;
}
.tl-brand { display: inline-flex; align-items: center; color: inherit; }
.tl-brand__image { display: block; width: 225px; height: auto; }
.tl-nav { display: flex; align-items: stretch; height: 100%; }
.tl-nav > a {
  display: flex;
  min-width: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: .12em;
  transition: opacity .2s ease;
}
.tl-nav > a:hover { opacity: .62; }
.tl-nav > a span { font-size: 11px; }
.tl-nav > a small { margin-top: 2px; font-size: 9px; font-weight: 500; letter-spacing: .08em; }
.tl-nav > .tl-nav__contact {
  min-width: 145px;
  margin-left: 16px;
  color: var(--tl-white);
  background: var(--tl-terra);
  font-size: 11px;
}
.tl-menu-button,
.tl-mobile-nav { display: none; }

.tl-hero {
  position: relative;
  display: flex;
  min-height: 780px;
  height: 100vh;
  max-height: 980px;
  align-items: center;
  color: var(--tl-white);
  background: #51473e var(--hero) center / cover no-repeat;
}
.tl-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(37,30,25,.78) 0%, rgba(48,39,31,.50) 43%, rgba(48,39,31,.07) 78%),
    linear-gradient(0deg, rgba(35,29,24,.25), transparent 45%);
}
.tl-hero__inner { position: relative; z-index: 1; padding-top: 80px; }
.tl-hero__content { max-width: 690px; }
.tl-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
}
.tl-eyebrow span { width: 42px; height: 1px; background: var(--tl-sand); }
.tl-hero h1 {
  margin-bottom: 26px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(62px, 7.1vw, 104px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: .02em;
}
.tl-hero h1 em { color: #e7c8aa; font-style: normal; }
.tl-hero__lead { margin-bottom: 36px; font-size: 17px; line-height: 2; letter-spacing: .08em; }
.tl-hero__actions { display: flex; gap: 12px; }
.tl-button {
  display: inline-flex;
  min-width: 184px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.tl-button:hover { transform: translateY(-2px); }
.tl-button--light { color: var(--tl-cocoa) !important; background: var(--tl-white); border-color: var(--tl-white); }
.tl-button--ghost:hover { color: var(--tl-cocoa); background: var(--tl-white); }
.tl-hero__note {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: .22em;
  transform: rotate(90deg);
  transform-origin: left center;
}
.tl-hero__note i { display: block; width: 58px; height: 1px; background: rgba(255,255,255,.6); }
.tl-hero__statement {
  position: absolute;
  right: 3.8vw;
  bottom: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
}
.tl-hero__statement b { color: #e7c8aa; padding: 0 8px; }

.tl-intro { padding: 150px 0 125px; background: var(--tl-ivory); }
.tl-intro__grid { display: grid; grid-template-columns: 240px 1fr; gap: 72px; }
.tl-section-label { display: flex; align-items: flex-start; gap: 15px; color: var(--tl-cocoa); }
.tl-section-label span { color: var(--tl-terra); font-family: Georgia, serif; font-size: 13px; }
.tl-section-label p { margin: 0; font-size: 10px; font-weight: 800; letter-spacing: .23em; white-space: nowrap; }
.tl-section-label--light { color: var(--tl-white); }
.tl-section-label--light span { color: #e9c7a7; }
.tl-kicker { margin-bottom: 18px; color: var(--tl-terra); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.tl-intro__copy h2,
.tl-heading h2,
.tl-domains h2,
.tl-process h2,
.tl-global h2,
.tl-company h2,
.tl-contact h2 {
  margin-bottom: 36px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 4vw, 57px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .035em;
}
.tl-intro__copy h2 em,
.tl-company h2 em { color: var(--tl-terra); font-style: normal; }
.tl-intro__body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 790px; color: #635b54; font-size: 14px; }
.tl-intro__body p { margin-bottom: 0; }
.tl-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--tl-line);
  border-bottom: 1px solid var(--tl-line);
}
.tl-facts article { position: relative; padding: 38px 45px; }
.tl-facts article + article { border-left: 1px solid var(--tl-line); }
.tl-facts strong { display: block; float: left; margin-right: 18px; color: var(--tl-terra); font: 500 55px/1 Georgia, serif; }
.tl-facts span { display: block; margin: 4px 0 4px; font-size: 10px; font-weight: 800; letter-spacing: .19em; }
.tl-facts p { margin: 0; color: #746b62; font-size: 12px; }

.tl-business { padding: 140px 0 150px; background: #e7dccb; }
.tl-heading { display: grid; grid-template-columns: 240px 1fr 330px; align-items: end; gap: 40px; margin-bottom: 66px; }
.tl-heading h2 { margin: 0; line-height: 1.2; }
.tl-heading > p { margin: 0 0 5px; color: #6f675f; font-size: 13px; }
.tl-business__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.tl-business-card {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  color: var(--tl-white);
  background: var(--tl-cocoa);
}
.tl-business-card--large { grid-column: 1 / -1; min-height: 480px; }
.tl-business-card__image {
  position: absolute;
  inset: 0;
  background: var(--image) center / cover no-repeat;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.tl-business-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(42,31,25,.82), rgba(42,31,25,.06) 65%); }
.tl-business-card:hover .tl-business-card__image { transform: scale(1.035); }
.tl-business-card__content { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; display: grid; grid-template-columns: 42px 1fr; padding: 36px 40px; }
.tl-business-card__content > span { grid-row: 1 / 4; color: #e9c7a7; font: 14px Georgia, serif; }
.tl-business-card__content > p { margin: 0 0 6px; font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.tl-business-card__content h3 { margin: 0 0 4px; font-family: "Yu Mincho", serif; font-size: 27px; font-weight: 500; letter-spacing: .04em; }
.tl-business-card__content small { font-size: 11px; letter-spacing: .08em; opacity: .75; }

.tl-domains { padding: 130px 0; color: var(--tl-white); background: var(--tl-cocoa); }
.tl-domains__inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 95px; }
.tl-domains__title small { color: #d9b28e; font-size: 10px; font-weight: 800; letter-spacing: .22em; }
.tl-domains h2 { margin-top: 24px; margin-bottom: 0; font-size: clamp(34px, 3.3vw, 48px); }
.tl-domain-list { border-top: 1px solid rgba(255,255,255,.2); }
.tl-domain-list > div { display: grid; grid-template-columns: 50px 1fr; align-items: center; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.tl-domain-list span { color: #d9b28e; font: 12px Georgia, serif; }
.tl-domain-list p { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: .13em; }
.tl-domain-list small { display: block; margin-top: 2px; color: rgba(255,255,255,.58); font-size: 11px; font-weight: 400; letter-spacing: .06em; }

.tl-process { display: grid; grid-template-columns: 50% 50%; min-height: 820px; background: var(--tl-white); }
.tl-process__photo { min-height: 620px; background: var(--image) center / cover no-repeat; }
.tl-process__panel { display: flex; flex-direction: column; justify-content: center; padding: 100px clamp(50px, 7vw, 115px); }
.tl-process__panel > .tl-section-label { margin-bottom: 52px; }
.tl-process h2 { font-size: clamp(35px, 3.5vw, 52px); }
.tl-process__steps { margin-top: 16px; border-top: 1px solid var(--tl-line); }
.tl-process__steps > div { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--tl-line); }
.tl-process__steps b { color: var(--tl-terra); font: 12px Georgia, serif; }
.tl-process__steps span { font-size: 13px; font-weight: 700; }
.tl-process__steps small { color: #8d8177; font-size: 9px; font-weight: 800; letter-spacing: .15em; }

.tl-global__visual { position: relative; min-height: 760px; color: var(--tl-white); background: var(--image) center / cover no-repeat; }
.tl-global__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43,34,28,.82), rgba(43,34,28,.37) 60%, rgba(43,34,28,.13)); }
.tl-global__content { position: relative; z-index: 1; padding-top: 130px; padding-bottom: 130px; }
.tl-global__content .tl-section-label { margin-bottom: 72px; }
.tl-global .tl-kicker { color: #e7c29f; }
.tl-global h2 { max-width: 700px; margin-bottom: 28px; font-size: clamp(46px, 5vw, 70px); line-height: 1.35; }
.tl-global__content > p:not(.tl-kicker) { max-width: 590px; font-size: 14px; }
.tl-global__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 42px; }
.tl-global__tags span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .16em; }

.tl-strengths { padding: 140px 0 145px; background: var(--tl-ivory); }
.tl-strengths .tl-heading { grid-template-columns: 240px 1fr; }
.tl-strengths__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--tl-line); }
.tl-strengths article { min-height: 280px; padding: 42px 42px 22px; }
.tl-strengths article + article { border-left: 1px solid var(--tl-line); }
.tl-strengths article > span { color: var(--tl-terra); font: 14px Georgia, serif; }
.tl-strengths h3 { margin: 54px 0 20px; font-family: "Yu Mincho", serif; font-size: 23px; font-weight: 500; }
.tl-strengths article p { margin-bottom: 0; color: #746a62; font-size: 13px; }

.tl-company { padding: 140px 0; background: #ded0bb; }
.tl-company__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.tl-company__heading .tl-section-label { margin-bottom: 60px; }
.tl-company__heading h2 { margin-bottom: 25px; font-size: clamp(50px, 5.2vw, 70px); line-height: 1.05; }
.tl-company__heading h2 em { font-size: .45em; }
.tl-company__heading > p:last-child { max-width: 470px; color: #6e645b; font-size: 13px; }
.tl-company__table { margin: 0; border-top: 1px solid rgba(59,46,42,.28); }
.tl-company__table div { display: grid; grid-template-columns: 130px 1fr; padding: 24px 6px; border-bottom: 1px solid rgba(59,46,42,.28); }
.tl-company__table dt { color: #75695e; font-size: 12px; font-weight: 500; }
.tl-company__table dd { margin: 0; font-size: 13px; font-weight: 600; }

.tl-contact { padding: 130px 0; color: var(--tl-white); background: var(--tl-sage-dark); }
.tl-contact__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.tl-contact__copy .tl-section-label { margin-bottom: 65px; }
.tl-contact .tl-kicker { color: #e5c29f; }
.tl-contact h2 { margin-bottom: 24px; font-size: clamp(37px, 3.7vw, 52px); }
.tl-contact__copy > p:not(.tl-kicker) { max-width: 490px; color: rgba(255,255,255,.73); font-size: 13px; }
.tl-contact__types { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 30px; }
.tl-contact__types span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.28); font-size: 10px; }
.tl-contact__form { padding: 48px 52px; color: var(--tl-cocoa); background: var(--tl-white); box-shadow: var(--tl-shadow); }
.tl-contact__form p { margin-bottom: 18px; }
.tl-contact__form label { display: block; font-size: 12px; font-weight: 700; }
.tl-contact__form input[type="text"],
.tl-contact__form input[type="email"],
.tl-contact__form input[type="tel"],
.tl-contact__form textarea,
.tl-contact__form select {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  color: var(--tl-ink);
  border: 0;
  border-bottom: 1px solid #c9beb0;
  border-radius: 0;
  outline: none;
  background: #f7f2e9;
  transition: border-color .2s ease;
}
.tl-contact__form textarea { min-height: 120px; resize: vertical; }
.tl-contact__form input:focus,
.tl-contact__form textarea:focus { border-color: var(--tl-terra); }
.tl-contact__form input[type="submit"] {
  width: 100%;
  padding: 15px 20px;
  color: var(--tl-white);
  border: 0;
  border-radius: 0;
  background: var(--tl-terra);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  cursor: pointer;
  transition: background .2s ease;
}
.tl-contact__form input[type="submit"]:hover { background: #9b583a; }
.tl-contact__form .wpcf7-spinner { display: block; margin: 12px auto 0; }
.tl-contact__form .wpcf7-not-valid-tip { margin-top: 4px; font-size: 11px; }
.tl-contact__form .wpcf7-response-output { margin: 18px 0 0 !important; padding: 10px 12px !important; font-size: 12px; }

.tl-footer { padding: 70px 0 24px; color: var(--tl-white); background: #2d2723; }
.tl-footer__top { display: flex; align-items: flex-end; justify-content: space-between; padding-bottom: 64px; }
.tl-brand--footer .tl-brand__image { width: 285px; }
.tl-footer__top > p { margin: 0; color: #d3ad8a; font: italic 22px Georgia, serif; letter-spacing: .06em; }
.tl-footer__bottom { display: flex; justify-content: space-between; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.47); font-size: 9px; letter-spacing: .16em; }

.tl-reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.tl-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --tl-shell: min(100% - 48px, 1000px); }
  .tl-nav > a { min-width: 91px; }
  .tl-nav > a small { display: none; }
  .tl-heading { grid-template-columns: 180px 1fr 280px; }
  .tl-intro__grid { grid-template-columns: 180px 1fr; }
  .tl-process__panel { padding-inline: 54px; }
  .tl-contact__grid { gap: 70px; }
}

@media (max-width: 820px) {
  :root { --tl-shell: calc(100vw - 40px); }
  body.trilink-corporate-home { font-size: 15px; }
  .admin-bar .tl-header { top: 46px; }
  .tl-header__inner { width: calc(100vw - 36px); height: 72px; }
  .tl-brand__image { width: 185px; }
  .tl-nav { display: none; }
  .tl-menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 4px;
    padding: 0;
    color: currentColor;
    border: 0;
    background: transparent;
  }
  .tl-menu-button span { display: block; width: 23px; height: 1px; background: currentColor; transition: transform .25s ease, opacity .2s ease; }
  .tl-menu-button em { margin-top: 2px; font-size: 7px; font-style: normal; font-weight: 700; letter-spacing: .15em; }
  .is-menu-open .tl-menu-button span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .is-menu-open .tl-menu-button span:nth-child(2) { opacity: 0; }
  .is-menu-open .tl-menu-button span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
  .tl-mobile-nav {
    display: flex;
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    padding: 34px 24px;
    color: var(--tl-cocoa);
    background: var(--tl-ivory);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .admin-bar .tl-mobile-nav { top: 118px; }
  .is-menu-open .tl-mobile-nav { opacity: 1; visibility: visible; transform: none; }
  .tl-mobile-nav a { display: flex; align-items: baseline; justify-content: space-between; padding: 17px 5px; border-bottom: 1px solid var(--tl-line); font-family: "Yu Mincho", serif; font-size: 20px; }
  .tl-mobile-nav a span { font-family: Inter, sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .15em; }
  body.tl-menu-lock { overflow: hidden; }

  .tl-hero { min-height: 700px; height: 92svh; background-position: 58% center; }
  .tl-hero__shade { background: linear-gradient(90deg, rgba(39,31,25,.78), rgba(45,36,29,.28)); }
  .tl-hero__inner { padding-top: 72px; }
  .tl-hero h1 { font-size: clamp(53px, 16vw, 78px); }
  .tl-hero__lead { font-size: 14px; }
  .tl-hero__statement { right: 20px; bottom: 24px; font-size: 8px; }
  .tl-hero__note { display: none; }
  .tl-intro,
  .tl-business,
  .tl-strengths,
  .tl-company,
  .tl-contact { padding-block: 92px; }
  .tl-intro__grid,
  .tl-heading,
  .tl-domains__inner,
  .tl-company__grid,
  .tl-contact__grid { grid-template-columns: 1fr; gap: 42px; }
  .tl-intro__copy h2,
  .tl-heading h2,
  .tl-domains h2,
  .tl-process h2,
  .tl-global h2,
  .tl-company h2,
  .tl-contact h2 { font-size: clamp(32px, 8.8vw, 47px); }
  .tl-intro__body { gap: 24px; }
  .tl-facts { margin-top: 70px; }
  .tl-facts article { padding: 28px 18px; }
  .tl-facts strong { float: none; margin: 0 0 12px; }
  .tl-business__grid { grid-template-columns: 1fr; }
  .tl-business-card--large { grid-column: auto; min-height: 390px; }
  .tl-business-card { min-height: 350px; }
  .tl-domains { padding-block: 95px; }
  .tl-process { grid-template-columns: 1fr; }
  .tl-process__photo { min-height: 480px; }
  .tl-process__panel { padding: 85px 24px; }
  .tl-process__panel > .tl-section-label { margin-bottom: 40px; }
  .tl-global__visual { min-height: 700px; }
  .tl-global__content { padding-block: 100px; }
  .tl-strengths .tl-heading { grid-template-columns: 1fr; }
  .tl-strengths__grid { grid-template-columns: 1fr; }
  .tl-strengths article { min-height: 0; padding: 34px 12px; }
  .tl-strengths article + article { border-left: 0; border-top: 1px solid var(--tl-line); }
  .tl-strengths h3 { margin-top: 28px; }
  .tl-company__grid,
  .tl-contact__grid { gap: 65px; }
  .tl-contact__form { padding: 38px 32px; }
}

@media (max-width: 540px) {
  :root { --tl-shell: calc(100vw - 32px); }
  .tl-hero__content { padding-top: 18px; }
  .tl-eyebrow { margin-bottom: 24px; font-size: 9px; }
  .tl-hero h1 { margin-bottom: 23px; font-size: 55px; }
  .tl-hero__actions { flex-direction: column; align-items: flex-start; }
  .tl-button { min-width: 205px; min-height: 50px; }
  .tl-hero__statement b { padding-inline: 2px; }
  .tl-intro__body { grid-template-columns: 1fr; }
  .tl-facts { grid-template-columns: 1fr; }
  .tl-facts article { padding: 25px 6px; }
  .tl-facts article + article { border-left: 0; border-top: 1px solid var(--tl-line); }
  .tl-facts strong { float: left; min-width: 55px; margin: 0 15px 0 0; }
  .tl-heading { margin-bottom: 45px; }
  .tl-business-card,
  .tl-business-card--large { min-height: 330px; }
  .tl-business-card__content { grid-template-columns: 34px 1fr; padding: 27px 24px; }
  .tl-business-card__content h3 { font-size: 23px; }
  .tl-domains__inner { gap: 55px; }
  .tl-process__photo { min-height: 390px; }
  .tl-process__steps > div { grid-template-columns: 38px 1fr; }
  .tl-process__steps small { display: none; }
  .tl-global h2 { font-size: 42px; }
  .tl-company__table div { grid-template-columns: 90px 1fr; gap: 8px; }
  .tl-contact__form { padding: 32px 22px; }
  .tl-footer__top { align-items: flex-start; flex-direction: column; gap: 34px; padding-bottom: 45px; }
  .tl-brand--footer .tl-brand__image { width: 240px; }
  .tl-footer__bottom { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tl-reveal { opacity: 1; transform: none; transition: none; }
  .tl-business-card__image { transition: none; }
}
