/* assets/css/main.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f7f4;
    color: #1a1a1a;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}


/* FIX 2: Solid background for nav */
.main-nav {
    background-color: #f8f7f4!important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* FIX 1: Ensure body can scroll */
body {
    overflow-y: auto !important;
    height: auto !important;
}

html {
    overflow-y: auto !important;
    height: auto !important;
}

/* Ensure content has space to scroll */


.initial-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.initial-content {
    text-align: center;
    color: #e8e8e8;
    transform: translateY(-15px);
}

.initial-logo img {
    width: 70px;
    height: auto;
    margin-bottom: 24px;
    opacity: 0.9;
}

.initial-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 2.4rem;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.initial-brand2 {
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.initial-address {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    opacity: 0.7;
    color: white;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    background-color: #f8f7f4;
}

/* Add to entry.css */
.nav-center img.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-right .menu-button {
    background: none;
    border: 1px solid #1a1a1a;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-right .menu-button:hover {
    background: #1a1a1a;
    color: #f8f7f4;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 247, 244, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
}

.menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-content {
    text-align: center;
    position: relative;
}






.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items li {
    margin: 30px 0;
}

.menu-items a {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-items a:hover {
    opacity: 0.5;
}

.nav-left, .nav-right {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.nav-center {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #1a1a1a;
}






html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}





.brand-carousel-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background-color: #f6f3ee ; 
    overflow: hidden;
    margin-top: 50px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.carousel-slide {
    flex: 0 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.carousel-slide img {
    height: 120%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.carousel-track:hover {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-slide {
        padding: 0 25px;
        height: 50px;
    }
    
    .carousel-slide img {
        max-width: 140px;
    }
    
    .brand-carousel-section {
        padding: 40px 0;
    }
}



#mdh-scroll-editorial {
  min-height: 100vh;
  background: #f6f4ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 8%;
}

.mdh-editorial-wrap {
  max-width: 1100px;
  text-align: center;
}

.mdh-line {
  transition: color 0.3s ease;
}

.mdh-primary {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.25); /* START FADED */
}

.mdh-secondary {
  margin-top: 24px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.18); /* MORE FADED */
}

.mdh-primary em {
  font-style: italic;
}

.mdh-editorial-btn {
  text-decoration: none;  
  margin-top: 60px;
  padding: 14px 36px;
  border-radius: 999px;
  border: none;
  background: #000;
  color: #fff;
  letter-spacing: 1px;
  font-size: 12px;
  cursor: pointer;
}
.mdh-editorial-btn:hover {
  background: #333;
}


/* ===============================
   START YOUR JOURNEY SECTION
================================ */

.journey-section {
  padding: 120px 0;
  background: #ffffff;
}

.journey-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Title */
.journey-title {
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 80px;
  color: #111;
}

.journey-title span {
  font-weight: 600;
  letter-spacing: 1.5px;
}

.journey-title em {
  font-style: italic;
  font-weight: 300;
}

/* Grid */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

/* Card */
.journey-card {
  text-align: center;
}

.journey-image {
  overflow: hidden;
  margin-bottom: 32px;
}

.journey-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.journey-card:hover img {
  transform: scale(1.04);
}

/* Headings */
.journey-card h3 {
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #000;
}

/* Text */
.journey-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  max-width: 320px;
  margin: 0 auto 32px;
}

/* Button */
.journey-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #f8f7f4; /* deep luxury blue */
  color: #555;
  border: #1a1a1a 1px solid;
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.journey-btn:hover {
  background: #1a1a1a;
  color: #f8f7f4;
}

/* Responsive */
@media (max-width: 1024px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .journey-image img {
    height: 360px;
  }
}




/* =========================
   PROJECTS SECTION
========================= */

.mdh-projects {
  background: #f6f3ee;
  padding: 140px 0;
}

.mdh-projects-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.mdh-projects-title {
  font-size: 34px;
  letter-spacing: 4px;
  font-weight: 400;
  margin-bottom: 80px;
  color: #111;
}

/* Grid */
.mdh-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 32px;
}

/* Items */
.project-item {
  position: relative;
  overflow: hidden;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-item:hover img {
  transform: scale(1.06);
}

/* Variations */
.project-item.tall {
  grid-row: span 2;
}

.project-item.wide {
  grid-column: span 2;
}

/* CTA */
.mdh-projects-cta {
  margin-top: 80px;
}

.mdh-projects-cta a {
  font-size: 13px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid #111;
  padding-bottom: 6px;
}

/* Responsive */
@media (max-width: 1024px) {
  .mdh-projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .project-item.tall,
  .project-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* =========================
   MDH FOOTER — ULTRA LUXURY
========================= */

.mdh-footer {
  width: 100%;
  background: #121212;
  color: #e8e5df;
  padding: 160px 0 80px;
}

.mdh-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr 1fr;
  gap: 100px;
}

/* Brand */
.footer-brand img {
  width: 60px;
  margin-bottom: 28px;
}

.footer-brand h3 {
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: #bfbdb8;
  max-width: 320px;
}

/* Labels */
.footer-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: #e8e5df;
}

/* Addresses */
.footer-address-block {
  margin-bottom: 28px;
}

.footer-address-block span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-address-block p {
  font-size: 14px;
  line-height: 1.8;
  color: #bfbdb8;
}

/* Contact */
.footer-contact-block span,
.footer-social span {
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-contact a {
  display: block;
  font-size: 14px;
  color: #bfbdb8;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer-contact a:hover {
  color: #ffffff;
}

/* Social */
.footer-social {
  margin-top: 32px;
}

.footer-social a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  color: #bfbdb8;
  margin-bottom: 8px;
}

.footer-social a:hover {
  color: #ffffff;
}

/* Bottom */
.mdh-footer-bottom {
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.mdh-footer-bottom p {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #9c9a96;
}

/* Responsive */
@media (max-width: 1024px) {
  .mdh-footer-inner {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}








/* =====================================
   HERO TEXT DEPTH + FADE EFFECT
===================================== */

#mdh-home-hero-banner-root {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.mdh-home-hero-banner-wrapper,
.mdh-home-hero-slide,
.mdh-home-hero-slide img {
  height: 100vh;
}

.mdh-home-hero-slide img {
  width: 100%;
  object-fit: cover;
}

/* Overlay container */
.mdh-hero-overlay-v2 {
  position: absolute;
  bottom: 18%;
  left: 8%;
  z-index: 10;
  max-width: 850px;
}

/* Title */
.mdh-hero-title-v2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.05;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 24px;
}

/* Each line animated */
.mdh-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: mdhFadeUp 0.5s ease forwards;
}

/* Stagger effect */
.mdh-line:nth-child(1) { animation-delay: 0.3s; }
.mdh-line:nth-child(2) { animation-delay: 0.6s; }
.mdh-line:nth-child(3) { animation-delay: 0.9s; }

/* Premium depth (not glow) */
.mdh-hero-title-v2 {
  text-shadow:
    0 1px 0 rgba(0,0,0,0.2),
    0 6px 20px rgba(0,0,0,0.25);
}

/* Subtitle */
.mdh-hero-sub-v2 {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  opacity: 0;
  animation: mdhFadeUp 0.5s ease forwards;
  animation-delay: 0.5s;
}

/* Button */
.mdh-hero-btn-v2 {
  display: inline-block;
  padding: 14px 42px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.4s ease;
  opacity: 0;
  animation: mdhFadeUp 1.2s ease forwards;
  animation-delay: 1.4s;
}

.mdh-hero-btn-v2:hover {
  background: #ffffff;
  color: #000000;
}

/* Fade animation */
@keyframes mdhFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#mdh-home-hero-banner-root::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 35%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0) 100%
  );
  z-index: 5;
  pointer-events: none;
}



/* ========================================
   PREMIUM AUTHORITY STRIP – TIER 1
======================================== */

#mdh-authority-strip {
  background: #0f0f0f;
  padding: 90px 6%;
  position: relative;
}

.mdh-authority-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Individual Item */
.mdh-authority-item {
  text-align: center;
  flex: 1;
}

/* Big Numbers */
.mdh-authority-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 3vw, 56px);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 14px;
}

/* Labels */
.mdh-authority-label {
  display: block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* Vertical Divider */
.mdh-authority-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ========================================
   MOBILE VERSION – EDITORIAL STACK
======================================== */

@media (max-width: 768px) {

  #mdh-authority-strip {
    padding: 70px 8%;
  }

  .mdh-authority-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .mdh-authority-divider {
    display: none;
  }

  .mdh-authority-item {
    text-align: center;
  }

  .mdh-authority-number {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .mdh-authority-label {
    font-size: 11px;
    letter-spacing: 2px;
  }


}
/* ===============================
   MANIFESTO
================================ */

#mdh-manifesto {
  padding: 160px 10%;
  background: #fff;
  text-align: center;
}

.mdh-manifesto-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.2;
  margin-bottom: 40px;
}

#mdh-workflow-v2 {
  background: #111;
  color: #fff;
  padding: 160px 10%;
  text-align: center;
}

.mdh-step h3 {
  font-size: 60px;
  opacity: 0.2;
}
