@font-face {
  font-family: 'Switzer';
  src: url('./fonts/Switzer-Light.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'Switzer';
  src: url('./fonts/Switzer-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Switzer';
  src: url('./fonts/Switzer-Medium.otf') format('opentype');
  font-weight: 500;
}

@font-face {
  font-family: 'Switzer';
  src: url('./fonts/Switzer-Bold.otf') format('opentype');
  font-weight: 700;
}

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

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

body {
  font-family: 'Switzer', sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.4;
}

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

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

.section-pad {
  padding-left: 100px;
  padding-right: 100px;
}

.section-label {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555252;
}

main {
  position: relative;
}

/* NAV */

.nav {
  width: 100%;
  background: #f9f9f9;
  position: relative;
  z-index: 10000;

}

.nav-inner {
  width: 100%;
  padding: 24px 100px; /* matches section-pad EXACTLY */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

.nav-links a.active {
  font-weight: 700;
}

.nav-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  height: 29px;
  border: 1px solid #000000;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}



.nav-mobile {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;   /* 🔥 ADD THIS */
  right: 0;
  width: 100vw;   /* 🔥 FORCE FULL WIDTH */
  height: 100vh;  /* 🔥 FORCE FULL HEIGHT */

  background: #F2F2F2;

  transform: translateX(100%);
  transition: transform 0.35s ease;

  z-index: 20000;
  overflow-y: auto;

}

.mobile-menu.active {
  transform: translateX(0); /* 👈 slide in */
}


.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px; /* 🔥 push links down */
  padding-bottom: px;
  height: auto !important;
  gap: 0;
}

.mobile-links a {
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-cta {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  padding: 4px 8px !important;
  padding-bottom: 24px;
  border: 1px solid #000000;
  width: auto !important;
  margin-top: 24px;
  line-height: 21px;
}



.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;

  background: none;
  border: none;
  z-index: 10;
}
/* HERO */

.hero {
  padding-top: 56px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 40px;
}

.hero-title h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 400;
}

.hero-copy {
  display: flex;
  justify-content: flex-end;
}

.hero-copy p {
  max-width: 823px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 300;
  text-align: right;
}

.hero-copy-inner {
  max-width: 823px;
  text-align: right;
}

.hero-copy-inner p:first-child {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 300;
}

.hero-proof {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  color: rgb(22, 22, 22);
}

/* SELECTED WORK */

.selected-work {
  padding-top: 0;
  padding-bottom: 40px;
}

.selected-work .section-label {
  margin-bottom: 24px;
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}


/* =========================
   BOOKING SECTION
========================= */

.booking-section {
  padding-top: 24px;
  padding-bottom: 24px;
}

.booking-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

/* LEFT CARD */

.booking-card {
  width: 442px;
  height: 436px;
  background: #1A1A1A;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  padding: 0 100px 0 40px;
  gap: 20px;

  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.booking-card h2 {
  width: 302px;
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #FFFFFF;
  margin: 0;
}

.booking-card p {
  width: 302px;
  font-family: 'Switzer', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #E5DFC6;
  margin: 0;
}

/* RIGHT WIDGET */

.booking-widget {
  width: 680px;
  height: 760px;
  margin-left: -90px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.calendly-inline-widget {
  width: 100%;
  height: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.calendly-inline-widget iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  .booking-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .booking-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

.booking-card {
  width: 100%;
  height: auto;
  padding: 24px 24px 40px;
  gap: 20px;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}

  .booking-card h2 {
    width: 100%;
    font-size: 20px;
    line-height: 42px;
  }

  .booking-card p {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    padding-bottom: 12px;
  }

 .booking-widget {
  width: 100%;
  max-width: 420px;
  height: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

  .calendly-inline-widget {
    height: 100%;
    overflow: hidden !important;
  }

  .calendly-inline-widget iframe {
    height: 100% !important;
    overflow: hidden !important;
  }

  @media (max-width: 700px) {
  .booking-wrap.section-pad {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
}

/* EXPERTISE */

.expertise {
  padding-top: 0;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: 309px 1fr;
  column-gap: 108px;
  align-items: center;
  min-height: 320px;
  border-bottom: 1px solid #ededed;
}

.expertise-copy {
  max-width: 823px;
}

.expertise-copy p {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

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

.expertise-copy strong {
  font-weight: 700;
}

/* PROCESS */

.process-section {
  padding-top: 32px;
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: 309px 1fr;
  column-gap: 108px;
  align-items: start;
}

.process-list {
  width: 100%;
  max-width: 1059px;   /* match your hero width */
}

.process-section,
.expertise {
  max-width: 1440px;
  margin: 0 auto;
}

.process-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr;
  align-items: start;
  padding: 48px 0;
  border-top: 1px solid #eaeaea;
}

.process-row:first-child {
  padding-top: 0;
  border-top: none;
}

.process-number {
  font-size: 68px;
  line-height: 1;
  font-weight: 300;
  color: #a0a0a0;
}

.process-title {
  font-size: 20px;
  line-height: 1.333;
  font-weight: 500;
  color: #000000;
  padding-top: 12px;
  margin-right: 24px;
}

.process-items {
  padding-top: 2px;
  max-width: 420px;
}

.process-items p {
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 400;
  color: #555252;
}

.process-items p + p {
  margin-top: 16px;
}

/* EXPERIENCE */

.experience {
  padding-top: 0;
  padding-bottom: 80px;
  border-top: 1px solid #ededed;
}

.experience .section-label {
  margin-top: 54px;
  margin-bottom: 32px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.experience-card {
  height: 220px;
  border: 1px solid #e8e8e8;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.experience-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.experience-logo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dark,
.logo-light {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-light {
  opacity: 0;
}

.logo-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 36px);
}

.logo-svg svg {
  display: block;
  width: 100%;
  max-width: clamp(110px, 16vw, 140px);
  height: auto;
}

.logo-telegraph svg {
  max-width: clamp(130px, 18vw, 240px);
}

.experience-role {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(28px, 3.2vw, 42px));
  transform: translateX(-50%);
  color: #ffffff;
  font-size: clamp(12px, 1.2vw, 16px);
  opacity: 0;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.experience-card:hover {
  background: #000;
}

.experience-card:hover .logo-dark {
  opacity: 0;
}

.experience-card:hover .logo-light {
  opacity: 1;
}

.experience-card:hover .experience-role {
  opacity: 1;
}
/* CONTACT BANNER */

.contact-banner {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden;
}

.contact-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  padding-top: 27px;
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details p {
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-details a {
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 400;
  color: #ffffff;
  text-decoration: underline;
}

.passion-link {
  font-size: 32px;
  line-height: 1.3125;
  font-weight: 500;
  color: #ffffff;
  align-self: flex-start;
}

/* FOOTER */

.footer {
  width: 100%;
  background: #ebebeb;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 100px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-inner h2 {
  font-size: 48px;
  line-height: 1.3125;
  font-weight: 500;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 400;
  text-decoration: underline;
}

.footer-right p {
  font-size: 16px;
  line-height: 1.3125;
  font-weight: 400;
  color: #6f6f6f;

}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .section-pad,
  .nav-inner,
  .footer-inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero,
  .expertise,
  .process-section {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

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

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

  .hero-proof {
    font-size: 16px;
    margin-top: 12px;
  }

  .process-row {
    grid-template-columns: 60px 1fr;
    row-gap: 16px;
  }

  .process-items {
    grid-column: 2;
  }
  .experience-card:nth-child(2) {
    border-right: 1px solid #e8e8e8;
  }

  .experience-card:nth-child(3) {
    border-top: none;
  }

  .footer-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-right {
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .section-pad,
  .nav-inner,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-mobile {
  display: flex;
  justify-content: flex-end;

  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
}

.experience-role {
  font-size: 12px;
  bottom: 24px;
  top: auto;
}

  .hero-title h1 {
    font-size: 44px;
  }

  .hero-copy p,
  .expertise-copy p,
  .passion-link {
    font-size: 24px;
  }

  .project-grid,
  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    border-right: 1px solid #e8e8e8;
    border-top: none;
  }

  .experience-card {
  border-top: 1px solid #e8e8e8;
}

  .nav-links,
  .footer-links {
    flex-wrap: wrap;
  }

.bilingual-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px;
}

  .fe-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }

  .fe-card img {
    width: 100%;
    height: auto !important;
    object-fit: contain;
  }

    .outcomes-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
  }

  .outcomes-image img {
    width: 100%;
    height: auto;
  }

    .velvet-logo {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 24px auto 0;
    display: block;
    width: 70%;
  }

  .coding-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }

   /* 🔥 FORCE STACK */
  .coding-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
  }

  /* 🔥 SWITCH VIDEOS */
  .video-desktop {
    display: none !important;
  }

  .video-mobile {
    display: block !important;
    width: 100%;
    height: auto;
  }


  .section-dark .project-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

.section-dark .project-text {
  max-width: 100%;
}

.section-dark .project-image-wrap {
  padding: 16px;
}

  .design-approach-section .project-grid {
    grid-template-columns: 1fr;
  }

  .design-approach-section .project-text {
    max-width: 100%;
  }

  .timeline-grid {
  grid-template-columns: 1fr !important;
  gap: 32px;
}

.timeline-right {
  width: 100%;
}

  .vr-banner {
    height: 270px;
  }

  .vr-link {
    font-size: 24px;
  }

  .project-card-clean {
    width: 100% !important;
  }

  .project-card-clean-image {
    width: 100% !important;
    height: auto !important;
  }

  .project-card-clean-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  @media (max-width: 768px) {


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

.experience-card {
  height: 120px;
  border-right: 1px solid #e8e8e8;
  border-top: none;
}

.experience-card:nth-child(1),
.experience-card:nth-child(2) {
  border-top: 1px solid #e8e8e8;
}

.experience-role {
  font-size: 12px;
  top: calc(50% + 20px);
}
  .project-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-text {
    max-width: 100%;
  }

  .project-image-wrap {
    padding: 16px;
  }

  .section-divider {
    width: calc(100% - 40px);
    margin: 60px auto 0;
  }


}

/* ALL IMAGE GROUPS STACK */

.bilingual-images-top,
.bilingual-images-bottom {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px;
  width: 100%;
}

/* IMAGES FULL WIDTH, NATURAL HEIGHT */

.bilingual-images-top img,
.bilingual-images-bottom img {
  width: 100%;
  height: auto !important;
  object-fit: contain; /* 🔥 important */
}

/* REMOVE DESKTOP HEIGHT CONSTRAINTS */

.bilingual-images-top img,
.bilingual-images-bottom img {
  max-height: none;
}

.deliverables-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px;
}

.deliverables-media {
  align-items: flex-end;
}

.deliverables-card {
  width: 100%;
}

.deliverables-card img {
  width: 100%;
  height: auto !important;
  display: block;
}

  /* ✅ ADD THIS (DO NOT REMOVE ANYTHING ABOVE) */

    .case-grid {
    grid-template-columns: 1fr !important;
    row-gap: 32px;
  }

  .case-image {
    justify-content: flex-start;
  }

  .case-image img {
    width: 100%;
    max-width: 100%;
  }

  .approach-top {
    display: flex !important;
    flex-direction: column !important;
  }

  .approach-top-images {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }

  .approach-small-image {
    width: 100%;
  }

  .approach-small-image img {
    width: 100%;
    height: auto;
    display: block;
  }



}


/* =========================
   SECTION DIVIDER
========================= */

.section-divider {
  border-top: 1px solid #EDEDED;
}


/* =========================
   PROJECTS PAGE
========================= */

.projects-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 80px;
  padding-bottom: 40px;
}

.projects-hero h1 {
  font-size: 60px;
  font-weight: 400;
}

.projects-hero p {
  font-size: 32px;
  font-weight: 300;
  max-width: 823px;
  text-align: right;
  line-height: 1.3;
}


.selected-work {
  padding-top: 0;
  padding-bottom: 40px;
}

.selected-work .section-label {
  margin-bottom: 24px;
}

/* OVERLAY */
.password-overlay {
  position: fixed;
  top: 80px; /* keeps nav visible */
  left: 0;
  width: 100%;
  height: calc(100% - 80px);

  background: rgba(244, 242, 237, 0.89);
  backdrop-filter: blur(14px);

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 999;
}

/* CONTAINER */
.password-container {
  width: 100%;
  max-width: 762px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  margin-bottom: 20px;


  text-align: center;
}

/* TITLE */
.password-container h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* INPUT + BUTTON ROW */
.password-row {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: flex-start; /* 👈 important */
}

/* INPUT */
.password-row input {
  flex: 1;
  height: 53px;
  padding: 16px 20px;

  border: 1px solid #A0A0A0;
  border-radius: 12px;

  font-size: 16px;
  
}


/* BUTTON */
.password-row button {
  height: 53px;
  padding: 0 40px;

  background: #000;
  color: #fff;

  border: none;
  border-radius: 12px;

  font-weight: 600;
  cursor: pointer;
}

/* DISABLED BUTTON */
.password-row button:disabled {
  background: #BBBBBB;
  cursor: not-allowed;
}

/* LINK */
.password-link {
  font-size: 24px;
  color: #555252;
  margin-top: 16px;
}

.error-message {
  color: #E15555;
  font-size: 12px;
  margin-top: 4px; /* tighter like Figma */
  align-self: flex-start; /* 👈 THIS is the fix */
}

/* CLOSE BUTTON */
.password-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 700px) {

  .password-container {
    padding: 0 24px;
  }

  .password-row {
    flex-direction: column;
  }

    .password-row input {
    width: 100%;
    min-width: 100%;
  }

  .password-row button {
    width: 100%;
  }

  .password-container h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .password-link {
    font-size: 16px;
  }
}

/* SIDE PROJECTS */

.side-projects .section-label {
  margin-bottom: 22px;
}

.side-project {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;

  border-top: 1px solid #ededed;

  max-width: 100%; /* 🔥 important */
  margin: 0 auto;     /* 🔥 centers layout */
}

.side-project:first-of-type {
  border-top: none;
}

.side-text h2 {
  font-size: 40px;
  line-height: 1.325;
  font-weight: 500;
  margin-bottom: 16px;
  color: #000000;
}

.side-text h4 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
  color: #222222;
}

.side-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
  margin-bottom: 14px;
}

.side-text a {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  text-decoration: underline;
  color: #000000;
}

.side-images {
  width: 100%;
  max-width: 823px;   /* 🔥 THIS is the magic number from your hero */
  justify-self: end;  /* 🔥 pushes it to the right */
}

.side-images.two {
  display: grid;
  grid-template-columns: 358px 448px; /* exact Figma */
  gap: 17px;
}

.side-images.two img:first-child {
  width: 358px;
  height: 448px;
  object-fit: cover;
}

.side-images.two img:last-child {
  width: 448px;
  height: 448px;
  object-fit: cover;
}

.side-images.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* 🔥 slightly more breathing room */
}

.side-images.grid-3 img,
.side-images.grid-3 video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .side-project {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .side-images.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .side-images.two img:first-child,
  .side-images.two img:last-child {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .side-project {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding: 32px 0 40px;
  }

  .side-text h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .side-text h4 {
    font-size: 18px;
  }

  .side-images.two,
  .side-images.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}


/* CTA */

.cta-big {
  font-size: 32px;
  font-weight: 500;
  color: white;
  margin-bottom: auto;
}



/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  display: grid;
  grid-template-columns: 445px 1fr;
  column-gap: 54px;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 80px;
}

.about-image img {
  width: 445px;
  height: 445px;
  border-radius: 50%;
  object-fit: cover;
}

.about-content h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 16px;
}

.about-sub {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.about-body p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 820px;
}

.about-body a {
  text-decoration: underline;
  color: inherit;
}

.about-body p + p {
  margin-top: 16px;
}

.view-all {
  font-size: 20px;
  font-weight: 500;
}

/* MOBILE */

@media (max-width: 700px) {
  
  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

.mobile-links a:not(.mobile-nav-cta) {
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #ffffff;
  text-align: center;
}
  
.nav {
  position: relative;
}

.mobile-links a.active {
  font-weight: 700;
  color: #222222;
}


  .about-hero {
    grid-template-columns: 1fr;
    row-gap: 24px;
    padding-top: 60px;
  }

  .about-image img {
    width: 220px;
    height: 220px;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-sub {
    font-size: 20px;
  }

  .about-body p {
    font-size: 16px;
  }
}

/* =========================
   MOBILE (CLEAN STACK)
========================= */

@media (max-width: 700px) {

  .case-intro {
    padding: 56px 24px;
  }

  .case-intro h1 {
    font-size: 28px;
  }

  .case-intro .sub {
    font-size: 18px;
  }

  .case-section {
    padding: 48px 24px;
  }

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

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

}
/* =========================
   MOBILE (PROJECT PAGE)
========================= */

@media (max-width: 700px) {

  .project-hero {
    padding-top: 80px;
  }

  .project-hero h1 {
    font-size: 32px;
  }

  .project-sub {
    font-size: 20px;
  }

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

  .project-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .project-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* =========================
   MOBILE (PROJECTS)
========================= */

@media (max-width: 600px) {

  .projects-hero {
    flex-direction: column;
    gap: 16px;
  }

  .projects-hero h1 {
    font-size: 32px;
  }

  .projects-hero p {
    font-size: 20px;
    text-align: left;
  }

.project-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.project-card-clean {
  padding: 20px 0;
  border-bottom: 1px solid #EDEDED;
}

.project-card-clean:first-child {
  padding-top: 0;
}

.project-card-clean:last-child {
  border-bottom: none;
}

.project-card-clean-text {
  width: 100%;
  padding: 8px 0 4px; /* 🔥 removes the big gap */
}

.project-card-clean-text p {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500; /* 🔥 makes it feel designed */
}
}

  .side-text h2 {
    font-size: 28px;
  }



  .cta-big {
    font-size: 24px;
  }

/* =========================
   MOBILE REFINEMENT (REAL)
========================= */

@media (max-width: 600px) {

  /* GLOBAL */
  .section-pad,
  .nav-inner,
  .footer-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

.section-label {
  margin-bottom: 24px; /* was too big before */
}

  /* NAV */
  .logo {
    font-size: 20px;
  }

  .nav-links {
    display: none; /* matches your Figma (hamburger state) */
  }

  /* HERO */
  .hero {
    padding-top: 48px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-title h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-copy {
    justify-content: flex-start;
  }

  .hero-copy p {
    font-size: 20px;
    line-height: 1.3;
    text-align: left;
    max-width: 260px;
  }

  /* PROJECT GRID */


  /* EXPERTISE */
  .expertise {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding-bottom: 40px;
  }

  .expertise-copy p {
    font-size: 16px;
    line-height: 1.4;
    max-width: 260px;
  }

  /* PROCESS */
  .process-section {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

.process-row {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  gap: 8px;
}

  .process-number {
    font-size: 48px;
  }

  .process-title {
    font-size: 20px;
  }

  .process-items p {
    font-size: 14px;
    line-height: 1.2;
  }

  /* EXPERIENCE */
  .experience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .experience-card {
    height: 120px;
  }

  .experience-card img {
    max-width: 80px;
  }

  /* CTA */
  .contact-banner {
    height: 270px;
  }

  .contact-overlay {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .contact-details p,
  .contact-details a {
    font-size: 16px;
  }

  .passion-link {
    font-size: 24px;
  }

}

  /* FOOTER */

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px; /* was 24 — too loose */
}

.footer-madeby {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #5f5f5f; /* softer grey */
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 72px 100px 48px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* keeps bottom alignment clean */
}

.footer-inner h2 {
  font-size: 32px;
  font-weight: 500;
  margin-top: 4px; /* creates that breathing space */
}

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-right p {
    font-size: 14px;
  }

.project-hero {
  padding-top: 120px;
  padding-bottom: 80px;
}

.project-hero-inner {
  max-width: 1059px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-hero h1 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 400;
}

.project-sub {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 400;
}

.project-meta {
  display: flex;
  gap: 8px;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555252;
  font-weight: 500;
}

.project-description {
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

.project-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-details p {
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

.project-details strong {
  font-weight: 700;
  margin-right: 6px;
}

/* =========================
   PROJECT MEDIA (VIDEO)
========================= */

.project-media {
  background: #F3F3F3;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.project-media-inner {
  width: 100%;
  display: flex;
  justify-content: center;
}

.project-media video {
  width: 50%; /* controls size */
  max-width: 900px;
  border-radius: 4px; /* optional, subtle polish */
}

/* =========================
   CASE SECTION (CHALLENGE)
========================= */

.case-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.case-grid {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 80px;
  align-items: center;
}


/* LABEL */

.case-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555252;
  font-weight: 600;
  margin-bottom: 16px;
}

/* TEXT */

.case-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
  margin-bottom: 20px;
}

.case-text p + p {
  margin-top: 16px;
}

.case-text p strong {
  display: block;
  margin-bottom: 6px;
}

.case-text p {
  margin-bottom: 14px;
}

/* LIST */

.case-text ol {
  margin-top: 12px;
  padding-left: 18px;
}

.case-text li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

/* HIGHLIGHT */

.case-highlight {
  margin-top: 20px;
  font-weight: 500;
}

/* IMAGE */

.case-image {
  display: flex;
  justify-content: flex-end;
}

.case-image img {
  width: 100%;
  max-width: 734px;
  filter: drop-shadow(0px 4px 20px rgba(0,0,0,0.08));
}

/* CASE TITLE */

.case-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #555252;
}

/* LIST STYLE (bullets instead of numbers) */

.case-text ul {
  margin-top: 12px;
  padding-left: 18px;
}

.case-text li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

/* =========================
   APPROACH SECTION
========================= */

.approach-top {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 80px;
  align-items: start;
}

.approach-top-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 600px;
  align-items: end;
  justify-self: end;
}

.approach-small-image img {
  width: 100%;
  display: block;
}

.approach-bottom-image {
  margin-top: 72px;
}

.approach-bottom-image img {
  width: 100%;
  border: 1px solid #F2F2F2;
  display: block;
}

.approach-small-image img,
.approach-bottom-image img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.accru-approach-layout {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 64px;
  align-items: start;
}

.accru-approach-images {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.accru-approach-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .accru-approach-layout {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .accru-approach-images {
    max-width: 100%;
    justify-self: start;
  }
}

/* =========================
   DELIVERABLES SECTION
========================= */

.deliverables-grid {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 80px;
  align-items: start;
}

.deliverables-text {
  max-width: 429px;
}

.deliverables-list {
  margin-top: 16px;
  padding-left: 18px;
}

.deliverables-list li {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

.deliverables-list ul {
  margin-top: 8px;
  padding-left: 16px;
}

/* RIGHT SIDE */

.deliverables-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%; /* ✅ FIX */
  align-items: flex-end;
}

.deliverables-card {
  padding: 12px;
  width: 100%; /* ✅ FIX */
}

.deliverables-card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin-left: auto;
}

/* =========================
   ACCRUPAY DISCOVERY SECTION
========================= */

.discovery-layout {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 64px;
  align-items: start;
}

.discovery-text {
  max-width: 429px;
}

.discovery-image-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2px;
  justify-self: end;
  width: 100%;
  max-width: 760px;
  align-items: start;
}

.discovery-image-grid img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  background: #f7f7f7;
  filter: drop-shadow(0px 4px 16px rgba(0,0,0,0.05));
}

@media (max-width: 900px) {
  .discovery-layout {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .discovery-image-grid {
    max-width: 100%;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .discovery-image-grid {
    grid-template-columns: 1fr;
  }

  .discovery-image-grid img {
    height: auto;
  }
}

.strategic-full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
}

.strategic-full-bleed img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BILINGUAL DESIGN SYSTEM
========================= */

.bilingual-grid {
  display: grid;
  grid-template-columns: 378px 1fr;
  column-gap: 80px;
  row-gap: 48px;
  align-items: start;
}

/* TOP ROW */

.bilingual-images-top {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.bilingual-images-top img {
  width: 100%;
  height: 380px; /* ✅ FIX: apply directly to image */
  object-fit: cover;
  display: block;
}

/* BOTTOM ROW */

.bilingual-images-bottom {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.bilingual-images-bottom img {
  width: 100%;
  height: 320px; /* ✅ FIX: apply directly */
  object-fit: cover;
  display: block;
}

.fe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

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

.fe-accru-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.fe-accru-card {
  width: 100%;
  background: #f7f7f7;
  overflow: hidden;
}

.fe-accru-card img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

@media (max-width: 700px) {
  .fe-accru-grid {
    grid-template-columns: 1fr;
  }

  .fe-accru-card img {
    height: auto;
  }
}
/* =========================
   OUTCOMES SECTION
========================= */

.outcomes-grid {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 80px;
  align-items: center;
}

.outcomes-text h3 {
  font-size: 24px;
  margin: 16px 0;
}

.outcomes-list {
  padding-left: 18px;
}

.outcomes-list li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

.outcomes-summary {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

.outcomes-image {
  display: flex;
  justify-content: flex-end;
}

.outcomes-image img {
  width: 100%;
  max-width: 734px;
  display: block;
}

/* =========================
   REFLECTION SECTION
========================= */

.reflection {
  padding-top: 40px;
  padding-bottom: 40px; /* 👈 creates space before footer */
}

.reflection-inner {
  max-width: 900px;
}

.reflection h3 {
  font-size: 24px;
  margin: 16px 0;
}

.reflection-body p {
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
}

.reflection-body p + p {
  margin-top: 16px;
}

.project-media-luna {
  background: #051A2C;
}

.luna-application {
  padding-top: 40px;
  padding-bottom: 40px;
}

.luna-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.luna-app-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.velvet-hero-media {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.velvet-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.luna-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: start;
}

.luna-ai-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid #EDEDED;
}

@media (max-width: 700px) {
  .luna-ai-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}

/* LOGO OVERLAY */

.velvet-logo {
  position: absolute;
  bottom: 40px; /* ← THIS is the fix */
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  max-width: 80%;
  z-index: 2;
}

/* GRID LAYOUT */


/* TEXT */

.project-text {
  max-width: 420px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555252;
  margin-bottom: 16px;
}

.project-text p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 150%;
  color: #555252;
}

.project-text strong {
  color: #222;
}


/* VIDEO */

.project-image-wrap {
  width: 100%;
  background: #000; /* matches your design */
  padding: 40px;
}

.project-image-wrap video {
  width: 100%;
  height: auto;
  display: block;
}


/* DIVIDER — FIXED (aligned to content edges) */

.section-divider {
  width: 100%;
  margin-top: 40px auto 0; /* IMPORTANT: no bottom margin */
  margin-bottom: 40px;
  border-top: 1px solid #EDEDED;
}

.section-dark {
  background: #000;
  margin-top: -80px;
}

.section-dark .project-text p,
.section-dark .project-text strong {
  color: #ffffff;
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark .project-text {
  max-width: 520px;
}

.project-section .project-grid {
  align-items: start;
}

.project-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.full-bleed-image {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.full-bleed-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Caption spacing */
.moodboard-caption {
  margin-top: 32px;
}

.section-divider-spaced {
  margin: 120px auto;
}
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center; /* 🔥 THIS is the fix */
}

.timeline-title {
  font-size: 32px;
  margin-bottom: 24px;
}

.timeline-image {
  width: 100%;
  height: auto;
  display: block;
}

.timeline-right h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.timeline-right p {
  font-size: 14px;
  line-height: 1.5;
  color: #555252;
  margin-bottom: 16px;
}

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

.coding-grid img {
  width: 100%;
  height: auto;
  display: block;
}

.coding-inner {
  display: grid;
  grid-template-columns: 429px 1fr;
  column-gap: 80px;
  align-items: center;
}

.coding-text {
  max-width: 420px;
}

.coding-video {
  width: 100%;
}

.coding-video video {
  width: 100%;
  height: auto;
  display: block;
}

.coding-section {
  background: #000;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.coding-text h3,
.coding-text p {
  color: #fff;
}

.coding-text p {
  color: rgba(255,255,255,0.8);
}

/* =========================
   VELVET ROOM BANNER
========================= */

.vr-banner {
  position: relative;
  width: 100%;
  height: 530px;
  overflow: hidden;
}

.vr-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vr-overlay {
  position: absolute;
  inset: 0;
  padding-top: 27px;
  padding-bottom: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* ✅ THIS is the fix */
}

.vr-details p {
  font-size: 16px;
  line-height: 21px;
  color: #ffffff;
}

.vr-details a {
  font-size: 32px;        /* 🔥 was too small */
  line-height: 42px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;  /* cleaner like design */
}

.vr-link {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  align-self: flex-start;
}

.contain-image {
  object-fit: contain !important;
  background: #000;
  height: 100%;
}
/* =========================
   FINAL VIDEO CONTROL (OVERRIDE EVERYTHING)
========================= */

/* desktop */
.video-desktop-wrap {
  display: block !important;
}

.video-mobile-wrap {
  display: none !important;
}

/* mobile */
@media (max-width: 700px) {

  .video-desktop-wrap {
    display: none !important;
  }

  .video-mobile-wrap {
    display: block !important;
  }

}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .footer-inner {
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-madeby {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #7a7a7a;
  }

  .footer-inner h2 {
    font-size: 32px;
    line-height: 1.15;
    margin: 0;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-links a {
    font-size: 14px;
    line-height: 1.3;
  }

  .footer-right p {
    font-size: 14px;
    line-height: 1.3;
    color: #7a7a7a;
  }

  /* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding-top: 96px;
  padding-bottom: 96px;
  border-top: 1px solid #ededed;
}

.testimonials-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.testimonials .section-label {
  margin-bottom: 32px;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
}

.testimonial-track-wrap {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 32px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 8px;
}

.testimonial-role {
  font-size: 16px;
  line-height: 1.4;
  color: #a0a0a0;
  margin-bottom: 32px;
}

.testimonial-quote {
  max-width: 760px;
}

.testimonial-quote p {
  font-size: 16px;
  line-height: 1.6;
  color: #555252;
  font-style: italic;
}

.testimonial-quote p strong {
  color: #222222;
}

.testimonial-quote p + p {
  margin-top: 24px;
}

.testimonial-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow svg {
  display: block;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #c7c7c7;
  padding: 0;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #555252;
}

/* MOBILE */

@media (max-width: 700px) {
  .testimonials {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .testimonial-slider {
    grid-template-columns: 40px 1fr 40px;
    column-gap: 8px;
  }

  .testimonial-avatar {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
  }

  .testimonial-name {
    font-size: 20px;
  }

  .testimonial-role {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .testimonial-quote {
    max-width: 100%;
  }

  .testimonial-quote p {
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonial-quote p + p {
    margin-top: 16px;
  }
}
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials {
  padding-top: 32px;
  padding-bottom: 24px;
  border-top: 1px solid #ededed;
}

.testimonials-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.testimonials .section-label {
  margin-bottom: 32px;
}

.testimonial-slider {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
}

.testimonial-track-wrap {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 32px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 8px;
}

.testimonial-role {
  font-size: 16px;
  line-height: 1.4;
  color: #a0a0a0;
  margin-bottom: 32px;
}

.testimonial-quote {
  max-width: 760px;
}

.testimonial-quote p {
  font-size: 16px;
  line-height: 1.6;
  color: #555252;
  font-style: italic;
}

.testimonial-quote p strong {
  color: #222222;
}

.testimonial-quote p + p {
  margin-top: 24px;
}

.testimonials-sub {
  font-size: 14px;
  line-height: 1.4;
  color: #555252;
  margin-top: 8px;
  margin-bottom: 32px;
}

.testimonial-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-arrow svg {
  display: block;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #c7c7c7;
  padding: 0;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #555252;
}

/* MOBILE */

@media (max-width: 700px) {
  .testimonials {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .testimonial-slider {
    grid-template-columns: 40px 1fr 40px;
    column-gap: 8px;
  }

  .testimonial-avatar {
    width: 140px;
    height: 140px;
    margin-bottom: 24px;
  }

  .testimonial-name {
    font-size: 20px;
  }

  .testimonial-role {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .testimonial-quote {
    max-width: 100%;
  }

  .testimonial-quote p {
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonial-quote p + p {
    margin-top: 16px;
  }
}

.freelance-projects {
  padding-top: 20px;
  padding-bottom: 20px;
}

.freelance-projects .section-label {
  margin-bottom: 16px;
}

.freelance-projects .side-project {
  padding-top: 24px;
  padding-bottom: 24px;
}

.dad-impact {
  background: #222222;
  padding-top: 32px;
  padding-bottom: 32px;
}

.dad-impact-heading {
  margin-bottom: 32px;
}

.dad-impact-heading h2 {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
}

.dad-impact-line {
  width: 100%;
  height: 1px;
  background: #ffffff;
  margin-top: 10px;
}

.dad-impact-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: center;
}

.dad-impact-text h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
}

.dad-impact-text h4 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 16px;
}

.dad-impact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #eeeeee;
  margin-bottom: 16px;
}

.dad-impact-text a {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
}

.dad-impact-images {
  display: grid;
  grid-template-columns: 448px 448px;
  gap: 17px;
  justify-content: end;
}

.dad-impact-images img {
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .dad-impact-inner {
    grid-template-columns: 1fr;
  }

  .dad-impact-images {
    grid-template-columns: 1fr 1fr;
    justify-content: start;
  }

  .dad-impact-images img:first-child,
  .dad-impact-images img:last-child {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 600px) {
  .dad-impact-heading h2 {
    font-size: 32px;
  }

  .dad-impact-images {
    grid-template-columns: 1fr;
  }
}

