/* =============================================
   KAYRA — Luxury Carpet Website Styles
   CLEANED VERSION — Duplicates Removed
   ============================================= */

/* ======================== CSS VARIABLES ======================== */
:root {
  --cream: #f5f2ed;
  --cream-dark: #ede9e2;
  --cream-light: #faf7f2;
  --black: #0a0a0a;
  --dark: #1a1714;
  --brown-dark: #1a1108;
  --brown-mid: #3b2a14;
  --brown-warm: #6b4c2a;
  --gold: #c9a96e;
  --gold-light: #d4b88a;
  --text: #2c2c2c;
  --text-light: #6b6560;
  --text-body: #4a3728;
  --text-muted: #8a7060;
  --white: #ffffff;
  --border: #ddd8d0;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-display: "Cormorant Garamond", serif;
  --font-sans: "Montserrat", sans-serif;
  --font-body: "Jost", sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-gap: 120px;
  --container: 1200px;
}

/* ======================== RESET ======================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.22s ease,
    opacity 0.22s ease;
}

ul {
  list-style: none;
}

input,
select,
textarea {
  outline: none;
  font-family: var(--font-sans);
}

/* ======================== TYPOGRAPHY UTILITIES ======================== */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.015em;
}

.section-title em {
  font-style: italic;
  color: var(--brown-warm);
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  max-width: 560px;
  margin: 0 auto 50px;
  font-weight: 300;
  line-height: 1.9;
}

.label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
}

.label.gold {
  color: var(--gold);
}

.body-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 20px;
}

.body-text.center {
  text-align: center;
  margin: 0 auto 40px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-warm);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}

.link-arrow span {
  transition: transform 0.3s ease;
}

.link-arrow:hover span {
  transform: translateX(6px);
}

.section {
  padding: var(--section-gap) 5%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--dark {
  background: var(--brown-dark);
  color: var(--cream);
}

.btn--dark:hover {
  background: var(--brown-warm);
}

.btn--gold {
  background: var(--gold);
  color: var(--brown-dark);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 15px 32px;
  transition: all 0.35s ease;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-primary.dark {
  background: var(--black);
  color: var(--white);
}

.btn-primary.dark:hover {
  background: var(--gold);
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 15px 32px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 12px 26px;
  transition: all 0.3s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-outline-border {
  display: inline-block;
  border: 1.5px solid var(--black);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 14px 32px;
  transition: all 0.3s;
}

.btn-outline-border:hover {
  background: var(--black);
  color: var(--white);
}

.dark-cta .btn-outline-border {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.dark-cta .btn-outline-border:hover {
  background: var(--white);
  color: var(--black);
}

.btn-explore {
  display: inline-block;
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 11px 22px;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn-explore:hover {
  background: var(--text);
  color: var(--white);
}

.btn-read {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text);
  font-weight: 500;
  margin-top: 16px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.btn-read:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 15px 32px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: var(--gold);
}

.btn-contact {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
  transition: all 0.3s;
}

.btn-contact:hover,
.btn-contact.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* btn-arrow — used inside dark service cards */
.btn-arrow {
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  color: var(--black) !important;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0;
  border: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.btn-arrow:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.btn-discover {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.service-card:hover .btn-discover {
  background-color: var(--white);
  color: var(--black);
}

/* ======================== IMAGE FRAMES ======================== */
.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.image-frame--left .image-accent {
  bottom: -20px;
  left: -20px;
  right: auto;
}

/* ======================== SCROLL REVEAL ======================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
  text-align: left;
}

/* fade-in utility */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================== NAVBAR ======================== */

/* ── Base ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 50px;
  background: #000;
  transition:
    padding 0.4s ease,
    background 0.4s ease;
}

.navbar.scrolled {
  padding: 10px 50px;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  display: block;
}

.nav-logo a {
  color: inherit;
  text-decoration: none;
}

/* ── Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: #fff;
}

.nav-links > li.active > a {
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.arrow {
  font-size: 0.58rem;
  opacity: 0.7;
}

/* ── Mega Dropdown ── */
.has-dropdown {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border-top: 2px solid var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.2);
  min-width: 500px;
  display: none;
  flex-direction: row;
  padding: 18px;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.has-dropdown:hover .mega-dropdown {
  display: flex;
}

.mega-item {
  flex: 1;
  padding: 0 10px;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.mega-item:last-child {
  border-right: none;
}

.mega-item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.mega-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 3px;
  transition: color 0.2s;
}

.mega-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
}

.mega-item:hover .mega-label {
  color: var(--gold);
}

/* ── Nav Right ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icons a {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: #fff;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1100;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile Nav Drawer ── */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 1000;
  overflow-y: auto;
  padding: 16px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}

.nav-links.open > li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links.open > li > a {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  padding: 16px 28px;
  display: block;
  width: 100%;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-links.open > li > a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

/* Contact link inside mobile menu */
.nav-links.open .mobile-contact-li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.nav-links.open .mobile-contact-li > a {
  color: var(--gold) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}

/* Hide mega dropdown in mobile */
.nav-links.open .mega-dropdown {
  display: none !important;
}

/* Close button inside mobile menu */
.nav-close-li {
  display: none;
  width: 100%;
  justify-content: flex-end;
  padding: 12px 20px 4px;
}
.nav-links.open .nav-close-li {
  display: flex;
}
.nav-close-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.nav-close-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* ======================== HERO ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero__bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1);
}

.hero__bg {
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.hero__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 6, 2, 0.92) 0%,
    rgba(10, 6, 2, 0.5) 50%,
    rgba(10, 6, 2, 0.2) 100%
  );
}

.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.hero-content,
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 90px;
  animation: heroFadeUp 1.2s 0.3s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  padding: 0 6% 80px;
  width: 100%;
  align-self: flex-end;
}

.hero-eyebrow,
.hero__label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-gold-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 22px;
}

.hero-title,
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title {
  font-size: clamp(56px, 9vw, 110px);
  margin-bottom: 50px;
}

.hero-title em,
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
  padding: 18px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  padding: 0 28px;
}

.hero-stat-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.8rem;
}

/* Hero Stats (new style) */
.hero__stats {
 position: absolute;
    bottom: 0;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100vw !important; /* Screen ki poori chaudai */
    max-width: 100vw !important;
    
    /* Layout */
    display: flex;
    justify-content: space-evenly; /* Items ke beech barabar jagah */
    align-items: center;
    padding: 25px 0;
    box-sizing: border-box;

    /* Glass Look */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Border: Sirf top par line dikhegi */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-right: none;
    border-bottom: none;

    z-index: 99; /* Taaki ye sabse upar dikhe */
}
.hero__stats > .stat {
   flex: 1;
    text-align: center;
    padding: 10px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 18px 36px;
}

.stat__num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}

.stat__divider {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}

.scroll-line {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s infinite;
}

.hero__scroll {
  position: absolute;
  right: 5%;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8) translateY(0);
  }

  50% {
    opacity: 1;
    transform: scaleY(1) translateY(8px);
  }
}

/* Hero Video + Slider */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 1.2s ease;
}

.hero-video.hide {
  opacity: 0;
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 8s ease forwards;
}

/* ======================== FEATURED PROJECT ======================== */
.featured-project {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: #000;
  overflow: hidden;
  display: block;
}

.fp-slides-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.fp-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  transform: scale(1.05);
}

.fp-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
  transition:
    opacity 1s ease,
    transform 6s ease;
}

.fp-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.fp-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.15) 100%
  );
  z-index: 1;
}

.fp-slide .hero-content {
  position: relative;
  z-index: 5;
  padding: 0 80px;
  color: #fff;
}

.fp-slide .hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-weight: 500;
}

.fp-counter-badge {
  position: absolute;
  bottom: 36px;
  left: 80px;
  z-index: 10;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}

.hero-thumbs-sidebar {
  position: absolute;
  right: 0;
  top: 0;
  width: 110px;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 20;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-thumbs-sidebar img {
  width: 80px;
  height: 62px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: 0.3s;
  max-width: none;
  display: block;
}

.hero-thumbs-sidebar img.active {
  opacity: 1;
  border-color: var(--gold);
}

.hero-thumbs-sidebar img:hover {
  opacity: 0.75;
}

/* ======================== INTRO SECTION ======================== */
.intro {
 display: flex;
    flex-wrap: wrap;      
    align-items: center;   
    justify-content: space-between;
    padding: 80px 10%;      
    gap: 50px;              
    background-color: #f9f7f2;
}

.intro-text-col {
 flex: 1;
 min-width: 300px;
 justify-content: flex-end;
}

.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 30px;
  letter-spacing: -0.015em;
}

.intro-para {
  font-size: 0.83rem;
  color: #4a4540;
  font-weight: 300;
  line-height: 1.95;
  margin-bottom: 16px;
  max-width: 520px;
}

.intro-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 10px;
  max-width: 440px;
  line-height: 1.6;
}

.intro-img-col {
  grid-column: 2;
  grid-row: 1;
  min-height: 520px;
  overflow: hidden;
}

.intro-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.intro-main-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.intro-thumb-wrap {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 100px;
  height: 80px;
  border: 3px solid var(--cream);
  overflow: hidden;
  background: var(--cream);
}

.intro-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-stats-row {
width: 100%;          
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.intro-stat {
  background-color: #000; 
    padding: 30px;           
    border-radius: 8px;      
    min-width: 160px;       
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.intro-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.intro-stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
}

/* ======================== DESIGN SERVICES ======================== */
.design-services {
  padding: 90px 80px;
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 0 20px;
}

.service-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.7s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.18) 55%,
    transparent 100%
  );
  z-index: 2;
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px;
  z-index: 3;
  background: none;
  color: #fff;
}

.service-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 400;
}

.service-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
  margin-bottom: 16px;
}

/* ======================== PRODUCTS SECTION ======================== */
.products-section {
  padding: 90px 80px;
  background: var(--cream-dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.product-card {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 24px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.product-overlay p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 12px;
}

.product-overlay a {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
}

/* ======================== WHY SECTION ======================== */
.why-section {
  padding: 90px 80px;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 44px 36px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.why-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}

.why-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ======================== TESTIMONIAL ======================== */
.testimonial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  padding: 90px 80px;
  gap: 60px;
  align-items: center;
}

.test-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.15;
}

.test-heading em {
  color: var(--gold);
  font-style: italic;
}

.test-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 28px;
  height: 2px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: var(--gold);
}

.test-right blockquote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.test-right cite {
  display: block;
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-top: 24px;
}

/* ======================== CTA BANNER ======================== */
.cta-banner {
  position: relative;
  padding: 120px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  color: var(--white);
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA Section (new style) */
.cta-section {
  background: var(--brown-dark);
  padding: 120px 5%;
  text-align: center;
}

.cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 44px;
}

.cta-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 20px;
}

.cta-input {
  flex: 1;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-right: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.cta-input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.cta-input:focus {
  border-color: var(--gold);
}

.cta-note {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.06em;
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 80px 90px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-col p {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-links-col h5 {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-links-col ul li {
  margin-bottom: 12px;
}

.footer-links-col ul li a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.footer-links-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 90px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Footer (new style) */
footer.footer {
  background: #0e0904;
  padding: 80px 8% 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  line-height: 1.7;
  max-width: 260px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--cream);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
}

.footer__legal {
  display: flex;
  gap: 30px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
  transition: color 0.3s;
}

.footer__legal a:hover {
  color: var(--cream);
}

/* ======================== PAGE HERO ======================== */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 56px;
  color: var(--white);
  width: 100%;
}

.page-hero-content.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.page-hero-content p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  max-width: 440px;
}

/* ======================== COLLECTIONS PAGE ======================== */
.collection-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: var(--white);
  padding: 90px 80px;
  gap: 80px;
}

.col-img {
  overflow: hidden;
}

.col-img img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.col-img:hover img {
  transform: scale(1.04);
}

.col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}

.col-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.col-text p {
  font-size: 0.84rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.9;
  max-width: 400px;
}

.materials-section {
  background: var(--cream-dark);
  padding: 90px 80px;
  text-align: center;
}

.mat-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.mat-stat span {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--dark);
}

.mat-stat small {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-top: 8px;
}

.bespoke-cta {
  background: var(--cream);
  text-align: center;
  padding: 80px;
}

.bespoke-cta.dark-cta {
  background: var(--dark);
}

.dark-cta h2 {
  color: var(--white);
}

.dark-cta p {
  color: rgba(255, 255, 255, 0.6);
}

.bespoke-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}

.bespoke-cta p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 32px;
}

/* ======================== PROJECTS PAGE ======================== */
.proj-hero {
  position: relative;
  height: 52vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.proj-hero img.proj-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proj-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.proj-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 50px;
  color: var(--white);
}

.proj-hero-content .ph-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  display: block;
}

.proj-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 14px;
}

.proj-hero-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 380px;
  line-height: 1.7;
}

.proj-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.proj-stats-bar-item {
  text-align: center;
  padding: 38px 20px;
  border-right: 1px solid var(--border);
}

.proj-stats-bar-item:last-child {
  border-right: none;
}

.proj-stats-bar-item span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}

.proj-stats-bar-item small {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
}

.proj-filter-wrap {
  background: var(--cream);
  padding: 36px 80px 0;
  display: flex;
  justify-content: center;
}

.proj-filter-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--white);
}

.proj-tab {
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 10px 28px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}

.proj-tab:last-child {
  border-right: none;
}

.proj-tab.active {
  background: var(--dark);
  color: var(--white);
}

.proj-tab:hover:not(.active) {
  background: var(--cream-dark);
  color: var(--dark);
}

.proj-area {
  background: var(--cream);
  padding: 36px 80px 80px;
}

.proj-featured-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  background: var(--white);
  margin-bottom: 28px;
  overflow: hidden;
}

.proj-featured-card .pfc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
}

.proj-featured-card .pfc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proj-featured-card:hover .pfc-img-wrap img {
  transform: scale(1.04);
}

.pfc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.52rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 4px 10px;
  text-transform: uppercase;
}

.pfc-text {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pfc-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  align-items: center;
}

.pfc-tag {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 3px 10px;
  text-transform: uppercase;
}

.pfc-tag.gold-tag {
  border-color: var(--gold);
  color: var(--gold);
}

.pfc-year {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.pfc-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.pfc-text p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 380px;
}

.pfc-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.pfc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 300;
}

.pfc-meta-item .dot-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pfc-link {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.pfc-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proj-grid-card {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.proj-grid-card.hidden {
  display: none;
}

.proj-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pgc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.pgc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.proj-grid-card:hover .pgc-img-wrap img {
  transform: scale(1.06);
}

.pgc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  padding: 3px 8px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.pgc-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pgc-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.pgc-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--text-light);
  font-weight: 300;
}

.pgc-meta-item .dot-icon {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.pgc-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.pgc-body p {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.pgc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.pgc-year-tag {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.pgc-view-link {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.pgc-view-link:hover {
  color: var(--gold);
}

/* Projects CTA */
.proj-cta {
  background: var(--dark);
  text-align: center;
  padding: 80px;
}

.proj-cta .proj-cta-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.proj-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.proj-cta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.proj-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.proj-cta-btn-primary {
  display: inline-block;
  border: 1.5px solid var(--white);
  color: var(--dark);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 14px 30px;
  transition: all 0.3s;
}

.proj-cta-btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.proj-cta-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 14px 30px;
  transition: all 0.3s;
}

.proj-cta-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Projects Footer */
.proj-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proj-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 80px 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pf-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 14px;
}

.pf-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 220px;
  margin-bottom: 20px;
}

.pf-social {
  display: flex;
  gap: 14px;
}

.pf-social a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.pf-social a:hover {
  color: var(--white);
}

.pf-col h5 {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.pf-col ul li {
  margin-bottom: 11px;
}

.pf-col ul li a {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.pf-col ul li a:hover {
  color: var(--white);
}

.pf-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.pf-contact-icon {
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.pf-contact-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  line-height: 1.6;
}

.proj-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.28);
}

.proj-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.proj-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.28);
  transition: color 0.2s;
}

.proj-footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ======================== FILTER TABS (old style) ======================== */
.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 48px;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 9px 22px;
  cursor: pointer;
  transition: all 0.2s;
}

.tab:hover,
.tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

/* ======================== GALLERY ======================== */
.gallery-hero {
  padding: 80px 80px 60px;
  background: var(--dark);
}

.gallery-featured {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 10px;
  height: 440px;
  margin-top: 30px;
}

.gallery-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs-v {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-thumbs-v img {
  width: 100%;
  height: calc(50% - 5px);
  object-fit: cover;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s;
}

.gallery-thumbs-v img:hover {
  opacity: 1;
}

/* Design Gallery */
.gallery-stage {
  display: grid;
  grid-template-columns: 145px 1fr 145px;
  height: 540px;
  margin-top: 36px;
  align-items: center;
  gap: 0;
}

.gallery-side {
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.gallery-side:hover {
  opacity: 0.78;
}

.gallery-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
}

.gallery-center {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.gallery-center > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  display: block;
  transition: opacity 0.4s ease;
}

.gallery-expand-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 5;
  color: #fff;
}

.gallery-expand-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(10, 10, 10, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  color: #fff;
  transition: background 0.2s;
}

.gallery-nav-btn:hover {
  background: rgba(10, 10, 10, 0.85);
}

.gallery-nav-prev {
  left: 18px;
}

.gallery-nav-next {
  right: 18px;
}

.gallery-counter {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  backdrop-filter: blur(4px);
}

.gallery-thumbs-strip {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
  padding: 0 145px;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.gallery-thumb {
  width: 100px;
  height: 64px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.42;
  border: 2px solid transparent;
  flex-shrink: 0;
  max-width: none;
  display: block;
  transition:
    opacity 0.25s,
    border-color 0.25s;
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.gallery-thumb:hover {
  opacity: 0.78;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.gallery-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background 0.25s;
}

.gallery-dot.active {
  background: var(--gold);
}

.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 34px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 2.2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #fff;
}

/* New Gallery Style */
.gallery__layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 4px;
  height: 540px;
  margin-top: 50px;
}

.gallery__main {
  overflow: hidden;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gallery__thumb {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.gallery__thumb.active,
.gallery__thumb:hover {
  opacity: 1;
}

.gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.gallery__thumb.active::after {
  border-color: var(--gold);
}

/* Gallery dots */
.gallery__main {
  position: relative;
}
.gallery__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 2;
}
.gallery__dot {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
}
.gallery__dot.active {
  background: var(--gold);
  width: 34px;
}

/* Projects section fix */
.projects.section {
  background: var(--cream-dark);
  max-width: 100%;
  padding: var(--section-gap) 8%;
}
.projects__header {
  text-align: center;
  margin-bottom: 0;
}
.projects__header .section-title {
  text-align: center;
}

/* Project card category label */
.project-card__category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.project-card__info h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--brown-dark);
}

/* ======================== JOURNAL PAGE ======================== */
.journal-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--white);
  padding: 70px 80px;
  gap: 70px;
  align-items: center;
}

.jf-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.jf-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.22;
}

.jf-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 60px 80px 90px;
  background: var(--cream);
}

.journal-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 20px;
}

.journal-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.journal-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ======================== CONTACT PAGE ======================== */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px;
  background: var(--white);
}

.contact-form-col h2,
.contact-info-col h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  background: var(--cream);
  padding: 14px 16px;
  font-size: 0.83rem;
  color: var(--text);
  width: 100%;
  transition:
    border-color 0.25s,
    background 0.25s;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-success {
  margin-top: 16px;
  color: #4a7c59;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(74, 124, 89, 0.1);
  border-left: 3px solid #4a7c59;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-icon {
  width: 40px;
  height: 40px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-detail-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
}

.map-placeholder {
  background: var(--cream);
  border: 1px solid var(--border);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
}

.map-pin {
  font-size: 1.8rem;
  color: var(--gold);
}

.map-placeholder p {
  font-size: 0.82rem;
  color: var(--dark);
  font-weight: 500;
}

.map-placeholder small {
  font-size: 0.68rem;
}

.consultation-cta {
  text-align: center;
  padding: 70px 80px;
  background: var(--cream);
}

.consultation-cta p {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 12px;
}

.consultation-cta h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 28px;
}

/* ======================== DESIGN PAGE ======================== */
.design-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 90px 80px;
  background: var(--cream);
  align-items: center;
}

.di-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.di-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 14px;
}

.di-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.design-stats-bar {
  background: var(--dark);
  padding: 60px 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  color: white;
}

.process-design {
  padding: 80px;
  background: var(--black);
}

.process-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.process-step p:last-child {
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
}

/* ======================== ABOUT PAGE ======================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px;
  background: var(--white);
  align-items: center;
}

.about-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.about-intro p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-intro img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-mission {
  background: var(--cream-dark);
  text-align: center;
  padding: 80px;
}

.about-mission h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-mission p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 48px;
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.mission-stat span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--dark);
}

.mission-stat small {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--text-light);
}

.team-section {
  padding: 80px;
  background: var(--white);
}

.team-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.team-sub {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 56px;
}

.team-lead {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  margin-bottom: 40px;
}

.team-lead img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.team-lead-info {
  background: var(--cream);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-lead-info .label {
  margin-bottom: 16px;
}

.team-lead-info h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
}

.team-lead-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  font-style: italic;
}

.team-grid {
 display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.team-member img {
  width: 100%;
  height: 280px; /* 👈 main height */
  object-fit: cover;
  margin-bottom: 14px;
 
}

.team-member h5 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 5px;
}

.team-member small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
   display: block;
  margin-bottom: 10px;
}

.human-touch {
   display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px; 
  padding: 80px 8%;
}

.human-touch img {
width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}

.human-touch-text {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.human-touch-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
}

.human-touch-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}
.human-touch > div:first-child {
  display: flex;
  justify-content: flex-start; /* left align */
}

.process-section {
  padding: 80px;
  background: var(--black);
}

.process-section h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.process-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.process-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 48px;
}

.process-item h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.process-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 300;
}

.quality-section {
 display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 8%;
}

.quality-section img {
  width: 100%;
  max-width: 520px;  /* image chhoti hogi */
  height: auto;
  display: block;
}

.quality-text {
  padding: 70px 60px;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
}

.quality-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ======================== MATERIALS & COMPONENTS ======================== */
.materials {
  text-align: center;
}

.materials__header {
  margin-bottom: 60px;
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}

.material-card {
  background: var(--cream-light);
  padding: 48px 32px;
  text-align: left;
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.material-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
}

.material-card__icon {
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
}

.material-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--brown-dark);
}

.material-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

.legacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.legacy__image {
  height: 520px;
  position: relative;
}

.purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
  max-width: 100%;
  padding: var(--section-gap) 8%;
}

.purpose__image {
  height: 480px;
  position: relative;
}

.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  background: var(--black);
  max-width: 100%;
  padding: var(--section-gap) 8%;
}

.process__steps {
  list-style: none;
  margin-top: 40px;
}

.process__step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}

.process__step strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--brown-dark);
}

.process__step p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.7;
}

.process__image {
  height: 580px;
  position: sticky;
  top: 120px;
}

.environments {
  text-align: center;
}

.environments__header {
  margin-bottom: 60px;
}

.environments__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 400px 300px;
  gap: 15px;
}

.env-card:first-child {
  grid-column: 1 / 4;
}
.env-card {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.env-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.env-card:hover img {
  transform: scale(1.06);
}

.env-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 40px;
  text-align: left;
  background: linear-gradient(to top, rgba(10, 6, 2, 0.8) 0%, transparent 100%);
  color: #fff;
}

.env-card__overlay h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.env-card__overlay p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
}

.benefits {
  text-align: center;
  background: var(--cream-light);
}

.benefits__header {
  margin-bottom: 60px;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: var(--cream);
}

.benefit-check {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--text-body);
}

.quote-band {
  background: var(--brown-dark);
  padding: 100px 8%;
}

.quote-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  position: relative;
}

.quote-text::before {
  content: '"';
  font-size: 120px;
  font-family: var(--font-serif);
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -40px;
  left: -20px;
  line-height: 1;
}

.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
}

.project-card__image {
  height: 340px;
  overflow: hidden;
}

.project-card__image img {
  transition: transform 0.6s ease;
}

.project-card:hover .project-card__image img {
  transform: scale(1.06);
}

.project-card__info {
  padding: 20px 0;
  text-align: left;
  background: transparent;
  border-top: none;
}

.project-card__info h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--brown-dark);
}

.project-card__info p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  background: var(--cream);
  max-width: 100%;
  padding: var(--section-gap) 8%;
}

.faq__left .section-title {
  margin-bottom: 20px;
}

.faq__left .body-text {
  margin-bottom: 36px;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--brown-dark);
  text-align: left;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--brown-warm);
}

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-a p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.8;
}

.other-collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.collection-card {
  overflow: hidden;
}

.collection-card__image {
  height: 280px;
  overflow: hidden;
  margin-bottom: 20px;
}

.collection-card__image img {
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.06);
}

.collection-card__info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

/* ======================== ANIMATIONS ======================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1100px) {
  .navbar {
    padding: 16px 32px;
  }

  .navbar.scrolled {
    padding: 10px 32px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .fp-slide .hero-content {
    padding: 0 40px;
  }

  .fp-counter-badge {
    left: 40px;
  }

  .intro-text-col {
    padding: 60px 40px 50px 40px;
  }

  .intro-stats-row {
    padding: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    padding: 48px 40px;
    gap: 40px;
  }

  .footer-bottom {
    padding: 20px 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-featured-card {
    grid-template-columns: 1fr;
  }

  .proj-featured-card .pfc-img-wrap {
    height: 280px;
  }

  .proj-filter-wrap {
    padding: 28px 30px 0;
  }

  .proj-area {
    padding: 28px 30px 60px;
  }

  .proj-footer-top {
    padding: 48px 30px;
  }

  .proj-cta {
    padding: 60px 30px;
  }

  .design-intro {
    padding: 60px 40px;
    gap: 40px;
  }

  .design-services {
    padding: 60px 40px;
  }

  .process-design {
    padding: 60px 40px;
  }

  .design-stats-bar {
    padding: 48px 40px;
    gap: 48px;
  }

  .gallery-stage {
    grid-template-columns: 100px 1fr 100px;
  }

  .gallery-thumbs-strip {
    padding: 0 100px;
  }

  .gallery-thumb {
    width: 80px;
    height: 52px;
  }

  .materials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .environments__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
  }

  .env-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .collection-section {
    grid-template-columns: 1fr;
    padding: 50px 30px;
    gap: 30px;
  }

  .col-img {
    height: 320px;
  }

  .testimonial {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 32px;
  }

  .journal-featured {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

  .journal-grid {
    grid-template-columns: 1fr;
    padding: 40px 30px 70px;
  }

  .contact-body {
    grid-template-columns: 1fr;
    padding: 50px 30px;
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .proj-stats-bar-item:nth-child(2) {
    border-right: none;
  }

  .proj-stats-bar-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .proj-hero-content {
    padding: 0 30px 40px;
  }

  .proj-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .proj-footer-bottom {
    padding: 18px 30px;
  }

  .gallery-featured {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-thumbs-v {
    flex-direction: row;
  }

  .about-intro,
  .human-touch,
  .quality-section {
    grid-template-columns: 1fr;
  }

  .team-lead {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-intro,
  .team-section,
  .process-section {
    padding: 50px 24px;
  }

  .about-mission {
    padding: 60px 24px;
  }

  .human-touch-text,
  .quality-text {
    padding: 48px 24px;
  }

  .legacy,
  .process,
  .faq {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .purpose {
    grid-template-columns: 1fr;
    text-align: left !important;
  }

  .legacy__image {
    height: 320px;
  }

  .purpose__image {
    height: 300px;
  }

  .process__image {
    height: 0px;
    position: static;
  }

  .projects__grid {
    grid-template-columns: 1fr;
  }

  .other-collections__grid {
    grid-template-columns: 1fr;
  }

  .gallery__layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery__main {
    height: 320px;
  }

  .gallery__thumbs {
    flex-direction: row;
    height: 100px;
  }

  .environments__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .env-card {
    height: 260px;
  }

  .env-card--large {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 70px;
  }

  .hero__title {
    font-size: clamp(44px, 13vw, 80px);
  }

  .hero__stats {
    flex-wrap: wrap;
    width: 100%;
  }

  .stat {
    flex: 1;
    min-width: 120px;
  }

  .stat__divider {
    display: none;
  }

  .design-intro {
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }

  .di-img img {
    height: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .service-card {
    aspect-ratio: 4/3;
  }

  .process-cols {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-stage {
    grid-template-columns: 80px 1fr 80px;
    height: 380px;
  }

  .gallery-side {
    height: 260px;
  }

  .gallery-thumbs-strip {
    padding: 0 80px;
  }

  .gallery-thumb {
    width: 60px;
    height: 42px;
  }

  .design-stats-bar {
    gap: 32px;
    padding: 40px 24px;
  }

  .materials__grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-form {
    flex-direction: column;
  }

  .cta-input {
    border-right: 1px solid rgba(201, 169, 110, 0.3);
    border-bottom: none;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__links {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-right .social-icons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 14px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .btn-contact {
    display: none !important;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-scroll {
    left: 24px;
  }

  .design-services,
  .products-section,
  .why-section,
  .cta-banner {
    padding: 60px 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .page-hero-content {
    padding: 0 24px 40px;
  }

  .materials-section,
  .bespoke-cta,
  .all-projects {
    padding: 60px 24px;
  }

  .proj-stats,
  .gallery-hero {
    padding: 40px 24px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .mat-stats {
    gap: 36px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 24px;
    text-align: center;
  }

  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 2px;
    padding: 10px 12px;
    justify-content: flex-start;
  }

  .hero-stat-item {
    padding: 4px 8px;
    font-size: 0.52rem;
  }

  .hero-stat-sep {
    display: none;
  }

  .fp-slide .hero-content {
    padding: 0 20px;
  }

  .fp-counter-badge {
    left: 20px;
    bottom: 20px;
    font-size: 3rem;
  }

  .hero-thumbs-sidebar {
    width: 72px;
  }

  .hero-thumbs-sidebar img {
    width: 52px;
    height: 42px;
  }

  .intro {
    display: flex;
    flex-direction: column;
    background: var(--dark);
  }

  .intro-text-col {
    padding: 36px 24px 24px;
    order: 1;
    background: black;
    color: white;
  }

  .intro-text-col .label {
    color: rgba(255, 255, 255, 0.4);
  }

  .intro-heading {
    color: var(--white);
    font-size: 1.7rem;
  }

  .intro-para {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
  }

  .intro-img-col {
    order: 2;
    min-height: 260px;
  }

  .intro-main-img {
    width: 85%;
    max-width: 400px;
    margin: 20px auto;
  }

  .intro-thumb-wrap {
    display: none;
  }

  .intro-stats-row {
    order: 3;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 0;
  }

  .intro-stat {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    align-items: flex-start;
  }

  .intro-stat:nth-child(even) {
    border-right: none;
  }

  .intro-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
  }

  .intro-stat-num {
    color: var(--white);
    font-size: 2rem;
  }

  .intro-stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.55rem;
  }
}

@media (max-width: 600px) {
  .proj-grid {
    grid-template-columns: 1fr;
  }

  .proj-filter-wrap {
    padding: 24px 20px 0;
    justify-content: flex-start;
  }

  .proj-area {
    padding: 24px 20px 60px;
  }

  .proj-hero-content {
    padding: 0 20px 36px;
  }

  .proj-footer-top {
    grid-template-columns: 1fr;
  }

  .proj-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 18px 20px;
  }

  .proj-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-stage {
    grid-template-columns: 52px 1fr 52px;
    height: 280px;
  }

  .gallery-side {
    height: 180px;
  }

  .gallery-thumbs-strip {
    padding: 0;
  }

  .gallery-thumb {
    width: 44px;
    height: 34px;
  }

  .process-cols {
    grid-template-columns: 1fr;
  }

  .design-intro {
    padding: 36px 18px;
  }
}

.projects-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  padding: 0;
  transition: background 0.4s ease;
}

.projects-page .site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
}

.projects-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.projects-page .nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 50px;
  background-color: #000;
  color: #fff;
  transition:
    background 0.4s,
    backdrop-filter 0.4s,
    padding 0.4s;
}

.projects-page .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #fff;
}

.projects-page .site-nav {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.projects-page .site-nav a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.projects-page .site-nav a:hover,
.projects-page .site-nav a.active {
  color: #fff;
}

.projects-page .site-nav a.active {
  border-bottom: 1px solid #c9a96e;
  padding-bottom: 2px;
}

.projects-page .nav-icons-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.projects-page .nav-icons-row a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.projects-page .nav-icons-row a:hover {
  color: #fff;
}

.projects-page .nav-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
}

.projects-page .nav-cta {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
  color: #fff;
  transition: all 0.3s;
}

.projects-page .nav-cta:hover {
  background: #fff;
  color: #000;
}

.projects-page .nav-toggle {
  display: none !important;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.projects-page .hero-projects {
  position: relative;
  height: 75vh;
  min-height: 500px;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.65) 60%,
      rgba(0, 0, 0, 0.88) 100%
    ),
    url("https://images.unsplash.com/photo-1600121848594-d8644e57abab?w=1800&q=80")
      center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
}

.projects-page .hero-overlay {
  display: none;
}

.projects-page .hero-content-left {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.projects-page .eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 12px;
  display: block;
}

.projects-page .hero-content-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.05;
}

.projects-page .hero-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 440px;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.projects-page .stats-band {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 44px 0;
}

.projects-page .stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.projects-page .stats-grid > div {
  flex: 1;
  position: relative;
}

.projects-page .stats-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.projects-page .stats-grid strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.projects-page .stats-grid span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  display: block;
}

/* ══════════════════════════════════════════
   DARK SECTION
══════════════════════════════════════════ */
.projects-page .section-dark {
  background: #0a0a0a;
  padding: 70px 0;
}

.projects-page .section-dark .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ══════════════════════════════════════════
   GALLERY SHOWCASE
══════════════════════════════════════════ */
.projects-page .project-showcase-big {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.projects-page .project-feature-big {
  height: 460px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1208, #3b2a14, #6b4c2a);
}

.projects-page .proj-feature-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.projects-page .proj-feature-label .proj-feat-tag {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c9a96e;
  display: block;
  margin-bottom: 5px;
}

.projects-page .proj-feature-label h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 4px;
}

.projects-page .proj-feature-label span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.projects-page .project-thumb-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.projects-page .p-thumb {
  flex: 1;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.55;
  transition:
    opacity 0.3s,
    transform 0.3s;
  background-size: cover;
  background-position: center;
  min-height: 0;
}

.projects-page .p-thumb.active,
.projects-page .p-thumb:hover {
  opacity: 1;
  outline: 1px solid rgba(201, 169, 110, 0.6);
}

.projects-page .thumb-1 {
  background: linear-gradient(
    135deg,
    #3c2f2d,
    #a4632c,
    #6e4d39,
    #e3b16e,
    #352722
  );
}

.projects-page .thumb-2 {
  background: linear-gradient(
    135deg,
    #cfbb9a,
    #e3c495,
    #b9945d,
    #f5e7cf,
    #a27d4b
  );
}

.projects-page .thumb-3 {
  background: linear-gradient(
    135deg,
    #f0e4d4,
    #deb07d,
    #f8e8d6,
    #b97c45,
    #f6efe5
  );
}

/* ══════════════════════════════════════════
   LIGHT SECTION — ALL PROJECTS
══════════════════════════════════════════ */
.projects-page .section-light {
  background: #f0ece6;
  padding: 80px 0;
}

.projects-page .section-light .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.projects-page .section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.projects-page .section-heading .eyebrow {
  color: #c9a96e;
}

.projects-page .section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 400;
  color: #1a1714;
  margin: 8px 0 0;
}

/* ── Filter Buttons ── */
.projects-page .filter-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.projects-page .filter-btn {
  padding: 8px 22px;
  border: 1px solid #c8c2ba;
  background: transparent;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  color: #555;
  transition: all 0.25s;
  font-family: "Montserrat", sans-serif;
}

.projects-page .filter-btn:hover {
  border-color: #1a1714;
  color: #1a1714;
}

.projects-page .filter-btn.active {
  background: #1a1714;
  border-color: #1a1714;
  color: #fff;
}

/* ── Cards Grid ── */
.projects-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.projects-page .proj-card {
  background: #0f0e0d;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.projects-page .proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.projects-page .proj-media {
  height: 230px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform 0.5s ease;
  position: relative;
}

.projects-page .proj-card:hover .proj-media {
  transform: scale(1.07);
}

.projects-page .proj-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 9px;
  backdrop-filter: blur(6px);
}

.projects-page .proj-info {
  padding: 16px 18px 20px;
  background: #0f0e0d;
}

.projects-page .proj-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 6px;
  font-weight: 400;
}

.projects-page .proj-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
}

.projects-page .proj-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.projects-page .proj-info .proj-divider {
  width: 28px;
  height: 1px;
  background: #c9a96e;
  margin: 10px 0 8px;
  opacity: 0.5;
}

/* ── Card Media Gradients (placeholder when no image) ── */
.projects-page .media-ritz {
  background: linear-gradient(
    135deg,
    #2a1f14 0%,
    #6b4c2a 40%,
    #c9a96e 70%,
    #3b2714 100%
  );
}

.projects-page .media-palm {
  background: linear-gradient(
    135deg,
    #1a1a2e 0%,
    #4a3728 40%,
    #8b6f4e 70%,
    #c9a96e 100%
  );
}

.projects-page .media-nobu {
  background: linear-gradient(
    135deg,
    #1a0a0a 0%,
    #6b2a2a 40%,
    #c96e6e 70%,
    #3b1414 100%
  );
}

.projects-page .media-boutique {
  background: linear-gradient(
    135deg,
    #0d0d0d 0%,
    #2a2a2a 40%,
    #5a5a5a 70%,
    #1a1a1a 100%
  );
}

.projects-page .media-hyatt {
  background: linear-gradient(
    135deg,
    #0a1a1a 0%,
    #2a4a4a 40%,
    #6e9e9e 70%,
    #1a3a3a 100%
  );
}

.projects-page .media-sky {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #3a3a5a 40%,
    #8a8ab0 70%,
    #2a2a4a 100%
  );
}

.projects-page .media-amara {
  background: linear-gradient(
    135deg,
    #1a1408 0%,
    #3b2a14 40%,
    #c9a96e 70%,
    #0a0a0a 100%
  );
}

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
.projects-page .slim-cta-dark {
  background: #000;
  text-align: center;
  padding: 110px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-page .slim-cta-inner .eyebrow {
  color: #c9a96e;
}

.projects-page .slim-cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: #fff;
  margin: 10px 0 16px;
}

.projects-page .slim-cta-inner > p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-weight: 300;
}

.projects-page .btn-white {
  display: inline-block;
  padding: 13px 36px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s;
}

.projects-page .btn-white:hover {
  background: #c9a96e;
  color: #fff;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.projects-page .site-footer {
  background: #000;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.projects-page .footer-brand-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}

.projects-page .footer-top > div > p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.8;
  max-width: 220px;
  font-weight: 300;
}

.projects-page .footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.projects-page .footer-social a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.projects-page .footer-social a:hover {
  color: #c9a96e;
}

.projects-page .footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
}

.projects-page .footer-nav {
  display: flex;
  gap: 60px;
}

.projects-page .footer-nav h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  font-weight: 500;
}

.projects-page .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.projects-page .footer-nav li {
  margin-bottom: 10px;
}

.projects-page .footer-nav a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 300;
  transition: color 0.2s;
}

.projects-page .footer-nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.projects-page .footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.projects-page .footer-legal {
  display: flex;
  gap: 24px;
}

.projects-page .footer-legal a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  transition: color 0.2s;
}

.projects-page .footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════
   FADE-IN ANIMATION
══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   CARD ANIMATION KEYFRAME
══════════════════════════════════════════ */
@keyframes fadeCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .projects-page .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-page .footer-nav {
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .projects-page .project-showcase-big {
    grid-template-columns: 1fr;
  }

  .projects-page .project-thumb-col {
    flex-direction: row;
  }

  .projects-page .p-thumb {
    flex: 1;
    min-height: 80px;
  }

  .projects-page .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .projects-page .footer-nav {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .projects-page .container,
  .projects-page .stats-grid,
  .projects-page .section-dark .container,
  .projects-page .section-light .container {
    padding: 0 24px;
  }

  .projects-page .site-nav {
    display: none;
  }

  .projects-page .nav-toggle {
    display: block !important;
  }

  .projects-page .hero-projects {
    height: 60vh;
    padding-bottom: 48px;
  }

  .projects-page .stats-grid > div:not(:last-child)::after {
    display: none;
  }

  .projects-page .site-nav.open {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 72px;
    left: 0;
    right: 0;
    background: #0a0a0a;
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 600px) {
  .projects-page .projects-grid {
    grid-template-columns: 1fr;
  }

  .projects-page .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
    text-align: center;
  }

  .projects-page .stats-grid > div:not(:last-child)::after {
    display: none;
  }

  .projects-page .hero-content-left h1 {
    font-size: 38px;
  }

  .projects-page .project-feature-big {
    height: 280px;
  }

  .projects-page .footer-nav {
    flex-direction: column;
    gap: 24px;
  }

  .projects-page .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* =============================================
   KNOTS COLLECTION PAGE — Section Styles
   Uses existing navbar, reveal, buttons from above
   ============================================= */

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1558769132-cb1aea458c5e?w=1800&q=85")
    center / cover no-repeat;
  transform: scale(1.06);
  animation: heroKnotsZoom 14s ease-in-out forwards;
}

@keyframes heroKnotsZoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 6, 2, 0.85) 0%,
    rgba(10, 6, 2, 0.45) 55%,
    rgba(10, 6, 2, 0.18) 100%
  );
  z-index: 1;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 8% 80px;
  width: 100%;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: knotsFadeUp 0.9s 0.3s ease forwards;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(54px, 9vw, 110px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 170px;
  opacity: 0;
  transform: translateY(28px);
  animation: knotsFadeUp 1s 0.5s ease forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__stats {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  max-width: 640px;
  opacity: 0;
  transform: translateY(20px);
  animation: knotsFadeUp 1s 0.75s ease forwards;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
}

.stat__label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  font-weight: 400;
}

.stat__divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 28px;
  flex-shrink: 0;
}

@keyframes knotsFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── LEGACY ── */
.legacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 8%;
  max-width: 1340px;
  margin: 0 auto;
}

.legacy__text .section-label {
  text-align: left;
  color: var(--gold);
}

.legacy__text .section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--text);
  text-align: left;
  margin-bottom: 22px;
}

.legacy__image {
  position: relative;
}

.legacy__image .image-frame {
  height: 480px;
}

.legacy__image .image-frame::after {
  content: "";
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  z-index: -1;
  transition: transform 0.5s ease;
}

.legacy__image:hover .image-frame::after {
  transform: translate(6px, 6px);
}

/* ── PURPOSE ── */
.purpose {
  background: var(--cream-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 8%;
}

.purpose__text .section-label {
  text-align: left;
  color: var(--gold);
}

.purpose__text .section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--text);
  text-align: left;
  margin-bottom: 22px;
}

.purpose__image .image-frame {
  height: 460px;
}

.purpose__image .image-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 55%;
  height: 55%;
  border: 2px solid var(--gold);
  z-index: -1;
}

/* ── MATERIALS ── */
.materials {
  padding: 100px 8%;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.materials__header .section-title {
  color: var(--text);
}

.materials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.material-card {
  background: var(--white);
  padding: 44px 30px;
  text-align: center;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

.material-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.material-card:hover::before {
  transform: scaleX(1);
}
.material-card:hover {
  background: var(--cream-light);
  transform: translateY(-4px);
}

.material-card__icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.material-card:hover .material-card__icon {
  transform: scale(1.18) rotate(12deg);
}

.material-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.material-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
}

/* ── PROCESS ── */
.process {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 8%;
}

.process__left .section-label {
  text-align: left;
  color: var(--gold);
}

.process__left .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 40px;
  font-size: clamp(28px, 3.5vw, 46px);
}

.process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process__step {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding-left 0.3s ease;
  cursor: default;
}

.process__step:first-child {
  padding-top: 0;
}
.process__step:hover {
  padding-left: 8px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  padding-top: 2px;
  font-weight: 500;
}

.process__step strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.process__step:hover strong {
  color: var(--gold);
}

.process__step p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.process__image {
  position: sticky;
  top: 100px;
}
.process__image .image-frame {
  height: 560px;
  overflow: hidden;
}
.process__image .image-frame img {
  transition: transform 0.7s ease;
}
.process__image:hover .image-frame img {
  transform: scale(1.04);
}
.process__image {
  display: block; /* default desktop ke liye */
}

@media (max-width: 768px) {
  .process__image {
    display: none;
  }
}
/* ── ENVIRONMENTS ── */
.environments {
  padding: 100px 8%;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.environments__header .section-title {
  color: var(--text);
}

.environments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 260px;
  gap: 15px;
  margin-top: 50px;
}
.env-card:nth-child(1) {
  grid-column: 1 / 4; /* full width */
  grid-row: 1 / 2;
}

.env-card:nth-child(2),
.env-card:nth-child(3),
.env-card:nth-child(4) {
  grid-row: 2 / 3;
}
.env-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.env-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.env-card:hover img {
  transform: scale(1.07);
}

.env-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  transition: background 0.4s;
}

.env-card:hover .env-card__overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.2) 60%
  );
}

.env-card__overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}

.env-card__overlay p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-weight: 300;
}

/* ── BENEFITS ── */
.benefits {
  background: var(--cream-dark);
  padding: 100px 8%;
  text-align: center;
}

.benefits__header .section-title {
  color: var(--text);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 50px auto 0;
  border: 1px solid var(--border);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.3s;
}

.benefit-item:hover {
  background: var(--cream-light);
}
.benefit-item:nth-child(4n) {
  border-right: none;
}
.benefit-item:nth-last-child(-n + 4) {
  border-bottom: none;
}

.benefit-check {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  font-weight: 600;
}

.benefit-item p {
  font-size: 0.75rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--brown-dark);
  padding: 80px 8%;
  text-align: center;
}

.quote-band__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}

.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  letter-spacing: 0.01em;
  position: relative;
}

.quote-text::before {
  content: "\201C";
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -20px;
  line-height: 1;
  font-family: var(--font-serif);
}

/* ── GALLERY ── */
.gallery {
  padding: 100px 8%;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
}

.gallery__header .section-title {
  color: var(--text);
}

.gallery__layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 6px;
  margin-top: 46px;
  height: 520px;
}

.gallery__main {
  overflow: hidden;
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gallery__thumb {
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery__thumb:hover img {
  transform: scale(1.08);
}

.gallery__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s;
}

.gallery__thumb.active::after,
.gallery__thumb:hover::after {
  background: rgba(201, 169, 110, 0.25);
}

.gallery__thumb.active {
  outline: 2px solid var(--gold);
}

/* ── FEATURED PROJECTS ── */
.projects {
  margin: 100px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.projects__header .section-title {
  color: var(--text);
}

.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  gap: 24px;
}

.project-card {
  overflow: hidden;
  cursor: pointer;
}

.project-card__image {
  height: 320px;
  overflow: hidden;
}
.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.project-card:hover .project-card__image img {
  transform: scale(1.06);
}

.project-card__info {
  padding: 22px 24px;
  background: var(--cream-dark);
  border-top: 2px solid var(--gold);
  text-align: left;
}

.project-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.project-card__info p {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── FAQ ── */
.faq {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  padding: 100px 8%;
  max-width: 1340px;
  margin: 0 auto;
}

.faq__left .section-label {
  text-align: left;
  color: var(--gold);
}
.faq__left .section-title {
  color: var(--text);
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}

.faq-q:hover {
  color: var(--brown-warm);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.35s ease;
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 300;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
}
.faq-a p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-a {
  display: block;
  animation: faqSlideIn 0.35s ease forwards;
}

@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── OTHER COLLECTIONS ── */
.other-collections {
  background: var(--cream);
  padding: 100px 8%;
  text-align: center;
}

.other-collections__header .section-title {
  color: var(--text);
}
.other-collections__header .section-label {
  color: var(--gold);
}

.other-collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.collection-card {
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}

.collection-card__image {
  height: 280px;
  overflow: hidden;
}
.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.collection-card:hover .collection-card__image img {
  transform: scale(1.06);
}

.collection-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 4px;
}

.collection-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
}
.collection-card__info .link-arrow {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── KNOTS PAGE — RESPONSIVE ── */
@media (max-width: 1024px) {
  .legacy,
  .faq {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .purpose {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .purpose__image {
    order: -1;
  }
  .process {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .process__image {
    position: static;
  }
  .materials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .environments__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .env-card--large {
    grid-column: 1 / 3;
  }
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legacy__image .image-frame {
    height: 380px;
  }
  .purpose__image .image-frame {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 0 6% 60px;
  }
  .hero__stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat__divider {
    display: none;
  }
  .stat {
    min-width: 45%;
  }
  .legacy,
  .purpose,
  .process,
  .environments,
  .materials,
  .benefits,
  .gallery,
  .projects,
  .faq,
  .other-collections {
    padding: 70px 6%;
  }
  .legacy__image .image-frame {
    height: 300px;
  }
  .purpose__image .image-frame {
    height: 280px;
  }
  .environments__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .env-card,
  .env-card--large {
    grid-column: auto;
    height: 250px;
  }
  .projects__grid {
    grid-template-columns: 1fr;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .other-collections__grid {
    grid-template-columns: 1fr;
  }
  .gallery__layout {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    height: auto;
  }
  .gallery__thumbs {
    flex-direction: row;
    height: 100px;
  }
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-item:nth-child(2n) {
    border-right: none;
  }
  .benefit-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .benefit-item:nth-child(4n) {
    border-right: 1px solid var(--border);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(42px, 12vw, 70px);
  }
  .materials__grid {
    grid-template-columns: 1fr;
  }
  .benefits__grid {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    border-right: none !important;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100vh;

    background: #000;
    z-index: 9999;

    padding: 80px 24px 24px;
    overflow-y: auto;
    gap: 0;
  }
}

.ds-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}
.ds-reveal.ds-visible {
  opacity: 1;
  transform: translateY(0);
  text-align: center;
}
.ds-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.ds-reveal-left.ds-visible {
  opacity: 1;
  transform: translateX(0);
}
.ds-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.ds-reveal-right.ds-visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger delays */
.ds-d1 {
  transition-delay: 0.05s;
}
.ds-d2 {
  transition-delay: 0.15s;
}
.ds-d3 {
  transition-delay: 0.25s;
}
.ds-d4 {
  transition-delay: 0.35s;
}
.ds-d5 {
  transition-delay: 0.45s;
}
.ds-d6 {
  transition-delay: 0.55s;
}

/* ── Page Hero mobile ── */
@media (max-width: 700px) {
  .page-hero {
    height: 60vh;
    min-height: 320px;
  }
  .page-hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  .page-hero-content p {
    font-size: 0.82rem;
  }
}

/* ── Design Intro mobile ── */
@media (max-width: 768px) {
  .design-intro {
    grid-template-columns: 1fr !important;
    padding: 48px 22px !important;
    gap: 32px !important;
  }
  .di-img {
    order: -1;
  }
  .di-img img {
    height: 260px !important;
    width: 100%;
    object-fit: cover;
  }
  .di-text h2 {
    font-size: 1.75rem !important;
  }
}

/* ── Design Services mobile ── */
@media (max-width: 768px) {
  .design-services {
    padding: 60px 22px !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .service-card {
    aspect-ratio: unset !important;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 2px;
  }
  .service-card img {
    height: 240px !important;
    width: 100%;
    object-fit: cover;
  }
  .service-info {
    padding: 24px 20px !important;
    background: #fff;
  }
  .service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .service-info p {
    font-size: 0.8rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }
}

/* ── Stats Bar mobile ── */
@media (max-width: 768px) {
  .design-stats-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .proj-stat {
    padding: 32px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
  }
  .proj-stat:nth-child(even) {
    border-right: none;
  }
  .proj-stat:nth-child(3),
  .proj-stat:nth-child(4) {
    border-bottom: none;
  }
  .proj-stat span {
    font-size: 2rem;
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 300;
  }
  .proj-stat small {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
  }
}

/* ── Process Section mobile ── */
@media (max-width: 768px) {
  .process-design {
    padding: 60px 22px !important;
  }
  .process-cols {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-top: 40px !important;
  }
  .process-step {
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 20px;
  }
  .process-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 28px;
    width: 3px;
    height: calc(100% - 28px);
    background: linear-gradient(to bottom, var(--gold, #c9a96e), transparent);
  }
  .process-step:last-child {
    border-bottom: none;
  }
  .process-step .label {
    font-size: 0.62rem;
    margin-bottom: 10px;
  }
  .process-step p:last-child {
    font-size: 0.8rem !important;
    line-height: 1.7;
  }
}

/* ── Gallery mobile ── */
@media (max-width: 768px) {
  .design-gallery {
    padding: 60px 0 40px;
  }
  .design-gallery-title {
    padding: 0 22px;
    font-size: 1.75rem !important;
  }
  .gallery-header-rule {
    margin: 0 22px 32px;
  }
  .gallery-stage {
    grid-template-columns: 44px 1fr 44px !important;
    height: 280px !important;
  }
  .gallery-side {
    height: 180px !important;
  }
  .gallery-thumbs-strip {
    padding: 0 12px !important;
    gap: 8px !important;
  }
  .gallery-thumb {
    width: 44px !important;
    height: 34px !important;
  }
}

/* ── CTA mobile ── */
@media (max-width: 768px) {
  .bespoke-cta {
    padding: 70px 24px !important;
  }
  .bespoke-cta h2 {
    font-size: 1.9rem !important;
  }
}

/* ── Mobile Sidebar Drawer (for design.html) ── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mob-overlay.active {
  display: block;
  opacity: 1;
}

.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: rgba(22, 22, 22, 0.93);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-drawer.open {
  transform: translateX(0);
}

.mob-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mob-drawer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #fff;
}
.mob-drawer-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color 0.2s;
}
.mob-drawer-close:hover {
  color: #fff;
}

.mob-drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mob-acc-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mob-acc-btn {
  width: 100%;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  transition: color 0.2s;
}
.mob-acc-btn:hover {
  color: #fff;
}
.mob-acc-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.45);
  transition:
    transform 0.3s ease,
    color 0.2s;
  display: inline-block;
}
.mob-acc-item.mob-acc-open .mob-acc-arrow {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.7);
}
.mob-acc-body {
  display: none;
  flex-direction: column;
  padding: 0 0 8px;
  background: rgba(255, 255, 255, 0.03);
}
.mob-acc-body.open {
  display: flex;
}
.mob-acc-body a {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  padding: 11px 28px 11px 40px;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mob-acc-body a:last-child {
  border-bottom: none;
}
.mob-acc-body a:hover {
  color: rgba(255, 255, 255, 0.9);
}
.mob-plain .mob-acc-btn {
  justify-content: flex-start;
}

.mob-drawer-footer {
  padding: 20px 28px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mob-drawer-cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 20px;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.mob-drawer-cta:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.mob-drawer,
.mob-overlay {
  display: none;
}
@media (max-width: 1024px) {
  .mob-overlay {
    display: block;
    opacity: 0;
  }
  .mob-overlay.active {
    opacity: 1;
  }
  .mob-drawer {
    display: flex;
  }
}
/* ================================================
   HERO SLIDER — Per-slide content + dots
   ================================================ */

/* Slide backgrounds */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity 1.2s ease;
}
.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: slowZoom 10s ease forwards;
}

/* Per-slide text content */
.hero-slide-content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 90px;
  max-width: 680px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.hero-slide-content.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 14px;
  align-items: center;
}
.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.3s,
    width 0.3s;
}
.hero-dot.active {
  background: var(--gold, #c9a96e);
  width: 40px;
}

/* Stats bar — push up above dots */
.hero-stats-bar {
  bottom: 0 !important;
  padding-bottom: 18px !important;
}

@media (max-width: 700px) {
  .hero-slide-content {
    padding: 0 24px;
    max-width: 100%;
    justify-content: flex-end;
    padding-bottom: 140px;
  }
  .hero-dots {
    bottom: 108px;
  }
  .hero-dot {
    width: 20px;
  }
  .hero-dot.active {
    width: 30px;
  }
}

.navbar {
  z-index: 9999 !important; /* Taaki navbar hamesha upar rahe */
}

.nav-logo,
.hamburger {
  position: relative;
  z-index: 10000 !important;
  cursor: pointer;
}

/* Mobile par menu ko display karwane ke liye */
@media (max-width: 768px) {
  #navLinks.open {
    transform: translateX(0);
    display: flex !important;
    opacity: 1;
    visibility: visible;
  }
}

/* ======================== RESET & BASE ======================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

:root {
  --cream: #f5f2ed;
  --cream-dark: #ede9e2;
  --cream-light: #faf7f2;
  --black: #0a0a0a;
  --dark: #1a1714;
  --brown-dark: #1a1108;
  --brown-mid: #3b2a14;
  --brown-warm: #6b4c2a;
  --brown: #4a3020;
  --gold: #c9a96e;
  --gold-light: #d4b88a;
  --text: #2c2c2c;
  --text-light: #6b6560;
  --text-muted: #8a7060;
  --white: #ffffff;
  --border: #ddd8d0;
  --bg-light: #f5f2ed;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", sans-serif;
  --font-body: "Jost", sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.22s ease,
    opacity 0.22s ease;
}
ul {
  list-style: none;
}

/* ======================== NAVBAR ======================== */
.pj-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  background: black;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease;
}
.pj-nav.scrolled {
  background: rgba(8, 8, 8, 0.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Logo */
.pj-nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.pj-nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.pj-nav-logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.32em;
  color: #fff;
  font-weight: 400;
}

.pj-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.pj-nav-links a {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  transition: color 0.2s;
}
.pj-nav-links a:hover,
.pj-nav-links a.active {
  color: #fff;
}

.pj-nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pj-btn-contact {
font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 18px;
    transition: all 0.3s;
}
.pj-btn-contact:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pj-nav-icons {
     display: flex;
    gap: 14px;
    align-items: center;
}
.pj-nav-icons a {
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.pj-nav-icons a:hover {
  color: #fff;
}

.pj-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
}
.pj-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.pj-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.pj-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.pj-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ======================== MOBILE DRAWER ======================== */
.pj-overlay {
  position: fixed;
  inset: 0;
  z-index: 1099;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.pj-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.pj-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(380px, 92vw);
  height: 100dvh;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pj-drawer.open {
  transform: translateX(0);
}

.pj-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pj-drawer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.28em;
  color: #fff;
}
.pj-drawer-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pj-drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}
.pj-drawer-nav a {
  display: block;
  padding: 16px 28px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.pj-drawer-nav a:hover {
  color: #fff;
}
.pj-drawer-nav a.active {
  color: var(--gold);
}
.pj-drawer-foot {
  padding: 20px 28px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pj-drawer-foot a {
  display: block;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 20px;
  transition: all 0.2s;
}
.pj-drawer-foot a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ======================== HERO ======================== */
.pj-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  overflow: hidden;
}
.pj-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1600121848594-d8644e57abab?w=1800&q=80")
    center / cover no-repeat;
}
.pj-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.58) 55%,
    rgba(0, 0, 0, 0.88) 100%
  );
}
.pj-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
.pj-eyebrow {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-weight: 500;
}
.pj-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.pj-hero-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
  line-height: 1.75;
}

/* ======================== STATS ======================== */
.pj-stats {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 44px 0;
}
.pj-stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pj-stat {
  text-align: center;
  position: relative;
}
.pj-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.pj-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}
.pj-stat span {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  display: block;
}

/* ======================== FILTER ======================== */
.pj-filter-wrap {
  background: var(--bg-light);
  padding: 36px 50px 0;
}
.pj-filter-bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 6px;
  justify-content: center;
}
.pj-filter-btn {
  padding: 9px 26px;
  border: 1px solid #c8c2ba;
  background: transparent;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  color: #666;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.25s;
}
.pj-filter-btn:hover {
  border-color: var(--dark);
  color: var(--dark);
}
.pj-filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

/* ======================== PROJECTS SECTION ======================== */
.pj-projects {
  background: var(--bg-light);
  padding: 32px 50px 90px;
}
.pj-projects-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* --- Featured big card --- */
.pj-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  overflow: hidden;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.pj-featured.pj-visible {
  opacity: 1;
  transform: none;
}

.pj-feat-img {
  position: relative;
  height: 390px;
  overflow: hidden;
}
.pj-feat-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.pj-featured:hover .pj-feat-img img {
  transform: scale(1.05);
}

.pj-feat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(201, 169, 110, 0.92);
  color: #fff;
  padding: 4px 11px;
  font-family: var(--font-body);
  font-weight: 500;
}
.pj-feat-body {
  padding: 50px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #faf7f2;
}
.pj-feat-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.pj-pill {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 3px 10px;
  font-family: var(--font-body);
}
.pj-pill.yr {
  border-color: #c8c2ba;
  color: #999;
}

.pj-feat-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 18px;
}
.pj-feat-body p {
  font-size: 13px;
  color: #6b5c4a;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 340px;
}
.pj-feat-meta {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
}
.pj-feat-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #999;
}
.pj-feat-meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}
.pj-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  border-bottom: 1px solid var(--brown);
  padding-bottom: 2px;
  width: fit-content;
  font-weight: 500;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.pj-case-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* --- 3-col grid --- */
.pj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pj-card {
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    box-shadow 0.4s ease;
}
.pj-card.pj-visible {
  opacity: 1;
  transform: none;
}
.pj-card:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.pj-card-media {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.pj-card-media img {
  width: 100%;
  height: 100%;
  transition: transform 0.55s ease;
}
.pj-card:hover .pj-card-media img {
  transform: scale(1.07);
}

.pj-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 9px;
  backdrop-filter: blur(6px);
  font-family: var(--font-body);
  font-weight: 500;
}
.pj-card-body {
  padding: 16px 18px 18px;
  background: #faf7f2;
}
.pj-card-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  color: #999;
}
.pj-card-loc svg {
  color: var(--gold);
  flex-shrink: 0;
}
.pj-card-loc .dot {
  margin: 0 3px;
  opacity: 0.4;
}

.pj-divider {
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 10px 0;
}

.pj-card-body h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 5px;
  line-height: 1.2;
}
.pj-card-desc {
  font-size: 11.5px;
  color: #888;
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 12px;
}
.pj-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.pj-card-yr {
  font-size: 9.5px;
  color: #bbb;
  letter-spacing: 0.06em;
}
.pj-view-link {
  font-size: 8.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.pj-view-link:hover {
  color: var(--gold);
}

/* ======================== CTA ======================== */
.pj-cta {
  background: #000;
  text-align: center;
  padding: 110px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pj-cta .pj-eyebrow {
  margin-bottom: 10px;
}
.pj-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.pj-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.8;
  font-weight: 300;
}
.pj-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.pj-cta-primary {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.3s;
}
.pj-cta-primary:hover {
  background: #fff;
  color: #000;
}
.pj-cta-secondary {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: all 0.3s;
}
.pj-cta-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

/* ======================== FOOTER ======================== */
.pj-footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 70px 0 0;
}
.pj-footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
}
.pj-footer-top {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 60px;
  padding-bottom: 52px;
}
.pj-footer-brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.28em;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.pj-footer-brand p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.85;
  max-width: 220px;
  font-weight: 300;
}
.pj-footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.pj-footer-socials a {
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.pj-footer-socials a:hover {
  color: var(--gold);
}
.pj-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pj-footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 20px;
  font-weight: 500;
}
.pj-footer-col li {
  margin-bottom: 11px;
}
.pj-footer-col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  transition: color 0.2s;
}
.pj-footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.pj-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.6;
}
.pj-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pj-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pj-footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
}
.pj-footer-legal {
  display: flex;
  gap: 22px;
}
.pj-footer-legal a {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.2s;
}
.pj-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .pj-nav-links {
    display: none;
  }
  .pj-hamburger {
    display: flex;
  }
  .pj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .pj-nav {
    padding: 0 24px;
  }
  .pj-hero {
    min-height: 60vh;
    padding-bottom: 48px;
  }
  .pj-hero-content {
    padding: 0 24px;
  }
  .pj-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
    padding: 0 24px;
  }
  .pj-stat:not(:last-child)::after {
    display: none;
  }
  .pj-filter-wrap {
    padding: 28px 24px 0;
  }
  .pj-projects {
    padding: 26px 24px 70px;
  }
  .pj-featured {
    grid-template-columns: 1fr;
  }
  .pj-feat-img {
    height: 260px;
  }
  .pj-feat-body {
    padding: 30px 26px;
  }
  .pj-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .pj-cta {
    padding: 80px 24px;
  }
  .pj-footer-wrap {
    padding: 0 24px;
  }
  .pj-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pj-footer-cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .pj-stats-grid {
    padding: 0 20px;
  }
  .pj-filter-wrap {
    padding: 24px 20px 0;
  }
  .pj-filter-bar {
    flex-wrap: wrap;
  }
  .pj-filter-btn {
    padding: 8px 16px;
  }
  .pj-projects {
    padding: 22px 20px 60px;
  }
  .pj-footer-wrap {
    padding: 0 20px;
  }
  .pj-footer-cols {
    grid-template-columns: 1fr;
  }
  .pj-cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .pj-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}


.testimonial {
  position: relative;
}

/* 👇 floating box */
.ranked-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  padding: 90px 80px;
  align-items: center;
}

/* heading */
.ranked-box h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color:var(--gold);
}

/* logos grid */
.ranked-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  align-items: center;
}

.ranked-logos img {
  max-width: 120px;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.8;
}
@media (max-width: 768px) {
  .ranked-box {
    margin-top: -80px;
    padding: 30px 20px;
  }

  .ranked-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}