@font-face {
  font-family: "Monument Grotesk";
  src: url("../assets/MonumentGrotesk-Regular.ttf") format("truetype");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Grotesk";
  src: url("../assets/MonumentGrotesk-Regular.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Monument Grotesk";
  src: url("../assets/MonumentGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "AllrounderGroteskTest-Light";
  src: url("../assets/AllrounderGroteskTest-Light.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "AllrounderGroteskTest-Light";
  src: url("../assets/AllrounderGroteskTest-Light.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "AllrounderGroteskTest-Medium";
  src: url("../assets/AllrounderGroteskTest-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "AllrounderGroteskTest-Light", sans-serif;
  font-weight: 400;
  background: #000;
  color: white;
  overflow-x: hidden;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 1s ease-out;
}

.splash-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.splash-logo {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.splash-logo-image {
  width: 300px;
  height: auto;
  filter: brightness(0) invert(1);
}

.splash-logo:hover {
  transform: scale(1.05);
}

.splash-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.main-site {
  position: relative;
  min-height: 100vh;
  background-image: url("../assets/mainbg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.main-site::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.main-site.hidden {
  display: none;
}

.main-site.bg1::before {
  background-image: url("../assets/bg1.png");
  opacity: 1;
}

.main-site.bg2::before {
  background-image: url("../assets/bg2.png");
  opacity: 1;
}

.main-site.bg3::before {
  background-image: url("../assets/bg3.png");
  opacity: 1;
}

.main-site.bg4::before {
  background-image: url("../assets/bg4.png");
  opacity: 1;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
  background: transparent;
}

.location {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 300;
  color: rgb(255, 255, 255);
}

.logo {
  position: absolute;
  top: 40px;
  right: 300px; 
}

.header-logo {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  transition: opacity 0.3s ease;
  line-height: 1.2;
}

.nav-links a:hover {
  opacity: 0.7;
}

.search-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.main-content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 40px;
  overflow: hidden;
}

.address-info {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

.company-name {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 4px;
}

.address,
.postal,
.country {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
}

.main-nav,
.main-content,
.footer,
.content {
  position: relative;
  z-index: 2;
}

.main-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: absolute;
  left: 34%;
  top: 50%;
  transform: translate(-20%, -50%);
  margin: 0;
}

.main-nav:hover .nav-item:not(:hover) {
  opacity: 0.3;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 72px;
  font-weight: 50;
  line-height: 1.07;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  padding: 8px;
  margin: 0;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.nav-item:hover {
  opacity: 1;
  transform: translateX(10px);
}

.latest-work-trigger {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.latest-work-trigger:hover {
  opacity: 0.7;
}

.latest-work {
  background: white;
  color: black;
  padding: 40px 40px 30px;
  min-height: auto;
}

.latest-work h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.work-grid {
  display: none; 
}

.work-slider-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 80px;
}

.work-slider {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
  padding: 0;
}

.work-slider .work-item {
  flex: 0 0 200px;
  text-align: left;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 20px;
}

.slider-btn svg {
  color: #333;
}

.model-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.work-details {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
}

.footer {
  background: white;
  color: #999;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 250;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 40px;
  flex: 1;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 300;
}

.footer-links a:hover {
  color: #666;
}

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-right {
  text-align: right;
  flex: 1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-content {
  background: white;
  color: black;
  padding: 40px;
  max-width: 600px;
  margin: 20px;
  font-weight: 400;
}

.modal-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.modal-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
}

.understand-btn {
  background: black;
  color: white;
  border: none;
  padding: 12px 24px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 20px;
  transition: opacity 0.3s ease;
}

.understand-btn:hover {
  opacity: 0.8;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  border-radius: 8px;
  z-index: 10000;
  font-size: 13px;
  font-weight: 400;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup.hidden {
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  padding: 24px;
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cookie-header h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-body h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 12px 0;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cookie-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.show-details {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 20px;
  opacity: 0.8;
}

.show-details:hover {
  opacity: 1;
}

.cookie-footer {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.cookie-btn.outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn.filled {
  background: white;
  color: black;
  border-color: white;
}

.cookie-btn.filled:hover {
  background: rgba(255, 255, 255, 0.9);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-overlay.hidden {
  display: none;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 0 40px;
}

.search-close {
  position: absolute;
  top: -60px;
  right: 40px;
  background: none;
  border: none;
  font-size: 32px;
  color: black;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.search-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 0;
  z-index: 1;
  color: black;
}

#search-input {
  width: 100%;
  padding: 20px 20px 20px 40px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  font-size: 24px;
  font-weight: 400;
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  color: black;
  outline: none;
}

#search-input::placeholder {
  color: #999;
}

.about-content {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 100vh;
  background: white;
  color: black;
}

.about-hero {
  text-align: center;
  margin-bottom: 80px;
  padding: 60px 0;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.about-sections {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section {
  margin-bottom: 60px;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.about-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 800px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.value-item p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.8;
}

.scouted-content {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 100vh;
  background: white;
  color: black;
}

.scouted-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.scouted-hero h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.application-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  background: black;
  color: white;
  border: none;
  padding: 16px 32px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  opacity: 0.8;
}

.contact-content {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 100vh;
  background: white;
  color: black;
}

.contact-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.contact-info {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
}

.contact-section h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.contact-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 12px;
}

.contact-section a {
  color: black;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-section a:hover {
  opacity: 0.7;
}

.models-content {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 100vh;
  background: white;
  color: black;
}

.models-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
}

.models-hero h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.filters {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
}

.filter-group select {
  padding: 8px 12px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: white;
}

.alphabet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.letter-btn {
  background: white;
  border: 1px solid #ddd;
  padding: 6px 10px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  min-width: 32px;
}

.letter-btn:hover,
.letter-btn.active {
  background: black;
  color: white;
  border-color: black;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.model-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.model-card:hover {
  transform: translateY(-5px);
}

.model-image {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
}

.model-image svg {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.model-card:hover .model-image svg {
  transform: scale(1.05);
}

.model-info h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

.model-info p {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 1.4;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
}

.policy-content {
  padding-top: 120px;
  padding-left: 60px;
  padding-right: 40px;
  min-height: 100vh;
  background: white;
  color: black;
}

.policy-container {
  max-width: 800px;
  margin: 0 0 0 0;
  padding: 40px 0;
}

.policy-container h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 40px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
  text-align: left;
}

.policy-section {
  margin-bottom: 40px;
  text-align: left;
}

.policy-section h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
  text-align: left;
}

.policy-section h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
  margin-top: 24px;
  font-family: "AllrounderGroteskTest-Light", sans-serif;
  text-align: left;
}

.policy-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  text-align: left;
}

.policy-section li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 8px;
  font-family: "AllrounderGroteskTest-Medium", sans-serif;
  text-align: left;
}

.policy-section em {
  opacity: 0.7;
  font-size: 14px;
}

.policy-page .header-logo {
  filter: brightness(0);
}

.policy-page .nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  font-size: 14px;
}

.policy-page .nav a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  transition: opacity 0.3s ease;
  line-height: 1.2;
  display: block;
}

.policy-page .nav a:hover {
  opacity: 0.7;
}

.policy-page .location {
  color: black;
}

.index-special-text {
  font-family: "AllrounderGroteskTest-Light", sans-serif;
}

@media (max-width: 1024px) {
  .header {
    padding: 25px 30px;
  }

  .location {
    font-size: 16px;
    gap: 8px;
  }

  .logo {
    top: 35px;
    right: 250px;
  }

  .header-logo {
    width: 150px;
  }

  .latest-work {
    padding: 50px 30px 30px;
  }

  .latest-work h2 {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .work-slider-container {
    padding: 0 60px;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 10px;
  }

  .nav-item {
    font-size: 52px;
  }

  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
  }

  .models-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
  }

  .policy-content {
    padding: 100px 20px 0;
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 20px 25px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .location {
    font-size: 16px;
    gap: 8px;
  }

  .logo {
    position: static;
    order: 1; 
  }

  .logo img {
    width: 80px;
    height: auto;
  }

  .nav {
    gap: 15px;
  }

  .nav-links {
    align-items: flex-end;
    gap: 8px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-links a:hover {
    background: black;
    color: white;
    transform: scale(0.98);
  }

  .latest-work {
    padding: 40px 20px 30px;
  }

  .latest-work h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .work-slider-container {
    padding: 0 50px;
  }

  .work-slider {
    gap: 30px;
  }

  .work-slider .work-item {
    flex: 0 0 160px;
  }

  .slider-btn {
    width: 44px;
    height: 44px;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 5px;
  }

  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .about-hero h1,
  .scouted-hero h1,
  .contact-hero h1,
  .models-hero h1 {
    font-size: 26px;
  }

  .about-section h2 {
    font-size: 20px;
  }

  .values-grid {
    gap: 20px;
  }

  .value-item {
    padding: 16px;
  }

  .value-item h3 {
    font-size: 18px;
  }

  .application-form {
    padding: 20px 15px;
  }

  .models-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
}

@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .header-logo,
  .logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }

  .slider-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
  }
}

@media (min-width: 1200px) and (max-width: 1600px) {
  .header {
    padding: 40px 50px;
  }

  .logo {
    right: 350px;
    top: 45px;
  }

  .header-logo {
    width: 220px;
  }

  .latest-work {
    padding: 70px 50px 50px;
  }

  .work-slider-container {
    padding: 0 100px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 15px 20px;
    height: 70px;
  }

  .location {
    font-size: 14px;
  }

  .logo img {
    width: 70px;
  }

  .nav-links a {
    font-size: 11px;
    padding: 6px 10px;
    min-height: 40px;
  }

  .main-content {
    padding: 90px 15px 0;
  }

  .nav-item {
    font-size: 28px;
  }

  .latest-work {
    padding: 25px 15px 15px;
  }

  .latest-work h2 {
    font-size: 28px;
  }

  .work-slider-container {
    padding: 0 40px;
  }

  .work-slider {
    gap: 20px;
  }

  .work-slider .work-item {
    flex: 0 0 140px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .prev-btn {
    left: 8px;
  }

  .next-btn {
    right: 3px;
  }

  .work-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .about-hero h1,
  .scouted-hero h1,
  .contact-hero h1,
  .models-hero h1 {
    font-size: 26px;
  }

  .about-section h2 {
    font-size: 20px;
  }

  .values-grid {
    gap: 20px;
  }

  .value-item {
    padding: 16px;
  }

  .value-item h3 {
    font-size: 16px;
  }

  .application-form {
    padding: 20px 15px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .work-item:hover {
    transform: none;
  }

  .model-card:hover {
    transform: none;
  }

  .slider-btn {
    min-height: 48px;
    min-width: 48px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }

  .letter-btn,
  .filter-button,
  .submit-btn,
  .cookie-popup button {
    min-height: 48px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    min-height: 48px;
  }

  .nav-links a {
    min-height: 48px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .nav-item {
    font-size: 32px;
  }

  .about-hero h1,
  .scouted-hero h1,
  .contact-hero h1,
  .models-hero h1 {
    font-size: 28px;
  }

  .header {
    height: 70px;
  }

  .main-content {
    padding-top: 90px;
  }

  .latest-work {
    padding: 35px 20px 25px;
  }

  .latest-work h2 {
    font-size: 30px;
  }
}
