/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1b1b1f;
  background-color: #f7f7f7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
}

/* ========== LAYOUT ========== */
.page-wrapper {
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

.page-wrapper--dark {
  background-color: #000;
  color: #f3f3f3;
}

/* ========== NAVBAR ========== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 80px;
  position: relative;
  z-index: 100;
  max-width: 1440px;
  margin: 0 auto;
}

.navbar__logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1.2px;
  color: #000;
  transition: opacity 0.2s ease;
}

.navbar__logo:hover {
  opacity: 0.7;
}

.navbar--dark .navbar__logo {
  color: #fff;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 26px;
  padding: 0;
}

.navbar--dark .navbar__menu {
  background: #3c3c3c;
}

.navbar__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.35px;
  padding: 10px 26px;
  border-radius: 26px;
  transition: all 0.25s ease;
}

.navbar__link:hover {
  opacity: 0.7;
}

.navbar--dark .navbar__link {
  color: #fff;
}

.navbar__link--active {
  background: #000;
  color: #fff;
  font-weight: 700;
}

.navbar__link--active:hover {
  opacity: 1;
}

.navbar--dark .navbar__link--active {
  background: #fff;
  color: #000;
}

.navbar__cta {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.navbar--dark .navbar__cta {
  background: #fff;
  color: #000;
}

.navbar__cta:hover {
  opacity: 0.85;
}

/* Hamburger button */
.navbar__burger {
  display: none;
  background: #000;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 1000;
  position: relative;
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.navbar--dark .navbar__burger {
  background: #fff;
}

.navbar__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar--dark .navbar__burger span {
  background: #000;
}

.navbar__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.page-wrapper--dark .mobile-menu {
  background: #000;
}

.mobile-menu__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.5px;
  color: #000;
  transition: opacity 0.25s ease;
}

.mobile-menu__link:hover {
  opacity: 0.6;
}

.page-wrapper--dark .mobile-menu__link {
  color: #fff;
}

.mobile-menu__link--active {
  font-weight: 700;
}

/* ========== HERO (Landing) ========== */
.hero {
  padding: 100px 80px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}

.hero__subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4a454f;
  line-height: 19px;
  max-width: 250px;
  flex-shrink: 0;
  padding-top: 8px;
}

.hero__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 76px;
  letter-spacing: -4px;
  color: #000;
  flex: 1;
  max-width: 700px;
}

/* ========== WORK CARDS (Landing) ========== */
.works {
  padding: 80px 80px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
}

.works__main {
  display: block;
  width: 100%;
  height: 497px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

.works__main:hover img {
  transform: scale(1.03);
}

.works__main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.27);
  pointer-events: none;
}

.works__row {
  display: flex;
  gap: 16px;
}

.works__card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 479px;
  cursor: pointer;
}

.works__card--small {
  width: 509px;
  flex-shrink: 0;
}

.works__card--large {
  flex: 1;
}

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

.works__card:hover img {
  transform: scale(1.03);
}

.works__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.33);
  pointer-events: none;
}

.works__tag {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  padding: 10px 24px;
  border: 1px solid #fff;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.22);
}

/* ========== ALL WORKS BUTTON ========== */
.works__all-btn {
  display: inline-flex;
  margin-top: 20px;
}

/* ========== PILL BUTTON ========== */
.btn-pill {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.btn-pill--dark {
  background: #1b1b1f;
  color: #fff;
}

.btn-pill--dark:hover {
  background: #333;
}

.btn-pill--outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-pill--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-pill--outline-dark {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

.btn-pill--outline-dark:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* ========== ABOUT SECTION (Landing bottom) ========== */
.about-preview {
  padding: 80px 80px 100px;
  display: flex;
  gap: 0;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}

.about-preview__clients {
  width: 176px;
  flex-shrink: 0;
}

.about-preview__clients-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #4a454f;
  line-height: 48px;
  margin-bottom: 30px;
}

.about-preview__clients-list {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #000;
}

.about-preview__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 27px;
  max-width: 681px;
}

.about-preview__text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #000;
}

/* ========== CONTACT / CTA FOOTER ========== */
.contact-section {
  background: #000;
  border-radius: 26px 26px 0 0;
  padding: 98px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 89px;
}

.contact-section--light {
  background: #f7f7f7;
}

.contact-section--light .contact-section__title,
.contact-section--light .contact-section__heading,
.contact-section--light .contact-section__email {
  color: #000;
}

.contact-section__header {
  text-align: center;
}

.contact-section__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 48px;
  color: #fff;
}

.contact-section__heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 48px;
  color: #fff;
  margin-top: 9px;
}

.contact-section__email-link {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.25s ease;
}

.contact-section__email-link:hover {
  opacity: 0.7;
}

.contact-section__email {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
}

.contact-section__arrow {
  width: 22.5px;
  height: 22.5px;
}

.contact-section__socials {
  display: flex;
  gap: 20px;
}

.contact-section__socials .btn-pill--outline {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}

.contact-section--light .btn-pill--outline {
  border-color: #000;
  color: #000;
}

/* ========== EXPERTISE / ABOUT PAGE ========== */
.page-header {
  padding: 80px 80px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.page-header__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 74px;
  line-height: 76px;
  letter-spacing: -4px;
  color: #1a1c1c;
}

.page-header--dark .page-header__title {
  color: #fff;
}

.page-header__row {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  align-items: flex-start;
}

.page-header__description {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #4a454f;
  max-width: 643px;
}

.page-header__image {
  width: 383px;
  height: 386px;
  border-radius: 26px;
  overflow: hidden;
  flex-shrink: 0;
}

.page-header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== EXPERTISE CARDS ========== */
.expertise-section {
  position: relative;
  margin-top: 80px;
  padding-bottom: 0;
}

.expertise-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 96px 96px 96px 96px;
  z-index: 0;
}

.expertise-cards {
  display: flex;
  gap: 64px;
  padding: 120px 96px;
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
}

.expertise-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.expertise-card__number {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 20px;
}

.expertise-card__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
}

.expertise-card__desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

/* ========== CLIENTS GRID ========== */
.clients-section {
  padding: 80px 102px;
  display: flex;
  gap: 78px;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}

.clients-section__heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
  width: 330px;
  flex-shrink: 0;
}

.clients-grid {
  display: flex;
  gap: 97px;
  flex: 1;
}

.clients-column {
  display: flex;
  flex-direction: column;
  gap: 51px;
}

.client-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.client-item__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 28px;
}

.client-item__category {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 16px;
}

/* ========== CASE STUDY PAGES ========== */
.back-nav {
  padding: 0 80px;
  margin-top: 40px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.back-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.25s ease;
}

.back-nav__link:hover {
  opacity: 0.7;
}

.back-nav__arrow {
  font-size: 14px;
}

.case-header {
  padding: 40px 80px 0;
  max-width: 1440px;
  margin: 0 auto;
}

.case-header__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 76px;
  letter-spacing: -4px;
  color: #fff;
}

.case-header__description {
  margin-top: 40px;
  padding: 0 80px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.case-header__lead {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 32px;
  color: #f3f3f3;
  margin-bottom: 24px;
}

.case-header__text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  color: #f3f3f3;
}

.case-header__text strong {
  font-weight: 500;
}

/* ========== IMAGE GALLERY (Digital Design) ========== */
.gallery {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.gallery__grid {
  display: grid;
  gap: 12px;
  max-width: 918px;
}

.gallery__grid--dd {
  grid-template-columns: 326px 1fr;
  grid-template-rows: auto;
}

.gallery__item {
  border-radius: 26px;
  overflow: hidden;
}

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

/* Digital Design specific grid */
.dd-gallery {
  padding: 60px 80px;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-gallery__row {
  display: flex;
  gap: 12px;
}

.dd-gallery__item {
  border-radius: 26px;
  overflow: hidden;
  flex-shrink: 0;
}

.dd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== UX/UI PROJECT SECTIONS ========== */
.project-section {
  display: flex;
  gap: 90px;
  padding: 60px 80px;
  align-items: flex-start;
  max-width: 1440px;
  margin: 0 auto;
}

.project-meta {
  width: 183px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.project-meta__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-meta__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  line-height: 15px;
}

.project-meta__value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.project-images {
  flex: 1;
}

.project-images__item {
  border-radius: 26px;
  overflow: hidden;
}

.project-images__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ========== BRANDING GALLERY ========== */
.branding-gallery {
  padding: 60px 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1440px;
  margin: 0 auto;
}

.branding-gallery__item {
  border-radius: 26px;
  overflow: hidden;
}

.branding-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branding-gallery__item--top-left {
  width: calc(44% - 6px);
  height: 237px;
}

.branding-gallery__item--top-right {
  width: calc(56% - 6px);
  height: 237px;
}

.branding-gallery__item--bottom-left {
  width: calc(44% - 6px);
  height: 328px;
}

.branding-gallery__item--bottom-right {
  width: calc(56% - 6px);
  height: 328px;
}

/* ========== SITE FOOTER ========== */
.site-footer {
  padding: 40px 80px;
  background: #000;
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__name {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__links {
  display: flex;
  gap: 48px;
}

.site-footer__links a {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
  transition: opacity 0.25s ease;
}

.site-footer__links a:hover {
  opacity: 0.6;
}

.site-footer__copy {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}

.contact-section--light ~ .site-footer {
  background: #f7f7f7;
}

.contact-section--light ~ .site-footer .site-footer__name,
.contact-section--light ~ .site-footer .site-footer__links a,
.contact-section--light ~ .site-footer .site-footer__copy {
  color: #000;
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 80px 80px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-page__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 54px;
  line-height: 60px;
  letter-spacing: -3px;
  margin-bottom: 8px;
}

.legal-page__date {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #4a454f;
  margin-bottom: 60px;
}

.legal-page__content h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page__content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  margin-bottom: 16px;
}

.legal-page__content a {
  color: #000;
  text-decoration: underline;
}

/* ========== 404 PAGE ========== */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px;
}

.error-page__code {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  letter-spacing: -6px;
  color: #d6d6d6;
}

.error-page__title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 36px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.error-page__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #4a454f;
  margin-bottom: 32px;
}

/* ========== STICKY NAVBAR ========== */
.navbar--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  background: rgba(247, 247, 247, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.navbar--sticky.navbar--dark {
  background: rgba(0, 0, 0, 0.9);
}

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

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ========== RESPONSIVE: TABLET ========== */
@media (max-width: 1024px) {
  .navbar { padding: 20px 40px; }
  .hero { padding: 60px 40px 0; gap: 60px; flex-direction: column; }
  .hero__subtitle { max-width: 100%; }
  .hero__title { max-width: 100%; font-size: 48px; line-height: 56px; }
  .works { padding: 60px 40px 0; }
  .works__main { height: 360px; }
  .works__card { height: 340px; }
  .works__card--small { width: auto; flex: 1; }
  .about-preview { padding: 60px 40px 80px; flex-direction: column; gap: 40px; }
  .about-preview__content { max-width: 100%; }
  .about-preview__text { font-size: 28px; line-height: 38px; }
  .contact-section { padding: 80px 40px; gap: 60px; }
  .contact-section__heading { font-size: 48px; }
  .page-header { padding: 60px 40px 0; }
  .page-header__title { font-size: 54px; }
  .page-header__row { gap: 40px; }
  .page-header__image { width: 280px; height: 280px; }
  .expertise-cards { padding: 80px 40px; gap: 40px; }
  .expertise-card { gap: 30px; }
  .expertise-card__title { font-size: 28px; line-height: 34px; }
  .clients-section { padding: 60px 40px; flex-direction: column; gap: 40px; }
  .clients-grid { gap: 48px; }
  .back-nav { padding: 0 40px; }
  .case-header { padding: 30px 40px 0; }
  .case-header__title { font-size: 48px; }
  .case-header__description { padding: 0 40px; }
  .case-header__lead { font-size: 28px; }
  .case-header__text { font-size: 18px; line-height: 28px; }
  .dd-gallery { padding: 40px; }
  .project-section { padding: 40px; gap: 40px; }
  .branding-gallery { padding: 40px; }
  .site-footer__inner { flex-direction: column; gap: 20px; text-align: center; }
  .site-footer__links { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .legal-page { padding: 60px 40px 80px; }
  .legal-page__title { font-size: 40px; }
}

/* ========== RESPONSIVE: MOBILE ========== */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .navbar__menu { display: none; }
  .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .hero { padding: 40px 20px 0; gap: 32px; }
  .hero__title { font-size: 36px; line-height: 42px; letter-spacing: -2px; }
  .hero__subtitle { font-size: 14px; line-height: 18px; }
  .works { padding: 40px 20px 0; gap: 12px; }
  .works__main { height: 240px; }
  .works__row { flex-direction: column; }
  .works__card { height: 240px; }
  .works__card--small { width: 100%; }
  .works__tag { font-size: 12px; padding: 8px 16px; top: 12px; left: 12px; }
  .about-preview { padding: 40px 20px 60px; }
  .about-preview__text { font-size: 22px; line-height: 30px; }
  .contact-section { padding: 60px 20px; gap: 40px; border-radius: 16px 16px 0 0; }
  .contact-section__heading { font-size: 36px; line-height: 40px; }
  .contact-section__email { font-size: 16px; }
  .contact-section__socials { flex-wrap: wrap; justify-content: center; }
  .page-header { padding: 40px 20px 0; }
  .page-header__title { font-size: 40px; line-height: 44px; }
  .page-header__row { flex-direction: column; }
  .page-header__image { width: 100%; height: 280px; }
  .expertise-cards { flex-direction: column; padding: 60px 20px; gap: 48px; }
  .expertise-section__bg { border-radius: 32px; }
  .expertise-card__title { font-size: 24px; line-height: 30px; }
  .expertise-card { gap: 24px; }
  .clients-section { padding: 40px 20px; }
  .clients-section__heading { font-size: 28px; width: auto; }
  .clients-grid { flex-direction: column; gap: 32px; }
  .back-nav { padding: 0 20px; }
  .case-header { padding: 20px 20px 0; }
  .case-header__title { font-size: 36px; line-height: 42px; }
  .case-header__description { padding: 0 20px; margin-top: 24px; }
  .case-header__lead { font-size: 22px; line-height: 28px; }
  .case-header__text { font-size: 16px; line-height: 24px; }
  .dd-gallery { padding: 20px; }
  .project-section { padding: 30px 20px; gap: 24px; flex-direction: column; }
  .project-meta { width: 100%; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .branding-gallery { padding: 20px; }
  .branding-gallery__item--top-left,
  .branding-gallery__item--top-right,
  .branding-gallery__item--bottom-left,
  .branding-gallery__item--bottom-right { width: calc(50% - 6px); height: auto; aspect-ratio: 4/3; }
  .site-footer { padding: 30px 20px; }
  .site-footer__links { gap: 16px; font-size: 10px; }
  .site-footer__copy { font-size: 10px; }
  .legal-page { padding: 40px 20px 60px; }
  .legal-page__title { font-size: 32px; line-height: 36px; letter-spacing: -1.5px; }
  .error-page { padding: 40px 20px; }
  .error-page__code { font-size: 80px; }
  .error-page__title { font-size: 24px; }
}
