/* ============================================================
   BURHAN PAL · EDITORIAL PORTFOLIO STYLESHEET
   Client-Approved Warm Sand & Charcoal Aesthetic
   ============================================================ */

:root {
  --sand-bg: #cec4b4;
  --sand-bg-light: #d8cebf;
  --sand-card: #c2b6a4;
  --sand-border: #141414;
  --sand-text: #141414;
  --sand-muted: #4a453f;
  --dark-bg: #141414;
  --dark-card: #1c1a18;
  --dark-border: rgba(255, 255, 255, 0.12);
  --dark-text: #cec4b4;
  --accent: #141414;
  --max-width: 1280px;
  --transition-smooth: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  background-color: var(--sand-bg);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--sand-text);
  line-height: 1.5;
  overflow-x: hidden;
}

/* ============================================================
   CUSTOM LUXURY EDITORIAL SCROLLBAR (WEBSITE)
   ============================================================ */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #141414;
}

::-webkit-scrollbar-thumb {
  background: #5c544a;
  border-radius: 9999px;
  border: 2px solid #141414;
  transition: background 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #cec4b4;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #5c544a #141414;
}

/* Signature Ultra-Wide Display Typography */
.font-display, h1, h2, h3, .brand-title {
  font-family: 'Unbounded', 'Syne', sans-serif;
  letter-spacing: -0.04em;
}

.container-custom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   EDITORIAL NAVBAR
   ============================================================ */
.navbar-editorial {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(206, 196, 180, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  padding: 16px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #141414;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #141414;
  color: #cec4b4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.brand-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #141414;
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-pill-btn {
  border: 1px solid rgba(20, 20, 20, 0.7);
  border-radius: 9999px;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-pill-btn:hover, .nav-pill-btn.active {
  background: #141414;
  color: #cec4b4;
  text-decoration: none;
}

/* Mobile Hamburger Button */
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.4);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition-smooth);
}

.nav-mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #141414;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-mobile-toggle:hover {
  background: #141414;
  border-color: #141414;
}

.nav-mobile-toggle:hover span {
  background: #cec4b4;
}

/* Mobile Drawer Overlay */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 12, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #CEC4B4;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-backdrop.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
}

.mobile-drawer-close {
  background: rgba(20, 20, 20, 0.08);
  border: 1px solid rgba(20, 20, 20, 0.2);
  color: #141414;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
  background: #141414;
  color: #cec4b4;
}

.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #141414;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  transition: var(--transition-smooth);
}

.mobile-drawer-links a span {
  font-family: monospace;
  font-size: 0.75rem;
  color: #5c544a;
}

.mobile-drawer-links a:hover, .mobile-drawer-links a.active {
  color: #5c544a;
  padding-left: 6px;
}

@media (max-width: 768px) {
  .nav-pills {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }
}

/* ============================================================
   PAGE HERO / HEADER (FOR SUB-PAGES)
   ============================================================ */
.page-header-editorial {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  margin-bottom: 50px;
}

.page-header-badge {
  display: inline-block;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c544a;
  margin-bottom: 12px;
  font-weight: 700;
}

.page-header-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #141414;
  margin-bottom: 16px;
}

.page-header-desc {
  font-size: 1.1rem;
  max-width: 680px;
  color: #3b3631;
  line-height: 1.6;
}

/* ============================================================
   HOMEPAGE HERO SECTION
   ============================================================ */
.hero-capturing {
  padding: 40px 0 60px;
}

.giant-headline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 9.5rem);
  color: #141414;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  user-select: none;
}

.hero-subline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 40px;
  color: #141414;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .hero-cards-grid {
    grid-template-columns: 1fr;
  }
}

.card-dark {
  background: #161616;
  color: #e4ddd4;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
}

.card-dark p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d4cbbe;
}

.card-dark-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f0e8db;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-dark-link .arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.card-dark-link:hover .arrow-circle {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.card-photo {
  border-radius: 28px;
  overflow: hidden;
  min-height: 400px;
  background: #c2b6a4;
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.card-photo:hover img {
  transform: scale(1.04);
}

/* ============================================================
   ABOUT ME SECTION
   ============================================================ */
.about-section {
  padding: 60px 0;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}

.about-header-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .about-header-grid {
    grid-template-columns: 1fr;
  }
}

.section-h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.about-text {
  font-size: 1.05rem;
  color: #242424;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .three-photo-strip {
    grid-template-columns: 1fr;
  }
}

.strip-item {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #c2b6a4;
}

.strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.strip-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   FEATURED WORKS DARK SECTION
   ============================================================ */
.featured-dark-section {
  background: #141414;
  color: #cec4b4;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-dark-section h2 {
  color: #cec4b4;
  margin-bottom: 40px;
}

.horizontal-banner {
  position: relative;
  height: 180px;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  text-decoration: none;
  color: #cec4b4;
}

.horizontal-banner:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.horizontal-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.7s ease;
}

.horizontal-banner:hover img {
  transform: scale(1.04);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.banner-text-left, .banner-text-right {
  position: relative;
  z-index: 3;
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  text-transform: uppercase;
}

/* ============================================================
   PROJECTS BENTO GRID
/* ============================================================
   PROJECTS BENTO GRID (PERFECT LUXURY EDITORIAL ALIGNMENT)
   ============================================================ */
.projects-section {
  padding: 80px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  height: clamp(560px, 48vw, 700px);
}

.bento-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 0;
}

.bento-row-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 1.08;
  min-height: 0;
}

.bento-card-left-bottom {
  flex: 1;
  min-height: 0;
}

.bento-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 0;
}

.bento-card-right-top {
  flex: 1.28;
  min-height: 0;
}

.bento-card-right-bottom {
  flex: 0.82;
  min-height: 0;
}

.bento-card {
  border-radius: 24px;
  overflow: hidden;
  background: #c2b6a4;
  position: relative;
  cursor: pointer;
  height: 100%;
  width: 100%;
  min-height: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-wide-bottom {
  border-radius: 24px;
  overflow: hidden;
  background: #c2b6a4;
  position: relative;
  cursor: pointer;
  width: 100%;
  height: clamp(240px, 24vw, 360px);
  margin-top: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.bento-card:hover, .bento-wide-bottom:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.bento-card img, .bento-wide-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img, .bento-wide-bottom:hover img {
  transform: scale(1.05);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.88) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 5;
}

.bento-card:hover .bento-overlay, .bento-wide-bottom:hover .bento-overlay {
  opacity: 1;
}

.bento-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 12px;
}

.bento-card-cat {
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8ad9e;
  font-weight: 700;
}

.bento-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(0.95rem, 1.25vw, 1.3rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0;
}

.bento-overlay-pill {
  align-self: flex-start;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(206, 196, 180, 0.95);
  color: #141414;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.bento-card:hover .bento-overlay-pill, .bento-wide-bottom:hover .bento-overlay-pill {
  transform: translateY(-2px);
  background: #ffffff;
}

/* Responsive adjustment for Mobile and Tablets */
@media (max-width: 899px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .bento-col-left, .bento-col-right {
    height: auto;
  }
  .bento-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: auto;
  }
  .bento-row-top .bento-card {
    aspect-ratio: 1/1;
    height: auto;
  }
  .bento-card-left-bottom {
    aspect-ratio: 16/10;
    height: auto;
  }
  .bento-card-right-top {
    aspect-ratio: 4/5;
    height: auto;
  }
  .bento-card-right-bottom {
    aspect-ratio: 16/10;
    height: auto;
  }
  .bento-wide-bottom {
    aspect-ratio: 16/9;
    height: auto;
  }
}

@media (max-width: 600px) {
  .bento-row-top {
    grid-template-columns: 1fr;
  }
  .bento-row-top .bento-card {
    aspect-ratio: 4/3;
  }
}

/* ============================================================
   FILTER TABS (FOR PORTFOLIO / GALLERY)
   ============================================================ */
.filter-tabs-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
  margin-bottom: 50px;
}

.filter-pill {
  border: 1.5px solid rgba(20, 20, 20, 0.3);
  background: transparent;
  color: #141414;
  border-radius: 9999px;
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.filter-pill:hover, .filter-pill.active {
  background: #141414;
  color: #cec4b4;
  border-color: #141414;
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.15);
}

/* ============================================================
   PORTFOLIO ARCHIVE CARDS (LUXURY FULL-BLEED EDITORIAL)
   ============================================================ */
.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
  }
}

.portfolio-item-card {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #c2b6a4;
  cursor: pointer;
  border: 1px solid rgba(20, 20, 20, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.portfolio-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.portfolio-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item-card:hover img {
  transform: scale(1.06);
}

/* Luxury Bottom Gradient Overlay on Photo */
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 13, 12, 0.75) 75%, rgba(14, 13, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 26px;
  z-index: 2;
  transition: background 0.4s ease;
}

.portfolio-item-card:hover .portfolio-card-overlay {
  background: linear-gradient(180deg, rgba(14, 13, 12, 0.1) 20%, rgba(14, 13, 12, 0.85) 65%, rgba(14, 13, 12, 0.98) 100%);
}

.portfolio-meta-badge {
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8ad9e;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-card-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.portfolio-card-action {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s ease;
}

.portfolio-item-card:hover .portfolio-card-action {
  opacity: 1;
  transform: translateY(0);
}

.pill-explore-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(206, 196, 180, 0.2);
  color: #cec4b4;
  border: 1px solid rgba(206, 196, 180, 0.45);
  padding: 8px 18px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
}

/* ============================================================
   LIGHTBOX MODAL (GALLERY)
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.gallery-card {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #c2b6a4;
  position: relative;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 16px;
  font-family: 'Unbounded', sans-serif;
  color: #cec4b4;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #cec4b4;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #cec4b4;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-nav-btn:hover {
  background: #cec4b4;
  color: #141414;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */
.service-block {
  background: #161616;
  color: #cec4b4;
  border-radius: 28px;
  padding: 48px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 850px) {
  .service-block {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

.service-block-image {
  border-radius: 20px;
  overflow: hidden;
  height: 360px;
  background: #c2b6a4;
}

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

.service-deliverables {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-deliverables li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.service-deliverables li i {
  color: #d4cbbe;
  font-size: 0.8rem;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 50px 0;
}

.process-card {
  background: rgba(20, 20, 20, 0.05);
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 20px;
  padding: 28px;
}

.process-step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #141414;
  opacity: 0.3;
  margin-bottom: 10px;
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 80px;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card-info {
  background: #161616;
  color: #cec4b4;
  border-radius: 28px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item-group {
  margin-bottom: 30px;
}

.contact-form-card {
  background: rgba(20, 20, 20, 0.04);
  border: 1px solid rgba(20, 20, 20, 0.15);
  border-radius: 28px;
  padding: 48px;
}

.form-group-editorial {
  margin-bottom: 24px;
}

.form-label-editorial {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #141414;
  margin-bottom: 8px;
}

.form-control-editorial {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(20, 20, 20, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #141414;
  font-family: inherit;
  transition: var(--transition-smooth);
}

.form-control-editorial:focus {
  outline: none;
  border-color: #141414;
  background: rgba(255, 255, 255, 0.4);
}

.btn-submit-editorial {
  background: #141414;
  color: #cec4b4;
  border: none;
  border-radius: 9999px;
  padding: 16px 36px;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.btn-submit-editorial:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER & BIG BURHAN PAL BANNER
   ============================================================ */
.footer-editorial {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(20, 20, 20, 0.15);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
}

.footer-giant-banner {
  background: #141414;
  color: #cec4b4;
  border-radius: 28px;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.giant-photography-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 11vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #cec4b4;
}

/* ============================================================
   PROJECT DETAILS INTERACTIVE MODAL (AS IN PREVIOUS VERSION)
   ============================================================ */
.project-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow-y: auto;
}

.project-modal-backdrop.active {
  display: flex;
}

.project-modal-container {
  background: #181715;
  border: 1px solid rgba(206, 196, 180, 0.2);
  border-radius: 28px;
  max-width: 1050px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  color: #cec4b4;
}

@media (max-width: 860px) {
  .project-modal-container {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }
}

.project-modal-photo {
  background: #11100f;
  overflow: hidden;
  border-radius: 28px 0 0 28px;
  min-height: 480px;
  position: relative;
}

@media (max-width: 860px) {
  .project-modal-photo {
    border-radius: 28px 28px 0 0;
    min-height: 320px;
    max-height: 400px;
  }
}

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

.project-modal-details {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(206, 196, 180, 0.35);
  color: #cec4b4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-smooth);
  z-index: 100;
  backdrop-filter: blur(8px);
}

.modal-close-btn i, .modal-close-btn svg {
  font-size: 17px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
}

.modal-close-btn:hover {
  background: #cec4b4;
  color: #141414;
  border-color: #cec4b4;
  transform: rotate(90deg);
}

.modal-nav-arrows {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.modal-arrow-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cec4b4;
  padding: 8px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.modal-arrow-btn:hover {
  background: #cec4b4;
  color: #141414;
}

/* ============================================================
   FLOATING SCROLL TO TOP ARROW BUTTON
   ============================================================ */
.floating-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #141414;
  color: #cec4b4;
  border: 1.5px solid #cec4b4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.floating-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-scroll-top:hover {
  background: #cec4b4;
  color: #141414;
  border-color: #141414;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}

.floating-scroll-top i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.floating-scroll-top:hover i {
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .floating-scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
  .floating-scroll-top i {
    font-size: 14px;
  }
}

/* ============================================================
   ABOUT PAGE RESPONSIVE CLASSES
   ============================================================ */
.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 70px;
}

.about-bio-photo {
  border-radius: 28px;
  overflow: hidden;
  background: #c2b6a4;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  max-height: 560px;
}

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

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(20,20,20,0.15);
  padding-top: 25px;
}

.about-bts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-bts-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #c2b6a4;
}

.about-bts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-bts-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 860px) {
  .about-bio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-bio-photo {
    max-height: 400px;
  }
  .about-bts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-bts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
/* ============================================================
   PROJECT DETAIL PAGE (mirrors modal design as full page)
   ============================================================ */
.project-detail-section {
  padding: 40px 0 80px;
  background: #181715;
  color: #cec4b4;
  min-height: 70vh;
}

.project-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8e867c;
  margin-bottom: 30px;
}

.project-breadcrumb a {
  color: #b8ad9e;
  text-decoration: none;
  transition: color 0.25s ease;
}

.project-breadcrumb a:hover { color: #ffffff; }
.project-breadcrumb .sep { color: #5c544a; }
.project-breadcrumb .current { color: #cec4b4; font-weight: 700; }

.project-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  background: #181715;
  border: 1px solid rgba(206, 196, 180, 0.15);
  border-radius: 28px;
  padding: 30px;
  margin-bottom: 70px;
}

.project-detail-photo {
  border-radius: 20px;
  overflow: hidden;
  background: #11100f;
  min-height: 520px;
  max-height: 620px;
}

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

.project-detail-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
}

.project-detail-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(206, 196, 180, 0.15);
}

.project-detail-badge {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b8ad9e;
  font-weight: 700;
}

.project-detail-year {
  font-family: monospace;
  font-size: 0.85rem;
  color: #8e867c;
}

.project-detail-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 800;
}

.project-detail-info {
  margin-bottom: 22px;
  font-size: 0.88rem;
  color: #9c9386;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.project-detail-info strong { color: #cec4b4; }

.project-detail-desc {
  font-size: 0.98rem;
  color: #d4cbbe;
  line-height: 1.75;
  margin-bottom: 26px;
}

.project-detail-deliverables-wrap { margin-bottom: 28px; }

.project-detail-deliverables-label {
  display: block;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8e867c;
  margin-bottom: 10px;
}

.project-detail-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deliverable-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #d4cbbe;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 9999px;
  font-family: monospace;
}

.project-detail-footer {
  border-top: 1px solid rgba(206, 196, 180, 0.15);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.project-inquire-btn {
  background: #cec4b4;
  color: #141414 !important;
  border-color: #cec4b4;
  padding: 12px 28px;
  font-size: 0.85rem;
  font-weight: 800;
}

.project-inquire-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #141414 !important;
}

.project-detail-nav {
  display: flex;
  gap: 10px;
}

.project-nav-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cec4b4;
  padding: 9px 18px;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.project-nav-link:hover {
  background: #cec4b4;
  color: #141414;
  border-color: #cec4b4;
}

/* Related Projects */
.project-related-section { margin-top: 20px; }

.project-related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(206, 196, 180, 0.15);
  flex-wrap: wrap;
  gap: 12px;
}

.project-related-header h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: #cec4b4;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .project-detail-grid {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 25px;
  }
  .project-detail-photo {
    min-height: 320px;
    max-height: 420px;
  }
  .project-detail-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .project-detail-nav {
    justify-content: space-between;
  }
  .project-inquire-btn { text-align: center; }
}

/* ============================================================
   PROJECT ALBUM GALLERY & LIGHTBOX
   ============================================================ */
.portfolio-album-badge {
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #141414;
  background: #cec4b4;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.project-gallery-section {
  margin-top: 50px;
  margin-bottom: 70px;
}

.project-gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(206, 196, 180, 0.15);
  flex-wrap: wrap;
  gap: 15px;
}

.project-gallery-count-tag {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8e867c;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.album-photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #11100f;
  border: 1px solid rgba(206, 196, 180, 0.12);
  cursor: pointer;
  aspect-ratio: 4/5;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.album-photo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(206, 196, 180, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.album-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.album-photo-card:hover img {
  transform: scale(1.05);
}

.album-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 13, 12, 0.85) 0%, rgba(14, 13, 12, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.album-photo-card:hover .album-photo-overlay {
  opacity: 1;
}

.album-photo-zoom-icon {
  align-self: flex-end;
  background: rgba(206, 196, 180, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.album-photo-card:hover .album-photo-zoom-icon {
  transform: scale(1.08);
  background: #cec4b4;
  color: #141414;
}

.album-photo-caption {
  font-family: monospace;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cec4b4;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Lightbox Modal */
.editorial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(14px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 40px;
}

.editorial-lightbox.active {
  display: flex;
}

.lightbox-topbar {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000000;
}

.lightbox-title-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.lightbox-proj-title {
  color: #cec4b4;
  font-weight: 700;
}

.lightbox-sep {
  color: #5c544a;
}

.lightbox-counter {
  color: #8e867c;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cec4b4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.25s ease;
}

.lightbox-close-btn:hover {
  background: #cec4b4;
  color: #141414;
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cec4b4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.25s ease;
  z-index: 1000000;
}

.lightbox-arrow:hover {
  background: #cec4b4;
  color: #141414;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  display: block;
}

.lightbox-caption {
  margin-top: 14px;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cec4b4;
  text-align: center;
}

@media (max-width: 768px) {
  .project-album-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }
  .lightbox-topbar {
    top: 15px;
    left: 15px;
    right: 15px;
  }
  .lightbox-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}