/* ════════════════════════════════════════════════
   AftabBaba.com — Premium Denim Manufacturing
   style.css — v3.0 Complete Design System
   ════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────── */
:root {
  /* Brand */
  --blue-900: #0d1f3c;
  --blue-700: #1b3f7e;
  --blue-500: #2756a8;
  --blue-400: #3d6fc5;
  --blue-100: #dce8fb;
  --accent:   #1a4fd6;
  --accent-h: #1340b8;

  /* Light theme */
  --bg:          #ffffff;
  --bg-2:        #f6f8fc;
  --bg-3:        #eef2f9;
  --surface:     #ffffff;
  --border:      rgba(27,63,126,0.12);
  --text:        #0d1f3c;
  --text-2:      #3d5276;
  --text-3:      #7a8fae;
  --text-inv:    #ffffff;

  /* Nav */
  --nav-h: 110px;
  --nav-bg: rgba(255,255,255,0.92);
  --nav-border: rgba(27,63,126,0.10);

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(13,31,60,0.08);
  --shadow-md:  0 4px 24px rgba(13,31,60,0.12);
  --shadow-lg:  0 12px 48px rgba(13,31,60,0.16);
  --shadow-xl:  0 24px 80px rgba(13,31,60,0.20);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Easing */
  --ease-out:    cubic-bezier(0.22,1,0.36,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  /* Spacing */
  --section-pad: clamp(64px, 8vw, 120px);
  --container:   1200px;
}

/* Dark theme */
[data-theme="dark"] {
  --bg:        #0a0f1a;
  --bg-2:      #101726;
  --bg-3:      #161f34;
  --surface:   #131c30;
  --border:    rgba(61,111,197,0.20);
  --text:      #e8eef8;
  --text-2:    #9fb5d8;
  --text-3:    #65809e;
  --text-inv:  #ffffff;
  --nav-bg:    rgba(10,15,26,0.94);
  --nav-border:rgba(61,111,197,0.15);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.30);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.40);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.50);
  --shadow-xl: 0 24px 80px rgba(0,0,0,0.60);
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── Scroll Progress Bar ────────────────────────── */
#scrollProgress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}

/* ── Container ──────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.section-pad { padding: var(--section-pad) 0; }

/* ── Typography ─────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: clamp(40px,6vw,72px); }
.sh-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600; line-height: 1.15;
  color: var(--text);
  margin-bottom: 14px;
}
.sh-title.left { text-align: left; }
.sh-sub { font-size: 16px; color: var(--text-2); max-width: 520px; margin: 0 auto; }

/* ── Scroll Reveal ──────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal        { transform: translateY(32px); }
.reveal-left   { transform: translateX(-40px); }
.reveal-right  { transform: translateX(40px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}

/* ── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--blue-700); color: #fff !important;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s var(--ease-spring), box-shadow 0.25s;
  box-shadow: 0 4px 18px rgba(27,63,126,0.30);
}
.btn-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,63,126,0.40);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border: 2px solid currentColor; color: var(--text-inv) !important;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  transition: background 0.25s, transform 0.2s var(--ease-spring);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: #25d366; color: #fff !important;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  transition: background 0.25s, transform 0.2s var(--ease-spring);
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); }

.btn-wa-sm {
  display: inline-flex; align-items: center; justify-content:center;
  width: 44px; height: 44px;
  background: #25d366; color: #fff;
  border-radius: var(--r-full);
  font-size: 20px;
  transition: background 0.25s;
  flex-shrink: 0;
}
.btn-wa-sm:hover { background: #1ebe5c; }

/* ════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  background: var(--bg);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 8vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.ll-light { font-weight: 300; color: var(--text-2); }
.ll-bold  { font-weight: 700; color: var(--text); }

.loader-progress {
  width: 120px; height: 2px;
  background: var(--bg-3); border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: var(--blue-500); border-radius: 2px;
  animation: loaderFill 1.8s var(--ease-out) forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-sub {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3);
}

/* ════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s;
}
#navbar.scrolled {
  background: var(--nav-bg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--nav-border);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 clamp(20px,5vw,48px);
  max-width: 1400px; margin: 0 auto;
}

/* Main Nav Brand */
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px); 
  line-height: 0.95; 
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
}
.nav-brand .brand-light { font-weight: 500; color: var(--text); }
.nav-brand .brand-bold  { font-weight: 600; color: #dc2626; font-style: italic; }
.nav-brand .brand-tld   { font-weight: 400; color: var(--blue-400); font-size: 0.4em; }

[data-theme="dark"] .nav-brand .brand-bold { color: #ef4444; }

/* Footer text logo */
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; line-height: 1; letter-spacing: -0.01em;
  display: inline-block;
}
.footer-logo .brand-light { font-weight: 300; color: var(--text-2); }
.footer-logo .brand-bold  { font-weight: 700; color: var(--text); }
.footer-logo .brand-tld   { font-weight: 300; color: var(--blue-400); font-size: 0.7em; }
.brand-light { font-weight: 300; color: var(--text-2); }
.brand-bold  { font-weight: 700; color: var(--text); }
.brand-tld   { font-weight: 300; color: var(--blue-400); font-size: 0.7em; }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nl {
  font-size: 13px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-2);
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nl::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--blue-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nl:hover { color: var(--text); }
.nl:hover::after { transform: scaleX(1); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 16px; }

/* Theme toggle */
.theme-toggle {
  width: 52px; height: 28px;
  background: var(--bg-3); border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  position: relative; padding: 0;
  transition: background 0.3s, border 0.3s;
}
.toggle-track { position: absolute; inset: 0; display: flex; align-items: center; }
.toggle-thumb {
  position: absolute; left: 3px;
  width: 20px; height: 20px;
  background: var(--blue-500); border-radius: 50%;
  transition: transform 0.3s var(--ease-spring), background 0.3s;
  z-index: 1;
}
[data-theme="dark"] .toggle-thumb { transform: translateX(24px); background: #f5c518; }
.icon-sun, .icon-moon {
  font-size: 10px; position: absolute;
  transition: opacity 0.3s;
}
.icon-sun  { right: 6px; color: #f5c518; }
.icon-moon { left: 7px;  color: var(--text-3); }
[data-theme="dark"] .icon-sun  { opacity: 0; }
[data-theme="light"] .icon-moon { opacity: 0; }

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: var(--blue-700); color: #fff;
  border-radius: var(--r-full);
  font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue-500); transform: translateY(-1px); }



/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  justify-content: center; align-items: flex-end;
  width: 40px; height: 40px; gap: 5px;
}
.h-line {
  display: block; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-spring), opacity 0.2s, width 0.3s;
  width: 24px;
}
.h-line.short { width: 16px; }
.hamburger.open .h-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 24px; }
.hamburger.open .h-line:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open .h-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 24px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 900;
  background: var(--bg);
  padding: calc(var(--nav-h) + 24px) 32px 48px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mm-inner { display: flex; flex-direction: column; gap: 8px; }
.mm-link {
  display: block;
  font-size: 28px; font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text); padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mm-link:hover { color: var(--blue-500); padding-left: 8px; }
.mm-phone {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px; padding: 14px 24px;
  background: var(--blue-700); color: #fff;
  border-radius: var(--r-full);
  font-size: 15px; font-weight: 600;
  align-self: flex-start;
}

/* ════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}

.hero-bg-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  width: 100%; height: 110%;
  object-fit: cover; object-position: center;
  will-change: transform;
}

/* Light theme — denim-tinted overlay, text-side heavy */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,0.88) 0%,
    rgba(220,232,255,0.72) 40%,
    rgba(160,195,255,0.30) 70%,
    rgba(100,150,230,0.10) 100%
  );
}
[data-theme="dark"] .hero::before {
  background: linear-gradient(
    105deg,
    rgba(8,12,24,0.95) 0%,
    rgba(11,25,55,0.82) 40%,
    rgba(10,20,45,0.50) 70%,
    rgba(5,10,25,0.20) 100%
  );
}
.hero-bg-overlay { display: none; }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(20px,5vw,48px);
  max-width: calc(var(--container) + 96px);
  margin: 0 auto; width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 80px);
}
.hero-text-col {
  flex: 1 1 auto;
}
.hero-logo-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solid Hero Logo Beside Text */
.hero-solid-logo {
  width: clamp(300px, 35vw, 450px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5)) drop-shadow(0 0 16px rgba(255,255,255,0.15));
  transition: transform 0.4s var(--ease-spring);
}
.hero-solid-logo:hover {
  transform: scale(1.03) rotate(1deg);
}

@media (min-width: 1025px) {
  .hero-h1 { font-size: clamp(48px, 6vw, 110px); }
  .hero-content { padding-top: var(--nav-h); }
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-text-col { order: 1; }
  .hero-logo-col {
    order: 2; /* Move logo below text */
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .hero-solid-logo {
    width: clamp(200px, 60vw, 280px);
  }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue-700); font-weight: 600;
  background: rgba(39,86,168,0.10); border: 1px solid rgba(39,86,168,0.20);
  border-radius: var(--r-full); padding: 7px 16px;
  margin-bottom: 24px;
}
[data-theme="dark"] .hero-tag { color: var(--blue-400); background: rgba(61,111,197,0.15); }
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-500);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.7; }
}

.hero-h1 {
  display: flex; flex-direction: column;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 110px);
  line-height: 0.95; letter-spacing: -0.03em;
  font-weight: 600; margin-bottom: 24px;
  color: var(--text);
}
.h1-line { display: block; }
.h1-line.accent { color: var(--blue-700); font-style: italic; }
[data-theme="dark"] .h1-line.accent { color: var(--blue-400); }

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-2); font-weight: 400;
  margin-bottom: 36px; max-width: 380px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}


/* ════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(40px,6vw,80px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 420px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: default;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.stat-num-wrap { display: flex; align-items: baseline; gap: 2px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,5vw,52px); font-weight: 700;
  line-height: 1; color: var(--text);
  transition: color 0.3s;
}
.stat-plus {
  font-size: 22px; font-weight: 700; color: var(--blue-500);
}
.stat-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--text-3); margin-top: 2px;
}

/* ════════════════════════════════════════════════
/* ════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

.g-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.g-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.g-card-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.g-card img, .g-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.g-card:hover img {
  transform: scale(1.05);
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,31,60,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.g-card:hover .g-overlay {
  opacity: 1;
}
.g-overlay i {
  font-size: 24px;
  transform: scale(0.8);
  transition: transform 0.4s var(--ease-spring);
}
.g-card:hover .g-overlay i {
  transform: scale(1);
}
.g-overlay span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-spring);
}
.g-card:hover .g-overlay span {
  transform: translateY(0);
}

/* Video Card specific */
.g-card-video {
  border: 1px solid var(--border);
  cursor: default;
}
.g-card-video:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}
.g-card-video video {
  outline: none;
  background: #000;
}
.g-video-coming-soon {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue-700);
  color: #fff;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  z-index: 10;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(4px);
}

/* ════════════════════════════════════════════════
   COMING SOON
═══════════════════════════════════════════════ */
.coming-soon-sec {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cs-video-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--surface);
  border: 8px solid var(--surface);
}

.cs-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  outline: none;
}

/* ════════════════════════════════════════════════
   PRODUCT MODAL
═══════════════════════════════════════════════ */
.p-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.p-modal.open { opacity: 1; visibility: visible; }

.pm-backdrop {
  position: fixed; inset: 0; z-index: 1900;
  background: rgba(10,15,26,0.7);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.pm-backdrop.open { opacity: 1; visibility: visible; }

.pm-inner {
  position: relative; z-index: 1;
  background: var(--surface); border-radius: var(--r-xl);
  max-width: 820px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; box-shadow: var(--shadow-xl);
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-spring);
}
.p-modal.open .pm-inner { transform: translateY(0); }
@media (max-width: 640px) { .pm-inner { grid-template-columns: 1fr; } }

.pm-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  font-size: 18px; color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.pm-close:hover { background: var(--bg-3); }

.pm-gallery { background: var(--bg-2); }
.pm-main-img { aspect-ratio:1; overflow:hidden; }
.pm-main-img img { width:100%; height:100%; object-fit:cover; transition: opacity 0.22s, transform 0.22s; }
.pm-thumbs { display: flex; gap: 8px; padding: 12px; }
.pm-thumb {
  flex: 1; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.pm-thumb.active { border-color: var(--blue-500); }
.pm-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pm-details { padding: 28px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; max-height: 520px; }
.pm-eye   { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-400); font-weight: 600; }
.pm-title { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--text); }
.pm-price { font-size: 20px; font-weight: 700; color: var(--blue-700); }
.pm-desc  { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.pm-size-lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 8px; }
.pm-sz-row { display: flex; gap: 8px; flex-wrap: wrap; }
.sz {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border); color: var(--text-2);
  font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.sz:hover { border-color: var(--blue-500); color: var(--blue-500); }
.sz.active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }
.pm-actions { display: flex; gap: 10px; align-items: center; }
.pm-features { display: flex; flex-direction: column; gap: 6px; }
.pm-features li { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.pm-features i { color: var(--blue-500); font-size: 11px; }

/* ════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════ */
.process { background: var(--bg-2); }

.process-track {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 0; position: relative;
}
@media (max-width: 900px) { .process-track { grid-template-columns: repeat(1,1fr); gap: 0; } }

.proc-step {
  position: relative; padding: 32px 20px 36px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: default;
}
.proc-step:first-child { border-radius: var(--r-md) 0 0 var(--r-md); }
.proc-step:last-child  { border-radius: 0 var(--r-md) var(--r-md) 0; }
.proc-step + .proc-step { border-left: none; }
.proc-step:hover {
  background: var(--bg-3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  z-index: 2;
  border-color: var(--blue-400);
}

.ps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text-3); margin-bottom: 16px;
}
.ps-icon-wrap {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff; font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}
.proc-step:hover .ps-icon-wrap { transform: scale(1.10) rotate(-3deg); }
.ps-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.ps-desc  { font-size: 12px; color: var(--text-3); line-height: 1.65; }
.ps-connector { display: none; }

@media (max-width: 900px) {
  .proc-step:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
  .proc-step:last-child  { border-radius: 0 0 var(--r-md) var(--r-md); }
  .proc-step + .proc-step { border-left: 1px solid var(--border); border-top: none; }
}

/* ════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.about-img-col {
  position: relative;
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr auto;
  gap: 16px;
}
.ab-img-main {
  grid-column: 1; grid-row: 1 / 3;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.ab-img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.about-img-col:hover .ab-img-main img { transform: scale(1.04); }

.ab-img-accent {
  grid-column: 2; grid-row: 1;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.ab-img-accent img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.about-img-col:hover .ab-img-accent img { transform: scale(1.06); }

.ab-float-badge {
  grid-column: 2; grid-row: 2;
  background: var(--blue-700); color: #fff;
  border-radius: var(--r-md); padding: 18px 14px;
  display: flex; align-items: center; gap: 10px;
}
.ab-float-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 700; line-height: 1;
}
.ab-float-badge span { font-size: 12px; font-weight: 500; line-height: 1.4; }

.about-text { display: flex; flex-direction: column; gap: 16px; }
.ab-p { font-size: 15px; color: var(--text-2); line-height: 1.75; }
.ab-p strong { color: var(--text); }

.ab-location {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px;
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.ab-location i { color: var(--blue-500); font-size: 16px; margin-top: 2px; }
.ab-location strong { color: var(--text); display: block; margin-bottom: 4px; }

.ab-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ab-svc {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
}
.ab-svc i { color: var(--blue-500); font-size: 14px; }

/* ════════════════════════════════════════════════
   WHY US STRIP
═══════════════════════════════════════════════ */
.why-strip { background: var(--bg-2); padding: var(--section-pad) 0; }
.why-head { text-align: center; margin-bottom: clamp(32px,5vw,56px); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.wc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}
.wc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}
.wc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff; border-radius: var(--r-md); font-size: 20px;
  margin-bottom: 16px;
}
.wc h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.wc p  { font-size: 13px; color: var(--text-3); line-height: 1.65; }

/* ════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════ */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
  grid-auto-flow: dense;
}
@media (max-width: 900px)  { .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; } }
@media (max-width: 480px)  { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } }

.g-item {
  border-radius: var(--r-md); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--bg-2);
}
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

.g-item img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s var(--ease-out);
}
.g-item:hover img { transform: scale(1.08); }

.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,31,60,0.75) 0%, rgba(13,31,60,0.20) 60%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end;
  padding: 20px; gap: 6px;
  opacity: 0; transition: opacity 0.3s;
  color: #fff;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay i { font-size: 18px; opacity: 0.8; }
.g-overlay span { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; }

/* ════════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lb-backdrop {
  position: fixed; inset: 0; z-index: 2900;
  background: rgba(5,8,16,0.92); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.lb-backdrop.open { opacity: 1; visibility: visible; }

.lb-img-wrap {
  position: relative; z-index: 1;
  max-width: 900px; max-height: 80vh; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
#lbImg {
  max-width: 100%; max-height: 72vh;
  object-fit: contain; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  transition: opacity 0.3s, transform 0.3s;
}
.lb-caption {
  font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lb-counter {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; font-size: 12px; color: rgba(255,255,255,0.5);
}

.lb-close {
  position: fixed; top: 24px; right: 28px; z-index: 1;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 24px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.22); transform: scale(1.1); }

.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 1;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); transform: translateY(-50%) scale(1.1); }

/* ════════════════════════════════════════════════
   MAP
═══════════════════════════════════════════════ */
.map-section { background: var(--bg-2); }

.map-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 48px; align-items: start;
}
@media (max-width: 860px) { .map-layout { grid-template-columns: 1fr; } }

.map-info { display: flex; flex-direction: column; gap: 24px; }
.map-address h3 {
  font-size: 20px; font-weight: 700; font-family: 'Cormorant Garamond', serif;
  color: var(--text); margin-bottom: 16px;
}
.map-address address p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-2); line-height: 1.65;
  margin-bottom: 12px;
}
.map-address i { color: var(--blue-500); margin-top: 2px; }
.map-address a { color: var(--text-2); transition: color 0.2s; }
.map-address a:hover { color: var(--blue-500); }

.map-hours h4 {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text); margin-bottom: 10px;
}
.map-hours ul { display: flex; flex-direction: column; gap: 6px; }
.map-hours li {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--text-2);
  padding-bottom: 6px; border-bottom: 1px solid var(--border);
}

.map-btn { margin-top: 8px; }

.map-embed-wrap {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 400px;
}
.map-embed-wrap iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: clamp(48px,7vw,96px) 0;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px,4vw,44px); font-weight: 600; color: #fff;
  margin-bottom: 8px;
}
.cta-text p { font-size: 15px; color: rgba(255,255,255,0.70); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btns .btn-primary {
  background: #fff; color: var(--blue-700) !important;
}
.cta-btns .btn-primary:hover { background: var(--blue-100); }

/* ════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px,6vw,80px);
}
.footer-body {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
}
@media (max-width: 900px) { .footer-body { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer-body { grid-template-columns: 1fr; } }

.ft-brand .footer-logo { margin-bottom: 12px; display: inline-block; }
.ft-tagline { font-size: 13px; color: var(--text-3); line-height: 1.7; margin-bottom: 18px; }
.ft-wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: #25d366; color: #fff;
  border-radius: var(--r-full); font-size: 13px; font-weight: 600;
  transition: background 0.2s;
}
.ft-wa-link:hover { background: #1ebe5c; }

.ft-links h4, .ft-services h4, .ft-contact h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text); margin-bottom: 16px;
}
.ft-links ul, .ft-services ul { display: flex; flex-direction: column; gap: 10px; }
.ft-links a, .ft-services li {
  font-size: 13px; color: var(--text-3);
  transition: color 0.2s;
}
.ft-links a:hover { color: var(--blue-400); }

.ft-contact address p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-3); margin-bottom: 10px; line-height: 1.65;
}
.ft-contact i { color: var(--blue-400); font-size: 13px; margin-top: 2px; }
.ft-contact a { color: var(--text-3); transition: color 0.2s; }
.ft-contact a:hover { color: var(--blue-400); }

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bar p { font-size: 12px; color: var(--text-3); }
.ft-craft { color: var(--text-3); }

/* ════════════════════════════════════════════════
   FLOATING WHATSAPP
═══════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px;
  background: #25d366; color: #fff;
  border-radius: var(--r-full);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
.wa-icon { font-size: 22px; }
.wa-label { white-space: nowrap; }

/* Pulse ring */
.wa-pulse {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: #25d366; border-radius: 50%;
}
.wa-pulse::before, .wa-pulse::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: #25d366;
  animation: wa-ring 1.8s ease-out infinite;
}
.wa-pulse::after { animation-delay: 0.6s; }
@keyframes wa-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 800;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1.5px solid var(--border);
  color: var(--text-2); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s var(--ease-spring);
  pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--blue-700); color: #fff; border-color: var(--blue-700); transform: translateY(-3px); }

/* ════════════════════════════════════════════════
   RESPONSIVE — NAVBAR
═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 12px; }
}

/* ════════════════════════════════════════════════
   FOCUS RING (Accessibility)
═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
