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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f4f0eb;
  color: #1a1a1a;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  z-index: 100;
  mix-blend-mode: difference;
  color: #ffffff;
}

.logo {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}

.menu-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  cursor: pointer;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1a1a18;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 99;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.overlay-content a {
  color: #f4f0eb;
  font-size: 36px;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.overlay-content a:hover {
  color: #a89f91;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 5vw;
}

.hero-title {
  position: absolute;
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 300;
  letter-spacing: -2px;
  color: #ffffff;
}

.hero-title.left {
  top: 25%;
  left: 5vw;
}

.hero-title.right {
  bottom: 15%;
  right: 5vw;
}

.plus-icon {
  position: absolute;
  top: 50%;
  right: 28vw;
  font-size: 80px;
  font-weight: 300;
  transform: translateY(-50%);
}

/* About Section */
.about-section {
  padding: 120px 5vw;
  background-color: #f4f0eb;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.about-image-wrapper img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}

.sub-tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  display: block;
  margin-bottom: 20px;
  font-style: italic;
}

.about-text-content h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 30px;
}

.about-description {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.link-arrow {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
}

/* Collection Grid */
.collection-section {
  position: relative;
  padding: 100px 5vw 160px 5vw;
  background-color: #f4f0eb;
}

.collection-center-text {
  text-align: center;
  margin-bottom: 60px;
}

.collection-center-text h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
}

.collection-center-text p {
  font-size: 14px;
  color: #666;
}

.scattered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.scattered-grid .item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scattered-grid .item:hover img {
  transform: scale(1.05);
}

.item-1 { margin-top: 0px; }
.item-2 { margin-top: -60px; }
.item-3 { margin-top: 40px; }
.item-4 { margin-top: 20px; }
.item-5 { margin-top: -40px; }
.item-6 { margin-top: 10px; }

/* Featured Projects */
.projects-section {
  display: flex;
  flex-direction: column;
}

.project-card {
  position: relative;
  width: 100%;
  height: 85vh;
  display: flex;
  align-items: flex-end;
  padding: 60px 5vw;
  color: #ffffff;
  overflow: hidden;
}

.project-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.project-card:hover .project-bg {
  transform: scale(1.04);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.6) 100%);
}

.project-info {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  align-items: end;
  gap: 20px;
}

.project-num {
  font-size: 32px;
  font-weight: 300;
  opacity: 0.8;
}

.project-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1;
}

.project-tag {
  font-size: 14px;
  opacity: 0.8;
  max-width: 300px;
}

.view-btn {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Services */
.services-section {
  padding: 120px 5vw;
  background-color: #f4f0eb;
}

.services-section h2 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.services-list {
  list-style: none;
}

.services-list li {
  font-size: 24px;
  font-weight: 300;
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}

.services-description p {
  font-size: 15px;
  color: #444;
  margin-bottom: 24px;
  max-width: 500px;
}

.services-images {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.services-images img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

/* News Section */
.news-section {
  padding: 80px 5vw 120px 5vw;
  background-color: #f4f0eb;
}

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

.news-card {
  display: flex;
  flex-direction: column;
}

.news-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 16px;
}

.news-meta {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

/* Scroll Parallax CTA Section */
.cta-section {
  padding: 180px 5vw 220px 5vw;
  background-color: #f4f0eb;
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 550px;
}

.cta-title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}

.cta-side-content {
  position: absolute;
  top: 25%;
  right: 5%;
  max-width: 300px;
  z-index: 3;
}

.cta-side-content p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-link {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 4px;
}

.cta-image {
  position: absolute;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.cta-img-1 {
  top: -60px;
  left: 23%;
  width: 240px;
  z-index: 1;
}

.cta-img-2 {
  bottom: -80px;
  right: 22%;
  width: 340px;
  z-index: 1;
}

.cta-img-3 {
  bottom: -100px;
  left: 8%;
  width: 280px;
  z-index: 1;
}

.cta-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Footer */
.footer {
  background-color: #3e3e3b;
  color: #f4f0eb;
  padding: 80px 5vw 40px 5vw;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-nav {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #f4f0eb;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
}

.footer-locations {
  display: flex;
  gap: 40px;
  font-size: 12px;
  color: #ccc;
  line-height: 1.6;
}

.footer-locations strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.footer-newsletter span {
  display: block;
  font-size: 12px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid #777;
  padding-bottom: 8px;
}

.newsletter-form input {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
  width: 100%;
}

.newsletter-form button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.footer-brand-title {
  font-size: clamp(40px, 11vw, 160px);
  font-weight: 400;
  text-align: center;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 40px;
  line-height: 1;
}

@media (max-width: 900px) {
  .grid-2, .scattered-grid, .services-grid, .news-grid, .footer-top {
    grid-template-columns: 1fr;
  }
  .project-info {
    grid-template-columns: 1fr;
  }
  .cta-side-content {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 30px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: brightness(0) invert(1);
}

/* Clean Logo Blend: Removes white background box */
.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) invert(100%) contrast(1000%);
  mix-blend-mode: screen;
}

/* Smooth Navbar Hide Transition */
.navbar {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar.hidden-on-scroll {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.news-img video {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 16px;
}
