/* ============================================
   NSJ AGENCY — Premium Stylesheet
   Black & White — Minimalist — High-End
   ============================================ */

@import url('https://use.typekit.net/jtq2ode.css');

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'vdl-lineg', monospace;
  background: #fff;
  color: #0a0a0a;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}


/* --- Grain Overlay --- */
.grain {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Page Loader --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader__bar {
  width: 60px;
  height: 1px;
  background: #ddd;
  position: relative;
  overflow: hidden;
}

.loader__bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  animation: loaderSlide 0.8s ease-in-out forwards;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

/* --- Selection --- */
::selection {
  background: #000;
  color: #fff;
}

/* --- Links & Base --- */
a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol { list-style: none; }

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}


/* ============================================
   TYPOGRAPHY — Refined Scale
   ============================================ */
.label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
}

.heading-xl {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #0a0a0a;
}

.heading-lg {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.heading-md {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.body-lg {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: #444;
  font-weight: 400;
}

.body-md {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
  color: #555;
}

.body-sm {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #777;
}


/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.section--sm {
  padding: clamp(2.5rem, 5vw, 5rem) 0;
}

.divider {
  width: 100%;
  height: 1px;
  background: #e8e8e8;
}

.divider--dark {
  background: #0a0a0a;
}


/* ============================================
   LANDING PAGE — Immersive
   ============================================ */
.landing {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.landing__logo-wrap {
  position: relative;
  width: clamp(260px, 38vw, 480px);
}

.landing__logo {
  width: 100%;
  opacity: 0;
  animation: logoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.landing__cta {
  position: absolute;
  right: 0;
  bottom: 2%;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #0a0a0a;
  opacity: 0;
  pointer-events: none;
}

.landing__cta.visible {
  pointer-events: auto;
  animation: ctaBlink 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ctaBlink {
  0%, 100% { opacity: 0; }
  20% { opacity: 1; }
  60% { opacity: 1; }
  80% { opacity: 0; }
}

.landing__line {
  position: absolute;
  background: #e0e0e0;
}

.landing__line--top {
  top: 2rem;
  left: 3rem;
  right: 3rem;
  height: 1px;
  transform: scaleX(0);
  animation: lineReveal 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s forwards;
  transform-origin: left;
}

.landing__line--right {
  top: 2rem;
  bottom: 2rem;
  right: 3rem;
  width: 1px;
  transform: scaleY(0);
  animation: lineRevealY 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s forwards;
  transform-origin: top;
}

.landing__line--bottom {
  bottom: 2rem;
  left: 3rem;
  right: 3rem;
  height: 1px;
  transform: scaleX(0);
  animation: lineReveal 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.8s forwards;
  transform-origin: right;
}

.landing__line--left {
  top: 2rem;
  bottom: 2rem;
  left: 3rem;
  width: 1px;
  transform: scaleY(0);
  animation: lineRevealY 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.4s forwards;
  transform-origin: bottom;
}

@keyframes lineReveal {
  to { transform: scaleX(1); }
}

@keyframes lineRevealY {
  to { transform: scaleY(1); }
}

.landing__corner {
  position: absolute;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ccc;
  opacity: 0;
}

.landing__corner--tl { top: 3rem; left: 4.5rem; animation: fadeIn 0.6s ease 1.2s forwards; }
.landing__corner--tr { top: 3rem; right: 4.5rem; animation: fadeIn 0.6s ease 1.8s forwards; }
.landing__corner--bl { bottom: 3rem; left: 4.5rem; animation: fadeIn 0.6s ease 3s forwards; }
.landing__corner--br { bottom: 3rem; right: 4.5rem; animation: fadeIn 0.6s ease 2.4s forwards; }

@keyframes fadeIn {
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .landing__line--top,
  .landing__line--bottom {
    left: 1.5rem;
    right: 1.5rem;
  }
  .landing__line--top { top: 1.5rem; }
  .landing__line--bottom { bottom: 1.5rem; }
  .landing__line--left,
  .landing__line--right {
    top: 1.5rem;
    bottom: 1.5rem;
  }
  .landing__line--left { left: 1.5rem; }
  .landing__line--right { right: 1.5rem; }

  .landing__corner {
    font-size: 0.5rem;
    letter-spacing: 0.15em;
  }
  .landing__corner--tl { top: 2.2rem; left: 2.5rem; }
  .landing__corner--tr { top: 2.2rem; right: 2.5rem; }
  .landing__corner--bl { bottom: 2.2rem; left: 2.5rem; }
  .landing__corner--br { bottom: 2.2rem; right: 2.5rem; }
}


/* ============================================
   NAVIGATION — Refined
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 65px;
  padding: 0 clamp(0.75rem, 1.5vw, 1rem);
}

.nav__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
  margin-left: -8px;
}

.nav__inner > a:first-child {
  margin-left: 0;
}

.nav__logo:hover {
  opacity: 0.5;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: -12px;
}

.nav__link {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #0a0a0a;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: #888;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__burger span {
  width: 20px;
  height: 1px;
  background: #0a0a0a;
  transition: all 0.3s ease;
  display: block;
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  z-index: 999;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
}

@media (max-width: 768px) {
  .nav__logo {
    margin-left: 0.5rem;
  }
  .nav__links { display: none; }
  .nav__burger {
    display: flex;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }
  .nav__mobile .nav__link {
    padding: 0.75rem 1rem;
  }

  /* Force horizontal padding on mobile — .hero and .section shorthand zeroes it out */
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Disable hover effects on touch */
  .service-card:hover::before { height: 0; }
  .service-card:hover { color: inherit; border-color: #e8e8e8; }
  .service-card:hover .service-card__number { color: #ccc; }
  .service-card:hover .service-card__desc { color: #666; }
  .cta-banner:hover { padding-left: 0; }
  .cta-banner:hover .cta-banner__arrow { transform: none; }
  .pricing-card:hover { transform: none; }
  .process-step:hover { padding-left: 0; }

  /* Snappier reveal on mobile */
  .reveal { transform: translateY(30px); }
}


/* ============================================
   PAGE CONTENT & ANIMATIONS
   ============================================ */
.page-content {
  padding-top: 65px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-delay-5 { transition-delay: 0.6s; }

/* Reveal from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Line draw animation */
.line-draw {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.line-draw.visible {
  transform: scaleX(1);
}


/* ============================================
   HERO — Dramatic
   ============================================ */
.hero {
  padding: clamp(6rem, 12vw, 12rem) 0 clamp(4rem, 8vw, 8rem);
}

.hero__label {
  margin-bottom: 1.5rem;
}

.hero__title {
  margin-bottom: 2rem;
}

.hero__subtitle {
  max-width: 580px;
}

.hero--left {
  text-align: left;
}

.hero--center {
  text-align: center;
}

.hero--center .hero__subtitle {
  margin: 0 auto;
}


/* ============================================
   STUDIO PAGE
   ============================================ */
.studio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  padding-left: 1.5rem;
}

.studio-intro__text p {
  margin-bottom: 1.5rem;
}

.studio-intro__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e8e8e8;
}

.stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 400;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid #e8e8e8;
  border-right: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.service-card:last-child {
  border-right: 1px solid #e8e8e8;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #0a0a0a;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover {
  color: #fff;
  border-color: #0a0a0a;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card__number {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #ccc;
  margin-bottom: 2rem;
  font-weight: 400;
  transition: color 0.5s ease;
}

.service-card:hover .service-card__number {
  color: #666;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-card__desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: #666;
  transition: color 0.5s ease;
}

.service-card:hover .service-card__desc {
  color: #999;
}

/* CTA Banners */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid #0a0a0a;
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-banner:last-of-type {
  border-bottom: 1px solid #0a0a0a;
}

.cta-banner:hover {
  padding-left: 1.5rem;
}

.cta-banner__text {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.cta-banner__arrow {
  font-size: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-weight: 400;
}

.cta-banner:hover .cta-banner__arrow {
  transform: translateX(12px);
}

@media (max-width: 768px) {
  .studio-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .service-card {
    border-right: 1px solid #e8e8e8;
    border-bottom: none;
  }

  .service-card:last-child {
    border-bottom: 1px solid #e8e8e8;
  }
}


/* ============================================
   PROJECTS PAGE — Editorial / Destructured
   ============================================ */
.project-ed {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(0.6rem, 1.2vw, 1.2rem);
  row-gap: clamp(0.6rem, 1.2vw, 1.2rem);
  align-items: start;
  margin-bottom: clamp(8rem, 14vw, 14rem);
}

.project-ed:last-child {
  margin-bottom: 0;
}

.project-ed__header {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #e8e8e8;
}

.project-ed__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.project-ed__tags {
  display: flex;
  gap: 1.5rem;
}

.project-ed__tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 400;
}

.project-ed__img {
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}

.project-ed__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-ed__img:hover::after {
  opacity: 0.04;
}

.project-ed__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-ed__img:hover img {
  transform: scale(1.03);
}

.project-ed__desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.project-ed__desc p {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: #555;
}

.project-ed__link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.project-ed__link:hover {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .project-ed {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }

  .project-ed__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .project-ed [style*="grid-column"] {
    grid-column: 1 / -1 !important;
  }

  .project-ed [style*="margin-top"] {
    margin-top: 0 !important;
  }
}


/* ============================================
   PRICING PAGE
   ============================================ */
.pricing-hero {
  text-align: center;
  padding: clamp(6rem, 12vw, 12rem) 0 clamp(3rem, 6vw, 6rem);
}

.pricing-hero__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid #0a0a0a;
}

/* Method Steps */
.pricing-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.method-step {
  padding: clamp(2rem, 3vw, 3rem);
  border: 1px solid #e8e8e8;
  border-right: none;
  text-align: center;
  transition: all 0.4s ease;
}

.method-step:last-child {
  border-right: 1px solid #e8e8e8;
}

.method-step:hover {
  background: #fafafa;
}

.method-step__week {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.method-step__title {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.method-step__desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
}

/* Pricing Cards */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pricing-card {
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2vw, 2rem);
  border: 1px solid #e8e8e8;
  border-right: none;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.pricing-card:last-child {
  border-right: 1px solid #e8e8e8;
}

.pricing-card:hover {
  background: #fafafa;
}

.pricing-card.featured {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}

.pricing-card.featured:hover {
  background: #111;
}

.pricing-card__name {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 2rem;
}

.pricing-card__price {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
}

.pricing-card__duration {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-card__duration {
  color: #666;
}

.pricing-card__desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card.featured .pricing-card__desc {
  color: #888;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}

.pricing-card.featured .pricing-card__features {
  border-top-color: #2a2a2a;
}

.pricing-card__feature {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.02em;
}

.pricing-card.featured .pricing-card__feature {
  color: #999;
}

/* Process */
.process-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.process-title {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: #aaa;
}

.process-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: start;
  transition: padding-left 0.4s ease;
}

.process-step:first-child {
  border-top: 1px solid #e8e8e8;
}

.process-step:hover {
  padding-left: 0.5rem;
}

.process-step__num {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #ccc;
  padding-top: 0.2rem;
}

.process-step__content h4 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step__content p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .pricing-method,
  .pricing-table {
    grid-template-columns: 1fr;
  }

  .method-step,
  .pricing-card {
    border-right: 1px solid #e8e8e8;
    border-bottom: none;
  }

  .method-step:last-child,
  .pricing-card:last-child {
    border-bottom: 1px solid #e8e8e8;
  }

  .pricing-card.featured {
    border-color: #0a0a0a;
  }
}


/* ============================================
   DUO PAGE
   ============================================ */
.duo-intro {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.duo-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.duo-profile {
  padding: clamp(2.5rem, 4vw, 4rem);
  border: 1px solid #e8e8e8;
  transition: background 0.4s ease;
}

.duo-profile:first-child {
  border-right: none;
}

.duo-profile:hover {
  background: #fafafa;
}

.duo-profile__photo-wrap {
  margin-bottom: 2rem;
  overflow: hidden;
}

.duo-profile__photo {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%) contrast(1.05) brightness(1.02);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.duo-profile:first-child .duo-profile__photo {
  object-position: center 60%;
}

.duo-profile:hover .duo-profile__photo {
  transform: scale(1.03);
}

.duo-profile__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.duo-profile__role {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.duo-profile__bio {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 2.5rem;
}

.duo-profile__skills {
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}

.duo-profile__skills-title {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 400;
  margin-bottom: 1rem;
}

.duo-profile__skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.skill-tag {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.75rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-tag:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  transform: translateY(-2px);
}

.duo-philosophy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.duo-philosophy blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.55;
  font-style: italic;
  letter-spacing: -0.01em;
  color: #222;
}

.duo-philosophy cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  font-weight: 400;
}

@media (max-width: 768px) {
  .duo-profiles {
    grid-template-columns: 1fr;
  }

  .duo-profile:first-child {
    border-right: 1px solid #e8e8e8;
    border-bottom: none;
  }
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info__item {
  margin-bottom: 2.5rem;
}

.contact-info__label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ccc;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.contact-info__value {
  font-size: 1.05rem;
  font-weight: 400;
}

.contact-info__value a {
  position: relative;
  display: inline;
}

.contact-info__value a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  transition: background 0.3s ease;
}

.contact-info__value a:hover::after {
  background: #0a0a0a;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: #aaa;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #e0e0e0;
  transition: border-color 0.3s ease;
  background: transparent;
  color: #0a0a0a;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0a0a0a;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ccc;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1.5px solid #0a0a0a;
  background: #0a0a0a;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}

.btn:hover {
  background: #fff;
  color: #0a0a0a;
}

.btn--outline {
  background: transparent;
  color: #0a0a0a;
}

.btn--outline:hover {
  background: #0a0a0a;
  color: #fff;
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ============================================
   FOOTER — Minimal
   ============================================ */
.footer {
  border-top: 1px solid #e8e8e8;
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.footer__left {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: #bbb;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
}

a.footer__left:hover {
  color: #0a0a0a;
}

/* Legal page */
.legal-content {
  max-width: 720px;
}

.legal-content a {
  color: #0a0a0a;
  border-bottom: 1px solid #ccc;
  transition: border-color 0.3s ease;
}

.legal-content a:hover {
  border-color: #0a0a0a;
}

.footer__right {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: #0a0a0a;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}


/* ============================================
   UTILITIES
   ============================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 4rem; }

.flex { display: flex; }
.gap-3 { gap: 1.5rem; }



/* ============================================
   ENHANCED INTERACTIONS
   ============================================ */

/* Smooth will-change hints for animated elements */
.cta-banner__text,
.cta-banner__arrow {
  will-change: transform;
}

.project__gallery--hero .project__img-wrapper {
  will-change: clip-path;
}


/* Pricing card hover lift */
.pricing-card {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  background: #fafafa;
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  background: #111;
  transform: translateY(-4px);
}

/* Process step number pulse on hover */
.process-step__num {
  transition: color 0.4s ease, letter-spacing 0.4s ease;
}

.process-step:hover .process-step__num {
  color: #0a0a0a;
  letter-spacing: 0.25em;
}

/* Divider enhanced */
.divider {
  transform-origin: left;
}

/* Footer links hover underline */
.footer__link {
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #0a0a0a;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__link:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════
   AUTH – Login / Signup
   ═══════════════════════════════════════ */

.auth-container {
  max-width: 440px;
  margin: 0 auto;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}

.auth-btn {
  width: 100%;
  justify-content: center;
}

.auth-message {
  display: none;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1px solid;
}

.auth-message--error {
  color: #b91c1c;
  border-color: #b91c1c;
  background: #fef2f2;
}

.auth-message--success {
  color: #15803d;
  border-color: #15803d;
  background: #f0fdf4;
}

/* Field errors */
.form-error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: #b91c1c;
}

.input--error {
  border-color: #b91c1c !important;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: #aaa;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.auth-google-btn:hover {
  border-color: #0a0a0a;
  background: #fafafa;
}

.auth-toggle {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #777;
}

.auth-toggle-btn {
  background: none;
  border: none;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.auth-toggle-btn:hover {
  color: #555;
}

.auth-forgot {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: none;
  border: none;
  color: #aaa;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-align: center;
  padding: 0;
}

.auth-forgot:hover {
  color: #0a0a0a;
}

/* ═══════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════ */

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dashboard-card {
  padding: 2.5rem;
  border: 1px solid #e8e8e8;
}

.dashboard-card__placeholder {
  margin-top: 2rem;
  padding: 2rem;
  border: 1px dashed #e8e8e8;
  text-align: center;
  color: #aaa;
}

/* Logout button styled as cta-banner */
button.cta-banner {
  width: 100%;
  font-family: inherit;
  cursor: pointer;
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   MOBILE — Small phones (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

  /* ── Layout ── */
  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section--sm {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .divider {
    margin: 0;
  }

  /* ── Typography ── */
  .heading-xl {
    font-size: 2.2rem;
    letter-spacing: -0.03em;
  }

  .heading-lg {
    font-size: 1.6rem;
  }

  .heading-md {
    font-size: 1.15rem;
  }

  /* ── Hero ── */
  .hero {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ── Navigation mobile ── */
  .nav__mobile {
    gap: 1.5rem;
  }

  .nav__mobile .nav__link {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
  }

  /* ── Landing ── */
  .landing__cta {
    font-size: 0.55rem;
  }

  /* ── Studio — Stats ── */
  .studio-intro {
    padding-left: 0;
  }

  .stat__number {
    font-size: 1.8rem;
  }

  .stat__label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  /* ── Service Cards ── */
  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .service-card__title {
    font-size: 1.05rem;
  }

  .service-card__desc {
    font-size: 0.82rem;
    line-height: 1.7;
  }

  .service-card__number {
    margin-bottom: 1.25rem;
  }

  /* ── CTA Banners ── */
  .cta-banner {
    padding: 1.5rem 0;
  }

  .cta-banner__text {
    font-size: 1.1rem;
  }

  .cta-banner__arrow {
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  /* ── Projects ── */
  .project-ed {
    row-gap: 0.6rem;
    margin-bottom: 4rem;
  }

  .project-ed__title {
    font-size: 1.3rem;
  }

  .project-ed__desc p {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .project-ed__link {
    font-size: 0.82rem;
    padding: 0.35rem 0;
    display: inline-block;
  }

  .project-ed__tag {
    font-size: 0.55rem;
  }

  /* ── Pricing ── */
  .pricing-hero {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .pricing-hero__badge {
    font-size: 0.65rem;
    padding: 0.6rem 1.4rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .pricing-card__name {
    font-size: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .pricing-card__desc {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .pricing-card__feature {
    font-size: 0.72rem;
  }

  .method-step {
    padding: 1.5rem 1.25rem;
  }

  .method-step__title {
    font-size: 1rem;
  }

  .process-step {
    grid-template-columns: 35px 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  /* ── Duo ── */
  .duo-profile {
    padding: 2rem 1.25rem;
  }

  .duo-profile__photo {
    height: 220px;
  }

  .duo-profile__name {
    font-size: 1.4rem;
  }

  .duo-profile__bio {
    font-size: 0.85rem;
    line-height: 1.75;
  }

  .skill-tag {
    font-size: 0.68rem;
    padding: 0.5rem 0.85rem;
  }

  .duo-philosophy blockquote {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  /* ── Contact ── */
  .contact-form {
    gap: 1.5rem;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.85rem 0;
  }

  .contact-info__value {
    font-size: 0.95rem;
  }

  .contact-info__item {
    margin-bottom: 1.5rem;
  }

  /* ── Auth / Login ── */
  .auth-container {
    max-width: 100%;
  }

  .auth-form .form-group {
    margin-bottom: 1.25rem;
  }

  .auth-google-btn {
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
  }

  .auth-divider {
    margin: 1.5rem 0;
  }

  .auth-toggle {
    margin-top: 1.5rem;
  }

  .auth-forgot {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }

  .auth-message {
    font-size: 0.8rem;
    padding: 0.85rem 1rem;
  }

  .auth-btn {
    font-size: 0.75rem;
  }

  /* ── Dashboard ── */
  .dashboard-card {
    padding: 1.75rem 1.25rem;
  }

  .dashboard-card__placeholder {
    margin-top: 1.5rem;
    padding: 1.5rem;
  }

  /* ── Footer ── */
  .footer {
    padding: 2rem 0;
  }

  .footer__right {
    gap: 1.5rem;
  }

  .footer__link {
    font-size: 0.6rem;
    padding: 0.35rem 0;
  }

  /* ── Buttons (Calendly etc.) ── */
  .btn--outline {
    padding: 0.9rem 1.5rem;
    font-size: 0.7rem;
  }
}


/* ============================================
   MOBILE — Very small phones (max-width: 375px)
   ============================================ */
@media (max-width: 375px) {
  .landing__corner {
    display: none;
  }

  .landing__line--top,
  .landing__line--bottom {
    left: 1rem;
    right: 1rem;
  }
  .landing__line--top { top: 1rem; }
  .landing__line--bottom { bottom: 1rem; }
  .landing__line--left { left: 1rem; }
  .landing__line--right { right: 1rem; }
  .landing__line--left,
  .landing__line--right {
    top: 1rem;
    bottom: 1rem;
  }

  .heading-xl {
    font-size: 1.9rem;
  }

  .heading-lg {
    font-size: 1.4rem;
  }
}
