/* --------------------
   GLOBAL DESIGN TOKENS
   -------------------- */
:root {
  --bg: #ffffff;
  --panel: rgba(255,255,255,0.65);
  --muted: #7b7b7b;
  --text: #0b0b0b;
  --glass-border: rgba(15,15,15,0.06);
  --shadow: rgba(10,10,10,0.06);
  --radius: 14px;
  --ease: cubic-bezier(.2,.9,.25,1);
  --gap-desktop: 90px;
  --gap-mobile: 56px;
}
* {
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
body {
  overscroll-behavior-y: contain;
}

/* --------------------
   BASE
   -------------------- */
* { box-sizing: border-box; }
body {
  margin: 0;
  background: linear-gradient(180deg,#fff 0%,#fbfbfb 100%);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container-compact {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------
   NAVBAR
   -------------------- */
.navbar-glass {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  background: var(--panel);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  box-shadow: 0 8px 30px var(--shadow);
  z-index: 2000;
}

/* Compact on scroll */
.navbar-glass.compact {
  background: rgba(255,255,255,0.75);
  transform: translate(-50%,-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand .logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg,#f5f5f5,#fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.brand .title {
  font-family: "Playfair Display", serif;
  color: var(--text);
  font-size: 15px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
}
.nav-links a:hover { background: rgba(0,0,0,0.04); }
.nav-cta { margin-left: 12px; }
@media (max-width: 991px) { .nav-links, .nav-cta { display: none; } }

/* --------------------
   HERO SECTION
   -------------------- */
/*.hero {*/
/*  min-height: 90vh;*/
/*  padding: 140px 0 80px;*/
/*  display: flex;*/
/*  align-items: center;*/
/*}*/

/* 🖼️ HERO FIX */
.hero {
  padding-top: 120px;
  padding-bottom: 60px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .hero-card img {
    border-radius: 12px;
    width: 100%;
  }
}

.hero-title {
  font-family: "Playfair Display";
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 46ch;
  margin-bottom: 24px;
}
.hero-ctas a {
  margin-right: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
}
.btn-accent {
  background: #111;
  color: #fff;
  border: none;
  transition: all .3s;
}
.btn-accent:hover { background: #000; transform: translateY(-2px); }
.btn-min {
  background: #fff;
  border: 1px solid #ddd;
  color: #000;
}
.hero-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13,13,13,0.06);
}
.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .hero { flex-direction: column; text-align: center; padding: 100px 16px 60px; }
  .hero-title { font-size: 32px; line-height: 1.2; }
  .hero-sub { font-size: 15px; margin: 0 auto 20px; }
  .hero-card { margin-top: 30px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
}

/* --------------------
   PRODUCTS
   -------------------- */
.products { padding: 80px 0; background: #fff; }
.section-title {
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 50px;
}
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 28px;
}
.prod-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.image-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.prod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.prod-img.active { opacity: 1; position: relative; }
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  transition: .3s;
}
.nav-btn.left { left: 10px; }
.nav-btn.right { right: 10px; }
.nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  border: none;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.prod-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.quote-btn {
  border: none;
  background: linear-gradient(90deg,#000,#333);
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .3s;
}
.quote-btn:hover { background: #000; transform: translateY(-2px); }

.btn-view-all {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #000;
  border-radius: 999px;
  padding: 10px 24px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: all .3s ease;
}
.btn-view-all:hover { background: #000; color: #fff; transform: translateY(-2px); }

/* --------------------
   MOBILE FIXES
   -------------------- */
@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .products { padding: 60px 0; }
  .image-wrapper { height: 240px; }
  .prod-info h5 { font-size: 16px; }
  .zoom-btn { width: 34px; height: 34px; font-size: 16px; }
  .btn-view-all { font-size: 15px; padding: 12px 26px; }
}

/* =======================
   SCROLL REVEAL ANIMATIONS
   ======================= */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(.2,.8,.25,1);
}
[data-animate].in {
  opacity: 1;
  transform: translateY(0);
}
[data-animate].stagger:nth-child(2) { transition-delay: 0.1s; }
[data-animate].stagger:nth-child(3) { transition-delay: 0.2s; }
[data-animate].stagger:nth-child(4) { transition-delay: 0.3s; }
  