/* =========================================
   WICKED NICE — 1920px Desktop Layout
   ========================================= */

/* --- Utilities --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Self-hosted Archivo --- */
@font-face {
  font-family: 'Archivo';
  src: url('public/fonts/archivo/Archivo/static/Archivo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('public/fonts/archivo/Archivo/static/Archivo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('public/fonts/archivo/Archivo/static/Archivo-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

html {
  background: #f2f2f2;
}

body {
  width: 100%;
  min-width: 1920px;
  margin: 0 auto;
  background: #f2f2f2;
  color: #000;
  font-family: 'Archivo', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: none;
}

/* =========================================
   MENU
   ========================================= */
.menu {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 54px;
  border: 5px solid #000;
  background: #fe330a;
  outline: 1px solid #000;
}

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

.menu-logo {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-logo img {
  width: 65px;
  height: 31px;
}

.menu-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.menu-link {
  position: relative;
  font-weight: 800;
  font-size: 17.2px;
  text-transform: uppercase;
  color: #000;
  padding: 0 29px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.menu-link:hover,
.menu-link--current {
  color: #f2f2f2;
}

.menu-link:hover::before,
.menu-link--current::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 21.5px;
  background: #000;
  z-index: -1;
}


.menu-lang {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}

.lang-btn {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  transition: all 0.2s;
  line-height: 1;
}

.lang-btn--active {
  background: #000;
  color: #fff;
  width: 52px;
}

.lang-btn:not(.lang-btn--active) {
  background: #fff;
  color: #000;
  width: 28px;
}

/* =========================================
   LOGO SECTION
   ========================================= */
.logo-section {
  padding: 20px 26px 0;
  width: 100%;
  height: 19.063vw;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  
}

/* =========================================
   HERO IMAGE
   ========================================= */
.hero-image {
  width: 100%;
  height: 653px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* =========================================
   DESCRIPTION
   ========================================= */
.description {
  padding: 60px 26px;
  min-height: 290px;
  display: flex;
  align-items: center;
}

.description p {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1;
}

/* =========================================
   GALLERY
   ========================================= */
.gallery-large {
  display: flex;
  gap: 26px;
}

.gallery-large-item {
  flex: 1;
  height: 947px;
  overflow: hidden;
  display: block;
}

.gallery-large-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-large-item:hover img {
  transform: none;
}

/* --- Gallery Small (4 images + monogram) --- */
.gallery-small {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.gallery-small-item {
  height: 461px;
  overflow: hidden;
  flex-shrink: 1;
  display: block;
}

.gallery-small-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-small-item:hover img {
  transform: none;
}

.gs-1 { width: 20.521%; }
.gs-2 { width: 20.885%; }
.gs-3 { width: 20.417%; margin-left: 1.458%; }
.gs-4 { width: 20.885%; margin-left: 1.667%; }

.gallery-small-monogram {
  width: 14.167%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gallery-small-monogram img {
  width: 85.3%;
  height: auto;
}

.gallery-label {
  display: none;
}

/* --- All Projects Link --- */
.gallery-link {
  text-align: right;
  padding: 20px 36px 45px;
}

.gallery-link a {
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gallery-link-arrow {
  width: 30px;
  height: auto;
}

.gallery-link a:hover {
  opacity: 0.6;
}

/* =========================================
   SERVICES
   ========================================= */

.services-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  padding: 10px 0 20px 22px;
}

.service-item {
  border-top: 5px solid #000;
}

.services .service-item:last-child {
  border-bottom: 5px solid #000;
}

.service-header {
  height: 193px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  cursor: pointer;
  transition: background 0.2s;
}


.service-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  user-select: none;
}

.service-arrow img {
  width: 80px;
  height: auto;
}

.service-item.active .service-arrow {
  transform: rotate(90deg);
}

.service-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 128px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

.service-header:hover .service-name,
.service-item.active .service-name {
  color: #fe330a;
}

.service-header:hover .service-arrow img,
.service-item.active .service-arrow img {
  content: url("public/images/arrow-red.svg");
}

/* --- Services Accordion Content --- */
.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.service-item.active .service-content {
  max-height: 2500px;
  transition: max-height 0.5s ease-in;
}

.services-description {
  padding: 50px 50px 50px;
}

.services-description p {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}

.services-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 50px;
}

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

/* =========================================
   MONOGRAM STRIP
   ========================================= */
.monogram-strip {
  height: 299px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.monogram-strip-inner {
  display: flex;
  will-change: transform;
}

.mono-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.mono-tile {
  height: 189px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.star-strip .mono-tile {
  will-change: transform;
  shape-rendering: geometricPrecision;
}


/* =========================================
   WHO WE ARE
   ========================================= */
.who-we-are {
  padding-bottom: 0;
}

.who-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  padding: 10px 22px 20px;
}


.who-description {
  padding: 0 50px 80px;
}

.who-description p {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}

/* --- Team Members --- */
.team-member {
  display: flex;
  padding: 0 0 100px 44px;
}

.team-member:first-child {
  padding-top: 50px;
}

.team-photo {
  width: 20.885%;
  aspect-ratio: 401 / 461;
  flex-shrink: 0;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding-left: 40px;
  padding-right: 50px;
  flex: 1;
}

.team-name {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
}

.team-name-divider {
  height: 5px;
  background: #000;
  margin-bottom: 25px;
}

.team-bio p {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.team-experience {
  margin-top: 60px;
}

.team-exp-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
}

.team-experience ul {
  list-style: disc;
  padding-left: 54px;
}

.team-experience li {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 6px;
}

/* =========================================
   PRE-FOOTER IMAGE
   ========================================= */
.pre-footer-image {
  border-top: 5px solid #000;
  width: 100%;
  height: 862px;
  overflow: hidden;
  position: relative;
}

.pre-footer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* =========================================
   CTA
   ========================================= */
.cta {
  height: 193px;
  display: flex;
}

.cta:hover {
  background: #000;
}

.cta-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 128px;
  text-transform: uppercase;
  line-height: 1;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
  height: 100%;
  padding-right: 48px;
}

.cta-arrow {
  width: 80px;
  height: auto;
}

.cta:hover .cta-link {
  color: #f2f2f2;
}

.cta:hover .cta-arrow {
  filter: invert(1);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  border-top: 5px solid #000;
  background: #fe330a;
  position: relative;
}

.footer-top {
  display: flex;
  padding: 46px 25px 0px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

.footer-socials a {
  font-weight: 700;
  font-size: 20.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-socials a:hover,
.footer-contact a:hover {
  cursor: pointer;
}

.footer-contact {
  margin-left: auto;
  text-align: left;
}

.footer-contact p {
  font-weight: 700;
  font-size: 20.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-logo {
  width: 100%;
  padding: 0px 26px 16px;
}

.footer-logo img {
  width: 100%;
  height: 18.542vw;
  object-fit: contain;
}

.footer-copyright {
  position: absolute;
  bottom: 40px;
  right: 24px;
  font-weight: 700;
  font-size: 17.7px;
  text-transform: uppercase;
  text-align: right;
}


/* =========================================
   PROJECTS PAGE — Hero
   ========================================= */
.proj-hero {
  width: 100%;
  height: 477px;
  overflow: hidden;
  position: relative;
}

.proj-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* =========================================
   PROJECTS PAGE — Intro Text
   ========================================= */
.proj-intro {
  padding: 45px 25px 40px;
  background: #f2f2f2;
}

.proj-intro p {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 48px;
  text-transform: uppercase;
  line-height: 1;
}

/* =========================================
   PROJECTS PAGE — List
   ========================================= */
.proj-list {
  padding-bottom: 0;
}

.proj-list-label {
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
  padding: 10px 0 20px 22px;
}

.proj-divider {
  width: 100%;
  height: 5px;
  background: #000;
}

/* --- Project Item --- */
.proj-item {
  position: relative;
}

.proj-header {
  display: flex;
  align-items: flex-start;
  padding: 20px 0 10px;
  cursor: pointer;
  position: relative;
}

.proj-header:hover .proj-name,
.proj-item.active .proj-name,
.proj-item.thumbs-hover .proj-name {
  color: #fe330a;
}

.proj-header:hover .proj-arrow img,
.proj-item.active .proj-arrow img,
.proj-item.thumbs-hover .proj-arrow img {
  content: url("public/images/arrow-red.svg");
}

.proj-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  height: 128px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  user-select: none;
}

.proj-arrow img {
  width: 80px;
  height: auto;
}

.proj-item.active .proj-arrow {
  transform: rotate(90deg);
}

.proj-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 128px;
  text-transform: uppercase;
  line-height: 1;
  flex: 1;
  min-width: 0;
}

.proj-category {
  position: absolute;
  right: 48px;
  bottom: 20px;
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}

/* --- Thumbnail Strip --- */
.proj-thumbs {
  display: flex;
  height: 238px;
  gap: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.proj-thumb {
  height: 100%;
  overflow: hidden;
  min-width: 0;
}

.proj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* --- Project Detail (expanded) --- */
.proj-detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0, 1, 0, 1);
}

.proj-item.active .proj-detail {
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.5s ease;
}

.proj-detail-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proj-item.active .proj-detail-inner {
  padding-bottom: 180px;
  opacity: 1;
  transition-delay: 0.01s;
}

.proj-thumbs {
  max-height: 238px;
  transition: max-height 0.3s ease, opacity 0.2s ease;
}

.proj-item.active .proj-thumbs {
  opacity: 0;
  max-height: 0;
}

.proj-detail-text {
  padding: 30px 43px 0;
}

.proj-detail-text p {
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}

.proj-detail-credits {
  padding: 40px 43px 0;
}

.proj-detail-credits p {
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4px;
}

.proj-detail-credits .credits-label {
  font-weight: 700;
  margin-bottom: 8px;
}

/* --- Detail Gallery --- */
.proj-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 40px 43px 0;
  align-items: start;
}

.proj-detail-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proj-detail-mid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proj-detail-img {
  width: 100%;
}

.proj-detail-img img {
  width: 100%;
  height: auto;
}

.proj-detail-video {
  position: relative;
  padding-bottom: 56.25%;
}

.proj-detail-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --- Close Button --- */
.proj-close {
  position: absolute;
  bottom: 60px;
  right: 50px;
  width: 128px;
  height: 128px;
  background: none;
  border: none;
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  color: #000;
}

.proj-close:hover {
  opacity: 0.5;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-img {
  position: relative;
  max-width: 93.5vw;
  max-height: 93.5vh;
  object-fit: contain;
  z-index: 1;
  user-select: none;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-prev {
  left: 24px;
  transform: translateY(-50%) rotate(180deg);
}

.lightbox-next {
  right: 24px;
}

.lightbox-prev img,
.lightbox-next img {
  width: 40px;
  height: auto;
  filter: invert(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lightbox-close:hover {
  opacity: 1;
}

.proj-detail-img img {
  cursor: pointer;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section {
  background: #f2f2f2;
  padding-bottom: 60px;
}

.contact-divider {
  width: 100%;
  height: 5px;
  background: #000;
}

.contact-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 128px;
  text-transform: uppercase;
  line-height: 1;
  padding: 35px 0 30px 43px;
}

.contact-info {
  padding: 0 0 40px 50px;
}

.contact-info p {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
}

/* --- Contact Form --- */
.contact-form {
  margin: 0 43px 35px;
  border: 5px solid #000;
  position: relative;
}

.contact-field {
  border-bottom: 5px solid #000;
  position: relative;
}

.contact-field--message {
  border-bottom: none;
  min-height: 150px;
}

.contact-input,
.contact-textarea {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1;
  padding: 20px 23px;
  outline: none;
  color: #000;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #000;
  opacity: 1;
}

.contact-textarea {
  min-height: 300px;
  resize: vertical;
}

.contact-submit {
  position: absolute;
  bottom: -53px;
  right: -5px;
  width: 360px;
  height: 53px;
  background: #000;
  color: #f2f2f2;
  border: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-submit:hover {
  background: #222;
}

/* =========================================
   HAMBURGER BUTTON (hidden on desktop)
   ========================================= */
.menu-hamburger {
  display: none;
}

/* =========================================
   MOBILE NAV OVERLAY (hidden on desktop)
   ========================================= */
.mobile-nav {
  display: none;
}


/* =========================================
   RESPONSIVE — LAPTOP (769px – 1919px)
   Proportional scale: every value = base_px / 1920 * 100 vw
   ========================================= */
@media (max-width: 1919px) and (min-width: 769px) {

  /* --- Base --- */
  body {
    min-width: 0;
  }

  img {
    max-width: 100%;
  }

  /* --- Menu --- */
  .menu-link {
    padding: 0 1.5vw;
  }

  /* --- Logo Section --- */
  .logo-section {
    height: 19.063vw;
    padding: 1.042vw 1.354vw 0;
    margin-bottom: -1.042vw;
  }

  /* --- Hero Image --- */
  .hero-image {
    height: 34.01vw;
  }

  /* --- Description --- */
  .description {
    padding: 3.125vw 1.354vw;
    min-height: 15.104vw;
  }

  .description p {
    font-size: 2.5vw;
  }

  /* --- Gallery Large --- */
  .gallery-large {
    gap: 1.354vw;
  }

  .gallery-large-item {
    height: 49.323vw;
  }

  /* --- Gallery Small --- */
  .gallery-small {
    margin-top: 1.042vw;
  }

  .gallery-small-item {
    height: 24.01vw;
    flex-shrink: 1;
  }

  .gs-1 { width: 20.521%; }
  .gs-2 { width: 20.885%; }
  .gs-3 { width: 20.417%; margin-left: 1.458%; }
  .gs-4 { width: 20.885%; margin-left: 1.667%; }

  .gallery-small-monogram {
    width: 14.167%;
  }

  .gallery-small-monogram img {
    width: 12.083vw;
    height: 5.26vw;
  }

  /* --- Gallery Link --- */
  .gallery-link {
    padding: 1.042vw 1.875vw 2.344vw;
  }

  .gallery-link a {
    font-size: 2.083vw;
  }

  .gallery-link-arrow {
    width: 1.563vw;
  }

  /* --- Services --- */
  .services-label {
    font-size: 2.083vw;
    padding: 0.521vw 0 1.042vw 1.146vw;
  }

  .service-header {
    height: 10.052vw;
    padding-left: 1.25vw;
  }

  .service-arrow {
    width: 6.979vw;
  }

  .service-arrow img {
    width: 4.167vw;
  }

  .service-name {
    font-size: 6.667vw;
  }

  .services-description {
    padding: 2.604vw;
  }

  .services-description p {
    font-size: 1.875vw;
  }

  .services-image {
    padding-top: 2.604vw;
  }

  /* --- Monogram Strip --- */
  .monogram-strip {
    height: 15.573vw;
  }

  .mono-tile {
    height: 9.844vw;
  }

  /* --- Who We Are --- */
  .who-label {
    font-size: 2.083vw;
    padding: 0.521vw 1.146vw 1.042vw;
  }

  .who-description {
    padding: 0 2.604vw 4.167vw;
  }

  .who-description p {
    font-size: 1.875vw;
  }

  /* --- Team Members --- */
  .team-member {
    padding: 0 0 5.208vw 2.292vw;
  }

  .team-photo {
    width: 20.885vw;
    height: 24.01vw;
  }

  .team-info {
    padding-left: 2.083vw;
    padding-right: 2.604vw;
  }

  .team-name {
    font-size: 1.875vw;
    margin-bottom: 0.781vw;
  }

  .team-name-divider {
    margin-bottom: 1.302vw;
  }

  .team-bio p {
    font-size: 1.875vw;
  }

  .team-experience {
    margin-top: 3.125vw;
  }

  .team-exp-label {
    font-size: 1.875vw;
    margin-bottom: 0.521vw;
  }

  .team-experience ul {
    padding-left: 2.813vw;
  }

  .team-experience li {
    font-size: 1.875vw;
    margin-bottom: 0.313vw;
  }

  /* --- Pre-Footer Image --- */
  .pre-footer-image {
    height: 44.896vw;
  }

  /* --- CTA --- */
  .cta {
    height: 10.052vw;
  }

  .cta-link {
    font-size: 6.667vw;
    padding-right: 1.25vw;
    gap: 1.042vw;
  }

  .cta-arrow {
    width: 4.167vw;
  }

  /* --- Footer --- */
  .footer-top {
    padding: 2.396vw 1.302vw 0;
  }


  .footer-logo {
    padding: 0 1.354vw 0.833vw;
  }

  .footer-logo img {
    height: 18.542vw;
  }

  .footer-copyright {
    bottom: 1vw;
    right: 1.25vw;
  }

  /* =========================================
     PROJECTS PAGE — LAPTOP
     ========================================= */

  .proj-hero {
    height: 24.844vw;
  }

  .proj-intro {
    padding: 2.344vw 1.302vw 2.083vw;
  }

  .proj-intro p {
    font-size: 2.5vw;
  }

  .proj-list-label {
    font-size: 2.083vw;
    padding: 0.521vw 0 1.042vw 1.146vw;
  }

  .proj-header {
    padding: 1.042vw 0 0.521vw;
  }

  .proj-arrow {
    width: 6.979vw;
    height: 6.667vw;
  }

  .proj-arrow img {
    width: 4.167vw;
  }

  .proj-name {
    font-size: 6.667vw;
  }

  .proj-category {
    font-size: 1.875vw;
    right: 2.5vw;
    bottom: 1.25vw;
  }

  .proj-thumbs {
    height: 12.396vw;
    max-height: 12.396vw;
  }

  .proj-item.active .proj-detail-inner {
    padding-bottom: 9.375vw;
  }

  .proj-detail-text {
    padding: 1.563vw 2.24vw 0;
  }

  .proj-detail-text p {
    font-size: 1.875vw;
  }

  .proj-detail-credits {
    padding: 2.083vw 2.24vw 0;
  }

  .proj-detail-credits p {
    font-size: 1.875vw;
  }

  .proj-detail-gallery {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.042vw;
    padding: 2.083vw 2.24vw 0;
  }

  .proj-detail-col {
    gap: 1.042vw;
  }

  .proj-detail-mid {
    gap: 1.042vw;
  }

  .proj-close {
    bottom: 3.125vw;
    right: 2.604vw;
    width: 6.667vw;
    height: 6.667vw;
    font-size: 5vw;
  }

  /* =========================================
     CONTACT PAGE — LAPTOP
     ========================================= */

  .contact-section {
    padding-bottom: 3.125vw;
  }

  .contact-heading {
    font-size: 6.667vw;
    padding: 1.823vw 0 1.563vw 2.24vw;
  }

  .contact-info {
    padding: 0 0 2.083vw 2.604vw;
  }

  .contact-info p {
    font-size: 1.875vw;
  }

  .contact-form {
    margin: 0 2.24vw 1.823vw;
  }

  .contact-input,
  .contact-textarea {
    font-size: 1.875vw;
    padding: 1.042vw 1.198vw;
  }

  .contact-textarea {
    min-height: 15.625vw;
  }

  .contact-field--message {
    min-height: 7.813vw;
  }

  .contact-submit {
    bottom: -2.76vw;
    width: 18.75vw;
    height: 2.76vw;
    font-size: 1.875vw;
  }

}

/* =========================================
   RESPONSIVE — MOBILE (≤ 768px)
   ========================================= */
@media (max-width: 768px) {

  body {
    width: 100%;
    min-width: 0;
  }

  img {
    max-width: 100%;
  }

  /* --- Menu --- */
  .menu {
    height: 52px;
    border-width: 3px;
  }

  .menu-logo img {
    width: 55px;
    height: 26px;
  }

  .menu-nav {
    display: none;
  }

  .menu-lang {
    display: none;
  }

  .menu-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  .menu-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #000;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .menu-hamburger.is-open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* --- Mobile Nav Panel --- */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    background: #fe330a;
    border: 5px solid #000;
    border-top: 3px solid #000;
    z-index: 99;
    flex-direction: column;
    align-items: center;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav-lang {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    border-bottom: 3px solid #000;
  }

  .mobile-nav-link {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 27px;
    text-transform: uppercase;
    color: #000;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    border-bottom: 3px solid #000;
  }

  .mobile-nav-link:first-of-type {
    border-top: none;
    margin-top: 0;
  }

  .mobile-nav-link:hover {
    background: #000;
    color: #fff;
  }

  .mobile-nav-link--accent {
    color: #000;
  }

  .mobile-nav-close {
    display: none;
  }

  /* --- Logo Section --- */
  .logo-section {
    padding: 8px 7px 0;
    height: auto;
    margin-bottom: 0;
  }

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

  /* --- Hero Image --- */
  .hero-image {
    height: auto;
    aspect-ratio: 390 / 305;
  }

  /* --- Description --- */
  .description {
    padding: 25px 9px;
    min-height: auto;
  }

  .description p {
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 24px;
    max-width: none;
  }

  /* --- Gallery --- */
  .gallery-label {
    display: none;
  }

  .gallery-large {
    flex-direction: column;
    gap: 20px;
  }

  .gallery-large-item {
    height: auto;
    aspect-ratio: 390 / 307;
  }

  .gallery-large-item img {
    width: 100%;
    height: 100%;
  }

  .gallery-small {
    flex-direction: column;
    margin-top: 20px;
    gap: 0;
  }

  .gallery-small-item {
    width: 100% !important;
    height: auto;
    aspect-ratio: 390 / 307;
    margin-left: 0 !important;
  }

  .gallery-small-monogram {
    display: none;
  }

  .gallery-small-item.gs-2,
  .gallery-small-item.gs-3,
  .gallery-small-item.gs-4 {
    display: none;
  }

  .gallery-link {
    padding: 14px 8px;
    text-align: left;
  }

  .gallery-link a {
    font-size: 21px;
  }

  /* --- Services --- */
  .services {
    border-top-width: 3px;
  }

  .services-label {
    font-size: 22px;
    padding: 10px 0 20px 8px;
  }

  .service-item {
    border-top-width: 3px;
  }

  .services .service-item:last-child {
    border-bottom-width: 3px;
  }

  .service-header {
    height: auto;
    padding: 14px 8px;
  }

  .service-arrow {
    width: 30px;
  }

  .service-arrow img {
    width: 18px;
  }

  .service-name {
    font-size: 27px;
    white-space: normal;
  }

  .service-content {
    border-top-width: 3px;
  }

  .services-description {
    padding: 20px 14px;
  }

  .services-description p {
    font-size: 16px;
    line-height: 1.0001;
  }

  .services-image {
    padding-top: 20px;
  }

  /* --- Monogram Strip --- */
  .monogram-strip {
    height: 159px;
  }

  .monogram-strip-inner {
    margin-left: -6px;
  }

  .mono-tile {
    height: 64px;
  }

  /* --- Who We Are --- */
  .who-label {
    font-size: 22px;
    padding: 10px 8px 20px;
  }

  .who-we-are .service-item {
    border-top-width: 3px;
  }

  .who-we-are .service-header {
    height: auto;
    padding: 14px 8px;
  }

  .who-we-are .service-name {
    font-size: 27px;
  }

  .who-we-are .service-arrow {
    width: 30px;
  }

  .who-description {
    padding: 0 14px 30px;
  }

  .who-description p {
    font-size: 16px;
    line-height: 1.0001;
  }

  /* --- Team Members --- */
  .team-member {
    flex-direction: column;
    padding: 0 14px 30px;
  }

  .team-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 390 / 300;
  }

  .team-info {
    padding: 15px 14px 0;
  }

  .team-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .team-name-divider {
    width: 100% !important;
    height: 3px;
    margin-bottom: 12px;
  }

  .team-bio p {
    font-size: 16px;
    line-height: 1.0001;
    margin-bottom: 4px;
  }

  .team-experience {
    margin-top: 20px;
  }

  .team-exp-label {
    font-size: 16px;
  }

  .team-experience ul {
    padding-left: 30px;
  }

  .team-experience li {
    font-size: 16px;
    margin-bottom: 3px;
  }

  /* --- Pre-Footer Image --- */
  .pre-footer-image {
    border-top-width: 3px;
    height: auto;
    aspect-ratio: 390 / 234;
  }

  .pre-footer-image img {
    object-position: center;
  }

  /* --- CTA --- */
  .cta {
    border-width: 3px;
    height: auto;
  }

  .cta-link {
    font-size: 27px;
    padding: 14px 8px;
    gap: 8px;
  }

  .cta-arrow {
    width: 22px;
  }

  /* --- Footer --- */
  .footer {
    border-top-width: 3px;
  }

  .footer-top {
    flex-direction: column;
    padding: 20px 11px 20px;
    gap: 16px;
  }

  .footer-contact {
    margin-left: 0;
    text-align: left;
  }

  .footer-contact p {
    font-size: 19px;
  }

  .footer-socials a {
    font-size: 19px;
  }

  .footer-logo {
    padding: 0 14px 12px;
  }

  .footer-logo img {
    height: auto;
    width: 100%;
  }

  .footer-copyright {
    position: relative;
    bottom: auto;
    right: auto;
    font-size: 16px;
    text-align: left;
    padding: 4px 11px 11px;
  }

  /* =========================================
     PROJECTS PAGE — MOBILE
     ========================================= */

  /* --- Hero --- */
  .proj-hero {
    height: auto;
    aspect-ratio: 390 / 242;
  }

  /* --- Intro Text --- */
  .proj-intro {
    padding: 11px 8px 20px;
  }

  .proj-intro p {
    font-size: 24px;
  }

  /* --- Projects List --- */
  .proj-list-label {
    font-size: 22px;
    padding: 10px 0 10px 8px;
  }

  .proj-divider {
    height: 3px;
  }

  /* --- Project Item --- */
  .proj-header {
    padding: 10px 0 8px;
    flex-wrap: wrap;
  }

  .proj-arrow {
    width: 30px;
    height: 28px;
    padding-left: 0;
  }

  .proj-item.active .proj-arrow {
    transform: rotate(90deg);
  }

  .proj-arrow img {
    width: 18px;
  }

  .proj-name {
    font-size: 27px;
    line-height: 28px;
    white-space: normal;
  }

  .proj-category {
    position: static;
    font-size: 14px;
    width: 100%;
    text-align: right;
    padding-right: 14px;
    padding-bottom: 5px;
  }

  /* --- Thumbnail Strip --- */
  .proj-thumbs {
    height: 97px;
    max-height: 97px;
  }

  /* --- Project Detail (expanded) --- */
  .proj-item.active .proj-detail-inner {
    padding-bottom: 60px;
  }

  .proj-detail-text {
    padding: 15px 14px 0;
  }

  .proj-detail-text p {
    font-size: 16px;
    line-height: 1.0001;
  }

  .proj-detail-credits {
    padding: 20px 14px 0;
  }

  .proj-detail-credits p {
    font-size: 16px;
    line-height: 1.0001;
  }

  .proj-detail-gallery {
    display: flex;
    flex-direction: column;
    padding: 20px 0 0;
    gap: 20px;
  }

  .proj-detail-col,
  .proj-detail-mid {
    gap: 20px;
  }

  .proj-close {
    position: relative;
    bottom: auto;
    right: auto;
    display: flex;
    margin: 10px auto 0;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  /* =========================================
     CONTACT PAGE — MOBILE
     ========================================= */

  .contact-divider {
    height: 3px;
  }

  .contact-heading {
    font-size: 27px;
    padding: 14px 0 14px 8px;
  }

  .contact-form {
    margin: 0 8px 35px;
    border-width: 3px;
  }

  .contact-field {
    border-bottom-width: 3px;
  }

  .contact-input,
  .contact-textarea {
    font-size: 16px;
    padding: 12px 10px;
  }

  .contact-textarea {
    min-height: 180px;
  }

  .contact-submit {
    width: 100%;
    position: relative;
    bottom: auto;
    right: auto;
    height: 44px;
    font-size: 18px;
  }

}
