/* ==========================================================================
   Nehaa Wadhwaa — Contemporary Texture Art & Design Portfolio Stylesheet
   ========================================================================== */

/* --- Fine Art & Luxury Design Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Italiana&family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- Custom Properties / Design Tokens --- */
:root {
  --primary-olive: #3b3f1c;
  --bg-color: #F7F4EF;
  --off-white: #FAF8F5;
  --text-main: #2C2D25;
  --text-dark: #1A1B12;
  --text-muted: rgba(44, 45, 37, 0.7);
  --text-muted-dark: rgba(26, 27, 18, 0.75);
  --border-color: rgba(59, 63, 28, 0.12);
  --border-dark: rgba(59, 63, 28, 0.18);
  --light-sage: #E3E5DA;

  --font-display: 'Cormorant Garamond', 'Italiana', Georgia, serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1540px;
  --content-width: 1380px;
  --container-padding: 0 40px;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ==========================================================================
   FIXED STICKY HEADER NAVIGATION BAR
   ========================================================================== */
.header-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 50px;
  transition: background-color 0.35s ease, padding 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.header-nav-bar.scrolled {
  background-color: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(14px);
  padding: 16px 50px;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  position: relative;
  min-height: 62px; /* Maintain height of the bar even when the logo is absolute-positioned */
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 120;
  padding: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden !important;
}

/* Header Logo (Always visible in index-2.html) */
.header-logo-link {
  display: flex;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .header-logo-link {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateY(0);
  }
}

.header-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: filter 0.35s ease;
}

.header-nav-bar.scrolled .header-logo {
  filter: brightness(0) saturate(100%) invert(21%) sepia(21%) saturate(1512%) hue-rotate(34deg) brightness(97%) contrast(92%);
}

/* ==========================================================================
   BESPOKE COMMISSIONS SECTION — Two Column: Info + Contact Form
   ========================================================================== */
.commission-section {
  background-color: var(--light-sage);
  color: var(--text-main);
  padding: 120px 0 140px;
  min-height: auto;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.commission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.commission-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.commission-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-olive);
}

.commission-heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--text-dark);
}

.commission-description {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
}

.commission-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.commission-feature-list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.commission-feature-list li span {
  color: var(--primary-olive);
  font-size: 18px;
}

/* Contact Form Panel */
.commission-form-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 48px;
  box-shadow: 0 15px 40px rgba(59, 63, 28, 0.06);
}

.form-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.65;
}

.commission-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-select,
.form-textarea {
  background: #FAF9F6;
  border: 1px solid rgba(59, 63, 28, 0.15);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(59, 63, 28, 0.5);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-select option {
  background: #FFFFFF;
  color: var(--text-dark);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary-olive);
  background: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--primary-olive);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  align-self: flex-start;
  margin-top: 6px;
}

.form-submit-btn:hover {
  background: #2D3015;
  transform: translateY(-2px);
}

/* ==========================================================================
   INSTAGRAM FEED SECTION
   ========================================================================== */
.instagram-feed-section {
  background-color: var(--bg-color);
  padding: 100px 0 0;
  border-top: 1px solid var(--border-color);
}

.instagram-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.instagram-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-olive);
  display: block;
  margin-bottom: 8px;
}

.instagram-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.instagram-follow-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-bottom: 2px solid rgba(59, 63, 28, 0.3);
  padding-bottom: 5px;
  white-space: nowrap;
  transition: border-color 0.25s ease, gap 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}

.instagram-follow-btn:hover {
  border-color: var(--primary-olive);
  color: var(--primary-olive);
  opacity: 1;
}

/* Full-bleed horizontal Instagram image grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  width: 100%;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.35s ease;
  filter: saturate(0.85);
}

.insta-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1);
}

.insta-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59, 63, 28, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.insta-item:hover .insta-hover-overlay {
  opacity: 1;
}

.insta-icon {
  font-size: 32px;
  color: #FFFFFF;
}

/* ==========================================================================
   LARGE EXPANDED FOOTER
   ========================================================================== */
.footer {
  background-color: #EFECE6;
  color: var(--text-main);
  padding: 0;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 100px;
  align-items: start;
}

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(21%) saturate(1512%) hue-rotate(34deg) brightness(97%) contrast(92%);
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  display: block;
  line-height: 1.1;
}

.footer-brand-sub {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.footer-statement {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  font-weight: 300;
}

.footer-credentials {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-muted);
  border-left: 2px solid var(--primary-olive);
  padding-left: 16px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-pill {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  border: 1px solid rgba(59, 63, 28, 0.3);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.footer-social-pill:hover {
  background: var(--primary-olive);
  border-color: var(--primary-olive);
  color: #FFFFFF;
  opacity: 1;
}

/* Footer Links Grid (3 columns) */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(59, 63, 28, 0.5);
  margin-bottom: 6px;
  display: block;
}

.footer-nav-item {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: block;
}

.footer-nav-item:hover {
  color: var(--primary-olive);
  opacity: 1;
}

.footer-location-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-olive);
  background: rgba(59, 63, 28, 0.08);
  border: 1px solid rgba(59, 63, 28, 0.2);
  padding: 6px 12px;
  border-radius: 2px;
  display: inline-block;
  margin-top: 8px;
  width: fit-content;
}

/* Footer Quote Bar */
.footer-quote-bar {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 40px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
}

.footer-quote-attr {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(59, 63, 28, 0.5);
  white-space: nowrap;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(59, 63, 28, 0.5);
}

.footer-bottom-bar a {
  color: var(--primary-olive) !important;
}




.header-nav-bar.scrolled .header-logo-link {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (min-width: 769px) {
  .header-nav-bar.scrolled .header-logo-link {
    transform: translateY(-50%) translateY(0);
  }
}

/* Nav Links — right-aligned */
.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  z-index: 10;
  flex: 1;
  justify-content: flex-end;
}

.header-nav-bar.scrolled .header-container {
  justify-content: flex-start;
}

.header-nav-bar.scrolled .header-nav {
  justify-content: flex-end;
}

.header-nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF !important;
  opacity: 1 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.header-nav-link:hover {
  color: #FFFFFF !important;
  opacity: 0.75 !important;
  transform: translateY(-1px);
}

.header-nav-bar.scrolled .header-nav-link {
  color: var(--text-dark) !important;
  text-shadow: none;
}

.header-nav-bar.scrolled .header-nav-link:hover {
  color: var(--primary-olive) !important;
  opacity: 0.85 !important;
}

.header-nav-bar.scrolled .hamburger-line {
  background-color: var(--text-dark);
}

.mobile-menu-toggle.active .hamburger-line {
  background-color: var(--text-dark) !important;
}

/* ==========================================================================
   HERO SECTION (6 Fullscreen 9:16 Images Carousel - 3 Visible at a time)
   ========================================================================== */
.hero {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  background-color: #3b3f1c;
  border-bottom: 1px solid var(--border-color);
}

/* Hero Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

.video-mobile {
  display: none;
}

.video-desktop {
  display: block;
}

/* Mobile responsive swap */
@media (max-width: 768px) {
  .video-desktop {
    display: none;
  }
  .video-mobile {
    display: block;
  }
}

/* Background Color Overlay #3b3f1c */
.hero-color-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(59, 63, 28, 0.78);
  backdrop-filter: blur(2px);
  z-index: 2;
}

/* Centered Logo Foreground */
.hero-center-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 8;
  padding: 20px 20px clamp(40px, 8vh, 80px) 20px;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-center-wrapper.scrolled-out {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.hero-brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: auto;
}

.hero-logo-center {
  max-width: 720px;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
  margin-bottom: 24px;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.65);
  line-height: 1.05;
}

.hero-brand-tagline {
  font-family: var(--font-heading);
  font-size: clamp(11px, 1.4vw, 16px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   ABOUT US SECTION (Full Screen Bold Layout)
   ========================================================================== */
.about-section {
  background-color: var(--off-white);
  color: var(--text-dark);
  padding: 140px 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #3b3f1c;
  text-transform: uppercase;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.about-subheading {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #3b3f1c;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-paragraph {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted-dark);
  font-weight: 400;
}

.about-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #3b3f1c;
  padding-bottom: 6px;
  width: fit-content;
  margin-top: 14px;
  transition: gap 0.25s ease;
}

.about-cta:hover {
  gap: 16px;
  opacity: 1;
}

.about-image-wrapper {
  width: 100%;
  height: 640px;
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(59, 63, 28, 0.92);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 12px;
  padding: 8px 16px;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   ARTISTIC PHILOSOPHY STRIP (Full Screen Impact)
   ========================================================================== */
/* ==========================================================================
   ARTIST'S PHILOSOPHY SECTION
   ========================================================================== */
.philosophy-section {
  background-image: url('../assets/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-main);
  padding: 130px 0;
  position: relative;
  z-index: 0;
  /* border-bottom: 1px solid var(--border-color); */
}

.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 244, 239, 0.96) 0%, rgba(226, 229, 212, 0.94) 50%, rgba(247, 244, 239, 0.96) 100%);
  z-index: -1;
}

.philosophy-header {
  margin-bottom: 40px;
}

.philosophy-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary-olive);
  text-transform: uppercase;
}

.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  margin-top: 6px;
  color: var(--text-dark);
}

.philosophy-quote-wrapper {
  margin-bottom: 60px;
  padding: 40px 48px;
  background: rgba(59, 63, 28, 0.04);
  border-left: 3px solid var(--primary-olive);
  border-top: 1px solid rgba(59, 63, 28, 0.12);
  border-bottom: 1px solid rgba(59, 63, 28, 0.12);
  border-right: 1px solid rgba(59, 63, 28, 0.12);
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.philosophy-main-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 42px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.philosophy-card {
  background: rgba(59, 63, 28, 0.03);
  border: 1px solid rgba(59, 63, 28, 0.12);
  padding: 44px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.philosophy-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-olive);
  background: rgba(59, 63, 28, 0.06);
}

.philosophy-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.philosophy-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: rgba(59, 63, 28, 0.4);
  line-height: 1;
}

.philosophy-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.philosophy-card-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}

/* ==========================================================================
   SELECTED COLLABORATIONS & PROJECTS SECTION
   ========================================================================== */
.collaborations-section {
  background-color: var(--off-white);
  color: var(--text-dark);
  padding: 130px 0;
  border-bottom: 1px solid var(--border-dark);
}

.collaborations-header {
  margin-bottom: 60px;
}

.collaborations-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #3b3f1c;
  text-transform: uppercase;
}

.collaborations-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1.08;
  margin-top: 6px;
  margin-bottom: 16px;
}

.collaborations-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted-dark);
  font-weight: 300;
  max-width: 680px;
  line-height: 1.6;
}

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

.collaborator-card {
  background: #FFFFFF;
  border: 1px solid var(--border-dark);
  padding: 36px 28px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.35s ease;
}

.collaborator-card:hover {
  background: rgba(59, 63, 28, 0.02);
  border-color: #3b3f1c;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.collab-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.collaborator-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.2;
}

.collaborator-location {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted-dark);
  font-weight: 300;
}

/* Collaborations Banner for Clients & Ongoing Project */
.collaborations-banner {
  background: linear-gradient(135deg, rgba(59, 63, 28, 0.08) 0%, rgba(59, 63, 28, 0.03) 100%);
  border: 1px solid rgba(59, 63, 28, 0.25);
  padding: 36px 48px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}

.banner-icon {
  font-size: 22px;
  color: #3b3f1c;
}

.banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-heading {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
}

.banner-desc {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
}

.banner-divider {
  width: 1px;
  height: 50px;
  background: rgba(59, 63, 28, 0.15);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background-color: #7b8e39;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(123, 142, 57, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(123, 142, 57, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(123, 142, 57, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(123, 142, 57, 0);
  }
}

/* ==========================================================================
   WORK PORTFOLIO GALLERY SECTION (Full Screen Bold Gallery)
   ========================================================================== */
.work-section {
  padding: 120px 0 140px 0;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--bg-color);
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 30px;
}

.work-tag {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary-olive);
  text-transform: uppercase;
}

.work-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 400;
  color: var(--text-main);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* Work Carousel Styles */
.work-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.work-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}

.work-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.work-carousel-slide {
  flex: 0 0 calc(25% - 15px); /* 4 slides visible (gap 20px / 4 slides) */
  min-width: 0;
  cursor: grab;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background-color: var(--off-white);
  transition: opacity 0.35s ease, transform 0.35s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.work-carousel-slide:active {
  cursor: grabbing;
}

.work-image-container {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}

.work-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.work-carousel-slide:hover .work-image-container img {
  transform: scale(1.06);
}

/* Carousel Progress Bar Pagination */
.carousel-progress-bar-wrapper {
  width: 120px;
  height: 2px;
  background: rgba(59, 63, 28, 0.12);
  margin: 40px auto 0 auto;
  position: relative;
  border-radius: 1px;
  overflow: hidden;
}

.carousel-progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--primary-olive);
  transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1), left 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Explore More Button */
.work-explore-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.work-explore-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-olive);
  border: 1px solid var(--primary-olive);
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.work-explore-btn:hover {
  background: var(--primary-olive);
  color: #FFFFFF;
  border-color: var(--primary-olive);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 63, 28, 0.15);
  opacity: 1;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 40px;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 45px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2100;
}

.lightbox-close:hover {
  color: #FFFFFF;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2100;
}

.lightbox-arrow:hover {
  background: #3b3f1c;
  border-color: #3b3f1c;
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lightbox-content img.loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-info {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* Responsive viewports for Carousel and Lightbox */
@media (max-width: 1024px) {
  .work-carousel-slide {
    flex: 0 0 calc(33.333% - 13.33px);
  }
}

@media (max-width: 768px) {
  .work-carousel-slide {
    flex: 0 0 calc(50% - 10px);
  }
  .work-carousel-container {
    gap: 10px;
  }
  .work-carousel-track {
    gap: 10px;
  }
  .lightbox {
    padding: 20px;
  }
  .lightbox-arrow {
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 10, 0.8);
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-close {
    top: 20px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .work-carousel-slide {
    flex: 0 0 100%;
  }
}


.form-input, .form-select, .form-textarea {
  font-size: 16px !important; /* Prevents auto-zoom on iOS mobile */
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --container-padding: 0 30px;
  }

  .header-nav-bar {
    padding: 18px 30px;
  }

  .header-nav-bar.scrolled {
    padding: 14px 30px;
  }

  .header-nav {
    gap: 22px;
  }

  .about-section {
    padding: 100px 0;
    min-height: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrapper {
    height: 480px;
  }

  .philosophy-section {
    padding: 90px 0;
    min-height: auto;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .philosophy-card {
    border-right: none;
    border-bottom: 1px solid rgba(59, 63, 28, 0.15);
    padding-right: 0;
    padding-bottom: 28px;
  }

  .philosophy-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .work-section {
    padding: 100px 0 120px;
    min-height: auto;
  }

  .commission-section {
    padding: 90px 0 110px;
    min-height: auto;
  }

  .commission-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 70px 30px 50px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

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

  .header-nav-bar {
    padding: 14px 20px;
  }

  .header-nav-bar.scrolled {
    padding: 12px 20px;
  }

  .header-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 16px;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-logo {
    height: 74px;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(244, 239, 232, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 110;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 40px 20px;
    margin: 0;
  }

  .header-nav.active {
    right: 0;
  }

  .header-nav-link {
    font-size: 18px;
    letter-spacing: 0.25em;
    padding: 8px 0;
    color: var(--text-dark) !important;
    text-shadow: none !important;
  }

  .header-nav-link:hover {
    color: var(--primary-olive) !important;
  }

  .hero-logo-center {
    max-width: 260px;
    max-height: 140px;
  }

  .hero-brand-name {
    font-size: clamp(34px, 9vw, 56px);
  }

  .hero-brand-tagline {
    font-size: 11px;
    letter-spacing: 0.25em;
  }

  .about-section {
    padding: 70px 0;
  }

  .about-heading {
    font-size: clamp(36px, 8vw, 52px);
  }

  .about-image-wrapper {
    height: 340px;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .work-title {
    font-size: clamp(34px, 8vw, 52px);
  }

  .commission-section {
    padding: 70px 0 80px;
  }

  .commission-heading {
    font-size: clamp(32px, 7vw, 48px);
  }

  .commission-form-wrapper {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-input, .form-select, .form-textarea {
    font-size: 16px !important;
  }

  .form-submit-btn {
    width: 100%;
    min-height: 52px;
  }

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

  .footer-top {
    padding: 50px 20px 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-quote-bar {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-bar {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero-logo-center {
    max-width: 200px;
    max-height: 175px;
  }

  .about-image-wrapper {
    height: 280px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Collaborations & Philosophy Responsive Helpers */
@media (max-width: 1024px) {
  .collaborators-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .collaborators-grid {
    grid-template-columns: 1fr;
  }
  .collaborations-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
  }
  .banner-divider {
    width: 100%;
    height: 1px;
  }
  .philosophy-card {
    padding: 28px 24px;
  }
}



.subtle-gradient-overlay {
  background: radial-gradient(circle, rgba(20, 21, 9, 0) 30%, rgba(20, 21, 9, 0.55) 100%);
  backdrop-filter: none; /* Keep the background video completely sharp and visible */
}

