:root {
  --ink: #171a1c;
  --ink-soft: #2b3033;
  --paper: #f4f1ea;
  --white: #ffffff;
  --concrete: #dcd8d0;
  --muted: #686d70;
  --yellow: #f2b705;
  --yellow-dark: #d59e00;
  --content: min(1240px, calc(100vw - 56px));
  --text-width: 720px;
  --shadow: 0 24px 70px rgba(23, 26, 28, 0.12);
  --ease: cubic-bezier(.2,.75,.2,1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.intro-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.site {
  min-height: 100vh;
  overflow: clip;
  opacity: 1;
  transform: none;
}

.home-page.intro-pending .site {
  opacity: 0;
  transform: translateY(18px);
}

.home-page.site-ready .site {
  opacity: 1;
  transform: none;
  transition: opacity .9s ease, transform 1s var(--ease);
}

.home-page.site-instant .site {
  transition-duration: .22s;
}

.skip-home-intro .site-intro {
  display: none;
}

.skip-home-intro .home-page.intro-pending .site {
  opacity: 1;
  transform: none;
}

.shell {
  width: var(--content);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 5000;
  padding: 12px 16px;
  background: var(--white);
  transform: translateY(-140%);
}

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

/* Intro */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
  opacity: 1;
  visibility: visible;
  transition: opacity .85s ease, visibility 0s linear .9s;
}

.site-intro.is-leaving {
  opacity: 0;
}

.site-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-door {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  transition: transform 1s var(--ease);
}

.intro-door-left {
  left: 0;
  width: 42%;
  background: var(--yellow);
  transform: translateX(-100%);
}

.intro-door-right {
  right: 0;
  width: 58%;
  background: var(--ink);
  transform: translateX(100%);
}

.site-intro.is-ready .intro-door-left,
.site-intro.is-ready .intro-door-right {
  transform: translateX(0);
}

.site-intro.is-leaving .intro-door-left,
.site-intro.is-leaving .intro-door-right {
  transform: translateX(0);
}

.intro-ghost {
  position: absolute;
  left: 5vw;
  bottom: -0.18em;
  z-index: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(11rem, 31vw, 36rem);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.09em;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  opacity: 0;
  transform: translateY(14%);
  transition: opacity .75s ease .3s, transform 1s var(--ease) .3s;
}

.site-intro.is-ready .intro-ghost {
  opacity: 1;
  transform: translateY(0);
}

.intro-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100vw - 64px));
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
}

.intro-mark {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 160px;
}

.intro-mark span {
  display: block;
  width: clamp(54px, 7vw, 92px);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .55s ease, transform .85s var(--ease);
}

.intro-mark .mark-yellow {
  height: clamp(120px, 16vw, 204px);
  background: var(--ink);
  clip-path: polygon(0 22%, 55% 0, 100% 0, 100% 100%, 0 100%);
  transition-delay: .18s;
}

.intro-mark .mark-white {
  height: clamp(142px, 19vw, 238px);
  background: var(--white);
  clip-path: polygon(0 0, 45% 0, 100% 22%, 100% 100%, 0 100%);
  transition-delay: .3s;
}

.site-intro.is-ready .intro-mark span {
  opacity: 1;
  transform: translateY(0);
}

.intro-copy {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease .55s, transform .85s var(--ease) .55s;
}

.site-intro.is-ready .intro-copy {
  opacity: 1;
  transform: translateY(0);
}

.intro-label,
.eyebrow {
  display: inline-block;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.intro-copy h1 {
  margin: 18px 0 18px;
  max-width: 9ch;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.2rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .88;
}

.intro-copy p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.intro-skip {
  position: absolute;
  right: 28px;
  top: 26px;
  z-index: 4;
  border: 0;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 11px 15px;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
}

.site-intro.is-leaving .intro-inner,
.site-intro.is-leaving .intro-ghost,
.site-intro.is-leaving .intro-skip {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s ease, transform .45s ease;
}

/* Header */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 40px rgba(23,26,28,.08);
  padding: 10px 0;
}

.header-inner {
  width: var(--content);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  width: 268px;
  flex: 0 0 auto;
}

.logo-dark {
  display: none;
}

.site-header.is-scrolled .logo-light,
.site-header.header-solid .logo-light {
  display: none;
}

.site-header.is-scrolled .logo-dark,
.site-header.header-solid .logo-dark {
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}

.site-header.is-scrolled .primary-nav,
.site-header.header-solid .primary-nav {
  color: var(--ink);
}

.primary-nav a {
  position: relative;
  padding: 12px 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 16px;
  height: 5px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
}

.site-header.is-scrolled .header-phone,
.site-header.header-solid .header-phone {
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: var(--yellow);
  cursor: pointer;
  position: relative;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  height: 3px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}

.menu-button::before { top: 15px; }
.menu-button span { top: 23px; }
.menu-button::after { top: 31px; }

.menu-button.is-open span { opacity: 0; }
.menu-button.is-open::before { transform: translateY(8px) rotate(45deg); }
.menu-button.is-open::after { transform: translateY(-8px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 21px;
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease;
}

.btn::after {
  content: "→";
  font-size: 1.15rem;
  transition: transform .22s ease;
}

.btn:hover {
  transform: translateY(-3px);
  background: #ffc71c;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--ink);
}

.btn-small {
  min-height: 44px;
  padding: 11px 16px;
  font-size: .86rem;
}

/* Hero slider */
.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .75s ease, visibility .75s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 7s linear;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(11,14,16,.52);
}

.hero-yellow-block {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(210px, 20vw, 330px);
  height: clamp(170px, 23vh, 260px);
  background: var(--yellow);
  opacity: .95;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--content);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 84px;
}

.hero-copy {
  width: min(810px, calc(100% - 260px));
  margin-left: clamp(34px, 9vw, 150px);
}

.hero-copy .eyebrow {
  margin-bottom: 18px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4.2rem, 9vw, 9.6rem);
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: .82;
  max-width: 8.2ch;
}

.hero-copy p {
  max-width: 580px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: rgba(255,255,255,.83);
}

.hero-copy .hero-cta {
  margin-top: 30px;
}

.hero-index {
  position: absolute;
  left: 0;
  bottom: 12px;
  color: var(--ink);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.6rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.07em;
  padding-left: clamp(24px, 5vw, 74px);
}

.hero-tabs {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
}

.hero-tab {
  width: clamp(72px, 7vw, 112px);
  border: 0;
  color: var(--white);
  background: rgba(23,26,28,.78);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 44px 12px;
  transition: width .35s var(--ease), background .25s ease;
}

.hero-tab:nth-child(2) { background: rgba(39,44,47,.82); }
.hero-tab:nth-child(3) { background: rgba(58,63,66,.78); }

.hero-tab.is-active {
  width: clamp(116px, 11vw, 176px);
  background: rgba(242,183,5,.92);
  color: var(--ink);
}

.hero-tab strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 18px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Standard sections */
main:not(.home-main) {
  padding-top: 116px;
}

.section {
  padding: clamp(76px, 9vw, 140px) 0;
}

.section-compact {
  padding: clamp(52px, 6vw, 92px) 0;
}

.eyebrow {
  color: var(--yellow-dark);
}

.display-title,
.page-title,
.section-title {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -.058em;
  line-height: .91;
}

.section-title {
  margin: 18px 0 0;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.section-title.tight {
  max-width: 9.5ch;
}

.section-intro {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 100px);
}

.section-intro p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.about-asym {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 6vw, 94px);
  align-items: center;
}

.about-image {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: clamp(180px, 23vw, 300px);
  min-height: 190px;
  background: var(--yellow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-stamp strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.06em;
}

.about-copy {
  padding-right: clamp(0px, 4vw, 60px);
}

.about-copy .lead {
  margin: 26px 0 18px;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  line-height: 1.35;
  color: var(--ink-soft);
}

.about-copy p:not(.lead) {
  color: var(--muted);
  max-width: 570px;
}

.fact-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.fact {
  min-width: 145px;
  padding: 18px;
  background: var(--white);
}

.fact strong {
  display: block;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -.05em;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .86rem;
}

/* Services */
.services-stage {
  background: var(--ink);
  color: var(--white);
}

.services-stage .eyebrow {
  color: var(--yellow);
}

.services-stage .section-intro p {
  color: rgba(255,255,255,.68);
}

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.service-entry {
  display: grid;
  grid-template-columns: 110px minmax(260px, .7fr) 1.3fr;
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
}

.service-entry:nth-child(even) {
  grid-template-columns: 110px 1.25fr .75fr;
}

.service-entry:nth-child(even) .service-media {
  order: 2;
}

.service-entry:nth-child(even) .service-copy {
  order: 3;
}

.service-number {
  align-self: start;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.08em;
  color: var(--yellow);
}

.service-media {
  height: 390px;
  overflow: hidden;
}

.service-media img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.service-entry:hover .service-media img {
  transform: scale(1.035);
}

.service-copy h3 {
  margin: 0 0 16px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.055em;
}

.service-copy p {
  max-width: 510px;
  color: rgba(255,255,255,.68);
  margin: 0 0 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
}

.text-link span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--ink);
  transition: transform .22s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Projects */
.project-showcase {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
}

.project-card {
  display: block;
}

.project-card.secondary {
  margin-top: clamp(80px, 12vw, 170px);
}

.project-photo {
  height: 610px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card.secondary .project-photo {
  height: 480px;
}

.project-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.project-card:hover .project-photo img {
  transform: scale(1.035);
}

.project-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding-top: 22px;
}

.project-info h3 {
  margin: 0;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.project-info p {
  margin: 8px 0 0;
  color: var(--muted);
}

.project-arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--yellow);
  font-size: 1.35rem;
}

/* Region */
.region-band {
  position: relative;
  background: var(--concrete);
  overflow: hidden;
}

.region-word {
  position: absolute;
  right: -0.06em;
  top: .05em;
  color: rgba(23,26,28,.06);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(9rem, 26vw, 30rem);
  line-height: .7;
  font-weight: 900;
  letter-spacing: -.1em;
  user-select: none;
}

.region-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
}

.region-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.region-locations span {
  background: var(--white);
  padding: 13px 17px;
  font-weight: 800;
}

.region-copy {
  max-width: 620px;
}

.region-copy p {
  color: #54595c;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

/* Team */
.team-panel {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  min-height: 660px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-panel img {
  height: 100%;
  object-fit: cover;
}

.team-copy {
  padding: clamp(34px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-copy h2 {
  margin: 18px 0 20px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: .91;
  letter-spacing: -.058em;
}

.team-copy p {
  color: var(--muted);
}

/* CTA */
.cta-section {
  padding: 0 0 clamp(76px, 9vw, 130px);
}

.cta-block {
  position: relative;
  min-height: 490px;
  background: var(--yellow);
  overflow: hidden;
  padding: clamp(40px, 7vw, 92px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: end;
}

.cta-block::after {
  content: "AK";
  position: absolute;
  right: -.08em;
  bottom: -.24em;
  color: rgba(23,26,28,.08);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(14rem, 30vw, 34rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.11em;
}

.cta-copy,
.cta-contact {
  position: relative;
  z-index: 2;
}

.cta-copy h2 {
  margin: 0;
  max-width: 9ch;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.6rem);
  line-height: .86;
  letter-spacing: -.07em;
}

.cta-contact {
  justify-self: end;
  max-width: 360px;
}

.cta-contact p {
  margin: 0 0 24px;
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: clamp(54px, 7vw, 90px) 0 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: clamp(40px, 7vw, 100px);
}

.footer-logo {
  width: 260px;
  margin-bottom: 22px;
}

.footer-intro p,
.footer-col a,
.footer-col span,
.footer-bottom {
  color: rgba(255,255,255,.62);
}

.footer-intro p {
  max-width: 430px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--yellow);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 54px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: .84rem;
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 670px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.page-hero-media {
  position: absolute;
  inset: 0 0 0 43%;
}

.page-hero-media img {
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23,26,28,.24);
}

.page-hero-block {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18vw;
  min-width: 190px;
  height: 190px;
  background: var(--yellow);
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 670px;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 78px;
}

.page-hero-copy {
  width: 58%;
  max-width: 760px;
  padding-left: clamp(20px, 5vw, 78px);
}

.page-title {
  margin: 18px 0 20px;
  font-size: clamp(4rem, 8vw, 8.8rem);
  max-width: 8ch;
}

.page-hero-copy p {
  max-width: 560px;
  color: rgba(255,255,255,.75);
  font-size: 1.08rem;
}

/* Content layouts */
.content-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: start;
}

.content-split.reverse {
  grid-template-columns: 1.2fr .8fr;
}

.copy-large {
  max-width: 760px;
}

.copy-large p {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-large .lead {
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  line-height: 1.36;
}

.image-tall {
  min-height: 650px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-tall img {
  height: 100%;
  object-fit: cover;
}

.list-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}

.list-block {
  padding: 24px;
  background: var(--white);
}

.list-block h3 {
  margin: 0 0 8px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -.04em;
}

.list-block p {
  margin: 0;
  color: var(--muted);
}

.capability-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.capability {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  align-items: start;
  padding: 32px;
  background: var(--white);
}

.capability:nth-child(even) {
  margin-left: clamp(0px, 8vw, 110px);
}

.capability-number {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 4.4rem;
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.08em;
  color: var(--yellow-dark);
}

.capability h3 {
  margin: 0 0 10px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: .95;
  letter-spacing: -.05em;
}

.capability p {
  margin: 0;
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 46px 24px;
  align-items: start;
}

.project-grid article:nth-child(1) { grid-column: 1 / span 7; }
.project-grid article:nth-child(2) { grid-column: 8 / span 5; margin-top: 100px; }
.project-grid article:nth-child(3) { grid-column: 2 / span 5; }
.project-grid article:nth-child(4) { grid-column: 7 / span 6; margin-top: 70px; }
.project-grid article:nth-child(5) { grid-column: 1 / span 8; }
.project-grid article:nth-child(6) { grid-column: 9 / span 4; margin-top: 140px; }

.project-tile .project-photo {
  height: 500px;
}

.project-tile.small .project-photo {
  height: 390px;
}

.project-tile .project-info {
  padding-top: 18px;
}

.stats-field {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-block {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stat-block:nth-child(2) {
  margin-top: 50px;
  background: var(--yellow);
}

.stat-block:nth-child(3) {
  margin-top: 100px;
  background: var(--ink);
  color: var(--white);
}

.stat-block:nth-child(4) {
  margin-top: 25px;
}

.stat-block strong {
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.6rem, 6vw, 6rem);
  line-height: .82;
  letter-spacing: -.075em;
}

.stat-block span {
  margin-top: 12px;
  color: var(--muted);
}

.stat-block:nth-child(3) span {
  color: rgba(255,255,255,.65);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 130px;
}

.contact-details h2,
.form-wrap h2 {
  margin: 18px 0 18px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.contact-details p,
.form-wrap > p {
  color: var(--muted);
}

.contact-items {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  padding: 20px;
  background: var(--white);
}

.contact-item small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-item strong,
.contact-item a {
  font-size: 1.08rem;
  font-weight: 800;
}

.form-wrap {
  background: var(--white);
  padding: clamp(28px, 5vw, 64px);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 800;
  font-size: .86rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  background: #ece8df;
}

.form-status {
  margin-top: 18px;
  min-height: 24px;
  font-weight: 700;
  color: var(--yellow-dark);
}

/* Legal */
.legal-copy {
  max-width: 820px;
}

.legal-copy h2 {
  margin: 48px 0 14px;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -.04em;
}

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

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .72s ease, transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --content: min(100% - 40px, 1100px);
  }

  .logo {
    width: 225px;
  }

  .primary-nav {
    gap: 20px;
  }

  .header-phone {
    display: none;
  }

  .hero-copy {
    width: calc(100% - 215px);
    margin-left: 40px;
  }

  .service-entry,
  .service-entry:nth-child(even) {
    grid-template-columns: 90px 1fr 1fr;
  }

  .project-photo {
    height: 520px;
  }

  .about-image {
    min-height: 580px;
  }
}

@media (max-width: 900px) {
  :root {
    --content: calc(100vw - 32px);
  }

  .site-header {
    padding: 10px 0;
    background: rgba(23,26,28,.88);
  }

  .site-header.is-scrolled,
  .site-header.header-solid {
    background: rgba(255,255,255,.97);
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: var(--ink);
    color: var(--white) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 100px 32px 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity .28s ease, transform .35s var(--ease), visibility .28s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: clamp(2.8rem, 11vw, 5rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1;
  }

  .primary-nav a::after {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .logo {
    width: 210px;
  }

  .intro-inner,
  .section-intro,
  .about-asym,
  .project-showcase,
  .region-content,
  .team-panel,
  .cta-block,
  .content-split,
  .content-split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-inner {
    align-items: center;
    gap: 34px;
  }

  .intro-mark {
    min-height: 105px;
  }

  .intro-copy h1 {
    max-width: none;
  }

  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero-inner {
    padding: 130px 0 150px;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding-right: 8px;
  }

  .hero-copy h1 {
    max-width: 8.5ch;
  }

  .hero-tabs {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 104px;
  }

  .hero-tab,
  .hero-tab.is-active {
    width: auto;
    flex: 1;
    padding: 16px 10px;
    justify-content: center;
  }

  .hero-tab span {
    writing-mode: horizontal-tb;
    transform: none;
    margin: 4px 0 0;
    font-size: .68rem;
  }

  .hero-yellow-block {
    bottom: 104px;
    height: 120px;
    width: 170px;
  }

  .hero-index {
    bottom: 114px;
    padding-left: 18px;
  }

  .about-image {
    min-height: 520px;
  }

  .about-copy {
    padding: 10px 0 0;
  }

  .service-entry,
  .service-entry:nth-child(even) {
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .service-entry .service-number,
  .service-entry:nth-child(even) .service-number {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .service-entry .service-media,
  .service-entry:nth-child(even) .service-media {
    grid-column: 2;
    grid-row: 1;
    order: initial;
  }

  .service-entry .service-copy,
  .service-entry:nth-child(even) .service-copy {
    grid-column: 2;
    grid-row: 2;
    order: initial;
  }

  .project-card.secondary {
    margin-top: 0;
  }

  .region-content {
    gap: 46px;
  }

  .team-panel {
    min-height: auto;
  }

  .team-panel img {
    min-height: 470px;
  }

  .cta-contact {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .page-hero-media {
    inset: 0;
  }

  .page-hero-media::after {
    background: rgba(23,26,28,.58);
  }

  .page-hero-copy {
    width: 100%;
    padding-left: 0;
  }

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

  .project-grid article:nth-child(n) {
    grid-column: auto;
    margin-top: 0;
  }

  .stats-field {
    grid-template-columns: 1fr 1fr;
  }

  .stat-block:nth-child(n) {
    margin-top: 0;
  }

  .contact-details {
    position: static;
  }
}

@media (max-width: 620px) {
  :root {
    --content: calc(100vw - 24px);
  }

  .logo {
    width: 184px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .intro-skip {
    top: 14px;
    right: 14px;
  }

  .intro-inner {
    width: calc(100vw - 36px);
  }

  .intro-mark span {
    width: 50px;
  }

  .intro-copy h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    align-items: center;
    padding: 108px 0 126px;
  }

  .hero-copy h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-copy .hero-cta {
    margin-top: 22px;
  }

  .hero-tab strong {
    font-size: 1.1rem;
  }

  .hero-tab span {
    display: none;
  }

  .hero-tabs {
    height: 76px;
  }

  .hero-yellow-block {
    bottom: 76px;
    width: 130px;
    height: 90px;
  }

  .hero-index {
    bottom: 85px;
    font-size: 4rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-intro {
    gap: 28px;
    margin-bottom: 46px;
  }

  .section-title {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .about-image {
    min-height: 420px;
  }

  .about-stamp {
    width: 165px;
    min-height: 145px;
    padding: 20px;
  }

  .service-entry,
  .service-entry:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-entry .service-number,
  .service-entry:nth-child(even) .service-number,
  .service-entry .service-media,
  .service-entry:nth-child(even) .service-media,
  .service-entry .service-copy,
  .service-entry:nth-child(even) .service-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .service-number {
    font-size: 4rem;
  }

  .service-media {
    height: 280px;
  }

  .project-photo,
  .project-card.secondary .project-photo,
  .project-tile .project-photo,
  .project-tile.small .project-photo {
    height: 330px;
  }

  .project-info {
    grid-template-columns: 1fr;
  }

  .project-arrow {
    display: none;
  }

  .team-panel img {
    min-height: 340px;
  }

  .team-copy {
    padding: 28px;
  }

  .cta-block {
    min-height: 470px;
    padding: 34px 24px;
  }

  .footer-main,
  .stats-field,
  .project-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-intro {
    grid-column: auto;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 620px;
  }

  .page-hero-inner {
    padding: 126px 0 58px;
  }

  .page-title {
    font-size: clamp(4rem, 17vw, 6.2rem);
  }

  .page-hero-block {
    min-width: 125px;
    width: 125px;
    height: 110px;
  }

  .capability {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .capability:nth-child(even) {
    margin-left: 0;
  }

  .form-field.full {
    grid-column: auto;
  }
}



/* Mobile navigation and asymmetrical mobile composition */
@media (max-width: 900px) {
  .header-inner {
    position: relative;
  }

  .logo,
  .header-actions {
    position: relative;
    z-index: 1302;
  }

  .primary-nav {
    z-index: 1299;
    pointer-events: none;
    justify-content: flex-start;
    gap: 6px;
    padding: 132px 26px 126px;
    overflow-y: auto;
    overflow-x: hidden;
    isolation: isolate;
  }

  .primary-nav::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 44vw;
    height: 28vh;
    min-height: 170px;
    right: -10vw;
    top: 8vh;
    background: var(--yellow);
    transform: rotate(-7deg);
  }

  .primary-nav::after {
    content: "Goldau\A Schwyz · Zug · Luzern\A 041 552 31 80";
    position: absolute;
    left: 28px;
    bottom: 30px;
    white-space: pre-line;
    color: rgba(255,255,255,.58);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .primary-nav.is-open {
    pointer-events: auto;
  }

  .primary-nav a {
    position: relative;
    z-index: 2;
    width: max-content;
    max-width: 92vw;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .42s ease, transform .56s var(--ease), color .2s ease;
  }

  .primary-nav.is-open a {
    opacity: 1;
    transform: translateX(0);
  }

  .primary-nav.is-open a:nth-child(1) { transition-delay: .06s; }
  .primary-nav.is-open a:nth-child(2) { transition-delay: .11s; margin-left: 10vw; }
  .primary-nav.is-open a:nth-child(3) { transition-delay: .16s; margin-left: 2vw; }
  .primary-nav.is-open a:nth-child(4) { transition-delay: .21s; margin-left: 14vw; }
  .primary-nav.is-open a:nth-child(5) { transition-delay: .26s; margin-left: 6vw; }

  .primary-nav a.is-active {
    color: var(--yellow);
  }

  body.menu-open .site-header,
  body.menu-open .site-header.is-scrolled,
  body.menu-open .site-header.header-solid {
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .site-header .logo-light {
    display: block !important;
  }

  body.menu-open .site-header .logo-dark {
    display: none !important;
  }

  .section-intro > div:first-child {
    width: 90%;
  }

  .section-intro > p {
    width: 82%;
    margin-left: auto;
  }

  .about-asym .about-image {
    width: 94%;
    margin-right: auto;
  }

  .about-asym .about-copy {
    width: 88%;
    margin-left: auto;
  }

  .project-showcase .project-card:first-child {
    width: 94%;
  }

  .project-showcase .project-card.secondary {
    width: 86%;
    margin-left: auto;
  }

  .region-content > div:first-child {
    width: 88%;
  }

  .region-copy {
    width: 86%;
    margin-left: auto;
  }

  .team-panel {
    background: transparent;
    box-shadow: none;
  }

  .team-panel > img {
    width: 94%;
    box-shadow: var(--shadow);
  }

  .team-copy {
    position: relative;
    z-index: 2;
    width: 88%;
    margin: -58px 0 0 auto;
    background: var(--white);
    box-shadow: 0 18px 50px rgba(23,26,28,.1);
  }

  .cta-block {
    width: 94%;
    margin-left: auto;
  }

  .content-split .image-tall {
    width: 94%;
    margin-right: auto;
  }

  .content-split .copy-large {
    width: 88%;
    margin-left: auto;
  }

  .capability-stack .capability {
    width: 94%;
  }

  .capability-stack .capability:nth-child(even) {
    width: 87%;
    margin-left: auto;
  }

  .project-grid article:nth-child(odd) {
    width: 94%;
    justify-self: start;
  }

  .project-grid article:nth-child(even) {
    width: 86%;
    justify-self: end;
  }

  .contact-layout .contact-details {
    width: 88%;
    margin-left: auto;
  }

  .contact-layout .form-wrap {
    width: 95%;
    margin-right: auto;
  }
}

@media (max-width: 620px) {
  .primary-nav {
    padding: 116px 20px 112px;
  }

  .primary-nav a {
    font-size: clamp(2.45rem, 12.5vw, 4rem);
  }

  .primary-nav::after {
    left: 22px;
    bottom: 24px;
  }

  .primary-nav::before {
    width: 48vw;
    height: 24vh;
    top: 10vh;
  }

  .hero-copy {
    width: 88%;
    margin-left: 0;
  }

  .hero-copy p {
    width: 92%;
    margin-left: 8%;
  }

  .hero-copy .hero-cta {
    margin-left: 8%;
  }

  .hero-yellow-block {
    left: auto;
    right: 0;
  }

  .hero-index {
    left: auto;
    right: 20px;
    padding-left: 0;
  }

  .about-asym .about-image {
    width: 91%;
  }

  .about-asym .about-copy {
    width: 84%;
  }

  .fact-cluster {
    width: calc(100% + 10vw);
    margin-left: -10vw;
  }

  .fact:nth-child(2) {
    transform: translateY(18px);
  }

  .service-entry,
  .service-entry:nth-child(even) {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 32px;
    margin: 0;
  }

  .service-entry + .service-entry {
    margin-top: 18px;
  }

  .service-number,
  .service-entry:nth-child(even) .service-number {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
  }

  .service-entry:nth-child(even) .service-number {
    left: auto;
    right: 0;
  }

  .service-media,
  .service-entry:nth-child(even) .service-media {
    width: calc(100% - 46px);
    height: 270px;
    margin: 0 0 0 46px;
  }

  .service-entry:nth-child(even) .service-media {
    margin: 0 46px 0 0;
  }

  .service-copy,
  .service-entry:nth-child(even) .service-copy {
    width: 86%;
    margin: 24px 0 0 auto;
  }

  .service-entry:nth-child(even) .service-copy {
    margin-left: 0;
    margin-right: auto;
  }

  .project-showcase .project-card:first-child {
    width: 92%;
  }

  .project-showcase .project-card.secondary {
    width: 82%;
    margin-left: auto;
  }

  .project-card:first-child .project-info {
    width: 88%;
    margin-left: auto;
  }

  .project-card.secondary .project-info {
    width: 92%;
  }

  .region-content > div:first-child {
    width: 84%;
  }

  .region-copy {
    width: 82%;
  }

  .team-panel > img {
    width: 91%;
  }

  .team-copy {
    width: 86%;
    margin-top: -44px;
    padding: 26px 22px;
  }

  .cta-block {
    width: 92%;
  }

  .content-split .image-tall {
    width: 91%;
    min-height: 440px;
  }

  .content-split .copy-large {
    width: 84%;
  }

  .capability-stack .capability {
    width: 92%;
    padding: 24px 22px;
  }

  .capability-stack .capability:nth-child(even) {
    width: 84%;
  }

  .project-grid article:nth-child(odd) {
    width: 92%;
  }

  .project-grid article:nth-child(even) {
    width: 82%;
  }

  .stats-field .stat-block:nth-child(odd) {
    width: 92%;
  }

  .stats-field .stat-block:nth-child(even) {
    width: 84%;
    margin-left: auto;
  }

  .contact-layout .contact-details {
    width: 84%;
  }

  .contact-layout .form-wrap {
    width: 94%;
    padding: 28px 22px;
  }

  .legal-copy {
    width: 86%;
    margin-left: auto;
  }
}



/* Refinement v4: no label badges, responsive hero and consistent motion */
.intro-label,
.eyebrow {
  display: none !important;
}

.section-title,
.page-title {
  margin-top: 0;
}

.services-stage .section-intro,
.section-intro {
  padding-top: 0;
}

.site,
.hero-slide,
.hero-slide > img,
.hero-copy > *,
.reveal {
  will-change: opacity, transform;
}

.home-page.intro-pending .site {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
}

.home-page.site-ready .site {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 1.05s cubic-bezier(.22,.75,.2,1), transform 1.05s cubic-bezier(.22,.75,.2,1);
}

.home-page.site-instant .site {
  transition-duration: .45s;
}

.site-intro {
  transition: opacity .95s cubic-bezier(.22,.75,.2,1), visibility 0s linear 1s;
}

.site-intro.is-leaving {
  opacity: 0;
}

body:not(.home-page) .site {
  animation: page-enter .72s cubic-bezier(.22,.75,.2,1) both;
}

body.page-leaving .site {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition: opacity .32s ease, transform .32s ease;
  pointer-events: none;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero {
  min-height: 700px;
  height: 100dvh;
  max-height: 980px;
  overflow: hidden;
}

@supports not (height: 100dvh) {
  .hero {
    height: 100vh;
  }
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1.05s ease, visibility 0s linear 1.05s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.hero-slide > img {
  transform: scale(1.055);
  transition: transform 8.5s cubic-bezier(.16,.8,.2,1);
  backface-visibility: hidden;
}

.hero-slide.is-active > img {
  transform: scale(1);
}

.hero-slide:nth-child(1) > img {
  object-position: 62% center;
}

.hero-slide:nth-child(2) > img {
  object-position: 55% center;
}

.hero-slide:nth-child(3) > img {
  object-position: 50% center;
}

.hero-shade {
  background: rgba(11,14,16,.56);
}

.hero-inner {
  width: var(--content);
  height: 100%;
  padding: clamp(126px, 16vh, 178px) 0 clamp(102px, 13vh, 142px);
  align-items: center;
}

.hero-copy {
  width: min(760px, 68vw);
  margin-left: clamp(0px, 6vw, 94px);
  padding-right: 0;
}

.hero-copy h1 {
  max-width: 7.8ch;
  font-size: clamp(3.7rem, 7.6vw, 8.4rem);
  line-height: .86;
  text-wrap: balance;
}

.hero-copy p {
  width: min(100%, 570px);
  margin-top: clamp(20px, 3vh, 30px);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  text-wrap: pretty;
}

.hero-copy .hero-cta {
  margin-top: clamp(22px, 3vh, 30px);
}

.hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity .72s ease, transform .82s cubic-bezier(.22,.75,.2,1);
}

.hero-slide.is-active .hero-copy > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.hero-slide.is-active .hero-copy h1 {
  transition-delay: .14s;
}

.hero-slide.is-active .hero-copy p {
  transition-delay: .24s;
}

.hero-slide.is-active .hero-copy .hero-cta {
  transition-delay: .33s;
}

.hero-yellow-block {
  width: clamp(150px, 16vw, 245px);
  height: clamp(116px, 17vh, 190px);
}

.hero-index {
  bottom: 10px;
  padding-left: clamp(22px, 4vw, 62px);
  font-size: clamp(3.2rem, 6.6vw, 6.8rem);
}

.hero-tabs {
  top: auto;
  right: clamp(22px, 3vw, 50px);
  bottom: clamp(22px, 3vw, 44px);
  left: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
}

.hero-tab,
.hero-tab:nth-child(2),
.hero-tab:nth-child(3),
.hero-tab.is-active {
  width: auto;
  flex: none;
  min-width: 0;
  padding: 8px 4px;
  background: transparent;
  color: rgba(255,255,255,.58);
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  transition: color .35s ease, transform .35s cubic-bezier(.22,.75,.2,1), opacity .35s ease;
}

.hero-tab:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.hero-tab.is-active {
  color: var(--yellow);
}

.hero-tab strong {
  font-size: 1.15rem;
}

.hero-tab span {
  writing-mode: horizontal-tb;
  transform: none;
  margin: 0;
  font-size: .72rem;
  letter-spacing: .09em;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity .78s ease, transform .88s cubic-bezier(.22,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1120px) {
  .hero-copy {
    width: min(700px, 76vw);
    margin-left: clamp(0px, 4vw, 52px);
  }

  .hero-copy h1 {
    font-size: clamp(3.7rem, 8.4vw, 7rem);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 640px;
    height: 100dvh;
    max-height: 880px;
  }

  .hero-inner {
    align-items: center;
    padding: 104px 0 132px;
  }

  .hero-copy {
    width: min(88%, 620px);
    margin-left: 0;
    padding-right: 0;
  }

  .hero-copy h1 {
    max-width: 7.4ch;
    font-size: clamp(3.35rem, 13.5vw, 6.3rem);
    line-height: .88;
  }

  .hero-copy p {
    width: min(96%, 520px);
    margin-left: 0;
    font-size: clamp(.98rem, 2.7vw, 1.12rem);
  }

  .hero-copy .hero-cta {
    margin-left: 0;
  }

  .hero-slide:nth-child(1) > img {
    object-position: 66% center;
  }

  .hero-slide:nth-child(2) > img {
    object-position: 62% center;
  }

  .hero-slide:nth-child(3) > img {
    object-position: 53% center;
  }

  .hero-yellow-block {
    left: 0;
    right: auto;
    bottom: 0;
    width: clamp(112px, 31vw, 170px);
    height: 86px;
  }

  .hero-index {
    left: 0;
    right: auto;
    bottom: 8px;
    padding-left: 16px;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-tabs {
    left: auto;
    right: 16px;
    bottom: 18px;
    height: auto;
    gap: 12px;
  }

  .hero-tab,
  .hero-tab.is-active {
    padding: 7px 2px;
  }

  .hero-tab strong {
    font-size: 1.05rem;
  }

  .hero-tab span {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 610px;
    max-height: 820px;
  }

  .hero-inner {
    padding: 96px 0 116px;
  }

  .hero-copy {
    width: 86%;
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15.4vw, 5rem);
    max-width: 7.1ch;
  }

  .hero-copy p {
    width: 100%;
    margin-left: 0;
    margin-top: 18px;
    line-height: 1.52;
  }

  .hero-copy .hero-cta {
    margin-left: 7%;
    margin-top: 20px;
  }

  .hero-tabs {
    right: 12px;
    bottom: 16px;
    gap: 10px;
  }

  .hero-yellow-block {
    width: 108px;
    height: 76px;
  }

  .hero-index {
    padding-left: 12px;
    bottom: 7px;
    font-size: 3.55rem;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    width: 91%;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14.6vw, 4rem);
  }

  .hero-copy p {
    font-size: .95rem;
  }

  .hero-copy .hero-cta {
    margin-left: 0;
  }
}

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