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


/* ================================
   COLOR SYSTEM
================================ */
:root {
  --black: #0F0F0F;
  --gold: #C9A24D;
  --white: #F5F5F5;
  --gray: #9A9A9A;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  padding-top: 86px;
}

/* ================================
   HEADER
================================ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 86px;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}
.site-header,
.site-header * {
  box-sizing: border-box;
  line-height: normal;
}

.site-header .nav a,
.site-header .nav-link {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}
.logo img {
  height: 46px;
}

/* NAV */
.nav {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a,
.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  line-height: normal;
}

.nav a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav-link:hover {
  color: var(--gold);
}

.nav a:hover::after,
.nav-link:hover::after {
  width: 100%;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
  background: #0F0F0F;
  border: 1px solid rgba(201,162,77,0.3);
  min-width: 180px;
  display: none;
  flex-direction: column;

  /* Fix transparency issues */
  opacity: 1;
  backdrop-filter: none;
  z-index: 2000;
}
.dropdown-menu a {
  padding: 12px 20px;
  color: #E5E5E5;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(201,162,77,0.15);
  color: var(--gold);
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

/* ================================
   HERO
================================ */
.hero-wave {
  position: relative;
  height: 100vh;
  background: #0F0F0F;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  left: 8%;
  top: 30%;
  transform: translateY(-35%);
  z-index: 3;
  color: #ffffff;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.05;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 18px;
  color: #d6d6d6;
}

.hero-right-logo {
  position: absolute;
  right: 15%;
  top: 35%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-right-logo img {
  width: 370px;
}

.waves {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.waves svg {
  position: absolute;
  bottom: -40px;
  width: 100%;
  height: 100%;
}

/* ================================
   PROJECTS STATEMENT
================================ */
.projects-statement {
  padding: 140px 6% 120px;
  background: #fff;
  overflow: hidden;
}

.projects-statement-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.statement-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.statement-eyebrow {
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 28px;
}

.statement-title {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 32px;
}

.statement-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

.statement-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.statement-image {
  overflow: hidden;
  border-radius: 24px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s ease;
}

.statement-image img {
  width: 100%;
  transform: scale(1.15);
  transition: transform 1.3s ease;
}

.projects-statement.visible .statement-content {
  opacity: 1;
  transform: translateY(0);
}

.projects-statement.visible .statement-image {
  clip-path: inset(0 0 0 0);
}

.projects-statement.visible .statement-image img {
  transform: scale(1);
}

/* ================================
   PROJECTS SLIDER
================================ */
.projects {
  padding: 120px 6%;
  background: #fff;
}

.projects h2 {
  font-size: 42px;
  margin-bottom: 60px;
}

.projects-container {
  position: relative;
}

.projects-viewport {
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
}

.project-item {
  flex: 0 0 calc(33.333% - 27px);
  display: flex;
  flex-direction: column;
}

.project-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

/* BADGE */
.project-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 16px;
  font-size: 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 5;
}

.project-badge.development {
  background: rgba(201,162,77,0.9);
  color: #000;
}

.project-badge.construction {
  background: rgba(0,0,0,0.75);
  color: #fff;
  border: 1px solid var(--gold);
}

/* HOVER OVERLAY */
.project-hover {
  position: absolute;
  inset: 0;
  background: rgba(201,162,77,0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease;
}

.project-card:hover .project-hover {
  opacity: 1;
}

.project-logo {
  width: 90px;
}

.project-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
}

/* ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}

.slider-arrow.left { left: -80px; }
.slider-arrow.right { right: -80px; }

/* ================================
   NEWS
================================ */
.news {
  padding: 100px 6%;
  background: #0f0f0f;
  color: #fff;
}

.news h2 {
  color: var(--gold);
  font-size: 36px;
  margin-bottom: 50px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.news-card {
  background: #161616;
  padding: 30px;
  border-radius: 14px;
  transition: 0.3s;
}

.news-card:hover {
  transform: translateY(-8px);
}
/* ======================================================
   MOBILE RESPONSIVE SYSTEM — CLEAN STRUCTURE
====================================================== */

/* =========================
   LARGE TABLETS (≤1200px)
========================= */
@media (max-width: 1200px) {

  .site-header {
    padding: 0 40px;
  }

  .slider-arrow.left { left: 10px; }
  .slider-arrow.right { right: 10px; }

}


/* =========================
   TABLETS (≤992px)
========================= */
@media (max-width: 992px) {

  /* HEADER */
  .site-header {
    padding: 0 25px;
  }

  .nav {
    position: static;
    transform: none;
    gap: 20px;
  }

  /* PROJECTS STATEMENT */
  .projects-statement-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  /* PROJECT CARDS */
  .project-item {
    flex: 0 0 calc(50% - 20px);
  }

}


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

  body {
    padding-top: 70px;
  }

  /* HEADER */
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .logo img {
    height: 38px;
  }

  .nav {
    gap: 16px;
  }

  .nav a,
  .nav-link {
    font-size: 14px;
  }

  /* HERO */
  .hero-wave {
    height: auto;
    padding: 120px 20px 80px;
  }

  .hero-content {
    position: static;
    transform: none;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-right-logo {
    position: static;
    transform: none;
    margin-top: 40px;
    text-align: center;
  }

  .hero-right-logo img {
    width: 200px;
  }

  /* PROJECT STATEMENT */
  .projects-statement {
    padding: 90px 20px;
  }

  .statement-title {
    font-size: 36px;
  }

  .statement-text {
    font-size: 16px;
  }

  /* PROJECTS SECTION */
  .projects {
    padding: 90px 20px;
  }

  .projects h2 {
    font-size: 28px;
    text-align: center;
  }

  .project-item {
    flex: 0 0 100%;
  }

  /* SLIDER ARROWS */
  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .slider-arrow.left { left: 10px; }
  .slider-arrow.right { right: 10px; }

  /* NEWS */
  .news {
    padding: 80px 20px;
  }

  .news h2 {
    font-size: 28px;
    text-align: center;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
/* ===== MOBILE: STACK PROJECTS VERTICALLY ===== */

.projects {
  padding: 90px 20px;
}

/* ===== MOBILE: STACK PROJECTS ===== */

.projects-viewport {
  overflow: visible;
}

.projects-track {
  display: flex;
  flex-direction: column;
  gap: 30px;
  transform: none !important;
}

.project-item {
  flex: none;
  width: 100%;
}

.slider-arrow {
  display: none;
}
}


/* =========================
   SMALL PHONES (≤480px)
========================= */
@media (max-width: 480px) {

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

  .statement-title {
    font-size: 28px;
  }

  .projects h2,
  .news h2 {
    font-size: 24px;
  }

}

/* MOBILE DROPDOWN OPEN STATE */
.nav-dropdown.open .dropdown-menu {
  display: flex;
}
.nav-link {
  user-select: none;
}
.nav-dropdown .nav-link::after {
  display: none;
}
/**>?/
