:root {
  --accent: #ff9d00;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.76);
  --dark: #090805;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--dark);
  font-family: "Roboto", Arial, sans-serif;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: #0d0f0f;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0d0f0f;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.75) contrast(1.08);
  transition:
    opacity 1400ms ease,
    transform 7200ms cubic-bezier(0.45, 0, 0.55, 1);
}

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

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 157, 0, 0.17), transparent 30%),
    linear-gradient(180deg, rgba(4, 5, 5, 0.6) 0%, rgba(4, 5, 5, 0.28) 43%, rgba(4, 5, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(4, 5, 5, 0.82), rgba(4, 5, 5, 0.58) 42%, rgba(4, 5, 5, 0.3) 72%, rgba(4, 5, 5, 0.7)),
    rgba(0, 0, 0, 0.22);
  animation: veilBreath 10s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  align-items: center;
  gap: 24px;
  width: calc(100% - 96px);
  margin: 0 auto;
  padding: 34px 0 25px;
  border-bottom: 1px solid var(--line);
  will-change: opacity, transform;
  animation: fadeDown 2400ms 120ms var(--ease-luxury) both;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  gap: 6px;
}

.brand img {
  display: block;
  width: clamp(112px, 8.6vw, 168px);
  height: auto;
  animation: softFocus 2600ms 160ms var(--ease-luxury) both;
}

.brand-tagline {
  align-self: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(8px, 0.52vw, 10px);
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  animation: softFocus 2600ms 220ms var(--ease-luxury) both;
}

.brand-unit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  animation: softFocus 2600ms 260ms var(--ease-luxury) both;
}

.brand-unit img {
  display: block;
  width: clamp(64px, 5.2vw, 92px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.6vw, 46px);
  color: var(--muted);
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  transition: color 360ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav .active,
.main-nav a:hover {
  color: var(--white);
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #070707;
  background: var(--accent);
  overflow: hidden;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms ease,
    background-color 360ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.42) 42%, transparent 62%);
  transform: translateX(-125%);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 157, 0, 0.24);
  background: #ffad1f;
}

.btn:hover::before {
  transform: translateX(125%);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
}

.hero-content {
  position: relative;
  min-height: calc(100vh - 110px);
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(520px, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
  width: calc(100% - 96px);
  margin: 0 auto;
  padding: 18px 0 44px;
}

.hero-logo {
  display: none;
}

.hero-copy {
  position: relative;
  display: block;
  max-width: 760px;
  width: 100%;
  grid-column: 1;
  grid-row: 1;
  margin-left: 0;
  will-change: opacity, transform;
  animation: fadeUp 2600ms 420ms var(--ease-luxury) both;
}

.hero-rule {
  display: block;
  width: 84px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 26px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 25px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.55vw, 66px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-summary {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1vw, 19px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}

.hero-positioning {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  margin: 0 0 118px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 1.65vw, 34px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.description {
  grid-column: 2;
  max-width: 340px;
  margin: 0 0 36px;
  font-size: clamp(15px, 1vw, 18px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.48;
}

.hero-cta {
  margin-top: 24px;
  min-width: 239px;
}

.hero-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: clamp(410px, 35vw, 545px);
  animation: fadeUp 2600ms 620ms var(--ease-luxury) both;
}

.hero-visual figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.42);
}

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

.hero-visual-main {
  position: absolute;
  inset: 8% 0 10% 13%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0 0 0 84px;
}

.hero-visual-main img {
  object-position: 68% center;
  transform: scale(1.02);
}

.hero-visual-card {
  position: absolute;
  width: 42%;
  height: 34%;
  border: 8px solid rgba(255, 255, 255, 0.92);
}

.hero-visual-card-top {
  top: 0;
  left: 0;
}

.hero-visual-card-bottom {
  right: 4%;
  bottom: 0;
}

.hero-market-pill {
  position: absolute;
  left: 2%;
  bottom: 9%;
  min-width: 210px;
  padding: 18px 20px;
  color: #080808;
  background: var(--accent);
  box-shadow: 0 24px 54px rgba(255, 157, 0, 0.24);
}

.hero-market-pill span,
.hero-market-pill strong {
  display: block;
}

.hero-market-pill span {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.hero-market-pill strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.hero-proof {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  margin-top: 0;
  animation: fadeUp 2600ms 760ms var(--ease-luxury) both;
}

.hero-proof div {
  padding: 14px 30px 0 0;
}

.hero-proof div + div {
  padding-left: 30px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.5vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.hero-proof span {
  display: block;
  max-width: 160px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.28;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 3.3vw, 64px);
  bottom: clamp(70px, 7vw, 98px);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  animation:
    fadeIn 2200ms 1550ms ease both,
    scrollFloat 3.8s 2100ms ease-in-out infinite;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.scroll-cue:hover {
  color: #101010;
  border-color: var(--accent);
  background: var(--accent);
}

.hero-dots {
  position: absolute;
  right: clamp(30px, 4vw, 76px);
  bottom: clamp(28px, 4.4vw, 58px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dots button {
  display: block;
  width: 34px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition:
    width 320ms ease,
    background-color 320ms ease;
}

.hero-dots button.is-active,
.hero-dots button:hover {
  width: 48px;
  background: var(--accent);
}

main {
  background: var(--white);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.92fr) minmax(380px, 1.36fr) minmax(280px, 0.85fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(54px, 6.8vw, 108px);
  width: 100%;
  min-height: 850px;
  padding: clamp(82px, 8vw, 126px) clamp(36px, 2.6vw, 50px) clamp(70px, 7vw, 110px);
  color: #050505;
  background: var(--white);
}

.about-kicker {
  grid-column: 1;
  grid-row: 1;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 1.75vw, 31px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.js .reveal-section .reveal-item {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 1200ms var(--ease-luxury),
    transform 1200ms var(--ease-luxury);
}

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

.js .why-section .stat-trade,
.js .why-section .stat-domain {
  transform: translateX(-50%) translate3d(0, 22px, 0);
}

.js .why-section.is-visible .stat-trade,
.js .why-section.is-visible .stat-domain {
  transform: translateX(-50%) translate3d(0, 0, 0);
}

.js .reveal-section.is-visible .about-kicker {
  transition-delay: 80ms;
}

.js .reveal-section.is-visible .about-title {
  transition-delay: 220ms;
}

.js .reveal-section.is-visible .about-image {
  transition-delay: 360ms;
}

.js .reveal-section.is-visible .about-copy {
  transition-delay: 520ms;
}

.about-title {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 3.25vw, 64px);
  font-weight: 500;
  line-height: 1.53;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-image {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  height: clamp(610px, 53vw, 680px);
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  transition:
    opacity 1350ms var(--ease-luxury),
    transform 1350ms var(--ease-luxury),
    clip-path 1350ms var(--ease-luxury);
}

.about-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 2200ms var(--ease-luxury);
  will-change: transform;
}

.js .reveal-section .about-image {
  clip-path: inset(0 0 10% 0);
}

.js .reveal-section.is-visible .about-image {
  clip-path: inset(0 0 0 0);
}

.js .reveal-section.is-visible .about-image img {
  transform: scale(1);
}

.about-copy {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: start;
  max-width: 390px;
  padding-top: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.52;
}

.about-copy p {
  margin: 0 0 22px;
}

.about-copy p + p {
  margin-top: 24px;
}

.about-copy .about-copy-lead {
  margin-bottom: 28px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(23px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.about-proof {
  padding-left: 18px;
  border-left: 3px solid var(--accent);
  font-size: 15px;
  line-height: 1.55;
}

.about-cta {
  min-height: 38px;
  margin-top: 22px;
  padding: 0 17px;
  gap: 10px;
  font-size: 13px;
}

.about-cta .btn-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
  font-size: 14px;
}

.why-section {
  position: relative;
  min-height: 865px;
  padding: clamp(112px, 10vw, 150px) clamp(34px, 2.1vw, 42px) 92px;
  color: #050505;
  background: var(--white);
}

.why-intro {
  position: absolute;
  top: clamp(112px, 10vw, 150px);
  left: clamp(34px, 2.1vw, 42px);
  max-width: 350px;
  text-align: center;
}

.why-intro h2 {
  margin: 0 0 28px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 1.55vw, 30px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.why-intro p,
.stat-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.stat-card {
  position: absolute;
  max-width: 390px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(112px, 9.6vw, 170px);
  font-weight: 400;
  line-height: 0.76;
  letter-spacing: 0;
}

.stat-card h3 {
  margin: 0 0 8px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(22px, 1.55vw, 30px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.stat-trade {
  top: 128px;
  left: 50%;
  transform: translateX(-50%);
}

.stat-travel {
  top: 390px;
  left: clamp(88px, 5.7vw, 112px);
}

.stat-years {
  top: 390px;
  right: clamp(88px, 7vw, 138px);
}

.stat-domain {
  top: 590px;
  left: 50%;
  transform: translateX(-50%);
}

.why-section.is-visible .why-intro {
  transition-delay: 80ms;
}

.why-section.is-visible .stat-trade {
  transition-delay: 180ms;
}

.why-section.is-visible .stat-travel {
  transition-delay: 300ms;
}

.why-section.is-visible .stat-years {
  transition-delay: 420ms;
}

.why-section.is-visible .stat-domain {
  transition-delay: 540ms;
}

.services-section {
  padding: 38px clamp(30px, 2.1vw, 42px) 54px;
  color: #050505;
  background: var(--white);
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(520px, 1.12fr);
  gap: clamp(84px, 7.4vw, 130px);
  align-items: start;
  margin-bottom: 58px;
}

.services-intro-image {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 482px;
  height: 572px;
  overflow: hidden;
}

.services-intro-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 157, 0, 0.18) 46%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 1300ms var(--ease-luxury);
  pointer-events: none;
}

.services-intro-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 2400ms var(--ease-luxury);
}

.services-section.is-visible .services-intro-image::after {
  transform: translateX(120%);
}

.services-section.is-visible .services-intro-image img {
  transform: scale(1);
}

.section-kicker {
  margin: 0 0 22px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 23px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.services-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.1vw, 52px);
  font-weight: 500;
  line-height: 1.48;
  letter-spacing: 0;
  text-transform: uppercase;
}

.services-copy {
  max-width: 735px;
  margin-top: 68px;
  font-size: 13px;
  line-height: 1.58;
}

.services-copy p {
  margin: 0 0 22px;
}

.service-list {
  display: grid;
  gap: 0;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(440px, 1fr) 342px;
  gap: 34px;
  align-items: center;
  min-height: 252px;
  padding: 28px 40px 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transition:
    transform 520ms var(--ease-luxury),
    background-color 520ms ease,
    border-color 520ms ease;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transition: right 760ms var(--ease-luxury);
}

.service-row:hover {
  transform: translateX(10px);
  background: rgba(255, 157, 0, 0.035);
  border-color: rgba(0, 0, 0, 0.28);
}

.service-row:hover::before {
  right: 0;
}

.service-row:first-child {
  border-top: 0;
}

.service-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 8.1vw, 128px);
  font-weight: 400;
  line-height: 0.9;
  transition:
    transform 520ms var(--ease-luxury),
    color 520ms ease;
}

.service-row:hover .service-number {
  color: var(--accent);
  transform: translateX(-4px);
}

.js .services-section.is-visible .service-row:hover .service-number {
  transform: translateX(-4px);
}

.service-text h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 2.35vw, 40px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 520ms var(--ease-luxury);
}

.service-row:hover .service-text h3 {
  transform: translateX(6px);
}

.service-text p {
  max-width: 735px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.service-text ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 9px 28px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.25;
}

.service-text li {
  position: relative;
  padding-left: 18px;
}

.service-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.service-row img {
  display: block;
  width: 342px;
  height: 198px;
  object-fit: cover;
  transform: scale(1);
  transition:
    transform 900ms var(--ease-luxury),
    filter 520ms ease;
}

.service-row:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.045);
}

.js .services-section.is-visible .service-row:hover > img {
  transform: scale(1.045);
}

.services-section.is-visible .services-intro-image {
  transition-delay: 80ms;
}

.services-section.is-visible .services-intro {
  transition-delay: 220ms;
}

.services-section.is-visible .service-row:nth-child(1) {
  transition-delay: 340ms;
}

.services-section.is-visible .service-row:nth-child(2) {
  transition-delay: 460ms;
}

.services-section.is-visible .service-row:nth-child(3) {
  transition-delay: 580ms;
}

.services-section.is-visible .service-row:nth-child(4) {
  transition-delay: 700ms;
}

.services-section.is-visible .service-row:nth-child(5) {
  transition-delay: 820ms;
}

.services-section.is-visible .service-row:nth-child(6) {
  transition-delay: 940ms;
}

.js .services-section .service-number,
.js .services-section .service-text,
.js .services-section .service-row > img {
  opacity: 0;
  transition:
    opacity 950ms var(--ease-luxury),
    transform 950ms var(--ease-luxury),
    filter 520ms ease;
}

.js .services-section .service-number {
  transform: translate3d(-18px, 0, 0);
}

.js .services-section .service-text {
  transform: translate3d(0, 14px, 0);
}

.js .services-section .service-row > img {
  transform: translate3d(22px, 0, 0) scale(1.025);
}

.js .services-section.is-visible .service-number,
.js .services-section.is-visible .service-text,
.js .services-section.is-visible .service-row > img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .services-section.is-visible .service-row:nth-child(1) .service-number,
.js .services-section.is-visible .service-row:nth-child(1) .service-text,
.js .services-section.is-visible .service-row:nth-child(1) > img {
  transition-delay: 420ms;
}

.js .services-section.is-visible .service-row:nth-child(2) .service-number,
.js .services-section.is-visible .service-row:nth-child(2) .service-text,
.js .services-section.is-visible .service-row:nth-child(2) > img {
  transition-delay: 540ms;
}

.js .services-section.is-visible .service-row:nth-child(3) .service-number,
.js .services-section.is-visible .service-row:nth-child(3) .service-text,
.js .services-section.is-visible .service-row:nth-child(3) > img {
  transition-delay: 660ms;
}

.js .services-section.is-visible .service-row:nth-child(4) .service-number,
.js .services-section.is-visible .service-row:nth-child(4) .service-text,
.js .services-section.is-visible .service-row:nth-child(4) > img {
  transition-delay: 780ms;
}

.js .services-section.is-visible .service-row:nth-child(5) .service-number,
.js .services-section.is-visible .service-row:nth-child(5) .service-text,
.js .services-section.is-visible .service-row:nth-child(5) > img {
  transition-delay: 900ms;
}

.js .services-section.is-visible .service-row:nth-child(6) .service-number,
.js .services-section.is-visible .service-row:nth-child(6) .service-text,
.js .services-section.is-visible .service-row:nth-child(6) > img {
  transition-delay: 1020ms;
}

.partner-section {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  padding: clamp(86px, 7.2vw, 118px) clamp(30px, 2.1vw, 42px) 92px;
  color: var(--white);
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0.76) 100%),
    url("assets/home/Frame 33.jpg");
  background-size: cover;
  background-position: center;
}

.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 32%),
    radial-gradient(circle at 50% 78%, rgba(255, 157, 0, 0.08), transparent 28%),
    rgba(0, 0, 0, 0.42);
}

.partner-heading {
  width: min(1260px, 86vw);
  margin: 0 auto;
  text-align: center;
}

.partner-heading .section-kicker {
  color: var(--white);
}

.partner-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 3.75vw, 68px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: uppercase;
}

.partner-heading > p:last-child {
  max-width: 930px;
  margin: 38px auto 0;
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 700;
  line-height: 1.55;
}

.partner-benefits {
  position: absolute;
  left: clamp(30px, 2.1vw, 42px);
  right: clamp(30px, 2.1vw, 42px);
  bottom: 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.2vw, 64px);
}

.partner-benefit {
  position: relative;
  text-align: center;
}

.benefit-icon {
  position: relative;
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto 26px;
  border: 1.5px solid rgba(255, 157, 0, 0.9);
  border-radius: 50%;
  background: rgba(255, 157, 0, 0.04);
  box-shadow: 0 0 32px rgba(255, 157, 0, 0.13);
  transition:
    transform 700ms var(--ease-luxury),
    background-color 700ms ease,
    box-shadow 700ms ease;
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-color: var(--accent);
  transform: translate(-50%, -50%);
}

.icon-story::before {
  width: 19px;
  height: 15px;
  border: 2px solid var(--accent);
  border-radius: 2px;
}

.icon-story::after {
  width: 9px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 6px 0 var(--accent);
}

.icon-local::before {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -58%) rotate(-45deg);
}

.icon-local::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.icon-roi::before {
  width: 25px;
  height: 18px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.icon-roi::after {
  width: 18px;
  height: 18px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: translate(-44%, -58%) rotate(35deg);
}

.icon-team::before {
  width: 10px;
  height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: -13px 8px 0 -2px transparent, -13px 8px 0 0 var(--accent), 13px 8px 0 -2px transparent,
    13px 8px 0 0 var(--accent);
}

.icon-team::after {
  width: 30px;
  height: 14px;
  border: 2px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: translate(-50%, -18%);
}

.partner-benefit h3 {
  margin: 0 0 20px;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(20px, 1.42vw, 28px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.partner-benefit p {
  max-width: 305px;
  margin: 0 auto;
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 700;
  line-height: 1.46;
}

.partner-benefit:hover span {
  transform: translateY(-8px) scale(1.08);
  background: rgba(255, 157, 0, 0.18);
  box-shadow: 0 0 42px rgba(255, 157, 0, 0.32);
}

.partner-section.is-visible .partner-heading {
  transition-delay: 120ms;
}

.partner-section.is-visible .partner-benefit:nth-child(1) {
  transition-delay: 360ms;
}

.partner-section.is-visible .partner-benefit:nth-child(2) {
  transition-delay: 480ms;
}

.partner-section.is-visible .partner-benefit:nth-child(3) {
  transition-delay: 600ms;
}

.partner-section.is-visible .partner-benefit:nth-child(4) {
  transition-delay: 720ms;
}

.projects-section {
  padding: 48px clamp(24px, 2vw, 34px) 72px;
  color: #050505;
  background: var(--white);
}

.projects-heading {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 0.78fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.project-kicker {
  display: inline-block;
  margin: 0 0 20px;
  padding: 2px 7px;
  color: var(--white);
  background: #050505;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(14px, 1vw, 17px);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.projects-title-block h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 2.4vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.projects-intro {
  max-width: 450px;
  justify-self: end;
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 34px;
}

.project-card {
  position: relative;
  display: block;
  aspect-ratio: 434 / 301;
  overflow: hidden;
  background: #ddd;
  color: var(--white);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(110deg, transparent 0%, rgba(255, 157, 0, 0.16) 42%, transparent 62%);
  opacity: 0.86;
  transform: translateX(0);
  transition:
    opacity 650ms ease,
    transform 950ms var(--ease-luxury);
}

.project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  transition:
    transform 1100ms var(--ease-luxury),
    filter 650ms ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.055);
}

.project-meta {
  position: absolute;
  left: clamp(18px, 2vw, 32px);
  right: clamp(18px, 2vw, 32px);
  bottom: clamp(18px, 2vw, 30px);
  z-index: 1;
  display: grid;
  gap: 7px;
  transform: translateY(8px);
  transition: transform 620ms var(--ease-luxury);
}

.project-meta small {
  color: var(--accent);
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(11px, 0.85vw, 14px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.project-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2vw, 38px);
  font-weight: 500;
  line-height: 1.04;
}

.project-meta em {
  width: max-content;
  max-width: 100%;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 157, 0, 0.72);
  font-size: clamp(12px, 0.9vw, 15px);
  font-style: normal;
  line-height: 1.2;
}

.project-card:hover .project-meta {
  transform: translateY(0);
}

.projects-cta {
  display: flex;
  width: max-content;
  min-height: 52px;
  margin: 64px auto 0;
  padding: 0 24px;
  gap: 12px;
  font-size: 13px;
}

.js .projects-section .projects-cta {
  transform: translate3d(0, 22px, 0);
}

.js .projects-section.is-visible .projects-cta {
  transform: translate3d(0, 0, 0);
}

.projects-cta .btn-icon {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  font-size: 15px;
}

.projects-section.is-visible .projects-title-block {
  transition-delay: 80ms;
}

.projects-section.is-visible .projects-intro {
  transition-delay: 180ms;
}

.projects-section.is-visible .project-card:nth-child(1) {
  transition-delay: 300ms;
}

.projects-section.is-visible .project-card:nth-child(2) {
  transition-delay: 420ms;
}

.projects-section.is-visible .project-card:nth-child(3) {
  transition-delay: 540ms;
}

.projects-section.is-visible .project-card:nth-child(4) {
  transition-delay: 660ms;
}

.projects-section.is-visible .projects-cta {
  transition-delay: 760ms;
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1fr);
  gap: clamp(56px, 6.5vw, 120px);
  align-items: center;
  min-height: 415px;
  padding: 74px clamp(24px, 2vw, 34px) 74px;
  color: var(--white);
  background: #111516;
  overflow: hidden;
}

.testimonials-copy {
  max-width: 420px;
}

.testimonials-copy .section-kicker {
  margin-bottom: 22px;
  color: var(--white);
}

.testimonials-copy h2 {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.45vw, 43px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: uppercase;
}

.testimonials-copy > p {
  max-width: 385px;
  margin: 0 0 30px;
  font-size: 12px;
  line-height: 1.45;
}

.testimonial-controls {
  display: flex;
  gap: 12px;
}

.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition:
    color 320ms ease,
    background-color 320ms ease,
    border-color 320ms ease,
    transform 320ms var(--ease-luxury);
}

.testimonial-controls button:hover {
  color: #101010;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.testimonial-cards {
  display: flex;
  gap: 34px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 32px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-cards::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  flex: 0 0 min(480px, calc((100% - 34px) / 2));
  min-height: 230px;
  padding: 52px 28px 24px;
  color: #050505;
  background: var(--white);
  scroll-snap-align: start;
  transition:
    transform 600ms var(--ease-luxury),
    box-shadow 600ms ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.testimonial-avatar {
  position: absolute;
  top: -31px;
  left: 20px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 38%, #926b4e 0 10%, transparent 11%),
    radial-gradient(circle at 52% 33%, #283767 0 19%, transparent 20%),
    linear-gradient(135deg, #b8b9ff 0 48%, #252f75 49% 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.avatar-alt-one {
  background:
    radial-gradient(circle at 52% 38%, #8f6044 0 10%, transparent 11%),
    radial-gradient(circle at 52% 33%, #304b3d 0 19%, transparent 20%),
    linear-gradient(135deg, #bbdfc7 0 48%, #1f5a43 49% 100%);
}

.avatar-alt-two {
  background:
    radial-gradient(circle at 52% 38%, #9a735a 0 10%, transparent 11%),
    radial-gradient(circle at 52% 33%, #5a3030 0 19%, transparent 20%),
    linear-gradient(135deg, #ffd0c8 0 48%, #8f2c30 49% 100%);
}

.avatar-alt-three {
  background:
    radial-gradient(circle at 52% 38%, #8c6549 0 10%, transparent 11%),
    radial-gradient(circle at 52% 33%, #42315f 0 19%, transparent 20%),
    linear-gradient(135deg, #d8c8ff 0 48%, #4b2c86 49% 100%);
}

.testimonial-card p {
  margin: 0 0 28px;
  font-size: 9px;
  line-height: 1.75;
}

.testimonial-card h3 {
  margin: 0 0 4px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.testimonial-card span {
  display: block;
  font-size: 9px;
}

.testimonials-section.is-visible .testimonials-copy {
  transition-delay: 80ms;
}

.testimonials-section.is-visible .testimonial-card:nth-child(1) {
  transition-delay: 260ms;
}

.testimonials-section.is-visible .testimonial-card:nth-child(2) {
  transition-delay: 420ms;
}

.testimonials-section.is-visible .testimonial-card:nth-child(3) {
  transition-delay: 540ms;
}

.testimonials-section.is-visible .testimonial-card:nth-child(4) {
  transition-delay: 660ms;
}

.testimonials-section.is-visible .testimonial-card:nth-child(5) {
  transition-delay: 780ms;
}

.clients-section {
  position: relative;
  padding: 86px clamp(30px, 4vw, 72px) 92px;
  color: #101010;
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f5 100%);
  overflow: hidden;
}

.clients-brand {
  position: absolute;
  top: 76px;
  right: clamp(30px, 4vw, 72px);
  width: clamp(92px, 6.4vw, 122px);
  height: auto;
  filter: none;
  opacity: 0.94;
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  width: min(100%, 1760px);
  margin: 0 auto 48px;
  padding-right: clamp(120px, 10vw, 170px);
}

.clients-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clients-heading h2 span {
  color: #d89025;
}

.clients-heading p {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.35;
}

.clients-heading p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 3px;
  background: #d89025;
}

.clients-heading strong {
  font-weight: 800;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(100%, 1760px);
  margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.045);
}

.client-logo {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 112px;
  padding: 18px 14px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #1b1b1b;
  background: rgba(255, 255, 255, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.55vw, 31px);
  font-weight: 700;
  line-height: 0.96;
  text-align: center;
  transition:
    transform 520ms var(--ease-luxury),
    background-color 520ms ease,
    box-shadow 520ms ease,
    color 520ms ease;
}

.client-logo:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.075);
}

.client-logo span {
  display: block;
  margin-top: 6px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-script {
  color: #cc138e;
  font-style: italic;
}

.logo-hilton,
.logo-cambodia,
.logo-vinpearl,
.logo-nirvana {
  color: #17569a;
}

.logo-taiwan {
  color: #f05a3b;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
}

.logo-naga,
.logo-shinta {
  color: #b89955;
}

.logo-uz,
.logo-sabah {
  color: #204278;
}

.logo-jungle {
  color: #8a8c42;
  font-style: italic;
}

.logo-motc,
.logo-batumi,
.logo-song,
.logo-sheraton {
  color: #6c737a;
}

.logo-bcg {
  color: #006b3f;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
}

.logo-oman,
.logo-aiden {
  color: #e3282a;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
  font-style: italic;
}

.logo-bhutan {
  color: #3f4145;
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 900;
}

.logo-taipei-color {
  color: #111;
}

.logo-fullon {
  color: #1d1d1d;
}

.clients-section.is-visible .clients-brand {
  transition-delay: 60ms;
}

.clients-section.is-visible .clients-title-block,
.clients-section.is-visible .clients-heading h2 {
  transition-delay: 100ms;
}

.clients-section.is-visible .clients-heading p {
  transition-delay: 220ms;
}

.clients-section.is-visible .client-logo {
  transition-delay: calc(260ms + (var(--logo-index, 0) * 25ms));
}

.case-section {
  position: relative;
  padding: 86px clamp(30px, 4vw, 72px) 96px;
  color: #050505;
  background: #f8f8f5;
  overflow: hidden;
}

.case-brand {
  position: absolute;
  top: 108px;
  right: clamp(52px, 5.4vw, 106px);
  z-index: 2;
  width: clamp(96px, 7vw, 132px);
  height: auto;
  filter: none;
  opacity: 0.96;
}

.case-hero {
  position: relative;
  min-height: 232px;
  width: min(100%, 1760px);
  margin: 0 auto 76px;
  padding: 42px clamp(42px, 6vw, 112px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 7, 0.93), rgba(17, 21, 22, 0.88)),
    url("assets/home/Frame 57.jpg");
  background-size: cover;
  background-position: center;
  border-top: 3px solid rgba(255, 157, 0, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.case-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.13) 45%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 1600ms var(--ease-luxury);
  pointer-events: none;
}

.case-section.is-visible .case-hero::after {
  transform: translateX(120%);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  min-height: 118px;
}

.case-metrics div {
  display: flex;
  min-width: 0;
  min-height: 118px;
  padding: 0 clamp(24px, 3vw, 52px);
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 157, 0, 0.36);
}

.case-metrics div:last-child {
  border-right: 0;
}

.case-metrics strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 4.35vw, 84px);
  font-weight: 500;
  line-height: 0.95;
  white-space: nowrap;
}

.case-metrics div:nth-child(even) strong {
  color: var(--accent);
}

.case-metrics span {
  display: block;
  max-width: 230px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 26px);
  font-weight: 400;
  line-height: 1.15;
}

.case-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 1760px);
  margin: 0 auto 42px;
}

.case-heading-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 3.7vw, 68px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.case-view-all {
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  color: #d89025;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
  width: min(100%, 1760px);
  margin: 0 auto;
}

.case-card {
  position: relative;
  display: grid;
  grid-template-rows: clamp(210px, 15vw, 286px) 1fr;
  min-height: 520px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 620ms var(--ease-luxury),
    box-shadow 620ms ease,
    border-color 620ms ease;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(216, 144, 37, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.case-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: #d89025;
  transition: right 620ms var(--ease-luxury);
}

.case-card:hover::after {
  right: 0;
}

.case-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1100ms var(--ease-luxury);
}

.case-card:hover img {
  transform: scale(1.055);
}

.case-card div {
  display: flex;
  flex-direction: column;
  padding: 30px clamp(24px, 1.9vw, 34px) 28px;
}

.case-card span {
  display: block;
  margin-bottom: 18px;
  color: #d89025;
  font-family: "Alyamama", "Roboto", Arial, sans-serif;
  font-size: clamp(13px, 0.9vw, 16px);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.case-card h4 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 1.75vw, 36px);
  font-weight: 500;
  line-height: 1.05;
}

.case-card p {
  margin: 0 0 28px;
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1.45;
}

.case-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: auto;
  color: #050505;
  font-size: clamp(13px, 0.9vw, 18px);
  font-weight: 800;
  text-transform: uppercase;
}

.case-card a::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.case-cta {
  display: flex;
  width: max-content;
  margin: 54px auto 0;
}

.case-section.is-visible .case-brand {
  transition-delay: 60ms;
}

.case-section.is-visible .case-hero {
  transition-delay: 100ms;
}

.case-section.is-visible .case-heading-row h2 {
  transition-delay: 220ms;
}

.case-section.is-visible .case-view-all {
  transition-delay: 300ms;
}

.case-section.is-visible .case-card:nth-child(1) {
  transition-delay: 360ms;
}

.case-section.is-visible .case-card:nth-child(2) {
  transition-delay: 480ms;
}

.case-section.is-visible .case-card:nth-child(3) {
  transition-delay: 600ms;
}

.case-section.is-visible .case-card:nth-child(4) {
  transition-delay: 720ms;
}

.case-section.is-visible .case-cta {
  transition-delay: 820ms;
}

.site-footer {
  position: relative;
  display: block;
  isolation: isolate;
  min-height: 410px;
  padding: 76px clamp(30px, 4vw, 72px) 66px;
  color: var(--white);
  background-color: #0f1212;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.46) 46%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.72)),
    url("assets/home/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 157, 0, 0.12) 0 1px, transparent 1px) 38% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, rgba(255, 157, 0, 0.08) 0 1px, transparent 1px) 74% 0 / 1px 100% no-repeat;
  pointer-events: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) repeat(3, minmax(150px, 0.45fr));
  gap: clamp(42px, 5vw, 86px);
  width: min(100%, 1760px);
  margin: 0 auto;
}

.footer-brand {
  max-width: 650px;
}

.footer-brand img {
  display: block;
  width: clamp(230px, 18vw, 350px);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32));
}

.footer-brand p {
  max-width: 600px;
  margin: 0;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.55;
}

.footer-contact {
  display: grid;
  gap: 15px;
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(13px, 0.9vw, 16px);
}

.footer-contact .footer-address {
  align-items: flex-start;
  max-width: 560px;
}

.footer-contact li span:first-child {
  display: grid;
  place-items: center;
  width: 18px;
  min-width: 18px;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
}

.footer-contact a,
.footer-column a {
  color: inherit;
  text-decoration: none;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-column h2 {
  margin: 0 0 28px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(28px, 1.9vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.footer-column a {
  position: relative;
  margin-bottom: 18px;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 1.2;
  opacity: 0.9;
  transition:
    color 300ms ease,
    opacity 300ms ease,
    transform 300ms var(--ease-luxury);
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--accent);
  transition: right 360ms var(--ease-luxury);
}

.footer-column a:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateX(4px);
}

.footer-column a:hover::after {
  right: 0;
}

.site-footer.is-visible .footer-brand {
  transition-delay: 80ms;
}

.site-footer.is-visible .footer-column:nth-of-type(1) {
  transition-delay: 220ms;
}

.site-footer.is-visible .footer-column:nth-of-type(2) {
  transition-delay: 340ms;
}

.site-footer.is-visible .footer-column:nth-of-type(3) {
  transition-delay: 460ms;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 180px 1fr 180px;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 18px;
    font-size: 12px;
  }

  .brand-unit {
    font-size: 11px;
  }

  .hero-logo {
    display: none;
  }

  .hero-content {
    grid-template-columns: minmax(390px, 0.9fr) minmax(420px, 1fr);
    gap: 38px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual-card {
    border-width: 6px;
  }

  .hero-positioning {
    margin-bottom: 108px;
  }
}

@media (max-width: 1180px) {
  .about-section {
    grid-template-columns: minmax(220px, 0.8fr) minmax(330px, 1fr);
    grid-template-rows: auto auto auto;
    row-gap: 36px;
  }

  .about-image {
    grid-column: 2;
    grid-row: 1 / span 3;
    height: 610px;
  }

  .about-copy {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    max-width: 320px;
  }

  .why-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 70px 56px;
    min-height: 0;
    padding-top: 96px;
  }

  .why-intro,
  .stat-trade,
  .stat-travel,
  .stat-years,
  .stat-domain {
    position: static;
    grid-column: auto;
    grid-row: auto;
    padding-left: 0;
    transform: none;
  }

  .js .why-section .stat-trade,
  .js .why-section .stat-domain {
    transform: translate3d(0, 22px, 0);
  }

  .js .why-section.is-visible .stat-trade,
  .js .why-section.is-visible .stat-domain {
    transform: translate3d(0, 0, 0);
  }

  .why-intro {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 360px;
  }

  .services-hero {
    grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1fr);
    gap: 56px;
  }

  .services-intro-image {
    height: 500px;
  }

  .service-row {
    grid-template-columns: 112px minmax(320px, 1fr) 286px;
    padding-right: 0;
  }

  .service-row img {
    width: 286px;
    height: 180px;
  }

  .service-text ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .partner-benefits {
    gap: 20px;
  }

  .partner-benefit h3 {
    min-height: 48px;
  }

  .projects-grid {
    gap: 28px;
  }

  .testimonials-section {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .clients-heading {
    grid-template-columns: 1fr;
    padding-right: 140px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .case-brand {
    display: none;
  }

  .case-hero {
    margin-bottom: 58px;
    padding: 28px;
  }

  .case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .case-metrics div {
    min-height: 124px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255, 157, 0, 0.28);
  }

  .case-metrics div:nth-child(2n) {
    border-right: 0;
  }

  .case-metrics div:nth-child(3),
  .case-metrics div:nth-child(4) {
    border-bottom: 0;
  }

  .case-metrics strong {
    font-size: clamp(50px, 7.2vw, 72px);
  }

  .case-metrics span {
    max-width: 220px;
    font-size: 20px;
  }

  .case-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: minmax(320px, 1fr) repeat(2, minmax(150px, 0.45fr));
    gap: 42px 58px;
  }

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

  .footer-contact {
    margin-top: 36px;
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 0;
  }

  .site-header {
    width: calc(100% - 42px);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
  }

  .main-nav {
    display: none;
  }

  .brand-unit {
    display: inline-flex;
    max-width: none;
    gap: 7px;
    font-size: 10px;
    line-height: 1.2;
    text-align: right;
  }

  .brand-unit img {
    width: 62px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 38px;
    min-height: 0;
    width: calc(100% - 42px);
    padding: 54px 0 92px;
  }

  .hero-logo {
    display: none;
  }

  .hero-copy {
    display: block;
    width: min(640px, 100%);
  }

  .eyebrow {
    margin-bottom: 42px;
    letter-spacing: 3px;
  }

  .hero-copy h1 {
    font-size: clamp(36px, 9vw, 54px);
  }

  .hero-summary {
    max-width: 560px;
    margin-top: 24px;
  }

  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    width: min(620px, 100%);
    min-height: min(520px, 82vw);
    justify-self: center;
  }

  .hero-proof {
    grid-row: 3;
    width: 100%;
    margin-top: 2px;
  }

  .hero-proof div {
    padding-right: 18px;
  }

  .hero-proof div + div {
    padding-left: 18px;
  }

  .hero-positioning {
    margin: 0 0 20px;
    font-size: clamp(20px, 5vw, 26px);
  }

  .description {
    margin-bottom: 28px;
    font-size: clamp(16px, 4vw, 22px);
  }

  .scroll-cue {
    width: 48px;
    height: 48px;
    bottom: 22px;
    font-size: 30px;
  }

  .hero-dots {
    right: 21px;
    bottom: 40px;
  }

  .about-section {
    display: block;
    min-height: 0;
    padding: 72px 21px 80px;
  }

  .about-kicker {
    margin-bottom: 42px;
  }

  .about-title {
    margin-bottom: 34px;
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.22;
  }

  .about-image {
    height: min(620px, 120vw);
    margin-bottom: 34px;
  }

  .about-copy {
    max-width: none;
    padding-top: 0;
  }

  .why-section {
    display: block;
    padding: 76px 21px 84px;
  }

  .why-intro,
  .stat-card {
    max-width: none;
  }

  .why-intro {
    margin-bottom: 66px;
  }

  .stat-card + .stat-card {
    margin-top: 64px;
  }

  .stat-card strong {
    font-size: clamp(84px, 27vw, 124px);
  }

  .services-section {
    padding: 68px 21px 48px;
  }

  .services-hero {
    display: block;
    margin-bottom: 42px;
  }

  .services-intro-image {
    max-width: none;
    height: min(520px, 118vw);
    margin-bottom: 38px;
  }

  .services-intro h2 {
    font-size: clamp(32px, 8.8vw, 44px);
    line-height: 1.28;
  }

  .services-copy {
    margin-top: 34px;
  }

  .service-row {
    grid-template-columns: 92px 1fr;
    gap: 18px;
    min-height: 0;
    padding: 30px 0;
  }

  .service-row img {
    grid-column: 1 / -1;
    justify-self: end;
    width: min(324px, 72vw);
    height: auto;
    aspect-ratio: 324 / 174;
  }

  .service-text ul {
    grid-template-columns: 1fr;
    font-size: 14px;
  }

  .service-text h3 {
    font-size: clamp(27px, 7.1vw, 38px);
  }

  .partner-section {
    min-height: 0;
    padding: 76px 21px 82px;
  }

  .partner-heading {
    width: 100%;
  }

  .partner-heading h2 {
    font-size: clamp(31px, 8.4vw, 42px);
    line-height: 1.25;
  }

  .partner-benefits {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 24px;
    margin-top: 62px;
  }

  .benefit-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
  }

  .partner-benefit h3 {
    min-height: 0;
  }

  .projects-section {
    padding: 64px 21px 70px;
  }

  .projects-heading {
    display: block;
  }

  .projects-intro {
    max-width: none;
    margin-top: 24px;
    text-align: left;
  }

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

  .projects-cta {
    margin-top: 38px;
  }

  .testimonials-section {
    padding: 68px 21px 70px;
  }

  .testimonial-cards {
    gap: 22px;
  }

  .testimonial-card {
    flex-basis: min(320px, 82vw);
  }

  .clients-section {
    padding: 64px 21px 76px;
  }

  .clients-brand {
    position: static;
    display: block;
    width: 126px;
    margin: 0 0 36px auto;
  }

  .clients-heading {
    display: block;
    margin-bottom: 38px;
    padding-right: 0;
  }

  .clients-heading p {
    margin-top: 24px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo {
    min-height: 112px;
  }

  .case-section {
    padding: 64px 21px 72px;
  }

  .case-brand {
    top: 86px;
    right: 42px;
    width: 112px;
  }

  .case-hero {
    min-height: 0;
    margin-bottom: 52px;
    padding: 74px 22px 34px;
  }

  .case-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .case-metrics div {
    min-height: 132px;
    padding: 24px 22px;
    border-bottom: 1px solid rgba(255, 157, 0, 0.28);
  }

  .case-metrics div:nth-child(2n) {
    border-right: 0;
  }

  .case-heading-row {
    align-items: flex-start;
    flex-direction: column;
    margin: 56px 0 30px;
  }

  .case-list {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-rows: min(280px, 54vw) 1fr;
    min-height: 0;
  }

  .case-card div {
    padding: 28px 24px 26px;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 0;
  }

  .hero-logo {
    display: none;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-rule {
    width: 68px;
    height: 3px;
    margin-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual-main {
    inset: 8% 0 12% 0;
    border-radius: 0 0 0 46px;
  }

  .hero-visual-card {
    width: 44%;
    height: 30%;
    border-width: 4px;
  }

  .hero-market-pill {
    min-width: 174px;
    padding: 14px 16px;
  }

  .hero-market-pill strong {
    font-size: 21px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0 0;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-left: 0;
  }

  .hero-proof strong {
    min-width: 86px;
  }

  .hero-proof span {
    max-width: none;
  }

  .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 12px;
  }

  .service-row {
    display: block;
  }

  .service-number {
    display: block;
    margin-bottom: 16px;
  }

  .service-row img {
    margin-top: 22px;
    width: 100%;
  }

  .partner-benefits {
    grid-template-columns: 1fr;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .case-metrics {
    grid-template-columns: 1fr;
  }

  .case-metrics div,
  .case-metrics div:nth-child(2n) {
    border-right: 0;
  }

  .site-footer {
    padding: 62px 21px 56px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand img {
    width: min(260px, 72vw);
  }

  .footer-column h2 {
    margin-bottom: 18px;
  }

  .footer-column a {
    margin-bottom: 14px;
  }
}

@keyframes heroDrift {
  from {
    background-position: center center;
  }

  to {
    background-position: 51% center;
  }
}

@keyframes veilBreath {
  from {
    opacity: 0.92;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -6px, 0);
  }

  42% {
    opacity: 0.78;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  46% {
    opacity: 0.72;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    filter: blur(5px) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
    transform: translate3d(0, 8px, 0) scale(0.998);
  }

  48% {
    opacity: 0.78;
    filter: blur(1px) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
  }

  100% {
    opacity: 1;
    filter: blur(0) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes softFocus {
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, -3px, 0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scrollFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  }

  50% {
    transform: translateY(9px);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

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

  .reveal-section .reveal-item {
    opacity: 1;
    transform: none;
  }

  .reveal-section .about-image,
  .reveal-section .about-image img {
    clip-path: none;
    transform: none;
  }
}
