:root {
  --tz-color-brand: #ffbe2e;
  --tz-color-brand-deep: #e6a400;
  --tz-color-ink: #1f1f1f;
  --tz-color-dark: #090e12;
  --tz-color-text: #555;
  --tz-color-muted: #a1a1a1;
  --tz-color-line: #dfdfdf;
  --tz-color-paper: #f4f4f2;
  --tz-color-white: #fff;
  --tz-font-sans: "Bai Jamjuree", Arial, sans-serif;
  --tz-container: 1380px;
  --tz-gutter: clamp(15px, 2.1vw, 30px);
  --tz-space-section: clamp(80px, 8vw, 140px);
  --tz-title-xl: clamp(3.1rem, 7.15vw, 7.25rem);
  --tz-title-lg: clamp(2.35rem, 5.1vw, 5rem);
  --tz-title-md: clamp(2rem, 3.5vw, 3.75rem);
  --tz-shadow: 0 20px 60px rgb(0 0 0 / 12%);
  --tz-ease: cubic-bezier(.2, .75, .25, 1);
  --tz-grid-line: rgb(31 31 31 / 8%);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--tz-color-paper);
  color: var(--tz-color-text);
  font-family: var(--tz-font-sans);
  font-size: 16px;
  line-height: 1.5;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--tz-color-ink); line-height: .98; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--tz-color-white);
  color: var(--tz-color-ink);
}
:focus-visible { outline: 3px solid var(--tz-color-brand); outline-offset: 3px; }

.site-main { min-height: 60vh; }
.section-shell { width: min(100% - (2 * var(--tz-gutter)), var(--tz-container)); margin-inline: auto; }
.grid-lines { position: relative; isolation: isolate; }
.grid-lines::before {
  position: absolute;
  z-index: -1;
  inset: 0 var(--tz-gutter);
  content: "";
  pointer-events: none;
  background-image: linear-gradient(to right, var(--tz-grid-line) 1px, transparent 1px);
  background-size: 50% 100%;
  border-right: 1px solid var(--tz-grid-line);
}

.button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 25px;
  border: 1px solid transparent;
  background: var(--tz-color-brand);
  color: var(--tz-color-ink);
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: uppercase;
  transition: color .25s var(--tz-ease), background-color .25s var(--tz-ease), transform .25s var(--tz-ease);
}
.button:hover { background: var(--tz-color-ink); color: var(--tz-color-white); transform: translateY(-2px); }
.button--dark { background: var(--tz-color-ink); color: var(--tz-color-white); }
.button--dark:hover { background: var(--tz-color-brand); color: var(--tz-color-ink); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 7px 12px;
  background: var(--tz-color-white);
  color: var(--tz-color-ink);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.section-label span { width: 7px; height: 7px; background: var(--tz-color-brand); }
.section-title { margin-bottom: 35px; font-size: var(--tz-title-lg); font-weight: 500; letter-spacing: -.045em; text-transform: uppercase; }

@media (max-width: 767px) {
  :root { --tz-space-section: 72px; --tz-title-lg: clamp(2rem, 9vw, 2.7rem); }
  body { font-size: 15px; }
  .grid-lines::before { inset: 0 15px; background-size: 50% 100%; }
  .section-title { letter-spacing: -.035em; }
  .button { min-height: 60px; padding-inline: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Header and navigation */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--tz-color-white);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 170px 1fr auto 34px;
  min-height: 94px;
  align-items: center;
  gap: 24px;
  padding-inline: max(var(--tz-gutter), calc((100vw - var(--tz-container)) / 2));
}
.site-branding img { width: 142px; max-height: 48px; object-fit: contain; }
.custom-logo-link { display: inline-flex; }
.primary-navigation .menu,
.mobile-menu .menu,
.footer-links .menu { margin: 0; padding: 0; list-style: none; }
.primary-navigation > .menu { display: flex; align-items: center; gap: clamp(22px, 2vw, 36px); }
.primary-navigation .menu-item { position: relative; }
.primary-navigation .menu-item > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: color .2s ease;
}
.primary-navigation .menu-item-has-children > a::after { margin-left: 6px; color: var(--tz-color-brand); content: "⌟"; font-size: 9px; transform: rotate(-45deg); }
.primary-navigation .menu-item > a:hover { color: var(--tz-color-brand); }
.primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  min-width: 210px;
  padding: 14px 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: var(--tz-color-white);
  color: var(--tz-color-ink);
  box-shadow: var(--tz-shadow);
  list-style: none;
  transition: .2s ease;
}
.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-header__actions { display: flex; align-items: center; gap: 22px; }
.header-phone { display: flex; align-items: center; gap: 9px; font-weight: 600; white-space: nowrap; }
.header-phone__icon {
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--tz-color-white);
  border-radius: 50%;
  color: var(--tz-color-brand);
  font-size: 10px;
  letter-spacing: -1px;
}
.site-header__cta { min-height: 54px; padding-inline: 26px; }
.menu-toggle {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle__bars { display: grid; width: 19px; gap: 6px; }
.menu-toggle__bars i { display: block; height: 1px; background: currentColor; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  padding: 120px max(30px, 8vw) 50px;
  background: rgb(9 14 18 / 98%);
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu .menu > li { border-bottom: 1px solid rgb(255 255 255 / 12%); }
.mobile-menu .menu a { display: block; padding: 14px 0; color: var(--tz-color-white); font-size: clamp(1.6rem, 6vw, 2.7rem); font-weight: 500; text-transform: uppercase; }
.mobile-menu .sub-menu { padding-left: 20px; list-style: none; }
.mobile-menu .sub-menu a { padding-block: 8px; font-size: 1rem; }
.mobile-menu__contact { display: grid; gap: 8px; margin-top: 35px; color: var(--tz-color-muted); }

/* Footer */
.site-footer {
  position: relative;
  padding-top: 240px;
  overflow: hidden;
  background: linear-gradient(rgb(9 14 18 / 45%), rgb(9 14 18 / 88%)), url("../images/footer-bg.jpg") center / cover;
  color: #d4d4d4;
}
.site-footer.grid-lines::before { --tz-grid-line: rgb(255 255 255 / 11%); z-index: 0; }
.site-footer__watermark { position: absolute; top: 75px; left: 50%; width: min(73vw, 1055px); transform: translateX(-50%); opacity: .28; }
.site-footer__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .8fr 1.2fr; gap: 8vw; padding: 30px 0 90px; }
.footer-about { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-logo { margin-bottom: 15px; }
.footer-logo img { width: 150px; }
.footer-about p { margin-bottom: 0; }
.footer-phone { color: var(--tz-color-brand); font-size: 1.6rem; font-weight: 600; }
.social-links { display: flex; gap: 22px; margin-top: 20px; }
.social-links a { color: var(--tz-color-white); font-weight: 600; }
.footer-links h2,
.footer-newsletter h2 { margin-bottom: 30px; color: var(--tz-color-white); font-size: 1.1rem; line-height: 1.45; text-transform: uppercase; }
.footer-links .menu { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 35px; }
.footer-links a:hover,
.footer-newsletter a { color: var(--tz-color-brand); }
.newsletter-form { display: grid; grid-template-columns: 1fr 60px; border: 1px solid rgb(255 255 255 / 12%); }
.newsletter-form input { min-width: 0; padding: 18px; border: 0; background: rgb(255 255 255 / 7%); color: var(--tz-color-white); }
.newsletter-form button { border: 0; background: var(--tz-color-brand); color: var(--tz-color-ink); cursor: pointer; }
.footer-newsletter p { margin-top: 20px; }
.site-footer__bottom { position: relative; z-index: 1; padding-block: 27px; border-top: 1px solid rgb(255 255 255 / 12%); text-align: center; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom span { color: var(--tz-color-brand); }
.back-to-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border: 0;
  opacity: 0;
  visibility: hidden;
  background: #aaa;
  color: var(--tz-color-white);
  cursor: pointer;
  transition: opacity .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; }
.mobile-utility { display: none; }

@media (max-width: 1199px) {
  .site-header__inner { grid-template-columns: 1fr auto; min-height: 88px; }
  .primary-navigation, .site-header__actions { display: none; }
  .menu-toggle { justify-self: end; }
  .site-footer__inner { gap: 5vw; }
}

@media (max-width: 767px) {
  body { padding-bottom: 54px; }
  .site-header__inner { min-height: 90px; padding-inline: 15px; }
  .site-branding img { width: 140px; }
  .site-footer { padding-top: 110px; background-position: 45% center; text-align: center; }
  .site-footer__watermark { display: none; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 42px; padding: 0 17px 55px; }
  .footer-about { align-items: center; }
  .footer-phone { font-size: 1.45rem; }
  .footer-links .menu { gap: 14px 28px; }
  .footer-newsletter h2 { max-width: 330px; margin-inline: auto; }
  .footer-newsletter p { font-size: .9rem; }
  .site-footer__bottom { padding-bottom: 28px; font-size: .85rem; }
  .mobile-utility {
    position: fixed;
    z-index: 90;
    bottom: 0;
    left: 0;
    display: grid;
    width: 100%;
    height: 55px;
    grid-template-columns: repeat(3, 1fr);
    background: var(--tz-color-white);
    color: var(--tz-color-ink);
    border-top: 1px solid var(--tz-color-line);
  }
  .mobile-utility a { position: relative; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--tz-color-line); font-size: 1.45rem; }
  .mobile-utility b { position: absolute; top: 9px; left: calc(50% + 7px); display: grid; width: 21px; height: 21px; place-items: center; border-radius: 50%; background: var(--tz-color-brand); color: var(--tz-color-white); font-size: .75rem; }
  .back-to-top { right: 15px; bottom: 70px; }
}

/* Home: hero */
.home-hero {
  min-height: 990px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(9 14 18 / 55%), rgb(9 14 18 / 42%)),
    url("../images/h1-banner1.jpg") center / cover no-repeat;
  color: var(--tz-color-white);
}
.home-hero.grid-lines::before { --tz-grid-line: rgb(255 255 255 / 15%); z-index: 0; }
.home-hero__inner { position: relative; min-height: inherit; padding-top: 315px; }
.home-hero__content { position: relative; z-index: 2; max-width: 1050px; }
.home-hero h1 {
  margin-bottom: 32px;
  color: var(--tz-color-white);
  font-size: var(--tz-title-xl);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .95;
  text-transform: uppercase;
  animation: tz-hero-in .85s .15s both var(--tz-ease);
}
.home-hero__content > p { margin-bottom: 48px; color: rgb(255 255 255 / 84%); font-size: 1rem; text-transform: uppercase; animation: tz-hero-in .85s .28s both var(--tz-ease); }
.home-hero__content > .button { animation: tz-hero-in .85s .4s both var(--tz-ease); }
.home-hero__stat {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 210px;
  display: flex;
  width: 307px;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  background: var(--tz-color-brand);
  color: var(--tz-color-ink);
}
.home-hero__stat::after { position: absolute; right: 0; bottom: 0; width: 55px; height: 55px; background: var(--tz-color-ink); content: ""; }
.home-hero__stat strong { font-size: clamp(5.5rem, 7.5vw, 7.7rem); font-weight: 600; letter-spacing: -.08em; line-height: .9; }
.home-hero__stat strong span { display: block; font-size: .72em; font-weight: 500; line-height: .6; }
.home-hero__stat p { margin: 0; font-size: 1.05rem; line-height: 1.35; text-transform: uppercase; }
.home-hero__stat i { position: absolute; right: 55px; bottom: 0; width: 33px; height: 33px; background: var(--tz-color-ink); }
.home-hero__word { position: absolute; right: -4px; bottom: -30px; margin: 0; color: rgb(255 255 255 / 23%); font-size: clamp(10rem, 18vw, 17rem); font-weight: 600; letter-spacing: -.06em; line-height: .8; text-transform: uppercase; }
@keyframes tz-hero-in { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }

.js .reveal-item { opacity: 0; transform: translateY(36px); transition: opacity .75s var(--tz-ease), transform .75s var(--tz-ease); }
.js .reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

/* Home: values */
.values-section { position: relative; z-index: 5; min-height: 530px; background: var(--tz-color-paper); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: start; }
.value-card {
  min-height: 392px;
  padding: 29px 40px 42px;
  border: 1px solid var(--tz-color-line);
  background: var(--tz-color-white);
}
.value-card:nth-child(1), .value-card:nth-child(2) { margin-top: -120px; }
.value-card__number { margin-bottom: 56px; color: var(--tz-color-ink); font-size: 1.2rem; font-weight: 600; }
.value-card h2 { min-height: 80px; margin-bottom: 20px; font-size: 1.8rem; font-weight: 500; text-transform: uppercase; }
.value-card > p:last-child { margin: 0; color: #696969; }
.value-feature {
  position: relative;
  display: flex;
  min-height: 392px;
  align-items: flex-end;
  padding: 32px 40px 45px;
  overflow: hidden;
  background: linear-gradient(rgb(9 14 18 / 18%), rgb(9 14 18 / 32%)), url("../images/h1-banner2.jpg") center / cover;
  color: var(--tz-color-white);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}
.value-feature b { position: absolute; right: 0; bottom: 0; display: grid; width: 52px; height: 52px; place-items: center; background: var(--tz-color-brand); color: var(--tz-color-ink); }
.values-section__word { position: absolute; z-index: -1; bottom: -65px; left: 0; margin: 0; color: #ebebe9; font-size: clamp(10rem, 18vw, 17rem); font-weight: 600; letter-spacing: -.06em; line-height: .8; text-transform: uppercase; }

/* Home: about */
.about-section { position: relative; z-index: 1; padding: 110px 0 145px; background: var(--tz-color-paper); }
.about-section__inner { display: grid; grid-template-columns: .95fr 1.15fr; align-items: start; gap: clamp(75px, 10vw, 150px); }
.about-visual { position: relative; padding-top: 10px; }
.about-visual__image { width: 100%; min-height: 580px; object-fit: cover; }
.about-stat {
  position: absolute;
  right: -55px;
  bottom: -70px;
  display: flex;
  width: 250px;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 29px;
  background: var(--tz-color-brand);
  color: var(--tz-color-ink);
  text-transform: uppercase;
}
.about-stat strong { font-size: 5rem; font-weight: 600; letter-spacing: -.07em; line-height: 1; }
.about-stat span { font-weight: 600; }
.about-stat i { position: absolute; right: 0; bottom: 0; width: 31px; height: 31px; background: var(--tz-color-white); }
.pixel { position: absolute; width: 62px; height: 62px; background: var(--tz-color-paper); }
.about-visual .pixel--one { top: 10px; right: 110px; }
.about-visual .pixel--two { top: 72px; right: 48px; }
.about-copy { position: relative; padding-top: 0; }
.about-copy .section-title { margin-bottom: 45px; font-size: clamp(3.7rem, 5.1vw, 5rem); }
.about-copy__lead { max-width: 630px; margin-bottom: 24px; color: #636363; font-size: 1.3rem; font-weight: 600; }
.about-copy > p:not(.section-label) { max-width: 620px; }
.about-copy ul { margin: 30px 0 45px; padding: 0; color: var(--tz-color-ink); font-weight: 600; list-style: none; }
.about-copy li::before { margin-right: 14px; content: "+"; font-size: 1.2em; font-weight: 400; }
.about-copy__factory { position: absolute; z-index: -1; right: 0; bottom: -110px; width: 430px; opacity: .8; }

/* Home: moving type */
.industry-marquee { overflow: hidden; border-block: 1px solid var(--tz-color-line); background: var(--tz-color-paper); }
.industry-marquee__track { display: flex; width: max-content; align-items: center; gap: 35px; padding-block: 26px; animation: tz-marquee 28s linear infinite; color: #dededc; }
.industry-marquee span { font-size: clamp(3rem, 5vw, 5rem); font-weight: 500; line-height: 1; text-transform: uppercase; }
.industry-marquee i { color: var(--tz-color-brand); font-size: 1.6rem; font-style: normal; }
@keyframes tz-marquee { to { transform: translateX(-50%); } }

/* Home: services sticky story */
.services-section {
  padding: 115px 0 120px;
  background: linear-gradient(rgb(10 12 14 / 35%), rgb(5 9 12 / 91%)), url("../images/h1-bg02.jpg") center top / cover fixed;
  color: rgb(255 255 255 / 70%);
}
.services-section.grid-lines::before { --tz-grid-line: rgb(255 255 255 / 10%); z-index: 0; }
.services-intro { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .7fr; gap: 10vw; margin-bottom: 80px; }
.services-intro .section-title { color: var(--tz-color-white); }
.services-intro__aside { display: flex; align-items: flex-start; gap: 35px; }
.services-intro__aside p { max-width: 400px; margin: 0; }
.services-intro__aside .button { flex: 0 0 auto; }
.services-stack { position: relative; z-index: 2; padding-bottom: 150px; }
.service-card {
  position: sticky;
  top: calc(105px + (var(--service-index) * 8px));
  display: grid;
  min-height: 560px;
  grid-template-columns: .92fr 1.08fr;
  margin-bottom: 430px;
  overflow: hidden;
  background: var(--tz-color-white);
  color: var(--tz-color-text);
  box-shadow: 0 24px 65px rgb(0 0 0 / 23%);
}
.service-card:last-child { margin-bottom: 0; }
.service-card__content { display: flex; flex-direction: column; padding: 40px 40px 55px; }
.service-card__number { padding-bottom: 20px; border-bottom: 1px solid var(--tz-color-line); color: var(--tz-color-ink); font-weight: 600; }
.service-card h3 { max-width: 430px; margin: 25px 0 40px; font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 500; text-transform: uppercase; }
.service-card ul { margin: 0 0 35px; padding: 0; color: var(--tz-color-ink); font-weight: 600; list-style: none; }
.service-card li::before { margin-right: 12px; content: "+"; }
.service-card__content > p:not(.service-card__number) { max-width: 500px; }
.service-card .text-link { margin-top: auto; }
.service-card__image, .service-card__image img { width: 100%; height: 100%; }
.service-card__image img { object-fit: cover; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--tz-color-ink); font-size: .8rem; font-weight: 700; text-transform: uppercase; }

/* Home: workflow */
.workflow-section { padding: 130px 0 150px; background: var(--tz-color-paper); }
.workflow-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; margin-bottom: 65px; }
.workflow-heading .section-title { margin: 0; }
.workflow-heading > div:last-child { max-width: 420px; padding-bottom: 10px; }
.workflow-heading h3 { margin-bottom: 10px; font-size: 1.6rem; font-weight: 500; }
.process-accordion { display: flex; min-height: 625px; overflow: hidden; }
.process-item { position: relative; min-width: 100px; flex: 1; overflow: hidden; cursor: pointer; transition: flex .55s var(--tz-ease); }
.process-item.is-active, .process-item:hover, .process-item:focus-visible { flex: 6; }
.process-item img { width: 100%; height: 100%; object-fit: cover; }
.process-item::after { position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgb(0 0 0 / 62%)); content: ""; }
.process-item > div { position: absolute; z-index: 1; right: 25px; bottom: 28px; left: 25px; display: flex; align-items: flex-end; justify-content: space-between; color: var(--tz-color-white); white-space: nowrap; }
.process-item h3 { margin: 0; color: inherit; font-size: 1.5rem; font-weight: 500; text-transform: uppercase; }

/* Home: projects */
.projects-section { padding: 130px 0 150px; overflow: hidden; background: url("../images/h1-bg04.jpg") center / cover; }
.projects-heading { display: flex; align-items: flex-end; justify-content: space-between; }
.projects-heading .section-title { margin-bottom: 45px; }
.carousel-controls { display: flex; gap: 8px; margin-bottom: 45px; }
.carousel-controls button { width: 52px; height: 52px; border: 1px solid var(--tz-color-line); background: var(--tz-color-white); cursor: pointer; }
.project-track { display: flex; gap: 20px; padding-inline: max(var(--tz-gutter), calc((100vw - var(--tz-container)) / 2)); overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; scroll-snap-type: x mandatory; }
.project-track::-webkit-scrollbar, .team-track::-webkit-scrollbar { display: none; }
.project-card { position: relative; min-width: min(420px, 78vw); height: 470px; overflow: hidden; scroll-snap-align: start; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--tz-ease); }
.project-card:hover img { transform: scale(1.04); }
.project-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px 30px; background: linear-gradient(transparent 45%, rgb(0 0 0 / 75%)); color: var(--tz-color-white); }
.project-card__overlay span { margin-bottom: 9px; color: var(--tz-color-brand); font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.project-card__overlay h3 { margin: 0; color: inherit; font-size: 1.55rem; font-weight: 500; line-height: 1.12; text-transform: uppercase; }

/* Home: team */
.team-section { padding: 130px 0 150px; overflow: hidden; background: var(--tz-color-paper); }
.team-section__heading { text-align: center; }
.team-section__heading .section-title { margin-bottom: 75px; }
.team-track { display: flex; gap: clamp(22px, 4.5vw, 68px); overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
.team-card { min-width: calc((100% - 204px) / 4); scroll-snap-align: start; }
.team-card img { width: 100%; aspect-ratio: .81; object-fit: cover; }
.team-card h3 { display: flex; justify-content: space-between; margin: 20px 0 8px; font-size: 1.35rem; font-weight: 500; text-transform: uppercase; }
.team-card p { padding-bottom: 20px; border-bottom: 1px solid var(--tz-color-line); }

/* Home: premium CTA */
.premium-section {
  min-height: 925px;
  padding: 165px 0 70px;
  overflow: hidden;
  background: linear-gradient(90deg, rgb(20 30 40 / 75%), rgb(20 20 20 / 38%)), url("../images/h1-bg05.jpg") center / cover fixed;
  color: rgb(255 255 255 / 78%);
}
.premium-section.grid-lines::before { --tz-grid-line: rgb(255 255 255 / 15%); z-index: 0; }
.premium-section__inner { position: relative; z-index: 1; }
.premium-section .section-title { max-width: 650px; margin-bottom: 55px; color: var(--tz-color-white); }
.premium-features { display: flex; max-width: 700px; gap: 40px; margin-bottom: 65px; }
.premium-features article { display: flex; flex: 1; align-items: flex-start; gap: 22px; }
.premium-features article > span { display: grid; min-width: 81px; height: 81px; place-items: center; background: rgb(255 255 255 / 13%); color: var(--tz-color-brand); font-size: 2rem; }
.premium-features h3 { margin: 7px 0 13px; color: var(--tz-color-white); font-size: 1.15rem; font-weight: 500; text-transform: uppercase; }
.premium-section__word { position: absolute; right: -70px; bottom: -165px; margin: 0; color: rgb(255 255 255 / 36%); font-size: clamp(10rem, 19vw, 18rem); font-weight: 500; line-height: 1; text-transform: uppercase; }

/* Home: testimonials */
.testimonials-section { padding: 0 0 150px; background: var(--tz-color-paper); }
.testimonials-section__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8.5vw; }
.testimonial-visual { position: relative; }
.testimonial-visual img { width: 100%; aspect-ratio: 1 / 1.03; object-fit: cover; }
.testimonial-visual .pixel--one { top: 0; right: 80px; }
.testimonial-visual .pixel--two { top: 62px; right: 18px; }
.testimonial-copy { padding-top: 80px; }
.testimonial-copy .section-title { margin-bottom: 45px; }
.testimonial-copy blockquote { position: relative; margin: 0; padding: 0 0 0 80px; }
.testimonial-copy blockquote::before { position: absolute; top: -24px; left: 0; color: var(--tz-color-brand); content: "”"; font-size: 6rem; font-weight: 700; line-height: 1; }
.testimonial-copy blockquote > p { color: var(--tz-color-ink); font-size: clamp(1.25rem, 1.8vw, 1.75rem); font-weight: 500; line-height: 1.25; }
.testimonial-copy blockquote footer { display: flex; align-items: center; gap: 15px; margin-top: 55px; }
.testimonial-copy blockquote footer img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.testimonial-copy cite { display: block; color: var(--tz-color-ink); font-size: 1.2rem; font-style: normal; font-weight: 500; text-transform: uppercase; }
.testimonial-copy blockquote footer span { display: block; color: var(--tz-color-muted); }

/* Home: contact */
.contact-section {
  padding: 165px 0;
  background: linear-gradient(rgb(20 22 23 / 58%), rgb(9 19 21 / 83%)), url("../images/h1-banner6.jpg") center / cover fixed;
  color: rgb(255 255 255 / 78%);
}
.contact-section.grid-lines::before { --tz-grid-line: rgb(255 255 255 / 15%); z-index: 0; }
.contact-section__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; }
.contact-section .section-title { color: var(--tz-color-white); }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; margin-top: 120px; }
.contact-details h3 { color: var(--tz-color-white); font-size: 1.15rem; font-weight: 500; text-transform: uppercase; }
.contact-details a { display: block; }
.contact-details div:last-child a:first-of-type { color: var(--tz-color-brand); font-size: 1.5rem; font-weight: 500; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 32px 20px; }
.field { display: grid; gap: 10px; }
.field--full, .form-notice { grid-column: 1 / -1; }
.field label { color: var(--tz-color-white); font-size: 1.15rem; font-weight: 500; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgb(255 255 255 / 12%); border-radius: 0; background: rgb(255 255 255 / 14%); color: var(--tz-color-white); }
.field input, .field select { height: 61px; padding: 0 20px; }
.field textarea { min-height: 140px; padding: 20px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgb(255 255 255 / 72%); }
.contact-form__trap { position: absolute; left: -9999px; }
.form-notice { margin: 0; padding: 13px 16px; background: rgb(255 255 255 / 12%); }
.form-notice--success { border-left: 4px solid #5fbd74; }
.form-notice--error { border-left: 4px solid #e65d5d; }

/* Home: news */
.blog-section { padding: 130px 0 150px; background: var(--tz-color-paper); }
.blog-section .section-heading { text-align: center; }
.blog-section .section-title { margin-bottom: 75px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(25px, 4vw, 60px); }
.post-card__image { display: block; overflow: hidden; }
.post-card__image img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; filter: saturate(.75); transition: transform .5s var(--tz-ease), filter .5s ease; }
.post-card:hover .post-card__image img { transform: scale(1.03); filter: saturate(1); }
.post-card__meta { display: flex; gap: 8px; margin-top: 18px; }
.post-card__meta span, .post-card__meta time { padding: 5px 11px; background: var(--tz-color-white); color: var(--tz-color-ink); font-size: .75rem; }
.post-card h3 { margin: 15px 0 28px; font-size: clamp(1.35rem, 2vw, 1.9rem); font-weight: 500; line-height: 1.15; text-transform: uppercase; }

@media (max-width: 1199px) {
  .home-hero__stat { right: var(--tz-gutter); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { margin-top: -120px; }
  .value-card:nth-child(3), .value-feature { margin-top: 0; }
  .team-card { min-width: calc((100% - 90px) / 3); }
  .services-intro__aside { display: block; }
  .services-intro__aside .button { margin-top: 22px; }
}

@media (max-width: 767px) {
  .home-hero { min-height: 897px; background-position: 45% center; }
  .home-hero__inner { padding-top: 150px; text-align: center; }
  .home-hero h1 { margin-bottom: 32px; font-size: clamp(2.4rem, 10.4vw, 3.2rem); letter-spacing: -.04em; }
  .home-hero__content > p { margin-bottom: 30px; font-size: .94rem; line-height: 1.55; }
  .home-hero__stat { right: 0; bottom: 304px; left: 0; width: 100%; min-height: 172px; padding: 22px 32px 30px; text-align: left; }
  .home-hero__stat strong { font-size: 3.7rem; letter-spacing: -.05em; }
  .home-hero__stat strong span { display: inline; font-size: inherit; }
  .home-hero__stat p { font-size: 1rem; }
  .home-hero__word { right: 19px; bottom: 160px; font-size: 4.5rem; }

  .values-section { min-height: 0; padding: 0 15px 90px; }
  .values-grid { display: block; width: 100%; }
  .value-card, .value-card:nth-child(1), .value-card:nth-child(2) { min-height: 318px; margin: 0 0 26px; padding: 29px 30px; text-align: center; }
  .value-card__number { margin-bottom: 50px; }
  .value-card h2 { min-height: auto; margin-bottom: 25px; font-size: 1.35rem; }
  .value-feature, .values-section__word { display: none; }

  .about-section { padding: 0 0 85px; }
  .about-section__inner { display: flex; flex-direction: column; gap: 90px; }
  .about-visual { width: 100%; }
  .about-visual__image { min-height: auto; aspect-ratio: .83; }
  .about-stat { right: 7px; bottom: -15px; width: 240px; min-height: 166px; padding: 24px 28px; }
  .about-stat strong { font-size: 3.9rem; }
  .about-visual .pixel--one { width: 36px; height: 36px; top: auto; right: auto; bottom: 0; left: 22px; }
  .about-visual .pixel--two { display: none; }
  .about-copy { text-align: center; }
  .about-copy .section-title { font-size: 2rem; line-height: 1.05; }
  .about-copy__lead { font-size: 1.12rem; }
  .about-copy ul { line-height: 1.8; }
  .about-copy .button { display: none; }
  .about-copy__factory { position: relative; right: auto; bottom: auto; width: 78%; margin: 10px auto -40px; }

  .industry-marquee__track { gap: 20px; padding-block: 20px; }
  .industry-marquee span { font-size: 2.1rem; }

  .services-section { padding: 80px 0; background-attachment: scroll; }
  .services-intro { display: flex; flex-direction: column; gap: 20px; margin-bottom: 38px; text-align: center; }
  .services-intro .section-title { font-size: 2.15rem; }
  .services-intro__aside { display: flex; flex-direction: column; align-items: center; }
  .services-intro__aside p { font-size: .84rem; }
  .services-stack { padding-bottom: 0; }
  .service-card { position: relative; top: auto; display: flex; min-height: 0; flex-direction: column-reverse; margin-bottom: 18px; box-shadow: none; }
  .service-card__image { height: 272px; }
  .service-card__content { min-height: 365px; padding: 22px 20px 28px; text-align: center; }
  .service-card__number { padding-bottom: 16px; }
  .service-card h3 { margin: 18px 0 25px; font-size: 1.35rem; }
  .service-card ul { margin-bottom: 25px; font-size: .84rem; }
  .service-card .text-link { display: none; }

  .workflow-section { padding: 80px 0; }
  .workflow-heading { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .process-accordion { display: grid; min-height: 0; gap: 15px; }
  .process-item, .process-item.is-active { min-width: 0; height: 300px; flex: none; }
  .process-item > div { flex-direction: column; align-items: flex-start; }

  .projects-section { padding: 80px 0; }
  .projects-heading { display: block; text-align: center; }
  .projects-heading .section-title { margin-bottom: 38px; }
  .carousel-controls { display: none; }
  .project-track { padding-inline: 15px; }
  .project-card { min-width: 84vw; height: 400px; }

  .team-section { padding: 80px 0; }
  .team-section__heading .section-title { margin-bottom: 40px; font-size: 2.05rem; }
  .team-track { gap: 18px; }
  .team-card { min-width: 100%; }

  .premium-section { min-height: 764px; padding: 92px 0 60px; background-attachment: scroll; text-align: center; }
  .premium-section .section-title { margin-bottom: 35px; font-size: 2.15rem; }
  .premium-features { display: block; margin-bottom: 40px; }
  .premium-features article { display: block; margin-bottom: 25px; }
  .premium-features article > span { width: 81px; margin: 0 auto 22px; }
  .premium-features p { margin-bottom: 0; }
  .premium-section__word { display: none; }

  .testimonials-section { padding: 80px 0; }
  .testimonials-section__inner { display: flex; flex-direction: column; gap: 30px; }
  .testimonial-visual img { aspect-ratio: 1 / .98; }
  .testimonial-copy { padding-top: 0; text-align: center; }
  .testimonial-copy .section-title { font-size: 2rem; }
  .testimonial-copy blockquote { padding: 0 20px; text-align: left; }
  .testimonial-copy blockquote::before { top: auto; right: 4px; bottom: 130px; left: auto; }
  .testimonial-copy blockquote > p { display: -webkit-box; overflow: hidden; font-size: 1.3rem; -webkit-box-orient: vertical; -webkit-line-clamp: 6; }
  .testimonial-copy blockquote footer { margin-top: 32px; }

  .contact-section { padding: 88px 0 110px; background-attachment: scroll; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .contact-copy { text-align: center; }
  .contact-section .section-title { margin-bottom: 38px; font-size: 2rem; }
  .contact-details { grid-template-columns: 1fr; gap: 20px; margin-top: 0; }
  .contact-details h3 { margin-bottom: 12px; }
  .contact-form { grid-template-columns: 1fr; gap: 32px; margin-top: 35px; }
  .field--full, .form-notice { grid-column: auto; }

  .blog-section { padding: 80px 0; }
  .blog-section .section-title { margin-bottom: 38px; font-size: 2rem; }
  .blog-grid { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .post-card { min-width: 100%; scroll-snap-align: start; }
}
