/* =========================================================
   THEME VARIABLES
========================================================= */

:root {
  --bg: #ffffff;
  --text: #050505;
  --muted: #777777;
  --muted-dark: #555555;

  --border: #d9d9d9;
  --border-strong: #999999;

  --surface: #fafafa;
  --surface-hover: #f3f3f3;

  --button-bg: #050505;
  --button-text: #ffffff;

  --image-bg: #dddddd;

  --video-overlay: rgba(0, 0, 0, 0.55);
}

html[data-theme="dark"] {
  --bg: #0b0b0b;
  --text: #f5f5f5;
  --muted: #a0a0a0;
  --muted-dark: #b8b8b8;

  --border: #2b2b2b;
  --border-strong: #666666;

  --surface: #151515;
  --surface-hover: #1c1c1c;

  --button-bg: #f5f5f5;
  --button-text: #050505;

  --image-bg: #222222;

  --video-overlay: rgba(0, 0, 0, 0.65);
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

img,
video {
  display: block;
  max-width: 100%;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}


/* =========================================================
   HEADER
========================================================= */

header {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  padding: 30px 38px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 100;

  background: var(--bg);

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.logo {
  font-family: "Manrope", sans-serif;

  font-size: 20px;
  font-weight: 600;

  letter-spacing: -0.8px;

  white-space: nowrap;

  transition: color 0.3s ease;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}


/* =========================================================
   NAVIGATION
========================================================= */

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  position: relative;

  font-size: 12px;
  color: var(--muted-dark);

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

nav a:hover {
  color: var(--text);
}


/* =========================================================
   THEME TOGGLE
========================================================= */

.theme-toggle {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;

  cursor: pointer;

  color: var(--text);

  font-size: 16px;
  line-height: 1;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.theme-toggle:hover {
  transform: rotate(12deg);
}

.theme-icon {
  display: block;
  line-height: 1;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {
  display: none;

  width: 30px;
  height: 30px;

  border: 0;
  background: transparent;

  cursor: pointer;

  font-size: 17px;
  line-height: 1;

  color: var(--text);
}


/* =========================================================
   MAIN
========================================================= */

main {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 38px;
}


/* =========================================================
   HOME HERO
========================================================= */

.hero {
  min-height: 500px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  position: relative;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin-top: -300px;

  font-family: "Manrope", sans-serif;
  font-size: 140px;
  font-weight: 600;

  line-height: 0.9;
  letter-spacing: -9px;

  text-align: center;
  white-space: nowrap;

  color: var(--text);

  animation: heroTitle 1s ease forwards;
}

.hero-images {
  position: absolute;
  inset: 76% auto auto 50%;

  width: 500px;
  height: 450px;

  transform: translate(-50%, -50%);

  pointer-events: none;
}

.hero-image {
  position: absolute;

  object-fit: cover;

  background: var(--image-bg);

  transition:
    transform 0.4s ease,
    background-color 0.3s ease;
}

.hero-image.main {
  width: 300px;
  height: 402px;
  left: -90px;
  top: -30px;
  object-fit: fill;

  animation:
    heroImageMain 1s ease forwards;
}


.hero-image.small {
  width: 180px;
  height: 300px;

  left: 300px;
  top: 30px;
  animation:
    heroImageSmall 1s ease forwards;
}


/* =========================================================
   INTRO / EXPERIENCE
========================================================= */

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;

  padding: 70px 0;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;

  color: var(--muted);
}

.info-content {
  font-family: "Manrope", sans-serif;

  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -0.7px;

  color: var(--text);
}

.info-highlight {
  font-size: 12px;
  line-height: 1.8;

  color: var(--muted-dark);
}


/* =========================================================
   BUTTONS
========================================================= */

.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;

  padding: 12px 17px;

  border: 1px solid var(--border-strong);

  background: transparent;
  color: var(--text);

  font-size: 11px;
  letter-spacing: 0.4px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.small-button:hover {
  background: var(--button-bg);
  color: var(--button-text);
  border-color: var(--button-bg);

  transform: translateY(-2px);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;

  padding-bottom: 16px;

  border-bottom: 1px solid var(--border);

  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}

.section-heading h2 {
  font-family: "Manrope", sans-serif;

  font-size: 15px;
  font-weight: 600;

  letter-spacing: -0.3px;
}

.section-heading span {
  color: var(--muted);
  font-size: 11px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
  padding: 40px 0 120px;
}

.projects-list {
  border-bottom: 1px solid var(--border);
}

.project-row {
  display: grid;

  grid-template-columns: 55px 1fr 180px 30px;

  align-items: center;

  min-height: 90px;

  border-bottom: 1px solid var(--border);

  transition:
    background-color 0.25s ease,
    border-color 0.3s ease;
}

.project-row:last-child {
  border-bottom: 0;
}

.project-row:hover {
  background: var(--surface);
}

.project-number {
  color: var(--muted);
  font-size: 11px;
}

.project-name {
  font-family: "Manrope", sans-serif;

  font-size: 16px;
  font-weight: 600;

  letter-spacing: -0.4px;
}

.project-description {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-description strong {
  font-size: 11px;
  font-weight: 400;

  color: var(--muted-dark);
}

.project-type {
  font-size: 10px;

  color: var(--muted);
}

.project-arrow {
  font-size: 17px;

  color: var(--muted);

  transition:
    transform 0.25s ease,
    color 0.2s ease;
}

.project-row:hover .project-arrow {
  transform: translateX(4px);
  color: var(--text);
}


/* =========================================================
   VORA — FEATURED PROJECT
========================================================= */

.featured-project {
  padding: 0 0 120px;
}

.featured-project-intro {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 70px;

  padding: 45px 0 50px;
}

.featured-project-number {
  margin-bottom: 20px;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.2px;

  color: var(--muted);
}

.featured-project-intro h2 {
  max-width: 600px;

  font-family: "Manrope", sans-serif;

  font-size: 52px;

  line-height: 0.98;

  font-weight: 500;

  letter-spacing: -3px;

  color: var(--text);
}

.featured-project-description {
  align-self: end;

  max-width: 420px;
}

.featured-project-description p {
  font-size: 13px;

  line-height: 1.8;

  color: var(--muted-dark);
}

.featured-project-meta {
  margin-top: 22px;

  font-size: 10px;

  line-height: 1.7;

  color: var(--muted);
}


/* Featured Images */

.featured-image {
  position: relative;

  overflow: hidden;

  background: var(--image-bg);
}

.featured-image img {
  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: cover;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.featured-image:hover img {
  transform: scale(1.015);
}

.featured-image-large {
  width: 100%;
}

.featured-image-label {
  padding: 13px 0 0;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 1.2px;

  color: var(--muted);
}


/* Lifestyle + Detail */

.featured-image-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;

  margin-top: 45px;

  margin-bottom: 45px;
}


/* =========================================================
   VIDEO SECTION
========================================================= */

.videos-section {
  padding: 0 0 120px;
}

.video-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 24px;

  padding-top: 30px;
}

.video-card {
  min-width: 0;
}

.video-wrapper {
  position: relative;

  width: 100%;
  aspect-ratio: 9 / 16;

  overflow: hidden;

  background: #111;

  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.video-play {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.35);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.video-play:hover {
  background: rgba(0, 0, 0, 0.65);

  transform:
    translate(-50%, -50%)
    scale(1.08);
}

.video-play.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-mute {
  position: absolute;

  right: 12px;
  bottom: 12px;

  width: 32px;
  height: 32px;

  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.4);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  font-size: 13px;
}

.video-info {
  display: grid;

  grid-template-columns: 35px 1fr;

  gap: 12px;

  padding-top: 14px;
}

.video-number {
  color: var(--muted);
  font-size: 10px;
}

.video-title {
  font-family: "Manrope", sans-serif;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: -0.2px;
}

.video-description {
  margin-top: 5px;

  font-size: 11px;

  color: var(--muted);
}


/* =========================================================
   TOOLS
========================================================= */

.tools-section {
  padding: 0 0 120px;
}

.tools-intro {
  padding: 30px 0 45px;

  max-width: 560px;

  font-family: "Manrope", sans-serif;

  font-size: 20px;
  line-height: 1.45;

  letter-spacing: -0.5px;
}

.tools-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.tool-item {
  min-height: 130px;

  padding: 22px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  background: var(--bg);

  transition:
    background-color 0.25s ease,
    border-color 0.3s ease;
}

.tool-item:hover {
  background: var(--surface);
}

.tool-icon {
  font-size: 29px;
  display: block;
}

.tool-name {
  margin-top: 25px;

  font-family: "Manrope", sans-serif;

  font-size: 13px;
  font-weight: 600;
}

.tool-category {
  margin-top: 3px;

  font-size: 10px;

  color: var(--muted);
}


/* Tool Brand Colors */

.tool-canva {
  color: #00c4cc;
}

.tool-capcut {
  color: #050505;
}

html[data-theme="dark"] .tool-capcut {
  color: #ffffff;
}

.tool-chatgpt {
  color: #10a37f;
}

.tool-higgsfield {
  color: #050505;
}

html[data-theme="dark"] .tool-higgsfield {
  color: #ffffff;
}

.tool-runway {
  color: #050505;
}

html[data-theme="dark"] .tool-runway {
  color: #ffffff;
}

.tool-heygen {
  color: #5b5ce2;
}

.tool-elevenlabs {
  color: #050505;
}

html[data-theme="dark"] .tool-elevenlabs {
  color: #ffffff;
}

.tool-tiktok {
  color: #050505;
}

html[data-theme="dark"] .tool-tiktok {
  color: #ffffff;
}

.tool-instagram {
  color: #e1306c;
}

.tool-youtube {
  color: #ff0000;
}

.tool-google {
  color: #4285f4;
}

.tool-trello {
  color: #0c66e4;
}


/* =========================================================
   GENERAL CTA
========================================================= */

.cta {
  padding: 120px 0;

  border-top: 1px solid var(--border);
  /*border-bottom: 1px solid var(--border);*/
}

.cta h2 {
  max-width: 700px;

  font-family: "Manrope", sans-serif;

  font-size: 65px;
  line-height: 0.98;

  letter-spacing: -4px;

  font-weight: 600;
}

.cta-text {
  max-width: 480px;

  margin-top: 30px;

  font-size: 13px;
  line-height: 1.7;

  color: var(--muted-dark);
}

.cta-button {
  display: inline-flex;

  margin-top: 30px;

  padding: 14px 20px;

  border: 1px solid var(--button-bg);

  background: var(--button-bg);
  color: var(--button-text);

  font-size: 11px;
  letter-spacing: 0.5px;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-2px);

  background: transparent;

  color: var(--text);

  border-color: var(--border-strong);
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;

  padding: 45px 38px 35px;

  display: grid;

  grid-template-columns: 1fr auto;

  gap: 30px;

  color: var(--muted);

  border-top: 1px solid var(--border);

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.footer-name {
  font-family: "Manrope", sans-serif;

  font-size: 14px;
  font-weight: 600;

  color: var(--text);
}

.footer-info {
  margin-top: 7px;

  font-size: 10px;
  line-height: 1.7;
}

.footer-nav {
  display: flex;

  gap: 22px;

  align-items: flex-start;
}

.footer-nav a {
  font-size: 10px;

  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-copy {
  margin-top: 12px;

  font-size: 9px;

  color: var(--muted);
}


/* =========================================================
   SERVICES — ORIGINAL BASE
========================================================= */

.services-intro {
  padding: 85px 0 90px;
}

.services-intro h1 {
  max-width: 700px;

  font-family: "Manrope", sans-serif;

  font-size: 42px;
  line-height: 1.12;

  font-weight: 500;

  letter-spacing: -1.8px;

  color: var(--text);
}

.services-list {
  width: 100%;

  margin-bottom: 130px;

  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;

  grid-template-columns: 1fr 1.5fr;

  gap: 60px;

  padding: 30px 0;

  border-bottom: 1px solid var(--border);
}

.service-name {
  font-family: "Manrope", sans-serif;

  font-size: 18px;

  font-weight: 600;

  letter-spacing: -0.4px;

  color: var(--text);
}

.service-description {
  max-width: 430px;

  font-size: 13px;

  line-height: 1.7;

  color: var(--muted-dark);
}

.faq-section {
  margin-bottom: 140px;
}

.faq-intro {
  margin-bottom: 65px;
}

.faq-intro h2 {
  font-family: "Manrope", sans-serif;

  font-size: 28px;

  line-height: 1.25;

  font-weight: 500;

  letter-spacing: -1px;

  color: var(--text);
}

.faq-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  column-gap: 70px;

  row-gap: 65px;
}

.faq-item {
  max-width: 380px;
}

.faq-question {
  margin-bottom: 14px;

  font-family: "Manrope", sans-serif;

  font-size: 15px;

  font-weight: 600;

  line-height: 1.4;

  color: var(--text);
}

.faq-answer {
  font-size: 12px;

  line-height: 1.75;

  color: var(--muted-dark);
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;

  transform: translateY(25px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   HERO ANIMATIONS
========================================================= */

@keyframes heroTitle {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageMain {
  from {
    opacity: 0;

    transform:
      translate(-25px, 25px)
      rotate(-3deg);
  }

  to {
    opacity: 1;

    transform:
      translate(0, 0)
      rotate(0);
  }
}

@keyframes heroImageSmall {
  from {
    opacity: 0;

    transform:
      translate(25px, -25px)
      rotate(3deg);
  }

  to {
    opacity: 1;

    transform:
      translate(0, 0)
      rotate(0);
  }
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.services-hero {
  padding: 95px 0 85px;
}

.services-hero-label,
.section-label {
  margin-bottom: 28px;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.5px;

  color: var(--muted);
}

.services-hero h1 {
  max-width: 750px;

  font-family: "Manrope", sans-serif;

  font-size: 100px;

  line-height: 0.92;

  font-weight: 600;

  letter-spacing: -6px;

  color: var(--text);
}

.services-hero p {
  max-width: 480px;

  margin-top: 45px;

  font-size: 13px;

  line-height: 1.75;

  color: var(--muted-dark);
}


/* =========================================================
   SERVICES CAPABILITIES
========================================================= */

.capabilities-section {
  padding-bottom: 0;
}

.capabilities-section > .section-label {
  padding-bottom: 20px;

  margin-bottom: 0;

  border-bottom: 1px solid var(--border);
}

.capability-row {
  position: relative;

  display: grid;

  grid-template-columns:
    55px 1fr 300px;

  gap: 35px;

  align-items: center;

  min-height: 390px;

  padding: 55px 0;

  border-bottom: 1px solid var(--border);
}

.capability-number {
  align-self: start;

  padding-top: 5px;

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  font-weight: 600;

  color: var(--muted);
}

.capability-content h2 {
  max-width: 500px;

  font-family: "Manrope", sans-serif;

  font-size: 48px;

  line-height: 0.98;

  font-weight: 500;

  letter-spacing: -2.5px;

  color: var(--text);
}

.capability-content p {
  max-width: 420px;

  margin-top: 28px;

  font-size: 12px;

  line-height: 1.75;

  color: var(--muted-dark);
}


/* Capability visual */

.capability-visual {
  width: 100%;
  height: 300px;

  overflow: hidden;
}

.capability-video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  background: var(--image-bg);

  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.capability-visual:hover .capability-video {
  transform: scale(1.03);
}

.capability-placeholder {
  width: 100%;
  height: 100%;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  background: var(--image-bg);

  color: var(--muted-dark);

  font-family: "Manrope", sans-serif;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2px;

  text-align: center;
}

.capability-placeholder span {
  margin-top: 7px;

  font-size: 8px;

  letter-spacing: 1.5px;
}


/* Reversed capability */

.capability-row-reverse {
  grid-template-columns:
    300px 1fr 55px;
}

.capability-row-reverse .capability-visual {
  grid-column: 1;
  grid-row: 1;
}

.capability-row-reverse .capability-content {
  grid-column: 2;
  grid-row: 1;
}

.capability-row-reverse .capability-number {
  grid-column: 3;
  grid-row: 1;
}


/* =========================================================
   SERVICES MY APPROACH
========================================================= */

.creative-section {
  padding: 80px 0 90px;

  border-top: 0;

  border-bottom: 1px solid var(--border);
}

.creative-heading {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: end;
}

.creative-heading h2 {
  font-family: "Manrope", sans-serif;

  font-size: 92px;

  line-height: 0.82;

  font-weight: 600;

  letter-spacing: -6px;

  color: var(--text);
}

.creative-copy {
  max-width: 420px;

  padding-bottom: 5px;
}

.creative-copy p {
  font-size: 13px;

  line-height: 1.8;

  color: var(--muted-dark);
}

.creative-copy p + p {
  margin-top: 22px;
}


/* =========================================================
   SERVICES CREATIVE FLOW
========================================================= */

.creative-flow-section {
  padding: 60px 0;
}

.creative-flow-section h2 {
  max-width: 700px;

  font-family: "Manrope", sans-serif;

  font-size: 52px;

  line-height: 1;

  font-weight: 500;

  letter-spacing: -3px;

  color: var(--text);
}

.creative-flow {
  display: grid;

  grid-template-columns:
    1fr auto 1fr auto 1fr auto 1fr auto 1fr;

  align-items: center;

  gap: 18px;

  margin-top: 65px;

  padding-top: 30px;

  border-top: 1px solid var(--border);
}

.flow-item {
  min-width: 0;
}

.flow-item span {
  display: block;

  margin-bottom: 18px;

  font-size: 9px;

  color: var(--muted);
}

.flow-item strong {
  display: block;

  font-family: "Manrope", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 0.5px;

  color: var(--text);
}

.flow-item p {
  margin-top: 8px;

  font-size: 10px;

  color: var(--muted);
}

.flow-arrow {
  font-size: 18px;

  color: var(--muted);
}


/* =========================================================
   SERVICES FAQ
========================================================= */

.services-faq {
  padding-top: 85px;

  margin-bottom: 0;

  border-top: 1px solid var(--border);
}

.services-faq .faq-intro {
  display: grid;

  grid-template-columns:
    1fr 1.5fr;

  gap: 55px;

  margin-bottom: 55px;
}

.services-faq .faq-intro .section-label {
  margin-bottom: 0;
}

.services-faq .faq-intro h2 {
  max-width: 600px;

  font-family: "Manrope", sans-serif;

  font-size: 42px;

  line-height: 1.05;

  font-weight: 500;

  letter-spacing: -2px;
}


/* =========================================================
   SERVICES CTA
========================================================= */

.services-page-cta {
  padding: 80px 0 65px;

  text-align: center;

  border-top: 0;

  border-bottom: 0;
}

.services-page-cta h2 {
  max-width: 750px;

  margin: 0 auto;

  font-family: "Manrope", sans-serif;

  font-size: 65px;

  line-height: 0.98;

  font-weight: 500;

  letter-spacing: -4px;

  color: var(--text);
}

.services-page-cta .cta-button {
  margin-top: 40px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;
}

.services-page-cta .cta-button span {
  font-size: 16px;

  line-height: 1;
}


/* =========================================================
   CONTACT PAGE
========================================================= */


/* Contact Hero */

.contact-hero {
  padding: 95px 0 100px;
}

.contact-hero-label {
  margin-bottom: 28px;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 1.5px;

  color: var(--muted);
}

.contact-hero h1 {
  max-width: 750px;

  font-family: "Manrope", sans-serif;

  font-size: 100px;

  line-height: 0.92;

  font-weight: 600;

  letter-spacing: -6px;

  color: var(--text);
}

.contact-hero p {
  max-width: 500px;

  margin-top: 45px;

  font-size: 13px;

  line-height: 1.8;

  color: var(--muted-dark);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details-section {
  padding-bottom: 75px;
}

.contact-details-section > .section-label {
  padding-bottom: 20px;

  margin-bottom: 0;

  border-bottom: 1px solid var(--border);
}

.contact-details-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 24px;
}

.contact-detail {
  min-width: 0;

  padding: 25px 0 30px;

  border-bottom: 1px solid var(--border);
}

.contact-detail-label {
  display: block;

  margin-bottom: 16px;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 1.4px;

  color: var(--muted);
}

.contact-detail-value {
  font-family: "Manrope", sans-serif;

  font-size: 13px;

  line-height: 1.6;

  font-weight: 500;

  color: var(--text);
}

a.contact-detail-value {
  display: inline-block;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

a.contact-detail-value:hover {
  opacity: 0.55;

  transform: translateX(3px);
}


/* =========================================================
   CONTACT — WHAT I WORK ON
========================================================= */

.contact-capabilities {
  padding: 75px 0 65px;

  border-top: 0;

  border-bottom: 0;
}

.contact-capabilities > .section-label {
  margin-bottom: 0;

  padding-bottom: 20px;

  border-bottom: 1px solid var(--border);
}

.contact-capability-list {
  width: 100%;
}

.contact-capability-row {
  display: grid;

  grid-template-columns:
    55px 1fr auto;

  gap: 35px;

  align-items: center;

  min-height: 125px;

  padding: 26px 0;

  border-bottom:
    1px solid var(--border);

  transition:
    padding-left 0.3s ease,
    padding-right 0.3s ease;
}

.contact-capability-row:hover {
  padding-left: 8px;

  padding-right: 8px;
}

.contact-capability-number {
  align-self: start;

  padding-top: 5px;

  font-family: "Manrope", sans-serif;

  font-size: 11px;

  font-weight: 600;

  color: var(--muted);
}

.contact-capability-row h2 {
  font-family: "Manrope", sans-serif;

  font-size: 34px;

  line-height: 1;

  font-weight: 500;

  letter-spacing: -1.8px;

  color: var(--text);
}

.contact-capability-row p {
  max-width: 470px;

  margin-top: 10px;

  font-size: 11px;

  line-height: 1.65;

  color: var(--muted-dark);
}

.contact-capability-arrow {
  font-size: 20px;

  line-height: 1;

  color: var(--muted);

  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.contact-capability-row:hover
.contact-capability-arrow {
  transform: translateX(6px);

  color: var(--text);
}

/*
   No bottom divider after the last row.
   This keeps the transition into TOOLS clean.
*/

.contact-capability-row:last-child {
  border-bottom: 0;
}


/* =========================================================
   CONTACT TOOLS
========================================================= */

.contact-tools {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  padding: 70px 0;

  border-top: 0;

  border-bottom:
    1px solid var(--border);
}

.contact-tools-heading h2 {
  max-width: 470px;

  font-family: "Manrope", sans-serif;

  font-size: 62px;

  line-height: 0.9;

  font-weight: 500;

  letter-spacing: -4px;

  color: var(--text);
}

.contact-tools-list {
  align-self: end;

  border-top:
    1px solid var(--border);
}

.contact-tool-row {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  padding: 17px 0;

  border-bottom:
    1px solid var(--border);

  transition:
    padding-left 0.25s ease,
    padding-right 0.25s ease;
}

.contact-tool-row:hover {
  padding-left: 6px;

  padding-right: 6px;
}

.contact-tool-row span:first-child {
  font-family: "Manrope", sans-serif;

  font-size: 13px;

  font-weight: 600;

  color: var(--text);
}

.contact-tool-row span:last-child {
  font-size: 10px;

  color: var(--muted);
}


/* =========================================================
   CONTACT FINAL CTA
========================================================= */

.contact-page-cta {
  padding: 110px 0;

  text-align: center;
}

.contact-page-cta .section-label {
  margin-bottom: 25px;
}

.contact-page-cta h2 {
  max-width: 760px;

  margin: 0 auto;

  font-family: "Manrope", sans-serif;

  font-size: 78px;

  line-height: 0.92;

  font-weight: 500;

  letter-spacing: -5px;

  color: var(--text);
}

.contact-page-cta p {
  max-width: 430px;

  margin: 30px auto 0;

  font-size: 13px;

  line-height: 1.8;

  color: var(--muted-dark);
}

.contact-page-cta .cta-button {
  margin-top: 35px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;
}

.contact-page-cta .cta-button span {
  font-size: 16px;

  line-height: 1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  header {
    padding: 22px 20px;
  }

  .logo {
    font-size: 13px;
  }

  .header-controls {
    gap: 8px;
  }

  nav {
    display: none;

    position: absolute;

    top: 62px;
    right: 20px;

    width: 180px;

    padding: 18px;

    flex-direction: column;

    align-items: flex-start;

    gap: 16px;

    background: var(--bg);

    border:
      1px solid var(--border);

    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.08);
  }

  html[data-theme="dark"] nav {
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.35);
  }

  nav.mobile-open {
    display: flex;
  }

  .theme-toggle {
    width: 28px;
    height: 28px;

    font-size: 15px;
  }

  .menu-button {
    display: flex;

    align-items: center;

    justify-content: center;
  }

  main {
    padding: 0 20px;
  }


  /* =======================================================
     HOME
  ======================================================= */

  .hero {
    min-height: 570px;
  }

  .hero-title {
    font-size: 62px;

    line-height: 0.95;

    letter-spacing: -4px;

    white-space: normal;
  }

  .hero-images {
    width: 300px;
    height: 350px;
  }

  .hero-image.main {
    width: 190px;
    height: 250px;

    left: -35px;
    top: -15px;
  }

  .hero-image.small {
    width: 115px;
    height: 190px;

    left: 180px;
    top: 55px;
  }


  .intro-section {
    grid-template-columns: 1fr;

    gap: 65px;

    padding: 80px 0;
  }

  .info-content {
    font-size: 21px;
  }


  .projects-section {
    padding:
      30px 0 90px;
  }

  .project-row {
    grid-template-columns:
      35px 1fr 25px;

    min-height: 100px;
  }

  .project-description {
    display: none;
  }

  .project-name {
    font-size: 14px;
  }


  /* =======================================================
     VORA FEATURED PROJECT
  ======================================================= */

  .featured-project {
    padding-bottom: 90px;
  }

  .featured-project-intro {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 35px 0 40px;
  }

  .featured-project-intro h2 {
    font-size: 40px;

    line-height: 0.98;

    letter-spacing: -2.3px;
  }

  .featured-project-description {
    max-width: 100%;
  }

  .featured-project-description p {
    font-size: 12px;

    line-height: 1.7;
  }

  .featured-project-meta {
    font-size: 9px;

    line-height: 1.7;
  }

  .featured-image-grid {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-top: 35px;

    margin-bottom: 35px;
  }

  .featured-image-label {
    padding-top: 10px;

    font-size: 8px;

    letter-spacing: 1px;
  }


  .videos-section {
    padding-bottom: 90px;
  }

  .video-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .tools-section {
    padding-bottom: 90px;
  }

  .tools-intro {
    font-size: 19px;
  }

  .tools-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .tool-item {
    min-height: 115px;

    padding: 18px;
  }


  .cta {
    padding: 90px 0;
  }

  .cta h2 {
    font-size: 45px;

    letter-spacing: -2.5px;
  }


  /* =======================================================
     SERVICES
  ======================================================= */

  .services-hero {
    padding: 60px 0 60px;
  }

  .services-hero-label,
  .section-label {
    margin-bottom: 22px;

    font-size: 9px;

    letter-spacing: 1.2px;
  }

  .services-hero h1 {
    font-size: 58px;

    line-height: 0.94;

    letter-spacing: -3.5px;
  }

  .services-hero p {
    max-width: 100%;

    margin-top: 30px;

    font-size: 12px;

    line-height: 1.7;
  }


  /* -------------------------------------------------------
     SERVICES CAPABILITIES
  ------------------------------------------------------- */

  .capabilities-section {
    padding-bottom: 0;
  }

  .capabilities-section > .section-label {
    padding-bottom: 15px;
  }

  .capability-row,
  .capability-row-reverse {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    min-height: 0;

    padding: 40px 0 40px;

    border-bottom:
      1px solid var(--border);
  }

  .capability-number,
  .capability-row-reverse .capability-number {
    order: 1;

    padding-top: 0;

    margin-bottom: 18px;
  }

  .capability-content,
  .capability-row-reverse .capability-content {
    order: 2;
  }

  .capability-content h2 {
    font-size: 38px;

    line-height: 0.98;

    letter-spacing: -2px;
  }

  .capability-content p {
    max-width: 100%;

    margin-top: 22px;

    font-size: 12px;

    line-height: 1.7;
  }

  .capability-visual,
  .capability-row-reverse .capability-visual {
    order: 3;

    width: 100%;

    height: 280px;

    margin-top: 30px;
  }


  /* -------------------------------------------------------
     SERVICES MY APPROACH
  ------------------------------------------------------- */

  .creative-section {
    padding: 55px 0 60px;

    border-top: 0;

    border-bottom:
      1px solid var(--border);
  }

  .creative-heading {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .creative-heading h2 {
    font-size: 67px;

    line-height: 0.84;

    letter-spacing: -4px;
  }

  .creative-copy {
    max-width: 100%;
  }

  .creative-copy p {
    font-size: 12px;

    line-height: 1.75;
  }


  /* -------------------------------------------------------
     SERVICES CREATIVE FLOW
  ------------------------------------------------------- */

  .creative-flow-section {
    padding: 45px 0 45px;
  }

  .creative-flow-section h2 {
    font-size: 38px;

    line-height: 1;

    letter-spacing: -2px;
  }

  .creative-flow {
    display: block;

    margin-top: 35px;

    padding-top: 0;

    border-top: 0;
  }

  .flow-item {
    padding: 22px 0;

    border-bottom:
      1px solid var(--border);
  }

  /*
     Important:
     No border under CTA / final flow item.
     FAQ supplies the single divider.
  */

  .flow-item:last-child {
    border-bottom: 0;
  }

  .flow-item span {
    margin-bottom: 10px;
  }

  .flow-item strong {
    font-size: 13px;
  }

  .flow-item p {
    font-size: 10px;
  }

  .flow-arrow {
    display: none;
  }


  /* -------------------------------------------------------
     SERVICES FAQ
  ------------------------------------------------------- */

  .services-faq {
    padding-top: 55px;

    margin-bottom: 0;

    border-top:
      1px solid var(--border);
  }

  .services-faq .faq-intro {
    display: block;

    margin-bottom: 38px;
  }

  .services-faq .faq-intro .section-label {
    margin-bottom: 20px;
  }

  .services-faq .faq-intro h2 {
    font-size: 30px;

    line-height: 1.1;

    letter-spacing: -1.5px;
  }

  .services-faq .faq-grid {
    row-gap: 40px;
  }


  /* -------------------------------------------------------
     SERVICES CTA
  ------------------------------------------------------- */

  .services-page-cta {
    padding: 55px 0 60px;

    border-top: 0;

    border-bottom: 0;
  }

  .services-page-cta h2 {
    font-size: 43px;

    line-height: 1;

    letter-spacing: -2.5px;
  }

  .services-page-cta .cta-button {
    margin-top: 30px;
  }


  /* =======================================================
     CONTACT
  ======================================================= */

  .contact-hero {
    padding: 60px 0 65px;
  }

  .contact-hero-label {
    margin-bottom: 22px;

    font-size: 9px;

    letter-spacing: 1.2px;
  }

  .contact-hero h1 {
    font-size: 58px;

    line-height: 0.94;

    letter-spacing: -3.5px;
  }

  .contact-hero p {
    max-width: 100%;

    margin-top: 30px;

    font-size: 12px;

    line-height: 1.7;
  }


  /* Contact details */

  .contact-details-section {
    padding-bottom: 45px;
  }

  .contact-details-section > .section-label {
    padding-bottom: 15px;
  }

  .contact-details-grid {
    grid-template-columns:
      1fr 1fr;

    gap: 0 25px;
  }

  .contact-detail {
    padding: 22px 0 25px;
  }

  .contact-detail-label {
    margin-bottom: 11px;

    font-size: 8px;

    letter-spacing: 1.2px;
  }

  .contact-detail-value {
    font-size: 11px;

    line-height: 1.6;
  }


  /* Contact capabilities */

  .contact-capabilities {
    padding: 50px 0 45px;

    border-top: 0;

    border-bottom: 0;
  }

  .contact-capabilities > .section-label {
    padding-bottom: 15px;
  }

  .contact-capability-row {
    grid-template-columns:
      35px 1fr auto;

    gap: 18px;

    min-height: 0;

    padding: 23px 0;

    border-bottom:
      1px solid var(--border);
  }

  .contact-capability-row:last-child {
    border-bottom: 0;
  }

  .contact-capability-row:hover {
    padding-left: 4px;

    padding-right: 4px;
  }

  .contact-capability-number {
    padding-top: 3px;

    font-size: 9px;
  }

  .contact-capability-row h2 {
    font-size: 26px;

    line-height: 1;

    letter-spacing: -1.5px;
  }

  .contact-capability-row p {
    margin-top: 9px;

    font-size: 10px;

    line-height: 1.6;
  }

  .contact-capability-arrow {
    font-size: 16px;
  }


  /* Contact tools */

  .contact-tools {
    grid-template-columns: 1fr;

    gap: 40px;

    padding: 50px 0;

    border-top: 0;
  }

  .contact-tools-heading h2 {
    font-size: 48px;

    line-height: 0.9;

    letter-spacing: -3px;
  }

  .contact-tools-list {
    align-self: auto;
  }

  .contact-tool-row {
    padding: 15px 0;
  }

  .contact-tool-row span:first-child {
    font-size: 12px;
  }

  .contact-tool-row span:last-child {
    font-size: 9px;
  }


  /* Contact CTA */

  .contact-page-cta {
    padding: 70px 0;
  }

  .contact-page-cta .section-label {
    margin-bottom: 20px;
  }

  .contact-page-cta h2 {
    font-size: 48px;

    line-height: 0.95;

    letter-spacing: -3px;
  }

  .contact-page-cta p {
    max-width: 100%;

    margin-top: 25px;

    font-size: 12px;

    line-height: 1.7;
  }

  .contact-page-cta .cta-button {
    margin-top: 30px;
  }


  /* =======================================================
   FOOTER
======================================================= */

footer {
  grid-template-columns: 1fr;

  padding: 35px 20px 30px;
}

.footer-nav {
  flex-wrap: wrap;

  gap: 15px;
}

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  /* Home */

  .hero {
    min-height: 520px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-images {
    width: 270px;
  }

  .hero-image.main {
    width: 175px;
    height: 235px;

    left: -30px;
  }

  .hero-image.small {
    width: 105px;
    height: 175px;

    left: 165px;
  }

  .cta h2 {
    font-size: 39px;
  }


  /* VORA */

  .featured-project-intro h2 {
    font-size: 36px;

    letter-spacing: -2px;
  }

  .featured-project {
    padding-bottom: 80px;
  }

  .featured-image-grid {
    gap: 30px;

    margin-top: 30px;

    margin-bottom: 30px;
  }


  /* Services */

  .services-hero h1 {
    font-size: 51px;
  }

  .capability-content h2 {
    font-size: 34px;
  }

  .capability-visual,
  .capability-row-reverse .capability-visual {
    height: 240px;
  }

  .creative-heading h2 {
    font-size: 58px;
  }

  .creative-flow-section h2 {
    font-size: 34px;
  }

  .services-faq .faq-intro h2 {
    font-size: 27px;
  }

  .services-page-cta h2 {
    font-size: 38px;
  }


  /* Contact */

  .contact-hero h1 {
    font-size: 51px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    padding: 20px 0 24px;
  }

  .contact-capability-row {
    grid-template-columns:
      28px 1fr auto;

    gap: 14px;

    padding: 21px 0;
  }

  .contact-capability-row h2 {
    font-size: 23px;
  }

  .contact-tools-heading h2 {
    font-size: 42px;
  }

  .contact-page-cta h2 {
    font-size: 42px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

    scroll-behavior:
      auto !important;
  }
}