@font-face {
  font-family: BeautL;
  src: url(./Assets/Fonts/68bf2d317447613b7363d623_BeautiqueDisplay-Light.otf);
}

@font-face {
  font-family: BeautM;
  src: url(./Assets/Fonts/68bf2d3a549c0f3150c48f6a_BeautiqueDisplay-Medium.otf);
}

@font-face {
  font-family: font01;
  src: url(./Assets/Fonts/UcC53FwrK3iLTcvneQg7Ca725JhhKnNqk6L5UUM.woff2);
}

@font-face {
  font-family: font02;
  src: url(./Assets/Fonts/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2);
}

:root {
  --accent: #2952e3;
  --accent-soft: #8fa8ff;
  --gold: #dce4ff;
  --dark: #0a0a0a;
  --light: #f7f4ef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: BeautM;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

::selection {
  background-color: var(--accent);
  color: #fff;
}

.mouse {
  position: fixed;
  width: 3vw;
  height: 3vw;
  background-color: #ffffff;
  z-index: 99;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 10vh;
  z-index: 9;
  padding: 0 2vw;
}

.lft-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 25%;
  height: 100%;
}

.lft-nav a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.cntr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75%;
  height: 100%;
}

.cntr-nav .links {
  display: flex;
  align-self: center;
  justify-content: space-between;
  border: 1px solid #ffffff79;
  border-radius: 50px;
}

.links a {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.links a:hover {
  background-color: #ffffff1a;
}

.links a:nth-child(4) {
  border: 1px solid #ffffff55;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.links a:nth-child(4):hover {
  background-color: #fff;
  color: #000;
}

.rght-nav {
  width: 25%;
  height: 100%;
}

/* main */
main {
  width: 100%;
  min-height: 100vh;
}

/* ============ SECTION ONE — HERO ============ */
#one {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(168deg, #1b36b8 0%, #2952e3 55%, #3a5ef2 100%);
}

#one img {
  position: absolute;
  mix-blend-mode: luminosity;
  width: 50vw;
  scale: 1.05;
  z-index: 2;
}

#one .cirblur {
  position: absolute;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  filter: blur(5rem);
  background-color: #cecece33;
}

#one h1 {
  font-size: 15rem;
  position: absolute;
  text-align: center;
  z-index: 0;
  color: #fff;
  font-family: BeautL;
  font-weight: 400;
  line-height: 0.5;
  bottom: 20%;
}

#one h1 span {
  font-size: 7rem;
  color: var(--gold);
}

#one .hero-tag {
  position: absolute;
  top: 13%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  font-family: font02;
  opacity: 0.9;
  white-space: nowrap;
}

#one .hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  display: inline-block;
}

#one .hero-cta {
  position: absolute;
  bottom: 13.5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
}

#one .hero-cta a {
  padding: 16px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#one .hero-cta .cta-fill {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
}

#one .hero-cta .cta-fill:hover {
  background-color: transparent;
  color: #fff;
}

#one .hero-cta .cta-ghost {
  border: 1px solid #ffffff66;
  color: #fff;
}

#one .hero-cta .cta-ghost:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

#one p {
  position: absolute;
  bottom: 2%;
  width: 100%;
  text-align: center;
  color: #fff;
  z-index: 3;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  font-size: 0px;
  letter-spacing: 0.5px;
}

/* ============ SECTION TWO — ABOUT ============ */
#two {
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-color: black;
}

.inner-two {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
  width: 100%;
  min-height: 100vh;
  height: auto;
  background-color: white;
  scale: 0.8;
  padding: 9vh 7vw 10vh;
}

.heading {
  width: 100%;
  position: relative;
  height: 12.4rem;
}

.heading-top,
.heading-back {
  position: absolute;
  top: 0;
}

.heading-back {
  opacity: 0.3;
}

.heading-top h1 {
  width: 0%;
  text-wrap: nowrap;
  overflow: hidden;
}

.inner-two h4 {
  align-self: flex-start;
  font-size: 2rem;
  font-family: font02;
  letter-spacing: -1px;
  color: var(--accent);
}

.inner-two h1 {
  font-size: 3.7rem;
  text-align: left;
  align-self: flex-end;
  font-weight: 400;
  font-family: BeautL;
  letter-spacing: -1px;
}

.content-two {
  width: 100%;
  display: grid;
  grid-template-columns: 36% 1fr;
  gap: 4.5vw;
  align-items: stretch;
}

.about-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(165deg, #1d1d1d 0%, #000 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 480px;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 105%,
    #2952e37a 0%,
    transparent 62%
  );
}

.about-visual img {
  position: relative;
  width: 86%;
  display: block;
  z-index: 1;
}

.av-tag {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  z-index: 2;
  font-family: font02;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid #ffffff2e;
  background-color: #ffffff0f;
  padding: 0.7em 1.3em;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.8rem;
}

.about-st {
  position: relative;
  width: 100%;
}

.about-st + .about-st {
  border-top: 1px solid #00000012;
  padding-top: 2.6rem;
}

.st-text {
  font-family: BeautL;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  line-height: 1.68;
  color: #141414;
  letter-spacing: 0.2px;
}

.about-stats {
  width: 100%;
  border-top: 1px solid #00000014;
  margin-top: 0.6rem;
  padding-top: 1.5rem;
}

.stats-label {
  font-family: font02;
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
}

.stats-row {
  display: flex;
  margin-top: 0.5rem;
}

.stat {
  flex: 1;
  padding: 1.2rem 1.6rem 0;
}

.stat:first-child {
  padding-left: 0;
}

.stat + .stat {
  border-left: 1px solid #00000014;
}

.stat h3 {
  font-family: BeautL;
  font-weight: 400;
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  color: #141414;
  line-height: 1;
}

.stat h3 em {
  font-style: normal;
  color: var(--accent);
}

.stat p {
  font-family: font02;
  font-size: 0.66rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #00000066;
  margin-top: 0.7rem;
}

.st-text .wm {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.st-text .w {
  display: inline-block;
  will-change: transform;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-family: font02;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45em 1.1em;
  border-radius: 50px;
  white-space: nowrap;
  transform: translateY(-0.18em);
  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.pill-fill {
  background-color: var(--accent);
  color: #fff;
}

.pill-fill:hover {
  background-color: var(--dark);
  color: var(--gold);
}

.pill-ghost {
  border: 1px solid #00000042;
  color: #141414;
}

.pill-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pill-dark {
  background-color: var(--dark);
  color: var(--gold);
}

.pill-dark:hover {
  background-color: var(--accent);
  color: #fff;
}

/* ============ SECTION THREE — JOURNEY ============ */

#three {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9vh;
}

.three-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 5vw;
}

.three-top h3 {
  font-family: font02;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: 1.2rem;
}

.three-top h1 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-family: BeautL;
  font-weight: 400;
  line-height: 1.1;
}

.three-top h4 {
  font-family: font02;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.5;
  white-space: nowrap;
  padding-bottom: 0.6rem;
}

.timeline-wrap {
  width: 100%;
}

.timeline-track {
  display: flex;
  gap: 6vw;
  padding: 0 8vw;
  width: max-content;
  will-change: transform;
}

.milestone {
  position: relative;
  width: 32vw;
  max-width: 500px;
  flex-shrink: 0;
}

.milestone-year {
  display: block;
  font-family: BeautL;
  font-size: clamp(6rem, 9vw, 9.5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff59;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.milestone:hover .milestone-year {
  color: var(--accent);
  -webkit-text-stroke: 1px transparent;
}

.milestone-marker {
  position: relative;
  height: 1px;
  margin: 2.4rem 0 2.6rem;
  background-color: #ffffff24;
}

.milestone:not(:last-child) .milestone-marker {
  width: calc(100% + 6vw);
}

.milestone-marker::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 0 6px #2952e326;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.milestone:hover .milestone-marker::after {
  transform: translate(0, -50%) scale(1.4);
}

.milestone-loc {
  font-family: font02;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.milestone h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 500;
  margin: 0.9rem 0 1rem;
}

.milestone p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.55;
  max-width: 30rem;
}

.timeline-progressbar {
  position: absolute;
  bottom: 7vh;
  left: 5vw;
  right: 5vw;
  height: 1px;
  background-color: #ffffff1f;
}

.timeline-progress {
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

/* ============ SECTION FOUR — CAREER HIGHLIGHTS ============ */

#four {
  width: 100%;
  height: 150vh;
  background-color: #fff;
  overflow: hidden;
}

#four h1 {
  display: flex;
  align-items: center;
  font-size: 15rem;
  color: #000;
  text-wrap: nowrap;
  font-family: font02;
  font-weight: 500;
  letter-spacing: -8px;
  height: 50vh;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-evenly;
  width: 100%;
  height: 100vh;
  padding: 0vw 5vw;
}

.services h6 {
  font-size: 1.5rem;
  font-family: font02;
  letter-spacing: -2px;
  font-weight: 500;
  align-self: flex-start;
}

.service-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 3vw;
  width: 100%;
  padding: 1.4vw 0;
  border-bottom: 1px solid #00000014;
  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item:hover {
  border-color: var(--accent);
}

.service-item:hover h2 {
  color: var(--accent);
  transform: translateX(20px);
}

.service-item h2 {
  font-size: clamp(2.2rem, 5.5vw, 5.5rem);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-item span {
  font-family: BeautM;
  font-size: 1rem;
  text-align: right;
  opacity: 0.55;
  white-space: nowrap;
}

/* ============ SECTION FIVE — RECOGNITION ============ */

#five {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  height: 100vh;
  padding: 0vw 5vw;
  background-color: #fff;
}

#five h6 {
  font-size: 1.5rem;
  font-family: font02;
  letter-spacing: -2px;
  font-weight: 500;
  align-self: flex-start;
}

.cards-five {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0vw 10vw;
  width: 100%;
  height: 70vh;
  gap: 2vw;
}

.card-child-five {
  width: 28%;
  height: 60%;
  background: linear-gradient(160deg, #1c1c1c 0%, #000000 100%);
  border: 1px solid #ffffff14;
  border-radius: 22px;
  padding: 2.4vw 2vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-child-five::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 110%,
      var(--accent) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card-child-five:hover {
  transform: translateY(-14px);
  border-color: var(--accent);
}

.card-child-five:hover::after {
  opacity: 0.25;
}

.award-year {
  font-family: font02;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--accent-soft);
  position: relative;
  z-index: 1;
}

.award-text {
  position: relative;
  z-index: 1;
}

.award-text h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.6rem;
}

.award-text p {
  font-size: 0.95rem;
  opacity: 0.55;
}

/* ============ SECTION GALLERY — ROTATING FRAMES ============ */
/* Layout, spacing and animation values mirror Codrops'
   RotatingOnScrollAnimations demo 1 (base.css + .demo-1). */

#gallery {
  position: relative;
  width: 100%;
  background-color: #141414;
  color: #fff;
  isolation: isolate;
}

.gal-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25vh;
  padding-bottom: 35vh;
}

.gal-wrap {
  width: 100%;
  max-width: 600px;
  perspective: 900px;
  margin-bottom: -5rem;
}

.gal-item {
  width: 100%;
  aspect-ratio: 14 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0px;
  transform-style: preserve-3d;
  will-change: transform, filter;
}

.gal-mark {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100vw;
  transform: translateY(-50%);
  z-index: 5;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: plus-lighter;
  opacity: 0;
}

.gal-mark-inner {
  display: flex;
  gap: 3rem;
  width: max-content;
  position: relative;
  will-change: transform;
  transform: translateX(100vw);
}

.gal-mark-inner span {
  white-space: nowrap;
  text-transform: uppercase;
  font-family: font02;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent-soft);
  font-size: clamp(2rem, 16vw, 8rem);
  line-height: 1;
}

.gal-vignette {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    rgba(0, 0, 0, 0.2) 10%,
    rgba(0, 0, 0, 0.8) 80%
  );
  will-change: opacity;
}

/* ============ SECTION MOTION — VENTURES IN MOTION ============ */

#motion {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.motion-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.motion-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.62) 26%,
    rgba(0, 0, 0, 0) 58%
  );
}

.motion-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.motion-chapter {
  position: absolute;
  left: 6vw;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  max-width: min(480px, 38vw);
  opacity: 0;
}

.chapter-index {
  position: relative;
  padding-left: 46px;
  font-family: font02;
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 2rem;
}

.chapter-index::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 32px;
  height: 1px;
  background-color: var(--accent);
}

.motion-chapter h6 {
  font-family: font02;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: 1.1rem;
}

.motion-chapter h2 {
  font-family: BeautL;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  color: #fff;
  line-height: 1.04;
}

.motion-chapter p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 1.3rem;
  letter-spacing: 0.3px;
  max-width: 36ch;
}

.motion-hint {
  position: absolute;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: font02;
  font-size: 0.7rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff8c;
  z-index: 2;
}

.motion-progress {
  position: absolute;
  bottom: 7vh;
  right: 6vw;
  width: min(260px, 32vw);
  height: 1px;
  background-color: #ffffff1f;
  z-index: 2;
}

/* tablet & below — text docks to the bottom over a vertical scrim */
@media (max-width: 900px) {
  .motion-scrim {
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.55) 32%,
      rgba(0, 0, 0, 0) 62%
    );
  }

  .motion-chapter {
    left: 6vw;
    right: 6vw;
    max-width: none;
    justify-content: flex-end;
    padding-bottom: 20vh;
  }

  .motion-progress {
    left: 6vw;
    right: 6vw;
    width: auto;
    bottom: 9vh;
  }
}

.motion-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--accent);
}

.motion-progress-text {
  position: absolute;
  right: 0;
  bottom: 12px;
  font-family: font02;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: #ffffff8c;
}

/* ============ SECTION SIX — PHILOSOPHY ============ */

#six {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vw 6vw;
  overflow: hidden;
}

.philosophy-bg {
  position: absolute;
  left: 50%;
  top: -4%;
  font-family: BeautL;
  font-size: 44vw;
  line-height: 1;
  color: #2952e322;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 950px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.ph-quote .ph-word {
  display: inline-block;
}

.philosophy-inner h6 {
  font-family: font02;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
}

.quote-mark {
  font-family: BeautL;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.6;
}

.philosophy-inner blockquote {
  font-family: BeautL;
  font-size: clamp(1.4rem, 3.2vw, 2.6rem);
  line-height: 1.55;
  font-weight: 400;
}

.quote-author {
  font-family: font02;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 0.5rem;
}

/* ============ SECTION SEVEN — CONTACT ============ */

#seven {
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, #1b36b8 0%, #2952e3 62%, #3a5ef2 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding: 14vh 6vw 0;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  width: 100%;
  margin: auto 0;
}

.contact-inner h6 {
  font-family: font02;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

.contact-inner h1 {
  font-family: BeautL;
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
}

.contact-inner h1 .h-line {
  display: block;
  overflow: hidden;
  padding: 0 0.1em;
}

.contact-inner h1 .h-line-inner {
  display: block;
  will-change: transform;
}

.contact-inner h1 .x-dark {
  color: var(--dark);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.1rem, 2.6vw, 1.8rem);
  border-bottom: 1px solid #ffffff66;
  padding-bottom: 4px;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.contact-links a:hover {
  opacity: 0.6;
  border-color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 0.8rem;
}

.social-links a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border: 1px solid #ffffff55;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-family: font02;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #fff;
  border-radius: 50px;
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-links a:hover {
  color: var(--dark);
  border-color: #fff;
}

.social-links a:hover::before {
  transform: translateY(0);
}

.social-links a .arr {
  font-size: 0.9rem;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.social-links a:hover .arr {
  transform: translate(3px, -3px);
}

.contact-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 3rem;
}

.footer-name {
  width: 100%;
  text-align: center;
  font-family: BeautL;
  font-size: clamp(4rem, 13.5vw, 15rem);
  line-height: 0.8;
  color: #fff;
  white-space: nowrap;
  user-select: none;
  will-change: transform;
}

.footer-name .fn-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffffd9;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  #one h1 {
    font-size: 9rem;
  }

  #one h1 span {
    font-size: 4.5rem;
  }

  .inner-two h1 {
    font-size: 2.6rem;
  }

  .heading {
    height: 8.8rem;
  }

  #four h1 {
    font-size: 9rem;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 0 4vw;
  }

  .links a {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  #one .hero-tag {
    top: 11%;
    font-size: 0.65rem;
    letter-spacing: 0.28em;
  }

  #one h1 {
    bottom: 24%;
  }

  #one .hero-cta {
    bottom: 13%;
  }

  #one .hero-cta a {
    padding: 13px 28px;
    font-size: 0.85rem;
  }

  .content-two {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .about-visual {
    min-height: 420px;
    max-height: 56vh;
  }

  .about-visual img {
    width: auto;
    max-width: 88%;
    max-height: 92%;
  }

  .about-st + .about-st {
    padding-top: 2.2rem;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1 1 42%;
    padding: 1.4rem 1.2rem 0;
  }

  .stat:first-child {
    padding-left: 1.2rem;
  }

  .stat + .stat {
    border-left: none;
  }

  .stat:nth-child(even) {
    border-left: 1px solid #00000014;
  }

  #three {
    height: auto;
    padding: 14vh 0 12vh;
    gap: 7vh;
    justify-content: flex-start;
  }

  .three-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0 6vw;
  }

  .three-top h4 {
    padding-bottom: 0;
  }

  .timeline-track {
    flex-direction: column;
    gap: 4.5rem;
    width: 100%;
    padding: 0 6vw;
  }

  .milestone {
    width: 100%;
    max-width: none;
    padding-left: 1.8rem;
    border-left: 1px solid #ffffff24;
  }

  .milestone::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 0.6rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 0 5px #2952e326;
  }

  .milestone-year {
    font-size: 4.5rem;
  }

  .milestone-marker {
    display: none;
  }

  .milestone h2 {
    margin-top: 1.2rem;
  }

  .timeline-progressbar {
    display: none;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 1.2rem 0;
  }

  .service-item h2 {
    font-size: clamp(1.8rem, 7vw, 3.5rem);
    white-space: normal;
    line-height: 1.1;
  }

  .service-item span {
    font-size: 0.85rem;
    white-space: normal;
    text-align: left;
    max-width: 100%;
    opacity: 0.55;
  }

  .cards-five {
    flex-direction: column;
    height: auto;
    padding: 0;
    gap: 1.2rem;
  }

  .card-child-five {
    width: 100%;
    height: auto;
    min-height: 180px;
    padding: 6vw;
  }

  #five {
    height: auto;
    padding: 12vh 5vw;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .lft-nav {
    width: auto;
  }

  .cntr-nav {
    width: auto;
  }

  .rght-nav {
    display: none;
  }

  .lft-nav a {
    font-size: 1rem;
    white-space: nowrap;
  }

  .links a {
    padding: 9px 10px;
    font-size: 0.7rem;
    letter-spacing: 0;
  }

  #one h1 {
    font-size: 18vw;
    bottom: 26%;
    line-height: 0.95;
  }

  #one h1 span {
    font-size: 12.5vw;
  }

  #one img {
    width: 100vw;
    bottom: 35%;
  }

  #one .hero-tag {
    top: 12%;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  #one .hero-cta {
    bottom: 12%;
    flex-direction: column;
    width: 80%;
    gap: 10px;
  }

  #one .hero-cta a {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .inner-two {
    padding: 0 6vw;
    scale: 1;
  }

  .inner-two h1 {
    font-size: 1.5rem;
  }

  .inner-two h4 {
    font-size: 1.4rem;
  }

  .heading {
    height: 5.2rem;
  }

  .st-text {
    font-size: 1.12rem;
    line-height: 1.7;
  }

  .pill {
    font-size: 0.58em;
    letter-spacing: 1.2px;
  }

  #three {
    padding: 12vh 0 10vh;
    gap: 5vh;
  }

  .three-top h1 {
    font-size: 1.8rem;
  }

  .timeline-track {
    gap: 3.5rem;
  }

  .milestone-year {
    font-size: 3.4rem;
  }

  .milestone h2 {
    font-size: 1.45rem;
  }

  .milestone p {
    font-size: 0.95rem;
  }

  #four {
    height: 170vh;
  }

  #four h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    height: 30vh;
  }

  .services {
    height: auto;
    min-height: 100vh;
    padding: 6vh 6vw;
    gap: 2rem;
  }

  .service-item:hover h2 {
    transform: translateX(10px);
  }

  .motion-hint {
    display: none;
  }

  .motion-chapter h2 {
    font-size: 2.2rem;
  }

  #six {
    padding: 16vh 6vw;
  }

  .quote-mark {
    font-size: 4rem;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    padding: 11px 20px;
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .contact-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
    margin-bottom: 1.6rem;
  }

  .philosophy-bg {
    font-size: 70vw;
    top: 2%;
  }

  .footer-name {
    font-size: 15vw;
  }
}

@media (max-width: 400px) {
  .lft-nav a {
    font-size: 0.9rem;
  }

  .links a {
    padding: 9px 8px;
    font-size: 0.66rem;
  }
}

/* Touch devices — no hover cursor to mirror, hide the blend dot */
@media (hover: none), (pointer: coarse) {
  .mouse {
    display: none;
  }
}