@font-face {
  font-family: 'Copperplate Gothic';
  src: url('images/CopperplateGothic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

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

:root {
  --gold: #C8A55C;
  --dark: #1a1a1a;
  --dark-bg: #111111;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text-dark: #333333;
  --text-gray: #666666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 12px 0;
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  line-height: 0;
}

.logo-img {
  height: 192px;
  width: auto;
  object-fit: cover;
  object-position: center;
  clip-path: inset(20% 0 30% 0);
  margin: -38px 0 -58px 0;
}

.footer-logo-img {
  height: 168px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 11;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 80px;
  margin: 0 auto 0 0;
  max-width: 70vw;
  padding-left: calc((100vw - 1300px) / 2 + 24px);
  padding-right: 24px;
}

.hero-content h1 {
  font-size: 51px;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 65vw;
  color: #CDAD7D;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 480px;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline {
  border: 2px solid #CDAD7D;
  color: #000;
  background: #CDAD7D;
}

.btn-outline:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

.btn-outline-dark {
  border: 2px solid #CDAD7D;
  color: #000;
  background: #CDAD7D;
}

.btn-outline-dark:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.who-we-are {
  padding: 80px 0;
  background: var(--white);
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-we-are-text h2 {
  font-size: 45px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.who-we-are-text p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  height: 340px;
  border: 4px solid #CDAD7D;
  border-radius: 12px;
  overflow: hidden;
}

.collage-img-1,
.collage-img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-img-1 {
  border-radius: 0;
}

.collage-img-2 {
  border-radius: 0;
}

.our-services {
  padding: 80px 0;
  background: var(--light-gray);
}

.our-services h2 {
  font-size: 45px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.services-intro {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 100%;
  line-height: 1.7;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.services-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border: 4px solid #CDAD7D;
  border-radius: 12px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.service-text p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

.service-text strong {
  color: var(--text-dark);
}

.why-work {
  padding: 80px 0;
  background: var(--white);
}

.why-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-work-text h2 {
  font-size: 45px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.why-work-text p {
  font-size: 17px;
  color: var(--text-gray);
  margin-bottom: 16px;
  line-height: 1.7;
}

.why-work-text .btn {
  margin-top: 16px;
}

.why-work-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border: 4px solid #CDAD7D;
  border-radius: 12px;
}

.cta-banner {
  background: #CDAD7D;
  padding: 48px 0;
  text-align: center;
}

.cta-content h3 {
  color: #000;
  font-size: 29px;
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-content a {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: opacity 0.3s;
}

.cta-content a:hover {
  opacity: 0.8;
}

.partner-section {
  background: #fff;
  padding: 80px 0;
}

.partner-section .container {
  max-width: 1400px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  transition: opacity 0.3s;
}

.partner-logo img {
  height: 114px;
  width: auto;
  object-fit: contain;
}

.partner-logo:hover {
  opacity: 0.7;
}

.site-footer {
  background: var(--dark-bg);
  padding: 40px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  font-size: 17px;
}

.copyright {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.6;
  max-width: 520px;
  margin-top: 12px;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.social-link:hover {
  color: var(--gold);
}

.social-link svg {
  fill: #ffffff;
  transition: fill 0.3s;
}

.social-link:hover svg {
  fill: var(--gold);
}

.linkedin-logo {
  height: 20px;
  width: auto;
  opacity: 1;
  transition: opacity 0.3s;
}

.social-link:hover .linkedin-logo {
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

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

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--dark-bg);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 10;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-content {
    padding-left: 24px;
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .who-we-are-grid,
  .services-grid,
  .why-work-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .services-image {
    order: -1;
  }

  .image-collage {
    height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

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

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

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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