/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --bg: #FAF7F2;
  --primary: #1A1A1A;
  --secondary: #6B7280;
  --gold: #C8A97E;
  --gold-dark: #A8895E;
  --gold-light: #E8C99E;
  --white: #FFFFFF;
  --border: #E8E0D5;
  --card: #FFFFFF;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
}

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

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

body {
  background: var(--bg);
  color: var(--primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Utilities ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 72px 0; }

.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--primary);
}

.title-sm {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

.subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--secondary);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0;
}

.divider-center { margin: 0 auto; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,169,126,0.3); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  padding: 13px 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-white:hover { background: white; color: var(--primary); }

/* ── Fade In Animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: white;
  transition: color 0.4s;
  line-height: 1;
}
.navbar.scrolled .logo { color: var(--primary); }
.logo span { color: var(--gold); }
.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}

.navbar.scrolled .nav-links a { color: var(--secondary); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--gold) !important; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.navbar.scrolled .nav-phone { color: var(--secondary); }
.nav-phone:hover { color: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-links {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:hover { color: var(--gold); padding-left: 20px; }

.mobile-nav-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 32px;
  margin-left: max(32px, calc((100vw - 1280px) / 2));
}

.hero-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.7s forwards;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.9s forwards;
}

.hero-stats {
  position: absolute;
  right: max(32px, calc((100vw - 1280px) / 2));
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 20px;
  text-align: center;
  min-width: 100px;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

.hero-stat:nth-child(1) { animation-delay: 1.2s; }
.hero-stat:nth-child(2) { animation-delay: 1.4s; }
.hero-stat:nth-child(3) { animation-delay: 1.6s; }

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  display: block;
}

.hero-stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── ABOUT PREVIEW ── */
.about-preview { background: var(--white); }

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.about-img-main {
  grid-row: 1 / 3;
  overflow: hidden;
}

.about-img-main img,
.about-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-img-main:hover img,
.about-img-top:hover img { transform: scale(1.05); }

.about-img-top { overflow: hidden; }

.about-badge {
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}

.about-badge-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  text-align: center;
}

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

.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--secondary);
}

.checklist li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A97E' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }

.service-icon { font-size: 2.4rem; margin-bottom: 20px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card:hover h3 { color: var(--gold); }

.service-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}

.service-card:hover .service-link { gap: 10px; }

/* ── PROJECTS ── */
.projects-section { background: var(--white); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.project-card {
  cursor: pointer;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.project-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  margin-bottom: 16px;
}

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

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

.project-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.project-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.project-card:hover h3 { color: var(--gold); }

.project-loc {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 300;
}

/* ── STATS ── */
.stats { background: var(--primary); padding: 80px 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  display: block;
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step { text-align: center; position: relative; }

.step-num {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-num {
  background: var(--gold);
  color: white;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--secondary);
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
  border-color: var(--gold);
}

.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars span { color: var(--gold); font-size: 14px; }

.testimonial-card blockquote {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

.author-role {
  font-size: 11px;
  color: var(--secondary);
  font-weight: 300;
}

/* ── FAQ ── */
.faq { background: var(--bg); }

.faq-list {
  max-width: 768px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item { border: 1px solid var(--border); background: var(--white); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.2s;
  gap: 16px;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
}

.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

.faq-answer p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--secondary);
}

/* ── CTA ── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.82);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-content .title { color: white; margin-bottom: 16px; }
.cta-content .subtitle { color: rgba(255,255,255,0.6); margin-bottom: 36px; }

.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── GALLERY PREVIEW ── */
.gallery-preview { background: var(--bg); }

.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

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

.gallery-thumb:hover img { transform: scale(1.08); }

.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-thumb:hover .gallery-thumb-overlay { background: rgba(200,169,126,0.4); }

.gallery-thumb-overlay svg {
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  width: 32px; height: 32px;
}

.gallery-thumb:hover .gallery-thumb-overlay svg { opacity: 1; }

/* ── FOOTER ── */
footer { background: var(--primary); }

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding: 72px 0 56px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 4px;
}
.footer-logo span { color: var(--gold); }
.footer-logo-sub {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.3s;
}

.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links li a::before {
  content: '';
  width: 16px; height: 1px;
  background: rgba(200,169,126,0.35);
  flex-shrink: 0;
}

.footer-links li a:hover { color: white; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

.footer-contact-item a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 2s ease-in-out 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ── Mobile Call Button ── */
.call-float {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  background: var(--gold);
  color: white;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(200,169,126,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 360px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .call-float { display: flex; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 20px; margin-left: 0; }
  .hero h1 { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-grid-home { grid-template-columns: repeat(2, 1fr); }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── MOBILE PROJECT CAROUSEL ── */
.projects-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.projects-carousel {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.projects-carousel .project-card {
  flex: 0 0 calc(85vw - 48px);
  max-width: 340px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── PORTFOLIO GALLERY (home) ── */
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--primary);
}

.portfolio-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  /* No CSS transition - JS handles black fade manually */
}

.portfolio-slide.active {
  opacity: 1;
}

/* Black fade overlay - sits on top during transition */
.portfolio-fade-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 3;
  pointer-events: none;
  transition: none;
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, transparent 55%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: white;
  line-height: 1.3;
}

.portfolio-card-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.portfolio-card-dots {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  gap: 5px;
}

.portfolio-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s;
}

.portfolio-card-dot.active {
  background: white;
}

@media (max-width: 768px) {
  .portfolio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .portfolio-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ── SERVICE DETAIL REVERSE (alternating layout) ── */
.service-detail-reverse {
  direction: ltr;
}
.service-detail-reverse .service-detail-img {
  order: 2;
}
.service-detail-reverse .fade-up {
  order: 1;
}

@media (max-width: 768px) {
  .service-detail,
  .service-detail-reverse {
    grid-template-columns: 1fr !important;
  }
  .service-detail-reverse .service-detail-img,
  .service-detail-reverse .fade-up {
    order: unset;
  }
}

/* ── MOBILE STACKED PROJECT CARDS (Hari Om style) ── */
.projects-stack-wrap {
  position: relative;
  padding: 20px 0 40px;
}

.projects-stack {
  position: relative;
  height: 520px;
  margin: 0 auto;
  max-width: 340px;
}

.stack-card {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: all 0.55s cubic-bezier(0.4,0,0.2,1);
  transform-origin: bottom center;
  background: var(--primary);
}

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

.stack-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stack-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.stack-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

/* Stack positions: top card front, others behind/offset */
.stack-card:nth-child(1) { transform: translateY(0) scale(1); z-index: 6; opacity: 1; }
.stack-card:nth-child(2) { transform: translateY(18px) scale(0.93); z-index: 5; opacity: 0.85; }
.stack-card:nth-child(3) { transform: translateY(34px) scale(0.86); z-index: 4; opacity: 0.6; }
.stack-card:nth-child(4) { transform: translateY(46px) scale(0.80); z-index: 3; opacity: 0.35; }
.stack-card:nth-child(5) { transform: translateY(54px) scale(0.75); z-index: 2; opacity: 0.15; }
.stack-card:nth-child(6) { transform: translateY(60px) scale(0.72); z-index: 1; opacity: 0; }

/* Dots */
.stack-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.stack-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.stack-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── CINEMATIC PROJECT CAROUSEL (mobile) ── */
.projects-cine-wrap {
  position: relative;
  padding: 8px 0 32px;
}

.cine-viewport {
  overflow: hidden;
  /* Show partial cards on left + right */
  padding: 0 14%;
  box-sizing: border-box;
}

.cine-track {
  display: flex;
  gap: 16px;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cine-card {
  flex: 0 0 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background: var(--primary);
  aspect-ratio: 3/4;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: scale(0.94);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1), box-shadow 0.7s;
}

.cine-card.active {
  transform: scale(1);
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
}

.cine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.cine-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cine-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.cine-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

.cine-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.cine-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.cine-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ── Gallery page - mobile vertical single column ── */
@media (max-width: 600px) {
  #galleryGrid.portfolio-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  #galleryGrid .portfolio-card {
    aspect-ratio: 4/3 !important;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  #galleryGrid.portfolio-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Home Portfolio Gallery - Mobile: 1 column ── */
@media (max-width: 768px) {
  .portfolio-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .portfolio-card {
    aspect-ratio: 4/3;
  }
}
/* ── MOBILE CINEMATIC CAROUSEL ── */
.projects-cine-wrap {
  position: relative;
  padding: 0 0 28px;
}

.cine-viewport {
  overflow: hidden;
  /* 14% each side = show ~72% of card + side previews */
  padding: 0 13%;
  position: relative;
}

.cine-track {
  display: flex;
  gap: 12px;
  will-change: transform;
  align-items: center;
}

.cine-card {
  flex: 0 0 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: block;
  background: var(--primary);
  aspect-ratio: 3/4;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transform: scale(0.88);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.6s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  pointer-events: all;
}

.cine-card.active {
  transform: scale(1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.cine-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.cine-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cine-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.cine-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: white;
  line-height: 1.2;
}

.cine-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.cine-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.cine-dot.active {
  background: var(--gold);
  width: 26px;
  border-radius: 4px;
}


/* ── About page Vision/Mission - mobile 1 column ── */
@media (max-width: 768px) {
  .about-vision-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── About page - mobile fixes ── */
@media (max-width: 768px) {
  /* Excellence, Client First, Precision, Passion - 1 column */
  .about-why-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Design Team, Execution Team - 1 column */
  .about-team-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Vision Mission already fixed */
  .about-vision-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ════════════════════════════════════════
   HOVER EFFECTS — Section-wise unique
   Mobile: touch-action triggers same effect
   ════════════════════════════════════════ */

/* ── 1. SERVICE CARDS — Lift + Gold border + icon scale ── */
.service-card {
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease !important;
}
.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 48px rgba(200,169,126,0.18) !important;
  border-color: var(--gold) !important;
}
.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: scale(1.2) rotate(-5deg);
  transition: transform 0.3s ease;
  display: inline-block;
}
.service-card:hover h3 { color: var(--gold) !important; }

/* ── 2. PROJECT CARDS — Image zoom + title slide up ── */
.project-card {
  transition: transform 0.35s ease !important;
}
.project-card:hover,
.project-card:active {
  transform: translateY(-4px) !important;
}
.project-card .project-img {
  position: relative;
  overflow: hidden;
}
.project-card:hover .project-img img,
.project-card:active .project-img img {
  transform: scale(1.08) !important;
}
.project-card .project-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200,169,126,0.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.project-card:hover .project-img::after,
.project-card:active .project-img::after {
  opacity: 1;
}

/* ── 3. PORTFOLIO / GALLERY CARDS — Gold border glow ── */
.portfolio-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}
.portfolio-card:hover,
.portfolio-card:active {
  transform: scale(1.02) !important;
  box-shadow: 0 0 0 2px var(--gold), 0 16px 48px rgba(0,0,0,0.25) !important;
}

/* ── 4. BLOG CARDS — Left gold border slide ── */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left 0.3s ease !important;
  border-left: 3px solid transparent !important;
}
.blog-card:hover,
.blog-card:active {
  transform: translateX(4px) !important;
  border-left: 3px solid var(--gold) !important;
  box-shadow: -4px 8px 32px rgba(200,169,126,0.12) !important;
}
.blog-card:hover .blog-img img,
.blog-card:active .blog-img img {
  transform: scale(1.05) !important;
}

/* ── 5. TESTIMONIAL CARDS — Warm glow + slight scale ── */
.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.testimonial-card:hover,
.testimonial-card:active {
  transform: translateY(-4px) scale(1.01) !important;
  box-shadow: 0 16px 40px rgba(200,169,126,0.15) !important;
  border-color: var(--gold) !important;
}

/* ── 6. PROCESS STEPS — Circle fill + float ── */
.process-step {
  transition: transform 0.3s ease !important;
  cursor: default;
}
.process-step:hover { transform: translateY(-6px) !important; }
.process-step:hover .step-num {
  background: var(--gold) !important;
  color: white !important;
  box-shadow: 0 8px 24px rgba(200,169,126,0.35) !important;
  transform: rotate(5deg) scale(1.08) !important;
  transition: all 0.3s ease !important;
}
.process-step:hover h4 { color: var(--gold) !important; transition: color 0.3s; }

/* ── 7. ABOUT — WHY CHOOSE US cards ── */
.about-why-grid > div {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.about-why-grid > div:hover,
.about-why-grid > div:active {
  transform: translateY(-6px) !important;
  box-shadow: 0 12px 32px rgba(200,169,126,0.15) !important;
  border-color: var(--gold) !important;
}
.about-why-grid > div:hover > div:first-child {
  transform: scale(1.15) !important;
  transition: transform 0.3s ease !important;
}

/* ── 8. ABOUT TEAM CARDS ── */
.about-team-grid > div {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}
.about-team-grid > div:hover,
.about-team-grid > div:active {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(200,169,126,0.15) !important;
  border-color: var(--gold) !important;
}

/* ── 9. FAQ items ── */
.faq-item {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
}
.faq-item:hover {
  border-color: rgba(200,169,126,0.4) !important;
  box-shadow: 0 4px 16px rgba(200,169,126,0.08) !important;
}

/* ── 10. BUTTONS — Gold pulse ── */
.btn-gold {
  transition: all 0.3s ease !important;
}
.btn-gold:hover,
.btn-gold:active {
  background: var(--gold-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(200,169,126,0.4) !important;
}
.btn-outline:hover,
.btn-outline:active {
  background: var(--gold) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(200,169,126,0.3) !important;
}

/* ── 11. FOOTER LINKS ── */
.footer-links li a {
  transition: color 0.2s, padding-left 0.2s !important;
}
.footer-links li a:hover {
  color: white !important;
  padding-left: 6px !important;
}

/* ── 12. NAV LINKS ── */
.nav-links a {
  transition: color 0.2s ease !important;
}

/* ── 13. GALLERY THUMB (home) ── */
.gallery-thumb,
.masonry-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.gallery-thumb:hover,
.masonry-item:hover {
  transform: scale(1.02) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.2) !important;
  z-index: 2;
}

/* ── 14. STAT numbers ── */
.stat-card {
  transition: transform 0.3s ease, border-color 0.3s ease !important;
  border: 1px solid transparent;
}
.stat-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(200,169,126,0.3) !important;
}

/* ── Mobile touch — same effects via :active ── */
@media (hover: none) {
  /* On touch devices, use :active instead of :hover */
  .service-card:active { transform: translateY(-4px) !important; }
  .project-card:active .project-img img { transform: scale(1.05) !important; }
  .blog-card:active { transform: translateX(3px) !important; }
  .testimonial-card:active { transform: translateY(-3px) scale(1.01) !important; }
  .process-step:active { transform: translateY(-4px) !important; }
  .btn-gold:active { transform: translateY(-1px) !important; }
}

/* ════════════════════════════════════
   SCROLL ANIMATIONS — Direction-wise
   ════════════════════════════════════ */

/* Base states */
.slide-left  { opacity:0; transform:translateX(-60px); transition:opacity 0.7s ease, transform 0.7s ease; }
.slide-right { opacity:0; transform:translateX(60px);  transition:opacity 0.7s ease, transform 0.7s ease; }
.slide-up    { opacity:0; transform:translateY(50px);  transition:opacity 0.7s ease, transform 0.7s ease; }
.slide-down  { opacity:0; transform:translateY(-50px); transition:opacity 0.7s ease, transform 0.7s ease; }
.zoom-in     { opacity:0; transform:scale(0.85);       transition:opacity 0.7s ease, transform 0.7s ease; }
.rotate-in   { opacity:0; transform:rotate(-6deg) scale(0.9); transition:opacity 0.8s ease, transform 0.8s ease; }

/* Visible state */
.slide-left.visible,
.slide-right.visible,
.slide-up.visible,
.slide-down.visible,
.zoom-in.visible,
.rotate-in.visible {
  opacity:1 !important;
  transform:none !important;
}

/* Stagger delays for children */
.stagger-1 { transition-delay: 0.1s !important; }
.stagger-2 { transition-delay: 0.2s !important; }
.stagger-3 { transition-delay: 0.3s !important; }
.stagger-4 { transition-delay: 0.4s !important; }
.stagger-5 { transition-delay: 0.5s !important; }
.stagger-6 { transition-delay: 0.6s !important; }

/* ── Filter bar hide on scroll down, show on scroll up ── */
.filter-bar {
  transition: transform 0.35s ease, opacity 0.35s ease !important;
}
.filter-bar.hidden {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
