/* =========================
   THEME
========================= */






:root{
  --green:#24382E;
  --gold:#D6C7A1;
  --white:#F7F6F2;
  --dark:#111;
  --muted:rgba(255,255,255,.65);
}

/* =========================
   RESET
========================= */

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

body{
  background:var(--green);
  color:var(--white);
  font-family:Poppins,sans-serif;
  overflow-x:hidden;
  line-height:1.6;
}

/* =========================
   LOADER
========================= */

.loader{
  position:fixed;
  inset:0;
  background:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.loader-logo{
  width:140px;
  animation:pulse 2s ease-in-out infinite;
}

@keyframes pulse{
  0%{opacity:.4;transform:scale(.95)}
  50%{opacity:1;transform:scale(1)}
  100%{opacity:.4;transform:scale(.95)}
}

/* =========================
   HEADER
========================= */

/* =========================
   FLOATING HEADER (MK STYLE)
========================= */

/* =========================
   HEADER ALIGNMENT FIX
========================= */

.main-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;

  padding:18px 22px;

  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;

  z-index:50;

  background:transparent;
}

/* Left spacer (empty) */
.main-header::before{
  content:"";
}


/* When scrolling (optional later) */
.main-header.scrolled{
  position:fixed;
  background:rgba(36,56,46,.9);
  backdrop-filter:blur(6px);
}


.logo img{
  height:55px;
  display:block;
}

.main-nav a{
  color:var(--white);
  margin-left:18px;
  text-decoration:none;
  font-size:14px;
  letter-spacing:.5px;
  position:relative;
}

/* underline hover */
.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:1px;
  background:var(--gold);
  transition:.3s;
}

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

/* =========================
   HERO
========================= */

.hero{
  height:100vh;
  position:relative;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom,rgba(0,0,0,.35),rgba(0,0,0,.7));
  z-index:1;
}

.swiper{
  height:100%;
}

/* HERO SLIDES */

.heroSwiper .swiper-slide{
  background-size:cover;
  background-position:center;
  width:100%;
  height:100vh;
}


/* hero text */
.hero-content{
  position:absolute;
  bottom:90px;
  left:22px;
  right:22px;
  z-index:2;
}

.hero-content h1{
  font-family:"Playfair Display",serif;
  font-size:34px;
  font-weight:400;
  line-height:1.2;
  margin-bottom:12px;
}

.hero-content p{
  font-size:13px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--muted);
}

/* =========================
   INTRO
========================= */

.intro{
  padding:90px 22px 60px;
  max-width:700px;
  margin: 0 auto;
  
}

.intro p{
  font-size:17px;
  font-family:"Playfair Display",serif;
  line-height:1.8;
  color:var(--white);
  text-align: center;
}

/* =========================
   WORKS / PORTFOLIO PREVIEW
========================= */

.works{
  padding:70px 22px 100px;
}

.works h2{
  font-family:"Playfair Display",serif;
  font-size:26px;
  margin-bottom:40px;
}

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

.work-card{
  text-decoration:none;
  color:var(--white);
}

.work-image{
  height:60vh;
  background-size:cover;
  background-position:center;
  transition:transform 1.2s ease;
}

.work-card:hover .work-image{
  transform:scale(1.05);
}

.work-meta{
  margin-top:16px;
}

.work-meta h3{
  font-family:"Playfair Display",serif;
  font-size:22px;
  font-weight:400;
}

.work-meta span{
  font-size:12px;
  letter-spacing:1px;
  color:var(--muted);
}

/* =========================
   PORTFOLIO PAGE
========================= */

.portfolio-page{
  padding:110px 22px 80px;
}

.page-title{
  font-family:"Playfair Display",serif;
  font-size:32px;
  margin-bottom:60px;
}

.portfolio-list{
  display:grid;
  grid-template-columns:1fr;
  gap:60px; /* spacing between posters */
  scroll-snap-type: y mandatory;
}




.portfolio-item{
  text-decoration:none;
  color:var(--white);
}

.portfolio-image{
  width:100%;
  aspect-ratio: 4 / 5;   /* Editorial ratio */
  background-size:cover;
  background-position:center;
  transition:transform 1.2s ease;
}


.portfolio-item:hover .portfolio-image{
  transform:scale(1.04);
}

.portfolio-info{
  margin-top:18px;
}

.portfolio-info h2{
  font-family:"Playfair Display",serif;
  font-size:24px;
  font-weight:400;
}

.portfolio-info span{
  font-size:12px;
  letter-spacing:1px;
  color:var(--muted);
}

/* =========================
   PROJECT PAGE
========================= */



/* Project Hero Slider */

.project-hero{
  width:100%;
  height:90vh;
  overflow:hidden;
}

.projectHeroSwiper{
  width:100%;
  height:100%;
}

.projectHeroSwiper .swiper-slide{
  width:100%;
  height:100%;
}

.projectHeroSwiper img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


.project-intro{
  padding:60px 22px 40px;
}

.project-intro h1{
  font-family:"Playfair Display",serif;
  font-size:32px;
  margin-bottom:8px;
}

.project-type{
  font-size:12px;
  letter-spacing:1px;
  color:var(--muted);
  margin-bottom:18px;
}

.project-desc{
  max-width:700px;
  font-size:15px;
}

.project-gallery{
  padding:40px 22px 80px;
}

.project-gallery img{
  width:100%;
  margin-bottom:30px;
}

/* =========================
   STUDIO / ABOUT
========================= */

.studio-intro{
  padding:110px 22px 40px;
}

.studio-intro h1{
  font-family:"Playfair Display",serif;
  font-size:34px;
  margin-bottom:20px;
}

.studio-lead{
  font-size:18px;
  max-width:720px;
}

.studio-content{
  padding:0 22px 50px;
  max-width:720px;
}

.studio-content p{
  margin-bottom:22px;
}

.studio-values{
  padding:40px 22px 90px;
  display:grid;
  gap:35px;
}

.value h3{
  font-family:"Playfair Display",serif;
  font-weight:400;
  margin-bottom:6px;
}

.value p{
  font-size:14px;
  color:var(--muted);
}

/* =========================
   CONTACT
========================= */

.contact-intro{
  padding:110px 22px 40px;
}

.contact-intro h1{
  font-family:"Playfair Display",serif;
  font-size:34px;
  margin-bottom:12px;
}

.contact-content{
  padding:0 22px 120px;
  display:grid;
  gap:50px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  margin-bottom:18px;
  border:none;
  background:#1b2a22;
  color:var(--white);
}

.contact-form textarea{
  resize:none;
}

.contact-form button{
  width:100%;
  padding:14px;
  background:var(--gold);
  color:#111;
  border:none;
  cursor:pointer;
  transition:.3s;
}

.contact-form button:hover{
  opacity:.8;
}
/* Contact Page Alignment Fix */

.contact-content + .quick-contact{
  margin-top:40px;
}




/* =========================
   FOOTER
========================= */

.main-footer{
  text-align:center;
  padding:28px;
  color:var(--gold);
  font-size:13px;
}





/* =========================
   PORTFOLIO POSTER STYLE
========================= */

.poster{
  position:relative;
  height:85vh;
  scroll-snap-align:start;
  border-radius:6px;
  overflow:hidden;
  background:var(--white);
  padding:4px;
}



.poster-bg{
  position:absolute;
  inset:4px;
  background-size:cover;
  background-position:center;
  filter:blur(2px);
  transform:scale(1.05);
  transition:1s ease;
}

.poster-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.25),
      rgba(0,0,0,.55)
    );
}


.poster-content{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.poster-location{
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
  opacity:.8;
}

.poster-content h2{
  font-family:"Playfair Display",serif;
  font-size:34px;
  font-weight:400;
  letter-spacing:2px;
  margin-bottom:18px;
}

.poster-btn{
  font-size:13px;
  letter-spacing:2px;
  border:1px solid var(--white);
  padding:10px 22px;
  text-transform:uppercase;
  transition:.4s;
}

.poster:hover .poster-bg{
  filter:blur(0);
  transform:scale(1.1);
}


.poster:hover .poster-btn{
  background:rgba(255,255,255,0.15);
  color:var(--white);
  border-color:var(--white);
}


/* =========================
   SMOOTH SNAP SCROLL
========================= */

html{
  scroll-behavior:smooth;
}

.portfolio-page,
.works{
  scroll-snap-type: y mandatory;
}

.portfolio-page,
.works{
  overflow-y:auto;
}
 

/* =========================
   FORCE WHITE TEXT ON POSTERS
========================= */

.poster-content,
.poster-content h2,
.poster-content span,
.poster-content p{
  color: var(--white) !important;
}


/* =========================
   FULLSCREEN MENU (MK STYLE)
========================= */

.fullscreen-menu{
  position:fixed;
  inset:0;
  background:var(--green);
  z-index:9999;

  display:flex;
  justify-content:center;
  align-items:center;

  transform:translateY(-100%);
  transition:.6s cubic-bezier(.77,0,.18,1);
}

/* Open state */
.fullscreen-menu.active{
  transform:translateY(0);
}

/* Close button */
.menu-close{
  position:absolute;
  top:25px;
  right:25px;
  font-size:34px;
  color:var(--white);
  cursor:pointer;
}

/* Menu links */
.menu-links{
  display:flex;
  flex-direction:column;
  gap:35px;
  text-align:center;
}

.menu-links a{
  font-family:"Playfair Display",serif;
  font-size:36px;
  letter-spacing:3px;
  text-decoration:none;
  color:var(--white);
  transition:.3s;
}

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

/* Hide old mobile nav */
.mobile-nav{
  display:none !important;
}


/* =========================
   PREMIUM FULLSCREEN MENU
========================= */

.fullscreen-menu{
  position:fixed;
  inset:0;

  background:rgba(36,56,46,.92);
  backdrop-filter:blur(12px);

  z-index:9999;

  display:flex;
  justify-content:center;
  align-items:center;

  opacity:0;
  pointer-events:none;
  transition:1s cubic-bezier(.19,1,.22,1);
}

/* Active */
.fullscreen-menu.active{
  opacity:1;
  pointer-events:auto;
}

/* Links */
.menu-links{
  display:flex;
  flex-direction:column;
  gap:40px;
  text-align:center;

  transform:translateY(60px);
  transition:1s cubic-bezier(.19,1,.22,1);
}


.fullscreen-menu.active .menu-links{
  animation:menuZoom 1.2s ease forwards;
}

@keyframes menuZoom{
  from{
    transform:translateY(60px) scale(.98);
  }
  to{
    transform:translateY(0) scale(1);
  }
}


.menu-links a{
  font-family:"Playfair Display",serif;
  font-size:38px;
  letter-spacing:3px;
  text-decoration:none;
  color:var(--white);

  opacity:0;
  transform:translateY(25px);

  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(.19,1,.22,1);
}


/* Stagger effect */
.fullscreen-menu.active .menu-links a{
  opacity:1;
  transform:translateY(0);
}

.fullscreen-menu.active .menu-links a:nth-child(1){transition-delay:.25s}
.fullscreen-menu.active .menu-links a:nth-child(2){transition-delay:.45s}
.fullscreen-menu.active .menu-links a:nth-child(3){transition-delay:.65s}
.fullscreen-menu.active .menu-links a:nth-child(4){transition-delay:.85s}


/* =========================
   HAMBURGER TO X
========================= */

/* =========================
   HAMBURGER MENU FIX
========================= */

.menu-toggle{
  width:26px;
  height:18px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
  justify-self:end;

  cursor:pointer;

  position:relative;
  z-index:100;
}

/* Each line */
.menu-toggle span{
  width:100%;
  height:2px;

  background:#fff;

  border-radius:2px;

  display:block;

  transition:all .4s ease;
}



/* Active X */
/* Animate to X */

.menu-toggle.active .bar1{
  transform:rotate(45deg);
  top:9px;
}

.menu-toggle.active .bar2{
  opacity:0;
}

.menu-toggle.active .bar3{
  transform:rotate(-45deg);
  bottom:9px;
}


/* =========================
   SCROLL LOCK
========================= */

body.menu-open{
  overflow:hidden;
}
/* =========================
   CLOSE BUTTON (VISIBLE X)
========================= */

.menu-close{
  position:fixed;
  top:18px;
  right:18px;

  font-size:28px;
  font-weight:300;

  color:#fff;
  cursor:pointer;

  z-index:100000;

  opacity:0;
  transition:.4s ease;
}

/* Show when menu active */
.fullscreen-menu.active .menu-close{
  opacity:1;
}


/* =========================
   PROJECT EDITORIAL SYSTEM
========================= */

.project-editorial{
  width:100%;
  background:var(--green);
}


/* Base block */
.block{
  width:100%;
  position:relative;
  margin-bottom:80px;
}


/* Hero */
.hero-image{
  min-height:90vh;
}

.hero-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}


/* Intro */
.editorial-text{
  padding:70px 24px;
  max-width:700px;
  margin:auto;
  text-align:center;
}

.editorial-text h1{
  font-family:"Playfair Display",serif;
  font-size:36px;
  margin-bottom:10px;
}

.project-meta{
  display:block;
  letter-spacing:2px;
  font-size:12px;
  margin-bottom:25px;
  opacity:.7;
}

.editorial-text p{
  line-height:1.9;
  font-size:15px;
}


/* Full Image */
.full-image img{
  width:100%;
  height:80vh;
  object-fit:cover;
}


/* Spacer */
.spacer{
  height:80px;
}


/* Framed */
.framed{
  padding:40px 20px;
}

.framed img{
  width:100%;
  max-width:380px;
  margin:auto;
  display:block;
}


/* Split */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  padding:0 20px;
}

.split img{
  width:100%;
  height:60vh;
  object-fit:cover;
}


/* White section */
.white-section{
  background:var(--white);
  color:var(--dark);
  padding:70px 25px;
  text-align:center;
}

.white-section h2{
  font-family:"Playfair Display",serif;
  margin-bottom:15px;
}

.white-section p{
  max-width:600px;
  margin:auto;
  line-height:1.8;
}


/* Reveal Animation */
.reveal{
  opacity:0;
  transform:translateY(40px);
}
/* =========================
   CENTERED HEADER LOGO
========================= */

.center-logo{
  justify-content:center;
}

.logo.center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

.logo.center img{
  height:48px;
}


/* =========================
   EDITORIAL SNAP SCROLL
========================= */

.project-editorial{
  scroll-snap-type:y proximity;
}

.block{
  scroll-snap-align:start;
}
/* =========================
   QUICK CONTACT ICONS
========================= */

.quick-contact{
  display:flex;
  justify-content:center;
  align-items:center;

  gap:35px;

  margin:60px 0 35px;
}




.quick-contact a{
  color:var(--gold);
  font-size:22px;

  width:44px;
  height:44px;

  border:1px solid rgba(214,199,161,.4);
  border-radius:50%;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  transition:.35s ease;
}

/* Hover Effect */
.quick-contact a:hover{
  color:var(--white);
  border-color:var(--white);
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(0,0,0,.25);
}

/* Mobile */
@media(max-width:600px){

  .quick-contact{
    gap:28px;
  }

  .quick-contact a{
    width:40px;
    height:40px;
    font-size:20px;
  }

}

/* =========================
   FORCE HEADER ALIGNMENT
========================= */

.main-header{
  display:grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items:center !important;
}

/* Center logo */
.main-header .logo{
  grid-column:2 / 3 !important;
  justify-self:center !important;
}

/* Push menu right */
.main-header .menu-toggle{
  grid-column:3 / 4 !important;
  justify-self:end !important;
  margin-left:auto !important;
}

/* SVG Image Loader */

.loader{
  position:fixed;
  inset:0;

  background:var(--green);

  display:flex;
  justify-content:center;
  align-items:center;

  z-index:99999;
}

.loader-logo{
  width:200px;
  max-width:70%;
}


/* =========================
   STUDIO / ABOUT PAGE
========================= */

.studio-hero{
  min-height:70vh;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;

  padding:0 25px;
}

.studio-hero h1{
  font-family:"Playfair Display",serif;
  font-size:40px;
  margin-bottom:12px;
}

.studio-tagline{
  letter-spacing:2px;
  font-size:13px;
  opacity:.8;
}


/* Philosophy */
.studio-philosophy{
  max-width:700px;
  margin:80px auto;
  text-align:center;
  padding:0 25px;
}

.studio-philosophy h2{
  font-family:"Playfair Display",serif;
  margin-bottom:15px;
}


/* Process */
.studio-process{
  padding:70px 25px;
  text-align:center;
}

.process-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  margin-top:40px;
}

.process-step span{
  font-size:28px;
  font-weight:600;
  color:var(--gold);
}

.process-step h3{
  margin:10px 0;
}


/* Values */
.studio-values{
  padding:70px 25px;
  text-align:center;
}

.values-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:25px;
  margin-top:35px;
}


/* CTA */
.studio-cta{
  padding:90px 25px;
  text-align:center;
  background:#1b2a22;
}

.cta-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 28px;

  border:1px solid var(--gold);
  color:var(--gold);
  text-decoration:none;

  transition:.3s;
}

.cta-btn:hover{
  background:var(--gold);
  color:var(--dark);
}


/* Mobile */
@media(max-width:700px){

  .process-grid{
    grid-template-columns:1fr;
  }

  .values-grid{
    grid-template-columns:1fr;
  }

  .studio-hero h1{
    font-size:34px;
  }

}
/* =========================
   CENTERED MATERIALS
========================= */

.studio-materials{
  padding:90px 25px;
  max-width:700px;
  margin:0 auto;
  text-align:center;
}

.studio-materials h2{
  font-family:Playfair Display;
  margin-bottom:35px;
}


/* Accordion container */
.materials-accordion{
  text-align:left;
}

/* Each item */
.material-item{
  border-bottom:1px solid rgba(255,255,255,.2);
}

/* Header */
.material-header{
  width:100%;
  background:none;
  border:none;
  color:var(--white);
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:16px;
  cursor:pointer;
  transition:.3s ease;
}

.material-header:hover{
  color:var(--gold);
}

/* Content */
.material-content{
  max-height:0;
  overflow:hidden;
  transition:.4s ease;
}

.material-item.open .material-content{
  max-height:200px;
}

.material-content p{
  padding-bottom:18px;
  color:var(--gold);
  font-size:14px;
}



/* =========================
   CENTERED PROCESS (ONE BY ONE)
========================= */

.studio-process-modern{
  padding:90px 25px;
  max-width:600px;
  margin:0 auto;
  text-align:center;
}

.studio-process-modern h2{
  margin-bottom:40px;
  font-family:Playfair Display;
}


/* Force single column */
.process-modern-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}


/* Each card */
.process-card{
  background:#1b2a22;
  padding:35px 25px;
  border-radius:8px;
  min-height:220px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}


/* Hover effect */
.process-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,.35);
  background:#22362c;
}


/* Number */
.process-card span{
  color:var(--gold);
  font-size:24px;
  font-weight:600;
}


/* Title */
.process-card h3{
  margin:10px 0;
  font-family:Playfair Display;
}


/* Text */
.process-card p{
  font-size:14px;
  opacity:.85;
  max-width:420px;
  margin:0 auto;
}
/* =========================
   CONTACT PAGE STABLE BOTTOM
========================= */

.contact-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.contact-bottom{
  margin-top:auto;
  padding-bottom:20px;
}

.contact-bottom .quick-contact{
  margin:30px 0 25px;
}


.portfolio-page > p{
  margin-bottom:40px;
  line-height:1.7;
  max-width:600px;
  opacity:0.9;
}

/* Center "Our Work" section */

.works h2{
  text-align:center;
}


/* Center Portfolio Page Title & Text */

.portfolio-page{
  text-align:center;
}

.portfolio-page > p{
  margin:20px auto 40px;
  max-width:650px;   /* keeps text elegant */
  line-height:1.7;
}

