	*{
		padding: 0;
		margin: 0;
		box-sizing: border-box;
	}
@font-face {
    font-family: "Euclid";
    src:url("../font/EuclidCircularB-Regular.otf");
    font-weight: normal;
    font-style: normal;
}
  body {
    margin: 0;
    font-family: "Euclid";
    color: #f6f0de;
    overflow-x: hidden;
  }

  /* ===== HEADER ===== */
  header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  z-index: 1000;
   transition: all 0.4s ease;
}
header.sticky {
  padding: 10px 40px;
  background: #ededed;
}

  .logo {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
  }
  .logo img {
    height: 38px;
}
.logo img.grayLogo,
.sticky .logo img.logoWhite {
    display: none;
}
.sticky .logo img.grayLogo {
    display: block;
}



  /* NAVIGATION */
.header nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
}
.header nav ul {
list-style: none;
margin: 0; padding: 0;
display: flex;
gap: 30px;
}

.header nav ul li {
position: relative;
}

.header nav ul li a {
text-decoration: none;
color: #f6f0de;
font-size: 11px;
font-weight: 500;
letter-spacing: 2px;
text-transform: uppercase;
position: relative;
padding: 8px 0;
transition: color 0.3s ease;
}

/* Hover underline */
.header nav ul li a::after {
content: "";
position: absolute;
left: 0; bottom: -3px;
width: 0%; height: 2px;
transition: width 0.3s ease;
}
.header nav ul li:hover a::after {
width: 100%;
}

/* Dropdown */
.header nav ul li ul {
position: absolute;
top: 110%;
left: 0;
display: none;
flex-direction: column;
padding: 0;
gap: 0;
}

.header nav ul li:hover > ul {
display: flex;
}

.header nav ul li ul li a {
  color: #fff;
  padding: 10px 0;
  display: block;
  width: 82px;
}
.header.sticky nav ul li ul li a {
    padding: 6px 0;
    width: 110px;
}

/* Nested dropdown (flyout) */
.header nav ul li ul li ul {
top: 0;
right: 100%;
left: auto;
}
.sticky .search-icon,
.sticky.header nav ul li a{
  color: #333 !important;
}
/*.sticky.header nav ul li ul{
    background: #ededed;
}*/


/* Search Icon */
.search-icon {
    font-size: 18px;
    cursor: pointer;
    color: #fff;
    line-height: 17px;
}

  /* ===== SLIDER ===== */
  .slider-wrapper {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }

  .owl-carousel .item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .slider-wrapper .item:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.0) 70%,
    transparent 100%
  );
  }
    .slider-wrapper .item:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.0) 70%,
    transparent 100%
  );
  }

  .caption {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
  }

  .caption h2 {
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }

.caption p {
    font-size: 11px;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

  /* Dots */
  .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }

  .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    background: #ccc !important;
    border-radius: 50%;
    margin: 5px;
    display: block;
  }

  .owl-dot.active span {
    background: #fff !important;
  }

  /* .header Nav Arrows */
  /* Default hidden nav */
.owl-nav {
position: absolute;
top: 50%;
left: 0; right: 0;
width: 100%;
transform: translateY(-50%);
display: flex;
justify-content: space-between;
opacity: 0;
pointer-events: none; /* prevent blocking until visible */
transition: opacity 0.3s ease;
}

.slider-wrapper:hover .owl-nav {
opacity: 1;
pointer-events: auto;
}

/* Arrows */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
background: rgba(0,0,0,0.5);
color: #fff !important;
border: none;
font-size: 24px !important;
width: 50px; height: 50px;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
transition: all 0.4s ease;
position: relative;
}

/* Left arrow animation */
.owl-nav button.owl-prev {
transform: translateX(-50px);
opacity: 0;
}
.slider-wrapper:hover .owl-nav button.owl-prev {
transform: translateX(20px);
opacity: 1;
}

/* Right arrow animation */
.owl-nav button.owl-next {
transform: translateX(50px);
opacity: 0;
}
.slider-wrapper:hover .owl-nav button.owl-next {
transform: translateX(-20px);
opacity: 1;
}
.menu-toggle{
display: none;
}

.work-item {
    position: relative;
}
a.fullClick {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}
/* ============ RESPONSIVE ============ */
/* Tablet (iPad) */
@media (max-width: 1024px) {
header {
  padding: 25px 20px 0 20px;
}

.header nav ul {
  gap: 40px; /* reduce spacing */
}

.header nav ul li a {
  font-size: 13px;
}

.caption h2 {
  font-size: 16px;
}
.caption p {
  font-size: 13px;
  padding: 0 20px;
}
}

/* Mobile */
@media (max-width: 768px) {
.slider-wrapper {
overflow: hidden;
}
header {
  padding: 20px 15px;
}
header.sticky {
    padding: 12px 20px 10px 11px;
 }
 .search-icon{
  display: none;
 }
/* Logo smaller */
.logo img {
  height: 35px;
}

/* Hide default nav and show hamburger */
.header nav {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  background: rgba(0,0,0,0.95);
  width: 100%;
  flex-direction: column;
  text-align: center;
  padding: 20px 0;
}

.header nav ul {
  flex-direction: column;
  gap: 20px;
}

.header nav ul li ul {
  position: relative;
  top: auto;
  left: auto;
  background: none;
  padding: 10px 0 0 0;
}
.header nav ul li ul li ul {
  top: 0;
  left: 0;
  background: #2b1e26;
  padding-top: 0;
}
/* Hamburger menu */
.menu-toggle {
    display: block;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}
.sticky .menu-toggle {
    color: #000;
}

/* Search icon smaller */
.search-icon {
  font-size: 16px;
}

/* Slider caption */
.caption {
  bottom: 60px;
  width: 90%;
}
.caption h2 {
  font-size: 14px;
}
.caption p {
  font-size: 12px;
  line-height: 1.4;
}

/* Dots spacing */
.owl-dots {
  bottom: 20px;
}

/* Arrows smaller */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  width: 40px;
  height: 40px;
  font-size: 18px !important;
}

.header nav ul li ul li a {
  font-size: 13px;
  color: #fff;
  padding: 10px 0;
  display: block;
  width: 100%;
  text-align: center;
  background: rgb(255 255 255 / 10%);
  margin-top: 0;
}
}

/*LATEST WORK*/
  .latestWork {
  background: #f8f8f8; /* soft beige like ref site */
  padding: 80px;
  text-align: center;
  position: relative;
}

.latestWork .section-title h2 {
  font-size: 16px;
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 50px;
  color: #222;
  text-transform: uppercase;
}

.latestWork .work-container {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: auto;
    text-align: left;
    justify-content: space-between;
}
.latestWork .work-item{
    width: 24.7%;
}
.latestWork.inResidc .work-item{
    width: 100%;
}
.latestWork .work-item.work-50 {
    width: 51%;
}

.latestWork .work-item img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.latestWork .work-info h3 {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #111;
}

.latestWork .work-info p {
    font-size: 14px;
    line-height: 1.5;
    color: #444;
    margin: 6px 0;
}

.latestWork .meta {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
}
.latestWork .meta em {
    font-style: normal;
    padding: 0 5px;
}

/* Side "RECENT" text like reference site */
/*.latestWork::before,
.latestWork::after {
  content: "RECENT";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-size: 12px;
  letter-spacing: 4px;
  color: #666;
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.latestWork::before {
  left: 5px;
}

.latestWork::after {
  right: 5px;
  transform: translateY(-50%) rotate(90deg);
}*/

/*Hospitality Projects*/
.latestWork.hospltyPro {
    background: #ededed;
}

.latestWork.hospltyPro::before,
.latestWork.hospltyPro::after {
  content: "Welcome";
}
/*In Residenc*/
.latestWork.inResidc::before,
.latestWork.inResidc::after {
  content: "Homes";
}

/* Responsive */
@media (max-width: 992px) {
  .latestWork .work-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .latestWork {
    padding: 50px 20px;
  }
  .latestWork .work-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .latestWork::before,
  .latestWork::after {
    display: none;
  }
  .latestWork .work-container {
    flex-wrap: wrap;
   }
   .latestWork .work-item {
      width: calc(50% - 15px);
  }
  .latestWork .work-item.work-50 {
      width: 100%;
  }
  .latestWork .work-info h3 {
      font-size: 13px;
      letter-spacing: 0;
  }
  .latestWork .work-info p {
      font-size: 12px;
      line-height: 18px;
  }
  .latestWork .meta {
       letter-spacing: 0;
  }
}
/*Footer*/
.footer {
    background: #ededed;
    padding: 30px 80px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}
/*
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 80px;
      right: 80px;
      height: 1px;
      background: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    }*/

    .footer .logo {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: #000;
      position: relative;
    }
    
/*    .footer .logo::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background: #000;
    }*/

    .footer-info {
      max-width: 600px;
      margin-right: 0;
    }
    
    .footer-info p {
      font-size: 11px;
      line-height: 20px;
      color: #666;
      margin-bottom: 20px;
  }

    .footer-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

    .footer-column {
      flex: 1;
      min-width: 100px;
      width: 100px;
    }
    
    .footer-column h4 {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: #000;
      position: relative;
  }
    
/*    .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 20px;
      height: 1px;
      background: #000;
    }*/

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 12px;
      transform: translateX(0);
      transition: transform 0.3s ease;
    }
    
    .footer-column ul li a {
      text-decoration: none;
      color: #666666;
      font-size: 11px;
      transition: color 0.3s ease;
      display: block;
      position: relative;
      padding-left: 0;
      transition: padding-left 0.3s ease;
  }   

    .footer-column ul li a:hover {
      color: #000;
      padding-left: 0;
    }
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: transparent;
      color: #444;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .social-links a:hover {
      background: #000;
      color: #f7f4eb;
      transform: translateY(-3px);
    }

    .footer-bottom {
      width: 100%;
      margin-top: 20px;
      padding-top: 20px;
      font-size: 13px;
      color: #666;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      /*border-top: 1px solid rgba(0, 0, 0, 0.05);*/
    }
    
    .footer-bottom-links {
      display: flex;
      gap: 25px;
    }
    
    .footer-bottom-links a {
      color: #666;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.3s ease;
    }
    
    .footer-bottom-links a:hover {
      color: #000;
    }

    /* Newsletter Form */
    .newsletter-form {
      margin-top: 20px;
      position: relative;
      width: 100%;
      max-width: 320px;
    }
    
    .newsletter-form input {
      width: 100%;
      padding: 12px 0;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      font-size: 14px;
      color: #000;
      outline: none;
      transition: border-color 0.3s ease;
    }
    
    .newsletter-form input:focus {
      border-color: #000;
    }
    
    .newsletter-form button {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: #000;
      cursor: pointer;
      font-size: 14px;
      transition: color 0.3s ease;
    }
    
    .newsletter-form button:hover {
      color: #666;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {      
      .footer-columns {
        gap: 50px;
      }
    }
    
    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
      }
      
      .footer-info {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
      }
      
      .footer-columns {
        width: 100%;
        gap: 30px;
      }
      
      .footer-column {
        min-width: calc(50% - 15px);
      }
      
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
    }
    
    @media (max-width: 680px) {
      .footer-column {
        min-width: 100%;
      }
      .slider-wrapper,
      .owl-carousel .item {
          height: 70vh;
      }
      .footer {
          padding: 40px 20px 20px 20px;
      }
      .footer-bottom {
        margin-top: 5px;
      }
      .sticky .search-icon, .sticky.header nav ul li a{
            color: #fff !important;
      }
      .caption p {
        padding: 0;
      }
      .slider-wrapper .owl-dots {
        bottom: 0;
        width: 100%;
        text-align: center;
      }
      .caption h2 {
          letter-spacing: 2px;
          margin-bottom: 8px;
      }
      .caption p {
        font-size: 11px;
        line-height: 1.4;
        font-weight: normal;
    }
    .owl-nav {
      opacity: 1;
    }
    /* Left arrow animation */
.slider-wrapper .owl-nav button.owl-prev {
transform: translateX(0) !important;
opacity: 1;
}

/* Right arrow animation */
.slider-wrapper .owl-nav button.owl-next {
transform: translateX(0) !important;
opacity: 1;
}
.caption {
    bottom: 30px;
}
    .owl-nav button.owl-prev, .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        font-size: 15px !important;
    }

    }
    /* Lightbox Styles */
.glryPopup-lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.glryPopup-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}

.glryPopup-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.glryPopup-caption {
  text-align: center;
  color: #ccc;
  margin-top: 15px;
}

.work-container img {
  cursor: pointer;
  transition: 0.3s;
}

.work-container img:hover {
  opacity: 0.8;
}

/* Arrows */
.glryPopup-prev, 
.glryPopup-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
  transition: 0.3s;
}

.glryPopup-prev { left: 20px; }
.glryPopup-next { right: 20px; }

.glryPopup-prev:hover, 
.glryPopup-next:hover { color: #ccc; }
