/* ─── DESIGN TOKENS ─── */
:root {
  /* Backgrounds & Surfaces */
  --clr-bg: #ffffff;
  --clr-dark: #000000;
  --clr-surface: #f5f4f2;
  --clr-accent: #22c55e;

  /* Text */
  --txt-black: #000000;
  --txt-white: #ffffff;
  --txt-grey: rgba(0, 0, 0, 0.45);
  --txt-grey-inv: rgba(255, 255, 255, 0.8);

  /* Semantic text — 80% opacity for body copy */
  --txt-on-light: rgba(0, 0, 0, 1);
  --txt-on-dark: rgba(255, 255, 255, 0.8);

  /* Border Radius */
  --radius: 0px;
  --radius-sm: 0px;

  /* Type Scale */
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-meta: 14px;
  --fs-base: 18px;
  --fs-nav: 19px;
  --fs-md: 20px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  background: var(--clr-bg);
}
/* ─── TYPOGRAPHY ─── */

/* Body text — Inter base */
p,
.text-body {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.5;
  color: var(--txt-on-light);
  max-width: 65ch;
}

p {
  margin: 0;
  padding: 0;
}

/* Small uppercase label — roles, tags, captions */
.text-caption {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-xs);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Display headings — Antonio bold */
h1,
h2,
h3 {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  color: inherit;
  margin: 0;
}

body {
  font-family: "Antonio", sans-serif;
  color: var(--txt-black);
  letter-spacing: -0.03%;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0 100px;
  position: relative;
}
.typing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#type-text {
  font-size: 60px;
  letter-spacing: -3%;
  color: black;

  font-weight: 500;
}

#pipe {
  height: 50px;
  width: 4px;
  background: var(--clr-dark);
  display: inline-block;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%,
  100% {
    visibility: visible;
  }
  50% {
    visibility: hidden;
  }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0px;
}

.nav-logo {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
  color: black;
}

.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}

.nav-links a {
  font-size: var(--fs-nav);
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.nav-links a.contact {
  padding: 8px 16px;
  background: var(--clr-dark);
  color: var(--txt-white);
}

.nav-links a:hover {
  opacity: 0.5;
}

nav {
  transition:
    background 0.35s ease,
    backdrop-filter 0.35s ease;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

nav.scrolled {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

nav.scrolled .nav-logo,
nav.scrolled .nav-links a {
  color: var(--txt-white);
}

nav.scrolled .nav-hamburger span {
  background: var(--clr-bg);
}
nav.scrolled .nav-links a.contact {
  background: var(--clr-bg);
  color: var(--txt-black);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--clr-bg);
}

/* ─── HERO V2 ─── */
.hero-v2 {
  display: flex;
  align-items: stretch;
  isolation: isolate;
  z-index: 0;
  overflow: visible;
}

.hero-v2-inner {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: 120px;
}

.hero-v2-left {
  flex: 0 0 48%;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0px;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-cpy {
  line-height: 1.4;
  margin-top: 16px;
}

.hero-tag strong {
  font-weight: 700;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.hero-heading {
  font-size: clamp(80px, 7.5vw, 175px);
  line-height: 1;
  color: var(--txt-black);
  letter-spacing: -5.5%;
  display: flex;
  flex-direction: column;
}

.hero-line-wrap {
  display: block;
  overflow: hidden;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-v2-right {
  flex: 0 0 52%;
  position: relative;

  display: flex;
  align-items: flex-end;
}

.hero-v2-img {
  width: 90%;
  height: 90vh;
  position: relative;

  max-width: 70%;
  z-index: 3;

  display: block;
}

/* ─── SECTION LABELS (shared) ─── */
.section-label {
  font-size: var(--fs-md);
  text-transform: uppercase;
  color: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 40px;
}

/* ─── MY WORK ─── */
.work {
  position: relative;
  width: 100%;
  background: var(--clr-dark);
  color: var(--txt-white);
  padding: 240px 0;
}

.work .section-label {
  position: absolute;
  padding: 0;
  margin: 0;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 250px;
}

.work-item {
  display: flex;
  align-items: start;
  gap: 60px;
}

.work-item-info {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slide-num {
  font-size: var(--fs-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.slide-title {
  font-size: clamp(52px, 7.5vw, 80px);
  color: var(--txt-white);
}

.slide-year {
  font-size: var(--fs-base);
  color: var(--txt-on-dark);
  margin-top: 4px;
}

.slide-link {
  display: inline-block;
  font-size: var(--fs-base);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--txt-white);
  margin-top: 32px;
  transition: opacity 0.2s ease;
}

.slide-link:hover {
  opacity: 0.45;
}

.slide-media {
  flex: 0 0 52%;
  min-width: 0;
  height: 550px;
}

.slide-media-inner {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: crosshair;
  width: 600px;
  height: 100%;
}

.slide-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    filter 0.45s ease,
    transform 0.45s ease;
}

.slide-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  height: 80%;
  border-radius: var(--radius-sm);
  /* box-shadow: 0 20px 70px rgba(0, 0, 0, 0.7); */
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.slide-media-inner:hover .slide-video {
  opacity: 1;
}

.slide-media-inner:hover .slide-img {
  filter: blur(7px) brightness(0.45);
  transform: scale(1.04);
}

/* Work footer */
.work-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 48px;
}

.btn-outlined-dark {
  background: transparent;
  color: var(--txt-white);
  border-color: var(--txt-white);
}

.btn-outlined-dark:hover {
  background: var(--clr-bg);
  color: var(--txt-black);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  width: 200px;
  text-align: center;
  font-size: var(--fs-base);
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  transition:
    background 0.25s ease,
    color 0.25s ease;
  cursor: pointer;
}

.btn-outlined {
  background: transparent;
  color: var(--txt-black);
  border-color: var(--txt-black);
}

.btn-outlined:hover {
  background: var(--clr-dark);
  color: var(--txt-white);
}

.btn-primary {
  background: var(--clr-dark);
  color: var(--txt-white);
  border-color: var(--txt-black);
}

.btn-primary:hover {
  background: transparent;
  color: var(--txt-black);
}

.btn-primary-dark {
  background: var(--clr-bg);
  color: var(--txt-black);
  border-color: var(--txt-white);
}

.btn-primary-dark:hover {
  background: transparent;
  color: var(--txt-white);
}

.project-info .btn {
  margin-top: 24px;
}

.project-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.project-row.reverse .project-image {
  justify-content: flex-start;
}

.project-image img {
  width: 100%;
  height: auto;
  display: block;
}

.work-footer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 72px;
}

/* ─── ABOUT ─── */
.about {
  padding: 200px 0px;
  position: sticky;
  width: 100%;
  background: var(--clr-bg);
  color: var(--txt-black);
}

.letter {
  display: inline;
  color: var(--txt-on-light);
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.about-content {
  width: 100%;
  text-align: center;
}

.animate {
  letter-spacing: 0;
  line-height: 1.6;
  text-align: left;
  width: 80%;
  margin: 0 auto;
}

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 200;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-dark);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open span {
  background: var(--clr-bg);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── MOBILE MENU OVERLAY ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 10vw;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu.visible {
  opacity: 1;
}

.mobile-menu-link {
  font-weight: 700;
  font-size: clamp(44px, 12vw, 80px);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--txt-white);
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    color 0.2s ease;
}

.mobile-menu.visible .mobile-menu-link:nth-child(1) {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}
.mobile-menu.visible .mobile-menu-link:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.12s;
}
.mobile-menu.visible .mobile-menu-link:nth-child(3) {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.19s;
}

.mobile-menu-link:hover {
  color: rgba(255, 255, 255, 0.4);
}

.mobile-menu-line {
  position: absolute;
  bottom: 48px;
  left: 10vw;
  right: 10vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.mobile-menu-footer {
  position: absolute;
  bottom: 32px;
  left: 10vw;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  width: 100%;
  background: var(--clr-dark);
  overflow: hidden;
  padding: 200px 0;
}

.testimonials .section-label {
  color: var(--txt-white);
  margin-bottom: 40px;
}

.t-slider-wrap {
  position: relative;
}

.t-slider-viewport {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.t-slider-viewport.is-grabbing {
  cursor: grabbing;
}

.t-track {
  display: flex;
  gap: 16px;
  padding: 0 0 4px;
  width: max-content;
}

.t-card {
  flex: none;
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 28px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.t-quote {
  display: block;
  font-size: 118px;
  line-height: 0.6;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  user-select: none;
}

.t-text {
  color: #1a1a1a;
  flex: 1;
  width: 100%;
  letter-spacing: 0;
}

.t-text mark {
  background: transparent;
  font-style: normal;
}

.t-author-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
}

.t-author {
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1.1;
  color: var(--txt-black);
}

.t-role {
  color: var(--txt-on-light);
  font-size: 16px;
  letter-spacing: -3%;
}

.t-arrows {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  padding-top: 28px;
}

.t-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
  color: #fff;
}

.t-arrow svg {
  width: 20px;
  height: 16px;
  color: var(--clr-dark);
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  background: var(--clr-bg);
  padding-top: 100px;
  padding-bottom: 0;
  color: var(--txt-black);
}

.footer .section-label {
  color: var(--txt-black);
  margin: 0;
  padding: 0;
}

.footer-heading {
  display: inline-flex;
  align-items: flex-end;
  gap: 16px;
  font-size: 150px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--txt-black);
  line-height: 1.1;
  transition: opacity 0.2s ease;
}

.footer-heading:hover {
  opacity: 0.7;
}

.footer-heading-wrapper {
  gap: 40px;
  display: flex;
  align-items: end;
  margin-bottom: 8px;
  position: relative;
  right: 12px;
}
.footer-heading-wrapper svg {
  width: clamp(36px, 6vw, 86px);
  height: clamp(36px, 6vw, 86px);
  flex-shrink: 0;
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

.footer-link {
  font-size: var(--fs-base);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--txt-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.45;
}

.footer-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.footer-link:hover svg {
  transform: translate(2px, -2px);
}

.footer-bottom {
  background: var(--clr-dark);
  padding-top: 12px;
  padding-bottom: 12px;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-privacy {
  font-size: var(--fs-meta);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--txt-white);
  transition: opacity 0.2s ease;
}

.footer-privacy:hover {
  opacity: 0.45;
}

.footer-copy {
  font-size: var(--fs-meta);
  text-transform: uppercase;
  color: var(--txt-white);
  background: var(--clr-dark);
}

/* ─── FOOTER INVERTED (dark bg, white text) ─── */
.footer--inverted {
  background: var(--clr-dark);
  color: var(--txt-white);
}

.footer--inverted .section-label {
  color: var(--txt-white);
}

.footer--inverted .footer-heading {
  color: var(--txt-white);
}

.footer--inverted .footer-link {
  color: var(--txt-white);
}

.footer--inverted .footer-bottom {
  background: var(--clr-bg);
}

.footer--inverted .footer-privacy {
  color: var(--txt-black);
}

.footer--inverted .footer-copy {
  color: var(--txt-black);
  background: var(--clr-bg);
}

/* ─── RESPONSIVE: 1280px ─── */

/* ─── RESPONSIVE: 1440px ─── */
@media (max-width: 1440px) {
  .section {
    padding: 200px 0 200px;
  }

  .testimonials {
    padding: 160px 0;
  }

  .project-title {
    font-size: 100px;
  }

  .animate {
    font-size: 18px;
    line-height: 1.6;
  }

  .footer-heading {
    font-size: 190px;
  }

  .footer {
    padding-top: 120px;
  }

  .work {
    padding: 200px 0;
  }
}
@media (max-width: 1280px) {
  .hero-v2-img {
    width: 100%;
  }
  .container {
    padding: 0 60px;
  }

  .section {
    padding: 140px 0 140px;
  }

  .about {
    padding: 180px 0;
  }

  .testimonials {
    padding: 120px 0;
  }

  .project-title {
    font-size: 90px;
  }

  .animate {
    font-size: 18px;
    line-height: 1.6;
  }

  .footer-heading {
    font-size: 160px;
  }

  .footer {
    padding-top: 120px;
  }

  .work {
    padding: 180px 0;
  }

  .hero-v2-inner {
    padding-top: 90px;
  }
  .animate {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* ─── RESPONSIVE: 1024px (tablet) ─── */
@media (max-width: 1024px) {
  .work-item {
    gap: 32px;
  }
  .hero-tag {
    font-size: 17px;
  }
  .hero-heading {
    font-size: 80px;
  }

  .work-item-info {
    flex: 0 0 44%;
  }

  .slide-media {
    flex: 0 0 50%;
  }

  .hero-v2-left {
    flex: 0 0 45%;
  }
  .hero-v2-right {
    flex: 0 0 55%;
  }

  .slide-title {
    font-size: clamp(40px, 5.5vw, 80px);
  }
  .work-list {
    gap: 60px;
  }
  .hero-v2-img {
    height: 80vh;
  }
  .work {
    padding: 100px 0;
  }

  .animate {
    font-size: 18px;
    line-height: 1.6;
    width: 100%;
  }
}
/* ─── RESPONSIVE: 768px ─── */
@media (max-width: 820px) {
  .container {
    padding: 0 20px;
  }

  nav {
    padding: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
  .hero {
    height: auto;
  }
  /* ── Hero V2 Mobile ── */
  .hero-v2-inner {
    flex-direction: column;
    padding-top: 70px;
  }

  .hero-v2-left {
    flex: none;
    height: auto;

    gap: 8px;
  }

  .hero-v2-right {
    flex: none;
    height: 60vh;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
  }
  .hero-v2-img {
    height: 100%;
    width: 70%;
    margin: 0 auto;
  }

  .hero-heading {
    font-size: clamp(44px, 18vw, 110px);
  }

  .hero-tag {
    font-size: 13px;
  }

  .work-list {
    gap: 100px;
  }

  .section {
    padding: 117px 0 100px;
  }

  .testimonials {
    padding: 120px 0;
  }

  .footer {
    padding-top: 100px;
    padding-bottom: 0;
  }
  .work {
    padding: 100px 0;
  }

  .section-label {
    margin: 0;
    padding: 0;
  }

  /* ── Mobile Work List ── */
  .work .section-label {
    padding: 0;
    margin: 0;
  }
  .slide-media {
    height: 400px;
  }
  .slide-media-inner {
    width: auto;
  }

  .work-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .work-item-info {
    flex: unset;
    width: 100%;
  }

  .slide-title {
    font-size: clamp(40px, 13vw, 72px);
  }

  .slide-link {
    margin-top: 16px;
  }

  .slide-media {
    width: 100%;
    flex: unset;
  }
  .work-list {
    margin-top: 30px;
  }
  .work-footer {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 14px;
    margin-top: 36px;
  }

  .about-content {
    width: 100%;
  }

  .slide-video {
    display: none;
  }

  .slide-media-inner:hover .slide-img {
    filter: none;
    transform: none;
  }

  .animate {
    text-align: left;
    width: 100%;
  }

  .about-cta {
    margin-top: 40px;
  }

  /* ── Mobile Testimonials ── */
  .testimonials .section-label {
    margin: 0;
    padding: 0;
  }

  .t-card {
    flex: 0 0 calc(100vw - 80px);
    padding: 32px 28px;
    min-height: 0;
  }

  .t-track {
    padding: 0 0 4px;
    gap: 12px;
  }

  .t-text {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 24px;
    width: 100%;
  }

  .t-arrow {
    width: 40px;
    height: 40px;
  }

  .testimonials .section-label {
    margin-bottom: 24px;
  }

  .footer-heading {
    font-size: 65px;
    gap: 12px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-heading-wrapper {
    margin-bottom: 30px;
    gap: 12px;
    right: 0;
  }
  .footer .section-label {
    margin: 0;
    padding: 0;
  }

  .animate {
    width: 90%;
  }
}

@media (max-height: 450px) {
  .hero,
  .hero-v2-left,
  .hero-v2-right {
    height: auto;
  }
  .hero-heading {
    font-size: 70px;
  }
  .hero-v2-left {
    width: 50%;
  }
  .hero-v2-img {
    width: 300px;
    height: 400px;
  }
  .hero-v2-inner {
    flex-direction: row;
  }
  /* .hero-v2-img {
    height: auto;
  } */

  .hero-tag {
    font-size: 17px;
  }

  .footer-heading {
    font-size: 139px;
  }
}

/* ─── RESPONSIVE: 480px ─── */
@media (max-width: 480px) {
  .nav-logo {
    font-size: 18px;
  }
  .project-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero {
    height: auto;
  }
  .hero-heading {
    font-size: 60px;
  }

  .hero-v2-left {
    height: 30vh;
  }

  .hero-v2-inner {
    justify-content: space-between;
    gap: 20px;
  }
  .hero-tag {
    width: 300px;
  }
  .hero-v2-img {
    height: 100%;
  }
  .hero-v2-right {
    height: 350px;
  }

  .animate {
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
    width: 100%;
  }

  #type-text {
    font-size: 25px;
    font-weight: 500;
  }

  .work {
    padding: 115px 0;
  }
  .about {
    padding: 100px 0;
  }
  .testimonials {
    padding: 68pxpx 0;
  }
  .work-list {
    gap: 40px;
  }

  .t-author-block {
    margin-top: 0px;
  }

  .t-quote {
    font-size: 80px;
    line-height: 0.6;
  }
}

/* ─── PAGE TRANSITION COVER ─── */
#page-cover {
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 9990;
  pointer-events: none;
  will-change: transform;
}

/* ─── LOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--clr-dark);
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  overflow: hidden;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--clr-bg);
}

.loader-count {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 20vw, 200px);
  line-height: 1;
  color: var(--txt-white);
  letter-spacing: -0.04em;
  user-select: none;
}

/* Sections hidden until loader exits */
.hero,
.work,
.about,
.testimonials,
footer {
  opacity: 0;
}
