/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --black: #111111;
  --dark: #1A1B1B;
  --ink: #1a1a1a;
  --muted: #9a9a9a;
  --muted-dark: #6f6f6f;
  --white: #ffffff;
  --page: #ffffff;
  --radius-lg: 10px;
  --radius-md: 16px;
  --radius-sm: 12px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Archivo", sans-serif;
  background: var(--page);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
ul {
  list-style: none;
}

.mainContainer {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
   @media (max-width: 767px) {
  padding: 0 20px;
   }
}

/* ===================== BRAND MARK ===================== */
.brandMark {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brandMark__logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 92px;
  line-height: 0.82;
  letter-spacing: -3px;
  color: var(--white);
  font-weight: 900;
}
.brandMark__logo--outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
}
.brandMark__logo--sm {
  font-size: 44px;
  letter-spacing: -2px;
}
.brandMark__name {
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--white);
}
.brandMark__name--dark {
  color: var(--ink);
}
.brandMark__name--sm {
  font-size: 11px;
  letter-spacing: 2px;
}

/* ===================== HEADER ===================== */
#mainHeader {
  background: var(--white);
  padding: 26px 0;
  position: sticky;
  top: 0;
  z-index: 100;
   @media (max-width: 767px) {
  padding: 12px 0;
   }
}
.headerFlex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  @media (max-width: 767px) {
  gap: 10px;
  }
}
.navLinks {
  display: flex;
  gap: 45px;
}
.navLinks a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color:#000;
}
.navLinks a:hover {
  color: var(--muted-dark);
}
.menuBtn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menuBtn span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ===================== OFFCANVAS MENU ===================== */
.offcanvasBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 150;
}
.offcanvasBackdrop.open {
  opacity: 1;
  visibility: visible;
}
.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 340px;
  max-width: 85%;
  background: var(--dark);
  z-index: 200;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateX(100%); /* hidden off-screen to the right */
  transition: transform 0.4s ease;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.35);
}
.offcanvas.open {
  transform: translateX(0); /* slides in right-to-left */
}
.offcanvasClose {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}
.offcanvasClose:hover {
  color: var(--muted);
}
.offcanvasNav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.offcanvasNav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.offcanvasNav a:hover {
  color: var(--muted);

}

/* ===================== HERO ===================== */
.hero {
  padding-top: 0px;
 
}
.heroCard {
background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 40px 96px 0 48px;
  position: relative;
  overflow: visible;
  height: 713px;
    @media (max-width: 1199px) {
height: auto;
  padding: 30px;
	}
}
.decorGlobe {
position: absolute;
  left: -120px;
  bottom: -407px;
  width: 434px;
  height: 499px;

  pointer-events: none;
     @media (max-width: 1199px) {
display: none;
	 }
}


.heroTop {
  display: flex;

  align-items: flex-start;
  gap:24px;

  margin-bottom: 140px;
  @media (max-width: 1199px) {
flex-direction: column;
  gap: 37px;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  }
}
.heroIntro {
max-width: 654px;
  @media (max-width: 1199px) {
text-align: center;
  }

}
.heroIntro h1 {
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.10;
  margin-bottom: 14px;
   @media (max-width: 1199px) {
  font-size:25px;
   }
}
.heroIntro p {
  font-size: 20px;
color: var(--white);
  max-width: 500px;
   font-weight: 400;
    @media (max-width: 1199px) {
font-size: 16px;
text-align: center;
margin: 0 auto;
	}
}

.heroGrid {
display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  gap: 38px;
  align-items: start;
  margin-top: 36px;
  position: relative;
  z-index: 2;
margin-top: -282px;
  padding: 0px 96px 0 48px;
    @media (max-width: 1199px) {
margin-top: 0px;
padding: 0px;
gap: 20px;
  grid-template-columns: 1fr ;
	}
}

/* card + its description, stacked in one column */
.featureGrideMain1 {
  display: flex;
  flex-direction: column;
}
.featureGrideMain1 > p {

  font-size: 15px;
  line-height: 1.65;
  color: #000;
   font-weight: 400;
padding: 0 15px;
 @media (max-width: 1199px) {
padding: 0px;
 }
}

.bloomCard {
  align-self: start;
  padding-top: 56px;
  padding-right: 10px;
   @media (max-width: 1199px) {
  padding-top: 20px;
    padding-right: 0px;
   }
}
.bloomCard h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
   @media (max-width: 1199px) {
color: #000;
   }
}
.bloomCard p {
  color: var(--white);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 300;
    @media (max-width: 1199px) {
color: #000;
   }
}
.blogLink {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight:700;
  letter-spacing: 1px;
     @media (max-width: 1199px) {
color: #000;
   }
}
.blogLink__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
 background: #545454;
}
.blogLink:hover {
  opacity: 0.8;
}

.featureCard {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 412px;
}
.featureCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition:0.4s;
}
.featureCard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
}
.featureCard__overlay h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  @media (max-width: 767px) {
 font-size: 17px;
  }
}
.arrowBtn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.arrowBtn:hover {
  background: var(--ink);
  color: var(--white);
}

.heroDesc {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1.25fr;
  gap: 22px;
  margin-top: 150px; /* clears the overhanging cards (120px overhang + gap) */
  padding: 0 48px;
}
.heroDesc p {
  font-size: 12px;
  color: var(--muted-dark);
  max-width: 320px;
}

/* ===================== EXPLORE PROJECTS ===================== */
.explore {
  padding-top: 60px;
  @media (max-width: 1199px) {
  padding-top:30px;
  }
}
.exploreCard {
 background: var(--dark);
  border-radius: var(--radius-lg);
 padding: 46px 48px 144px;
  max-width: 1110px;
}
.exploreHead {
  display: flex;

  align-items: flex-start;
  gap: 200px;

    @media (max-width: 1199px) {
gap:20px;
flex-direction: column;
align-items: center;
	}
}
.exploreHead h2 {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
}
.exploreHead p {
  color: var(--white);
  font-size: 16px;
  max-width: 520px;
   font-weight: 400;
       @media (max-width: 1199px) {
max-width: 100%;text-align: center;
	   }
	   @media (max-width: 767px) {
  font-size: 14px;
	   }
}

.projectRow {
  display: flex;
  gap: 24px;
  align-items: start;
  margin: -107px 88px 0;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 6px;
  cursor: grab;
}
.projectRow.dragging {
  cursor: grabbing;
  scroll-snap-type: none; /* free movement while dragging */
}
.projectRow::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.projectCard {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 72px) / 4); /* 4 cards visible (3 gaps × 24px) */
  scroll-snap-align: start;
}
.projectCard img {
  user-select: none;
  -webkit-user-drag: none;
}
.projectCard__img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 346px;
  margin-bottom: 14px;
}
/* varied sizes, top-aligned so shorter cards end higher */
.projectCard--tall .projectCard__img {
   height: 346px;
}
.projectCard--short .projectCard__img {
  height: 227px;
}
.projectCard--mid .projectCard__img {
  height: 271px;
}
.projectCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.projectCard:hover .projectCard__img img {
  transform: scale(1.06);
}
.projectCard figcaption {
  color: var(--ink);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}
.projectCard .num {
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
    color: #000;
}
.projectCard .meta {
color: #2a2a2a;
  line-height: 1.2;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.projectCard .stars {
  width: 100%;
  letter-spacing: 4px;
  font-size: 18px;
  color: var(--ink);
  margin-top: 0px;
}

.carouselNav {
  display: flex;
  justify-content: center;
  gap: 160px;
  margin-top: 36px;
  @media (max-width: 1199px) {
  gap: 20px;
  margin-top: 0px;
  }
}
.carouselNav__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e3e3e3;
  background: #f6f6f6;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}
.carouselNav__btn:hover {
  background: var(--ink);
  color: var(--white);
}

/* ===================== PURPOSE / VISION / MISSION ===================== */
.pvm {
  padding-top: 70px;
  @media (max-width: 1199px) {
  padding-top: 30px;
  }
}
.pvmCard {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 46px 56px 167px; 
   @media (max-width: 1199px) {
padding:30px;
   }
}
.pvmBrand {
color: var(--white);

  font-size: 41px!important;
  letter-spacing: 6px;
  margin-bottom: 44px;
  font-weight: 700;
     @media (max-width: 1199px) {
  font-size: 31px;
  margin-bottom: 20px;
	 }
     @media (max-width: 570px) {
  margin-bottom: 30px;
     }
   span{
    margin-left: 5px;
     @media (max-width: 570px) {
display: block;
line-height: 16px;
margin-left: 0;
     }
   }
}
.pvmGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
   @media (max-width: 1199px) {
  grid-template-columns:1fr;
   gap: 20px;
   }
}
.pvmCol h5 {
  color: var(--white);
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 13px;
}
.pvmCol p {
 color: var(--white);
  font-size: 16px;
  line-height: 1.7;
   font-weight: 400;
}

/* ===================== ABOUT US ===================== */
.about {
  position: relative;
  z-index: 2;
  margin-top: -100px; 
    @media (max-width: 1199px) {
  margin-top: 0px; 
  padding: 20px 40px 10px;
	}
	  @media (max-width: 767px) {
 padding: 20px 20px 10px;
	  }
}
.aboutFlex {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
    @media (max-width: 1199px) {
  grid-template-columns: 1fr;
	}
}
.aboutImg {

  overflow: hidden;
  @media (max-width: 1199px) {
display: none;

  }
 
}
.aboutImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutText {
 margin-top: 140px;
  padding-right: 74px;
  @media (max-width: 1199px) {
 margin-top: 0px;
  padding-right: 0px;
  }
}
.aboutText h2 {
font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
    @media (max-width: 1199px) {
font-size: 30px;
	}
}
.aboutText p {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 26px;
   font-weight: 400;
    @media (max-width: 1199px) {
 margin-bottom: 20px;
  font-size: 15px;
	}
}
.btnSolid {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 0px;
   border: 1px solid #000;
}
.btnSolid:hover {
 border: 1px solid #000;
  background: #f6f6f6;
    color:#000;
}

/* ===================== STATS ===================== */
.stats {
  padding-top: 100px;
  @media (max-width: 1199px) {
  padding-top: 20px;
  }
}
.statsRow {
display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.statCard {
  background: var(--dark);

  padding: 30px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
    @media (max-width: 1199px) {
  padding: 20px;
	}
}
.statCard__num {
  color: var(--white);
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
      @media (max-width: 1199px) {
  font-size: 36px;
	  }
}
.statCard__label {
  color: var(--white);
  font-size: 18px;
  line-height: 1.4;
    @media (max-width: 1199px) {
  font-size: 16px;
	}
}

/* ===================== CLOSING ===================== */
.closing {
  padding: 90px 0 80px;
  text-align: center;
   @media (max-width: 1199px) {
  padding: 40px 0 40px;
   }
}
.closing > .mainContainer > p {
max-width: 760px;
  margin: 0 auto 70px;
  font-size: 18px;
  line-height: 1.9;
  color: #000;
   @media (max-width: 1199px) {
  margin: 0 auto 30px;
    font-size: 16px;
   }
}
.closingLogo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--black);
  padding: 40px 0;
  @media (max-width: 570px) {
  padding:20px 0;
  }
}
.footerFlex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
   @media (max-width: 570px) {
  gap: 24px;
   }
}
.footerBrand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footerBrand__text {
  color: #fff;
  font-size: 16px;
  margin: 8px 0 4px;
}
.footerSocials {
  display: flex;
  gap: 14px;
  margin-top: 6px;
  font-weight: 400;
}
.footerSocials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
}
.footerSocials a:hover {
  background: var(--white);
  color: var(--black);
}
.footerLinks {
  min-width: 180px;
}
.footerLinks h6 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footerLinks ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footerLinks a {
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 400;
}
.footerLinks a:hover {
  color: var(--white);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
  .brandMark__logo {
    font-size: 72px;
  }
  .heroCard {
    padding-bottom: 40px;
  }
  .heroGrid,
  .heroDesc {
    grid-template-columns: 1fr 1fr;
  }
  .heroGrid {
    margin: 24px 0 0;
  }
  .featureGrideMain1 > p {
    color: #000; /* descriptions sit on the dark box at this width */
  }
  .featureCard {
    height: 300px;
  }
  .heroDesc {
    margin-top: 28px;
    padding: 0;
  }
  .heroDesc__spacer {
    display: none;
  }
  .bloomCard {
    grid-column: 1 / -1;
    align-self: auto;
    padding-top: 0;
    margin-bottom: 6px;
  }
  .exploreCard {
    padding: 30px;
	
  }
  .projectRow {
    gap: 20px;
    margin: 20px 0 0;
  }
  .projectCard {
    flex: 0 0 calc((100% - 22px) / 2); /* 2 cards visible */
  }
  .projectCard--short,
  .projectCard--mid {
    margin-top: 0;
  }

  .statsRow {
    grid-template-columns: repeat(2, 1fr);
	gap: 12px;
  max-width: 100%;
  }
}

@media (max-width: 768px) {
  .mainContainer {
    padding: 0 20px;
  }


  .brandMark__logo {
    font-size: 60px;
  }
  .heroIntro h1 {
    font-size: 24px;
  }
  .projectCard {
    flex: 0 0 80%; /* ~1 card visible with a peek of the next */
  }
  .heroGrid,
  .heroDesc {
    grid-template-columns: 1fr;
  }
  .pvmGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pvmBrand {
font-size: 25px;
    letter-spacing: 0;
  

  }

  .aboutFlex {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .aboutImg {
    margin-left: 0;
    height: 240px;
  }
  .aboutText {
    margin-top: 0;
  }
  .statsRow {
    grid-template-columns: 1fr;
  }
  .navLinks {
    gap: 20px;
  }
  .navLinks a {
    font-size: 11px;
  }

}

.featureGrideMain1{
	display:flex;

flex-direction:column;
	gap:20px;
	 @media (max-width: 1199px) {
	gap:10px;
	 }
	&:hover .featureCard img{
		transform: scale(1.04);
	}
}
.mainProjectsec{
	display:flex;
	flex-direction:column;
}

.mainContainerAbout{
	max-width: 1540px;

  padding: 0 40px 0px 0px;
  position: relative;
}


/* ===================== WAREHOUSING PAGE ===================== */

/* ---- Header — transparent overlay on hero ---- */
/* Use ID + class for specificity over #mainHeader in styles.css */
#mainHeader.wh-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  padding: 28px 0;
}

.wh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wh-navLogo {
  display: block;
  flex-shrink: 0;
}

.wh-navLogo img {
  height: 48px;
  width: auto;
  display: block;
}

.wh-navRight {
  display: flex;
  align-items: center;
  gap: 38px;
  .navLinks{
    @media (max-width: 992px) {
display: none!important;
    }
  }
}

/* Nav links white over image */
.wh-header .navLinks a {
  color: var(--white);
}
.wh-header .navLinks a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Hamburger lines white */
.wh-header .menuBtn span {
  background: var(--white);
}

/* ---- Hero — full bleed, sits behind transparent header ---- */
.whHeroSection {
  position: relative;
}

.whHeroImg {
  position: relative;
  height: 580px;
  overflow: hidden;
  @media (max-width: 1199px) {
  height: 100%!important;
  }
}

.whHeroBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.whHeroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.65) 100%);
}

/* Text block sits in the lower-middle of the image */
.whHeroText {
  position: absolute;
  bottom: 210px; /* cleared above where cards will overlap */
  left: 0;
  right: 0;
  @media (max-width: 1199px) {
bottom:40px!important;
padding: 0 0px!important;
  }
   @media (max-width: 767px) {
position: static!important;
padding: 20px 0px!important;
background: var(--ink)!important;
   }
}

.whHeroText .mainContainer {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.whHeroHeading {
  color: var(--white);
  font-size: 40px!important;
  font-weight: 600;
  line-height: 1.1;
  flex: 0 0 auto;
  max-width: 100%!important;
@media (max-width: 767px) {
  font-size: 30px!important;
}
}

.whHeroDesc {
color: rgba(255, 255, 255, 0.9);
  font-size: 17px!important;
  line-height: 1.8;
  max-width:468px!important;
  font-weight: 400;
  padding-bottom: 0!important;
   @media (max-width: 1199px) {
  max-width:100%!important;
   }
   @media (max-width: 767px) {
  font-size: 15px!important;
}
}

/* ---- Type cards — overlap the hero bottom ---- */
.whTypeSection {
  position: relative;
  z-index: 2;
  margin-top: -175px;   /* cards start 175px before the hero ends */
  padding-bottom: 60px;
  @media (max-width: 1199px) {
margin-top: 0px!important;
padding-bottom: 0px!important;
padding-top: 50px!important;
  }
}

.whTypeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px!important;
  max-width: 950px;
     @media (max-width: 1199px) {
  max-width:100%!important;
   }
}

.whTypeCard {
background: #F0F0F0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.whTypeCard__top {
  padding: 14px 16px;
background: #F0F0F0!important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whTypeStar {
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}

/* Gray pill placeholder — matches screenshot */
.whTypeBadge {
  display: block;
  width: 72px;
  height: 22px;
  background: var(--white)!important;
  border-radius: 30px!important;
}

.whTypeCard__img {
  height: 165px;
  overflow: hidden;
}

.whTypeCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.whTypeCard:hover .whTypeCard__img img {
  transform: scale(1.05);
}

.whTypeCard__label {
  padding: 14px 16px;
  font-size: 16px!important;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.45;
background: #F0F0F0!important;
}

/* ---- Shared warehouse unit ---- */
.whUnit {
  padding: 70px 0 50px;
  @media (max-width: 1199px) {
 padding: 30px 0 0px!important;
  }
}

.whUnitSimple {
  padding-top: 50px;
}

.whUnitMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px!important;
    @media (max-width: 1199px) {
  margin-bottom: 20px!important;
  }
}

.whUnitStars {
  font-size: 18px!important;
  color: var(--ink);
  letter-spacing: 5px;
}

.whUnitTag {
  font-size: 16px!important;
  font-weight: 600!important;
  color: var(--ink);
}

/* ---- Warehouse 1 layout ---- */
.whUnit1Layout {
display: grid;
  grid-template-columns: 1fr 1.1fr!important;
  gap: 24px!important;
  align-items: start;
  @media (max-width: 1199px) {
  grid-template-columns: 1fr!important;
  }
}

/* Heading lives inside the left column */
.whUnit1Heading {
  font-size: 40px!important;
  font-weight: 600!important;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 500px!important;
    @media (max-width: 1199px) {
  font-size: 30px!important;
    }
}

.whMainImg {
  border-radius: 6px;
  overflow: hidden;
  height: 358px;
  margin-bottom: 10px;
}

.whMainImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:0.4s;
}

.whThumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.whThumbnails img {
  width: 100%;
  height: auto!important;
  object-fit: cover;
  border-radius: 5px;
}

/* Right column */
.whUnit1Intro {
font-size: 16px !important;
  line-height: 1.72;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0;  /* accordion sits directly below */
      @media (max-width: 1199px) {
  font-size: 15px!important;
    }
}

.whAccordion {
  border-top:none!important;
  margin-top: 20px!important;
  margin-bottom: 24px;
  @media (max-width: 1199px) {
 margin-bottom: 0px;
  }
}

.whAccItem {
  border-bottom: 1px solid #e2e2e2;
      &:last-child{
    border-bottom: none!important;
  }
}

.whAccBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0!important;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px!important;
  font-weight: 400!important;
  color: var(--ink);

  text-align: left;

}

.whAccToggle {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink);
background: #D9D9D9!important;
  transition: 0.2s;
  i{
    font-size: 16px;
  }

}

.whAccBtn:hover .whAccToggle {
  border-color: var(--ink);
}

.whAccBody {
  display: none;
  padding: 0 0 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
    @media (max-width: 1199px) {
  padding: 0 0 0px;
    }
}

.whUnit1Footer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
  @media (max-width: 1199px) {
margin-bottom: 0px!important;
  }
}

.whUnit1FooterText {
  flex: 1;
}

.whUnit1FooterText p {
  font-size: 16px!important;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 15px!important
}

.whUnit1FooterImg {
  width: auto!important;
  flex-shrink: 0;
}

.whUnit1FooterImg img {
  width: 100%;
  height: auto!important;;
  object-fit: cover;
  border-radius: 8px;
}

/* Reserve Your Spot */
.whReserveLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s;
}

.whReserveLink:hover {
  opacity: 0.7;
}

.whReserveIcon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #bebebe!important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--ink);
  transition: 0.2s;
  background: #bebebe!important;
}

.whReserveLink:hover .whReserveIcon {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ---- Warehouse 2 & 3 layout ---- */
.whUnit2Layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px!important;
  align-items: start;
  border-top: 1px #EBEBEB solid;
  padding-top: 70px;
  @media (max-width: 1199px) {
  padding-top: 20px;
  }
}

.whUnit2Left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Meta inside left column — same gap as warehouse 1 meta */
.whUnit2Left .whUnitMeta {
  margin-bottom: 12px;
}

.whUnit2Heading {
  font-size: 40px!important;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 60px!important;
  @media (max-width: 1199px) {
  margin-bottom: 20px!important;
    font-size: 30px!important;
  }
}

.whUnit2Desc {
  font-size: 20px!important;
  line-height: 1.72;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 30px!important;
  @media (max-width: 1199px) {
  font-size:16px!important;
    margin-bottom: 20px!important;
  }
}

.whUnit2Img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ===================== WAREHOUSING PAGE ===================== */

/* ---- Header — transparent → white on scroll ---- */
#mainHeader.wh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  padding: 28px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

#mainHeader.wh-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  padding: 16px 0;
}

.wh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wh-navLogo {
  display: block;
  flex-shrink: 0;
}

.wh-navLogo img {
  height: 48px;
  width: auto;
  display: block;
}

.wh-navRight {
  display: flex;
  align-items: center;
  gap: 38px;
}

/* Nav links white over hero */
.wh-header .navLinks a {
  color: var(--white);
  transition: color 0.35s ease;
}
.wh-header .navLinks a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Nav links black when scrolled */
.wh-header.is-scrolled .navLinks a {
  color: var(--ink);
}
.wh-header.is-scrolled .navLinks a:hover {
  color: var(--muted-dark);
}

/* Hamburger white over hero */
.wh-header .menuBtn span {
  background: var(--white);
  transition: background 0.35s ease;
}

/* Hamburger black when scrolled */
.wh-header.is-scrolled .menuBtn span {
  background: var(--ink);
}

/* ---- Hero — full bleed, sits behind fixed header ---- */
.whHeroSection {
  position: relative;
}

.whHeroImg {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.whHeroBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.whHeroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.65) 100%);
}

.whHeroText {
  position: absolute;
  bottom: 210px;
  left: 0;
  right: 0;
}

.whHeroText .mainContainer {
  display: flex;
  align-items: flex-end;
  gap: 56px;
}

.whHeroHeading {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  flex: 0 0 auto;
  max-width: 360px;
}

.whHeroDesc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
  max-width: 370px;
  font-weight: 400;
  padding-bottom: 4px;
}

/* ---- Type cards — overlap the hero bottom ---- */
.whTypeSection {
  position: relative;
  z-index: 2;
  margin-top: -175px;
  padding-bottom: 60px;
}

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

.whTypeCard {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.whTypeCard__top {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whTypeStar {
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}

.whTypeBadge {
  display: block;
  width: 72px;
  height: 22px;
  background: #d0d0d0;
  border-radius: 5px;
}

.whTypeCard__img {
  height: 165px;
  overflow: hidden;
}

.whTypeCard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.whTypeCard:hover .whTypeCard__img img {
  transform: scale(1.05);
}

.whTypeCard__label {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  background: var(--white);
}

/* ---- Shared warehouse unit ---- */
.whUnit {
  padding: 70px 0 50px;
}

.whUnitSimple {
  padding-top: 50px;
}

.whUnitMeta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.whUnitStars {
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 5px;
}

.whUnitTag {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

/* ---- Warehouse 1 layout ---- */
.whUnit1Layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 52px;
  align-items: start;
}

.whUnit1Heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 26px;
}

/* ---- Gallery: main image + thumbnails ---- */
.whMainImg {
  border-radius: 6px;
  overflow: hidden;
  height: 358px;
  margin-bottom: 10px;
}

/* Clickable main image wrapper */
.whMainImgClickable {
  position: relative;
  cursor: pointer;
}

/* Two-image carousel: both positioned absolutely, slide in/out together */
.wh-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.wh-slide-active {
  transform: translateX(0);
  z-index: 1;
}

.wh-slide-incoming {
  transform: translateX(100%);
  z-index: 2;
}

.whMainImgClickable:hover img {
  transform: scale(1.02);
}

/* Zoom icon that appears on hover */
.whZoomBtn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.whMainImgClickable:hover .whZoomBtn {
  opacity: 1;
}

/* Thumbnails */
.whThumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.whThumbnails img,
.whThumb {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease, outline 0.2s ease;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.whThumb:hover {
  opacity: 0.85;
}

.whThumb--active {
  opacity: 1;
  outline: 2px solid var(--ink);
}

/* ---- Lightbox ---- */
.whLightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whLightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.whLightboxClose {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.whLightboxClose:hover {
  background: rgba(255, 255, 255, 0.25);
}

.whLightboxContent {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whLightboxContent img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.whUnit1Intro {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0;
}

.whAccordion {
  border-top: 1px solid #e2e2e2;
  margin-top: 28px;
  margin-bottom: 24px;
}

.whAccItem {
  border-bottom: 1px solid #e2e2e2;
}

.whAccBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  font-family: "Archivo", sans-serif;
  text-align: left;
}

.whAccToggle {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #bebebe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--ink);
  background: transparent;
  transition: 0.2s;
}

.whAccBtn:hover .whAccToggle {
  border-color: var(--ink);
}

.whAccBody {
  display: none;
  padding: 0 0 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

.whUnit1Footer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.whUnit1FooterText {
  flex: 1;
}

.whUnit1FooterText p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 400;
}

.whUnit1FooterImg {
  width: 148px;
  flex-shrink: 0;
}

.whUnit1FooterImg img {
  width: 100%;
  height: 102px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reserve Your Spot */
.whReserveLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.2s;
}

.whReserveLink:hover {
  opacity: 0.7;
}

.whReserveIcon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--ink);
  transition: 0.2s;
}

.whReserveLink:hover .whReserveIcon {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ---- Warehouse 2 & 3 layout ---- */
.whUnit2Layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
}

.whUnit2Left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whUnit2Left .whUnitMeta {
  margin-bottom: 12px;
}

.whUnit2Heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 28px;
}

.whUnit2Desc {
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 22px;
}

.whUnit2Img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
  #mainHeader.wh-header {
    padding: 20px 0;
  }

  .wh-navLogo img {
    height: 38px;
  }

  .wh-navRight {
    gap: 20px;
  }

  .whHeroImg {
    height: 440px;
  }

  .whHeroText .mainContainer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .whHeroHeading {
    font-size: 28px;
    max-width: 100%;
  }

  .whHeroDesc {
    max-width: 100%;
  }

  .whHeroText {
    bottom: 200px;
    padding: 0 20px;
  }

  .whTypeSection {
    margin-top: -160px;
  }

  .whTypeGrid {
    gap: 14px;
  }

  .whUnit1Heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .whUnit2Heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .whUnit1Layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .whUnit2Layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  #mainHeader.wh-header {
    padding: 14px 0;
  }

  .wh-navLogo img {
    height: 32px;
  }

  .whHeroImg {
    height: 340px;
  }

  .whHeroHeading {
    font-size: 22px;
  }

  .whHeroDesc {
    font-size: 13px;
  }

  .whHeroText {
    bottom: 170px;
  }

  .whTypeSection {
    margin-top: -130px;
  }

  .whTypeGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .whUnit1Heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .whUnit2Heading {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .whUnit {
    padding: 40px 0 30px;
  }

  .whUnit1Footer {
    flex-direction: column;
  }

  .whUnit1FooterImg {
    width: 100%;
  }

  .whUnit1FooterImg img {
    height: 160px;
  }
}


/* ===================== PROJECTS PAGE ===================== */

/* ---- Header — transparent → white on scroll ---- */
#mainHeader.proj-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  padding: 28px 0;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

#mainHeader.proj-header.is-scrolled {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  padding: 16px 0;
}

.proj-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proj-navLogo {
  display: block;
  flex-shrink: 0;
}

.proj-navLogo img {
  height: 48px;
  width: auto;
  display: block;
}

.proj-navRight {
  display: flex;
  align-items: center;
  gap: 38px;
  .navLinks{
    @media (max-width: 992px) {
display: none!important;
    }
  }
}

/* Nav links — white over hero */
.proj-header .navLinks a {
  color: var(--white);
  transition: color 0.35s ease;
}
.proj-header .navLinks a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Nav links — black when scrolled */
.proj-header.is-scrolled .navLinks a {
  color: var(--ink);
}
.proj-header.is-scrolled .navLinks a:hover {
  opacity: 0.65;
}

/* Hamburger — white over hero */
.proj-header .menuBtn span {
  background: var(--white);
  transition: background 0.35s ease;
}

/* Hamburger — black when scrolled */
.proj-header.is-scrolled .menuBtn span {
  background: var(--ink);
}

/* ---- Hero ---- */
.projHeroSection {
  position: relative;
}

.projHeroImg {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.projHeroBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.projHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.projHeroText {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
}

.projHeroText .mainContainer {
  display: flex;
  justify-content: flex-end;
}

.projHeroTextInner {
  max-width: 534px;
}

.projHeroHeading {
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 14px;
}

.projHeroDesc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
}

/* ---- Projects grid section ---- */
.projSection {
  padding: 56px 0 72px;
}

.projGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---- Card base ---- */
.projCard {
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;

}

/* Meta bar */
.projCard__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px 0px;
  flex-shrink: 0;
}

.projCard__price,
.projCard__date {
  font-size: 13px;
  color: #000;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* ---- Image card ---- */
.projCard--img .projCard__imgWrap {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  position: relative;
margin: 18px 24px 40px 24px;
@media (max-width: 570px) {
  margin: 10px 14px 10px 14px;

}
}

.projCard--img .projCard__imgWrap img {

  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.projCard--img:hover .projCard__imgWrap img {
  transform: scale(1.04);
}

/* Caption — both image and text cards */
.projCard__caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0px 14px 24px;
  flex-shrink: 0;
  @media (max-width: 570px) {
  padding: 0px 14px 10px;
  }
}

.projCard__captionTitle {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.4;
}

.projCard__captionSub {
  font-size: 12px;
  font-weight: 300;
  color: #000;
  line-height: 1.4;
  text-align: center;
}

/* ---- Text card ---- */
.projCard--text {
  background: #f4f4f4;
}

.projCard--text .projCard__textBody {
flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  text-align: center;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1199px) {
  #mainHeader.proj-header {
    padding: 20px 0;
  }

  .proj-navLogo img {
    height: 38px;
  }

  .proj-navRight {
    gap: 20px;
  }

  .projHeroImg {
    height: 460px;
  }

  .projHeroHeading {
    font-size: 28px;
  }

  .projHeroTextInner {
    max-width: 360px;
  }

  .projGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }


}

@media (max-width: 768px) {
  #mainHeader.proj-header {
    padding: 14px 0;
  }

  .proj-navLogo img {
    height: 32px;
  }

  .projHeroImg {
    height: 360px;
  }

  .projHeroText {
    bottom: 36px;
  }

  .projHeroText .mainContainer {
    justify-content: flex-start;
  }

  .projHeroTextInner {
    max-width: 100%;
  }

  .projHeroHeading {
    font-size: 24px;
  }

  .projHeroDesc {
    font-size: 13px;
  }

  .projGrid {
    grid-template-columns: 1fr;
    gap: 8px;
  }





  .projSection {
    padding: 20px 0 0px;
  }
}

@media (max-width: 480px) {




  .projCard--text .projCard__textBody {
 font-size: 24px;
    padding: 50px 10px;
  }
}
