/* ================================================
   KROMATIC KONCEPT — Main Stylesheet
   ================================================
   Font: Cormorant Garamond (headings) + DM Sans (body)
   Palette: White / Off-white / Beige / Charcoal
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── CSS Variables ──────────────────────────── */
:root {
  --white:       #FFFFFF;
  --off-white:   #F7F4EF;
  --beige:       #E8DDD0;
  --beige-dark:  #C9BAA8;
  --charcoal:    #2A2A28;
  --charcoal-lt: #4A4A46;
  --ink:         #1A1917;
  --accent:      #8C7B6B;

  --ff-heading:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'DM Sans', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* ── Page Transition Overlay ───────────────── */
#page-transition {
  display: none;
  pointer-events: none;
}

body.page-entering #page-transition {
  animation: curtainIn 0.55s var(--ease-out-expo) forwards;
}

body.page-loaded {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes curtainIn {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  transition: padding 0.4s var(--ease-out-expo),
              background 0.4s ease,
              backdrop-filter 0.4s ease;
  mix-blend-mode: normal;
}

.nav.scrolled {
  padding: 18px 60px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,190,180,0.25);
}

.nav--dark .nav-logo,
.nav--dark .nav-links a,
.nav--dark .nav-collection-btn {
  color: var(--white);
}

/* Logo image white on dark hero */
.nav--dark:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.nav--dark .nav-logo::after {
  background: var(--white);
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  /* Keep logo image + text on ONE line */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span {
  font-weight: 300;
  font-style: italic;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

/* ── Logo image ───────────────────────────── */
.logo-img {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: brightness(0) invert(1); /* white on dark hero */
  transition: filter 0.4s ease;
}

/* Scrolled → dark logo */
.nav.scrolled .logo-img {
  filter: brightness(0) invert(0);
}

/* Not on dark hero → dark logo */
.nav:not(.nav--dark) .logo-img {
  filter: brightness(0) invert(0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--charcoal);
  transition: width 0.35s var(--ease-out-expo);
}

.nav-links a:hover::after { width: 100%; }

/* Collection Trigger Button */
.nav-collection-btn {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  position: relative;
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-collection-btn .btn-line {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-collection-btn .btn-line span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-collection-btn.is-open .btn-line span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}
.nav-collection-btn.is-open .btn-line span:nth-child(2) {
  opacity: 0;
}
.nav-collection-btn.is-open .btn-line span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Mobile Nav ─────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════
   FULL-SCREEN COLLECTION OVERLAY
══════════════════════════════════════════════ */
.collection-overlay {
  position: fixed;
  inset: 0;
  z-index: 960;
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.collection-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.overlay-header {
  position: relative;     /* ← establishes stacking context */
  z-index: 10;            /* ← stays above animated grid items */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  flex-shrink: 0;
  background: var(--ink); /* ← solid bg so grid items can't bleed through */
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.overlay-logo {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.overlay-logo em { font-weight: 300; }

/* ── Close button — pill style, clearly clickable ── */
.overlay-close {
  position: relative;
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
  /* ensure nothing can cover this button */
  isolation: isolate;
}

.overlay-close:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
}

/* Simple inline × glyph — no pseudo-element confusion */
.overlay-close-icon {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  font-style: normal;
  pointer-events: none; /* clicks pass through to button */
}

/* 5-column overlay grid */
.overlay-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  flex: 1;
  overflow: hidden;
}

.overlay-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.7s var(--ease-out-expo),
              opacity 0.7s ease;
}

.collection-overlay.is-open .overlay-item {
  transform: translateY(0);
  opacity: 1;
}

.collection-overlay.is-open .overlay-item:nth-child(1) { transition-delay: 0.08s; }
.collection-overlay.is-open .overlay-item:nth-child(2) { transition-delay: 0.15s; }
.collection-overlay.is-open .overlay-item:nth-child(3) { transition-delay: 0.22s; }
.collection-overlay.is-open .overlay-item:nth-child(4) { transition-delay: 0.29s; }
.collection-overlay.is-open .overlay-item:nth-child(5) { transition-delay: 0.36s; }

/* Placeholder image in overlay */
.overlay-item-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out-expo);
}

.overlay-item:hover .overlay-item-img {
  transform: scale(1.08);
}

.overlay-item-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.9) 0%, rgba(10,10,8,0.2) 60%, transparent 100%);
  z-index: 1;
}

.overlay-item-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease-out-expo);
}

.overlay-item:hover .overlay-item-content {
  transform: translateY(0);
}

.overlay-item-num {
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--beige-dark);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.overlay-item-name {
  font-family: var(--ff-heading);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.overlay-item-arrow {
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--beige-dark);
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.overlay-item:hover .overlay-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* placeholder tones for overlay items */
.overlay-item:nth-child(1) .overlay-item-img { background: #3A3530; }
.overlay-item:nth-child(2) .overlay-item-img { background: #2E3530; }
.overlay-item:nth-child(3) .overlay-item-img { background: #353035; }
.overlay-item:nth-child(4) .overlay-item-img { background: #302D35; }
.overlay-item:nth-child(5) .overlay-item-img { background: #352E2A; }

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: -8%;
  /* Replace this background with your tile/room image */
  background: linear-gradient(135deg, #2A2520 0%, #1A1512 50%, #232220 100%);
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

/* ── REPLACE THIS with your own img tag: ──
   <img src="your-hero-image.jpg" alt="hero" class="hero-bg-img" />
   Add CSS: .hero-bg-img { position:absolute; inset:0; object-fit:cover; width:100%; height:100%; }
   ──────────────────────────────────────── */

.hero-bg-img {
  position: absolute;
  inset: -8%;          /* same overshoot as .hero-bg so zoom has room */
  width: calc(100% + 16%);
  height: calc(100% + 16%);
  object-fit: cover;
  object-position: center top;   /* keep the people visible */
  animation: heroZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,8,6,0.25) 0%,
    rgba(10,8,6,0.45) 60%,
    rgba(10,8,6,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.9s var(--ease-out-expo) 0.3s forwards;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1.1s var(--ease-out-expo) 0.55s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--beige);
}

.hero-subtitle {
  margin-top: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(240,230,215,0.7);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.9s var(--ease-out-expo) 0.85s forwards;
}

.hero-cta {
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.9s var(--ease-out-expo) 1.05s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  border: 1px solid rgba(240,230,215,0.5);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.35s ease, border-color 0.35s ease, gap 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(240,230,215,0.85);
  gap: 20px;
}

.btn-primary svg { flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;      /* Niche se distance */
  left: 50%;         /* Screen ke beech mein bhejne ke liye */
  transform: translateX(-50%); /* Element ko uske apne center point par laane ke liye */
  display: flex;
  flex-direction: column;
  align-items: center; /* Text aur line dono ko ek dusre ke center mein rakhne ke liye */
  text-align: center;
  z-index: 10;
  color: var(--white); /* Ya jo bhi aapka text color ho */
}

.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,230,215,0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(240,230,215,0.25);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240,230,215,0.7);
  animation: scrollDrop 1.8s ease infinite;
}

@keyframes scrollDrop {
  from { transform: translateY(-100%); }
  to   { transform: translateY(200%); }
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   SCROLL ANIMATION CLASSES
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out-expo),
              transform 0.9s var(--ease-out-expo);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   MARQUEE / TICKER
══════════════════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  padding: 18px 0;
  background: var(--off-white);
}

.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--ff-heading);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  font-style: italic;
}

.marquee-track .dot {
  color: var(--beige-dark);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   FULL-WIDTH IMAGE BANDS
══════════════════════════════════════════════ */
.fullwidth-band {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
}

.fullwidth-band-img {
  position: absolute;
  inset: 0;
  /* Replace with your tile/room image */
  background: linear-gradient(135deg, #D4C9BC, #B8AA9C);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* When .fullwidth-band-img is an <img> tag */
img.fullwidth-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Parallax handled via JS on scroll */

.fullwidth-band-label {
  position: absolute;
  bottom: 40px;
  right: 60px;
  font-family: var(--ff-heading);
  font-size: 0.75rem;
  font-style: italic;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   INTRO TEXT SECTION
══════════════════════════════════════════════ */
/* --- 1. Intro Section (Every tile tells a story...) --- */
.intro-section {
    padding: 80px 60px !important;
    max-width: 1320px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important; /* Heading left, Text right */
    gap: 60px !important;
    align-items: start !important;
}

/* --- 2. About Section (Founder Box) --- */
#about {
    padding: 40px 60px !important; /* Side padding logo se match karegi */
    background-color: var(--white);
    display: block !important;
}

.about-layout-container {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important; /* Logo side align karne ke liye */
    gap: 80px !important;
    max-width: 1200px !important;
    margin: 0 !important; /* Left alignment force kiya */
}

.founder-image-box {
    flex: 0 0 420px !important; /* Image box size fix */
    width: 420px !important;
}

.founder-image-placeholder {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background-color: var(--off-white);
    border: 1px solid var(--beige);
    overflow: hidden;
}

.about-text-wrapper {
    flex: 1 !important;
    text-align: left !important;
}

.intro-label {
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}

.intro-heading {
    font-family: var(--ff-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--charcoal-lt);
}

.intro-text + .intro-text { margin-bottom: 0; }

.text-link {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s, letter-spacing 0.3s;
}
.text-link:hover { color: var(--accent); border-color: var(--accent); letter-spacing: 0.28em; }

/* ══════════════════════════════════════════════
   COLLECTION PREVIEW (HOME)
══════════════════════════════════════════════ */
.collections-section {
  padding: 60px 0 120px;
  background: var(--off-white);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 60px;
  margin-bottom: 56px;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-title em { font-style: italic; }

.section-action {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.3s, gap 0.3s;
}
.section-action:hover { color: var(--accent); gap: 16px; }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  padding: 0 2px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  aspect-ratio: 3 / 4;
}

/* ── Replace the background of each card:
   Add an <img> inside .collection-card
   or set background-image in the inline style
   ────────────────────────────────────────── */
.collection-card-img {
  position: absolute;
  inset: 0;
  transition: transform 0.75s var(--ease-out-expo);
  will-change: transform;
}

/* Placeholder colors per card */
.collection-card:nth-child(1) .collection-card-img { background: #C9C0B4; }
.collection-card:nth-child(2) .collection-card-img { background: #B4BEC4; }
.collection-card:nth-child(3) .collection-card-img { background: #C4BEBA; }
.collection-card:nth-child(4) .collection-card-img { background: #BAC4BE; }
.collection-card:nth-child(5) .collection-card-img { background: #C4BABC; }

.collection-card:hover .collection-card-img {
  transform: scale(1.08);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,15,0.85) 0%, transparent 55%);
  transition: opacity 0.4s ease;
}

.collection-card:hover .collection-card-overlay {
  opacity: 0.8;
}

.collection-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 22px;
  z-index: 1;
}

.collection-card-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--beige-dark);
  margin-bottom: 4px;
  font-style: italic;
  font-family: var(--ff-heading);
}

.collection-card-name {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.collection-card-cta {
  margin-top: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--beige);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.collection-card:hover .collection-card-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   PHILOSOPHY / QUOTE SECTION
══════════════════════════════════════════════ */
.philosophy-section {
  padding: 140px 60px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.philosophy-quote {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.philosophy-quote em {
  font-style: normal;
  font-weight: 500;
}

.philosophy-author {
  margin-top: 36px;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ══════════════════════════════════════════════
   TWO-COLUMN FEATURE
══════════════════════════════════════════════ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-img-side {
  position: relative;
  overflow: hidden;
  /* Replace with image */
  background: var(--beige);
}

.feature-img-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
}

.feature-row:hover .feature-img-side img {
  transform: scale(1.04);
}

.feature-text-side {
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: 80px;
}

.feature-text-inner {
  max-width: 420px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-brand em { font-weight: 300; font-style: italic; }

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-family: var(--ff-heading);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════
   COLLECTION PAGE (collection-*.html)
══════════════════════════════════════════════ */
.collection-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.collection-hero-bg {
  position: absolute;
  inset: -5%;
  /* Replace with collection-specific hero image */
  background: linear-gradient(135deg, #2A2520, #1A1512);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* When .collection-hero-bg is an <img> tag */
img.collection-hero-bg {
  width: calc(100% + 10%);
  height: calc(100% + 10%);
  object-fit: cover;
  object-position: center;
}

.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.8) 0%, rgba(10,8,6,0.1) 70%);
}

.collection-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
  width: 100%;
}

.collection-hero-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--beige-dark);
  margin-bottom: 14px;
}

.collection-hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.collection-hero-title em { font-style: italic; }

/* Breadcrumb */
.breadcrumb {
  padding: 20px 60px;
  background: var(--off-white);
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.breadcrumb a { color: var(--charcoal-lt); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb-sep { color: var(--beige-dark); }

/* --- Updated Collection Description (PC Layout) --- */
.collection-desc {
    padding: 80px 60px;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left: Stats, Right: Text */
    gap: 80px;
    align-items: start;
}

.collection-desc-meta {
    position: sticky;
    top: 110px;
    /* Stats ko side-by-side karne ke liye Grid add kiya */
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 20px !important;
}

/* Title aur Line ko poori width (span 2) dene ke liye */
.collection-desc-title, 
.collection-desc-meta .line-divider {
    grid-column: span 2 !important;
    margin-bottom: 15px !important;
}

.collection-stat {
    border-top: 1px solid var(--beige);
    padding: 16px 0;
    /* Extra spacing fix */
    margin: 0 !important;
}

.collection-stat:last-of-type { border-bottom: none; }

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.stat-value {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.4;
}

.collection-desc-text {
    padding-top: 12px;
}

.collection-desc-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--charcoal-lt);
    margin-bottom: 24px;
}

/* Gallery grid on collection pages */
.gallery-section {
  padding: 0 60px 120px;
}

.gallery-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--beige);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}
/* ── Replace each .gallery-item-img with your tile image ── */
.gallery-item-img {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-out-expo);
  will-change: transform;
}

/* When .gallery-item-img is an <img> tag */
img.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

/* Placeholder tones */
.gallery-item:nth-child(6n+1) .gallery-item-img { background: #D4C9BC; }
.gallery-item:nth-child(6n+2) .gallery-item-img { background: #C4CAC8; }
.gallery-item:nth-child(6n+3) .gallery-item-img { background: #D0C4C0; }
.gallery-item:nth-child(6n+4) .gallery-item-img { background: #C8C4CC; }
.gallery-item:nth-child(6n+5) .gallery-item-img { background: #C0CCC8; }
.gallery-item:nth-child(6n+6) .gallery-item-img { background: #CCC0BC; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(10,8,6,0.35); }

.gallery-item-label {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: scale(1); }

/* Large featured items in gallery */
.gallery-item.large {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,8,6,0.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute;
  top: 32px; right: 40px;
  background: none; border: none;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--ff-body);
}
.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
}

/* ══════════════════════════════════════════════
   UTILITY CLASSES
══════════════════════════════════════════════ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.line-divider {
  width: 48px;
  height: 1px;
  background: var(--beige-dark);
  margin: 28px 0;
}

.placeholder-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 1;
}

/* ================================================
   FINAL OPTIMIZED MOBILE CSS — KROMATIC KONCEPT
   ================================================ */

/* ── 1. Global & Logo Styles (PC aur Mobile dono ke liye) ── */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}

/* --- 1. Logo & Hamburger Color Sync (Global) --- */

/* Logo Default (White) */
.logo-img {
    height: 46px; 
    width: auto;
    display: inline-block;
    filter: brightness(0) invert(1); /* Default White */
    transition: filter 0.3s ease;
}

/* Hamburger Lines Default (White) */
.hamburger span {
    background-color: #ffffff !important;
    transition: background-color 0.3s ease !important;
}

/* --- Scroll logic: Logo aur Hamburger ko BLACK karne ke liye --- */
.nav.scrolled .nav-logo .logo-img, 
.nav:not(.nav--dark) .nav-logo .logo-img {
    filter: brightness(0) invert(0) !important; /* Black Logo */
}

.nav.scrolled .hamburger span, 
.nav:not(.nav--dark) .hamburger span {
    background-color: #000000 !important; /* Black Lines */
}

/* --- 2. Collection Overlay Logo Fix (Hamesha WHITE rahega) --- */
.overlay-logo img, 
.overlay-logo-img,
.collection-overlay .logo-img,
.collection-overlay .nav-logo .logo-img { 
    height: 46px !important; 
    width: auto !important;
    filter: brightness(0) invert(1) !important; /* Forcefully White */
}

.overlay-logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px;
    color: var(--white) !important;
    font-family: var(--ff-heading);
    text-transform: uppercase;
}

/* ── 2. Mobile & Tablet Optimizations (768px and below) ── */
@media (max-width: 768px) {
  
  /* A. Global Padding Fix */
  .nav, .nav.scrolled, .section-header, .intro-section, 
  .philosophy-section, .footer, .collection-hero-content, 
  .gallery-section, .breadcrumb {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* B. Navigation & Header Fix */
  .nav-links, .nav-right { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-logo { font-size: 0.85rem !important; gap: 8px !important; }
  .logo-img { height: 28px !important; }
  .hero-scroll-hint {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 25px !important;
  }

/* C. Intro / About Section (Mobile Fix - Updated) */
.intro-section {
    padding: 40px 20px !important; 
    display: block !important;
    margin: 0 !important;
}

.about-layout-container {
    display: flex !important;
    flex-direction: column !important; /* Mobile par image upar aur text niche stack honge */
    gap: 25px !important;
    padding: 0 !important;
    width: 100% !important;
}

.founder-image-box {
    width: 100% !important;
    max-width: 100% !important;
}

.founder-image-placeholder {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background-color: var(--off-white);
    border: 1px solid var(--beige);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile par About section ki vertical space kam karne ke liye */
#about {
    padding: 20px !important; /* Pehle ye 40px tha, ise kam kar diya */
}

/* Heading aur Text mobile par screen se bahar nahi jayenge */
.intro-heading {
    margin-bottom: 10px !important;
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

.intro-text {
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
    text-align: left !important;
}

/* D. Product / Subway Pages Fix (Overlap & Grid Fix) */
  .collection-desc {
    display: flex !important;
    flex-direction: column !important; /* Stack stats then text */
    gap: 20px !important;
    padding: 30px 20px !important;
    position: relative !important;
  }

  .collection-desc-meta {
    /* Sticky position ko mobile par band kiya taaki overlap na ho */
    position: relative !important; 
    top: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Side-by-side stats */
    gap: 15px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    z-index: 1 !important;
  }

  /* Title aur Divider ko full width stack karne ke liye */
  .collection-desc-title, 
  .collection-desc-meta .line-divider {
    grid-column: span 2 !important;
    position: relative !important;
  }

  .collection-stat {
    border-top: 1px solid var(--beige) !important;
    padding: 12px 0 !important;
    background: transparent !important;
  }

  /* Paragraph text ko stats ke niche dhakne ke liye */
  .collection-desc-text {
    width: 100% !important;
    position: relative !important;
    margin-top: 10px !important;
    padding-top: 0 !important;
    z-index: 2 !important;
  }

  .collection-desc-text p {
    margin-bottom: 15px !important;
    line-height: 1.6 !important;
  }

  /* E. Side-Slide Black Glass Menu */
  .mobile-nav {
    position: fixed !important;
    top: 0 !important; right: 0 !important;
    width: 60% !important; height: 60vh !important; 
    background: rgba(0, 0, 0, 0.45) !important; 
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 80px 30px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 20px !important;
    transform: translateX(100%) !important; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 1000 !important;
  }
  .mobile-nav.open { transform: translateX(0) !important; }
  .mobile-nav a {
    font-family: var(--ff-body) !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3em !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 10px !important;
  }

  /* F. Feature Rows & Collections Grid (Landscape 5th Card Fix) */
  .feature-row { display: flex !important; flex-direction: column !important; }
  .feature-img-side { height: 300px !important; width: 100% !important; }
  .feature-text-side { padding: 35px 20px !important; width: 100% !important; }

  .cards-grid { 
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 8px !important; 
  }
  .collection-card { 
    aspect-ratio: 1 / 1 !important; 
    width: 100% !important;
  }
  /* 5th Card (Etching Designs) ko Landscape banane ke liye */
  .collection-card:last-child {
    grid-column: span 2 !important;
    aspect-ratio: 16 / 9 !important;
  }

  /* G. Footer & Get In Touch */
  .get-in-touch-section { 
    padding-top: 10px !important; 
    padding-bottom: 30px !important;
    text-align: center !important;
  }
  .get-in-touch-label { margin-bottom: 4px !important; font-size: 0.65rem !important; }
  .get-in-touch-title { margin-bottom: 8px !important; font-size: 1.8rem !important; }
  .get-in-touch-text { margin-top: 0 !important; margin-bottom: 25px !important; padding: 0 20px !important; }

  .footer-top { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .footer-brand { grid-column: span 2; }
}

/* ── 3. Very Small Screen Fixes ── */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem !important; }
  .philosophy-quote { font-size: 1.3rem !important; }
  .mobile-nav { width: 65% !important; }
}

@media (max-width: 768px) {
  .section-title {
    text-align: left !important;
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
  }
  .section-label {
    text-align: left !important;
    margin-bottom: 20px !important;
  }
}

/* ── WhatsApp Sticky Button (Updated) ── */
.whatsapp-sticky {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366; 
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 500;
  
  /* z-index ko 950 kiya hai taaki ye Collections Overlay (960) ke piche chup jaye */
  z-index: 950; 
  
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Mobile par isey CIRCLE banane ke liye fixes */
@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 25px;
    right: 25px;
    width: 60px;          /* Fixed width */
    height: 60px;         /* Fixed height */
    padding: 0;           /* Padding hatayein taaki circle bane */
    border-radius: 50%;   /* Poora gol (circle) karne ke liye */
    justify-content: center; /* Icon ko center karne ke liye */
    z-index: 950;         /* Mobile par bhi same stacking order */
  }

  .whatsapp-sticky span {
    display: none;        /* Mobile par text "Consult on..." ko hide karein */
  }

  .whatsapp-sticky svg {
    width: 32px;          /* Mobile par icon thoda bada dikhega */
    height: 32px;
  }
}

.whatsapp-sticky:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #1ebd5b;
}
/* ══════════════════════════════════════════════
   GET IN TOUCH: OPTIMIZED LAYOUT
   (Dual-Row PC & Compact Mobile)
══════════════════════════════════════════════ */

.get-in-touch-section {
    padding: 60px 60px !important; /* PC vertical padding */
    background-color: var(--off-white) !important;
    width: 100% !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important; 
    gap: 80px !important;
    max-width: 1200px !important;
    margin: 0 !important;
    align-items: start !important;
}

/* ── Info Side ── */
.contact-info-side { text-align: left !important; }

.contact-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(2.5rem, 4.5vw, 4.2rem) !important;
    font-weight: 300 !important;
    line-height: 1.1 !important;
    margin: 15px 0 25px !important;
}

.contact-methods {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-top: 15px !important;
}

/* ── Form: Dual Row (Phone & Email ek line mein) ── */
.form-row-dual {
    display: flex !important;
    gap: 20px !important; 
    margin-bottom: 20px !important;
}

.form-row-dual > input {
    flex: 1 !important; /* Barabar space share karenge */
}

/* ── Form Styling ── */
.design-form .form-row { margin-bottom: 20px !important; }

.design-form input, 
.design-form textarea {
    width: 100% !important;
    padding: 8px 0 4px 0 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--beige-dark) !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1rem !important;
    outline: none !important;
}

.form-small-label {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.radio-options {
    display: flex !important;
    gap: 25px !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
}

.radio-options label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 0.9rem !important;
    white-space: nowrap !important;
}

/* ── Mobile Layout Fixes (Compact Space) ── */
@media (max-width: 768px) {
    .get-in-touch-section { 
        padding: 40px 20px !important; /* Mobile padding kam ki gayi */
    }
    
    .contact-grid { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; /* Mobile gap kam kiya gaya */
    }

    .contact-heading {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }

    /* Mobile par stack karna zaroori hai */
    .form-row-dual { 
        flex-direction: column !important; 
        gap: 15px !important; 
        margin-bottom: 15px !important;
    }
    
    .design-form .form-row { 
        margin-bottom: 15px !important; /* Mobile rows ke beech space kam */
    }

    .radio-options {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
}

/* ── Fully Transparent Send Message Button ── */
.form-submit-btn {
    background: transparent !important; /* Poora transparent karne ke liye */
    color: var(--charcoal) !important;   /* Text color charcoal rakha hai readability ke liye */
    border: 1px solid var(--charcoal) !important; /* Subtle border taaki button dikhe */
    
    padding: 16px 45px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    margin-top: 15px !important;
    transition: all 0.3s ease !important;
}

/* Hover effect: Jab mouse button par jaye toh thoda highlight ho */
.form-submit-btn:hover {
    background: rgba(42, 42, 40, 0.05) !important; /* Bahut halka grey tint */
    border-color: var(--accent) !important;
    color: var(--accent) !important;
}

/* ── Founder Signature: No Italics ── */
.founder-signature {
    margin-top: 40px; /* Text se saaf distance */
    text-align: left;
    display: block;
}

.founder-name {
    /* "A Legacy of..." wala font style (Normal, not Italic) */
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem !important;
    font-weight: 400 !important;
    font-style: normal !important; /* Italics hatane ke liye forced normal */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--charcoal) !important;
    margin-bottom: 4px !important;
}

.founder-role {
    /* "ABOUT KROMATIC KONCEPT" wala clean label font */
    font-family: 'DM Sans', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: var(--accent) !important;
    margin: 0 !important;
}

/* ── Mobile Alignment Fix for Founder Signature ── */
@media (max-width: 768px) {
    .founder-signature {
        text-align: left !important; /* Center se Left karne ke liye */
        margin-top: 25px !important;
        display: block !important;
        width: 100% !important;
    }

    .founder-name {
        text-align: left !important;
        font-size: 1.6rem !important; /* Mobile ke liye thoda chhota size */
        margin-left: 0 !important;
    }

    .founder-role {
        text-align: left !important;
        margin-left: 0 !important;
    }
}