/* =====================================================
   PAL FASHION — Premium Stylesheet (Clean)
   ===================================================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --navy: #1a2744;
  --cream: #f5efe6;
  --dark: #0a0c12;
  --dark-2: #0e1018;
  --dark-3: #141720;
  --dark-4: #1a1e2a;
  --text-primary: #f0e8d8;
  --text-secondary: #b8a990;
  --text-muted: #7a6f5d;
  --border: rgba(201, 168, 76, 0.2);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
a {
  color: inherit;
  text-decoration: none;
}

.gold-text {
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-card {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--border);
  padding: 10px 24px;
  font-size: 0.9rem;
  margin-top: 20px;
  border-radius: 50px;
}
.btn-card:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-full {
  width: 100%;
  justify-content: center;
}
.btn-icon {
  font-size: 0.75rem;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 14px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo em {
  color: var(--gold);
  font-style: normal;
}
.logo-icon {
  color: var(--gold);
  font-size: 1rem;
}
.nav-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-logo-img {
  height: 72px;
  width: 72px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  font-weight: 400;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--dark);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
/* ── Special Catalogue nav link — Unique Animated ── */
@keyframes catGlowPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(201, 168, 76, 0),
      0 0 12px rgba(201, 168, 76, 0.25);
    border-color: rgba(201, 168, 76, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(201, 168, 76, 0.12),
      0 0 28px rgba(201, 168, 76, 0.5);
    border-color: rgba(232, 201, 122, 0.9);
  }
}
@keyframes catShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes catBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  70% {
    transform: translateY(-1px);
  }
}
@keyframes dotBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.5);
  }
}

.nav-catalogue-link {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 7px 16px 7px 14px !important;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  /* Shimmer gradient text background */
  background: linear-gradient(
    110deg,
    rgba(201, 168, 76, 0.08) 0%,
    rgba(232, 201, 122, 0.22) 40%,
    rgba(201, 168, 76, 0.08) 60%,
    rgba(160, 120, 48, 0.12) 100%
  );
  background-size: 300% 100%;
  color: var(--gold-light) !important;
  /* Layered animations */
  animation:
    catGlowPulse 2.2s ease-in-out infinite,
    catShimmer 3.5s linear infinite,
    catBounce 4s ease-in-out infinite;
}
/* Shimmer sweep overlay */
.nav-catalogue-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  animation: catShimmer 2.4s linear infinite;
  border-radius: 50px;
  pointer-events: none;
}
/* Live red dot badge */
.nav-catalogue-link::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d4d;
  border: 1.5px solid var(--dark);
  animation: dotBlink 1.4s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255, 77, 77, 0.7);
}
.nav-catalogue-link:hover {
  animation: none;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold)
  ) !important;
  color: var(--dark) !important;
  border-color: var(--gold-light) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 6px 28px rgba(201, 168, 76, 0.5),
    0 0 0 3px rgba(201, 168, 76, 0.15);
}
.nav-catalogue-link:hover::before {
  display: none;
}
.nav-catalogue-link:hover::after {
  background: #fff;
  border-color: var(--dark);
  animation: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO — UNIQUE DESKTOP LAYOUT
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.hero * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 12, 18, 0.98) 0%,
    rgba(10, 12, 18, 0.93) 38%,
    rgba(10, 12, 18, 0.6) 62%,
    rgba(10, 12, 18, 0.25) 100%
  );
  z-index: 1;
}

/* Floating glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb--1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 70%
  );
  top: -60px;
  left: -80px;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb--2 {
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(26, 39, 68, 0.55) 0%,
    transparent 70%
  );
  bottom: 15%;
  left: 28%;
  animation: orbFloat 11s ease-in-out infinite;
  animation-delay: -3s;
}
.hero-orb--3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  top: 55%;
  right: 32%;
  animation: orbFloat 7s ease-in-out infinite;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-28px) scale(1.06);
  }
}

/* ── Left Content Column ── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px 80px;
  width: 55%;
  flex-shrink: 0;
}

/* Establishment badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 50px;
  padding: 7px 20px;
  margin-bottom: 22px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  width: fit-content;
  animation: fadeUp 0.7s ease both;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

/* Ornament */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 12px;
  animation: fadeUp 0.8s ease 0.1s both;
}
.orn-line {
  height: 1px;
  width: 70px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex-shrink: 0;
}
.orn-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.orn-diamond {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
}

/* Title */
.hero-title {
  margin-bottom: 18px;
  line-height: 1.06;
  animation: fadeUp 0.9s ease 0.15s both;
}
.hero-title-top {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.hero-title-main {
  display: block;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
/* Shimmering gold text on words */
.word {
  display: inline-block;
  background: linear-gradient(
    120deg,
    var(--gold-light) 0%,
    #fff 30%,
    var(--gold) 50%,
    #fff 70%,
    var(--gold-light) 100%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 5s linear infinite;
}
.word.w1 {
  animation-delay: 0s;
  margin-right: 18px;
}
.word.w2 {
  animation-delay: -2.5s;
}
@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 250% center;
  }
}

/* Category tag chips */
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeUp 0.9s ease 0.25s both;
}
.hero-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-tag:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

/* Subtitle */
.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 34px;
  max-width: 460px;
  animation: fadeUp 0.9s ease 0.3s both;
}

/* Action Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.9s ease 0.4s both;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeUp 0.9s ease 0.5s both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-suffix {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 3px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    transparent
  );
}

/* ── Right Side Glass Cards ── */
.hero-side-panel {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 140px 60px 80px 20px;
  animation: fadeLeft 1s ease 0.3s both;
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.side-card {
  background: rgba(10, 12, 18, 0.75);
  border: 1.5px solid rgba(201, 168, 76, 0.55);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  padding: 22px 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: var(--transition);
  cursor: default;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.side-card:hover {
  border-color: var(--gold);
  border-left-color: var(--gold-light);
  background: rgba(10, 12, 18, 0.88);
  transform: translateX(-10px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.3),
    0 12px 48px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 168, 76, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.side-card--mid {
  margin-left: 28px;
  border-color: var(--gold);
  border-left: 4px solid var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.2),
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.side-card--mid:hover {
  transform: translateX(-4px) scale(1.02);
  background: rgba(201, 168, 76, 0.13);
}
.side-card-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.side-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.side-card p {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.side-card span {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 42px;
  height: 42px;
}
.scroll-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  animation: ringPulse 2.5s ease-in-out infinite;
}
.scroll-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  animation: arrowBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    border-color: rgba(201, 168, 76, 0.35);
  }
  50% {
    transform: scale(1.15);
    border-color: rgba(201, 168, 76, 0.7);
  }
}
@keyframes arrowBounce {
  0%,
  100% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(4px);
  }
}

/* Entry animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hide-mob {
  display: inline;
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
  background: linear-gradient(
    135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--dark);
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =====================================================
   PRODUCTS SECTION
   ===================================================== */
.products-section {
  padding: 100px 0;
  background: var(--dark-2);
}
/* ── Swiper Custom Styling ── */
.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  width: 10px !important;
  height: 10px !important;
  opacity: 0.5 !important;
  transition: var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 24px !important;
  border-radius: 5px !important;
  opacity: 1 !important;
}
.slider-arrow {
  color: var(--gold) !important;
  background: var(--dark-3);
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.slider-arrow:after {
  font-size: 1.2rem !important;
  font-weight: bold;
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--dark) !important;
  transform: scale(1.1);
}
.product-card {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}
.product-card--featured {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.08);
}
.card-image-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .card-img {
  transform: scale(1.05);
}
.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.badge-silver {
  background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
}
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-icon {
  display: inline-block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  margin-right: 6px;
  vertical-align: middle;
}
.card-body h3 {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
  vertical-align: middle;
}
.card-body p {
  color: var(--text-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.product-features {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}
.product-features li {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =====================================================
   WHY SECTION
   ===================================================== */
.why-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.why-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text h2 {
  margin-bottom: 20px;
}
.why-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--border);
}
.pillar-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.pillar strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.why-image-stack {
  position: relative;
  height: 600px;
}
.img-frame-wrapper {
  position: absolute;
}
.wrapper-top {
  width: 60%;
  top: 0;
  right: 15%;
  z-index: 1;
}
.wrapper-bottom {
  width: 55%;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}
.wrapper-top .img-frame {
  height: 380px;
}
.wrapper-bottom .img-frame {
  height: 300px;
}
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Detail Stacks */
.detail-stack {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.top-right-details {
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
}
.bottom-right-details {
  top: 50%;
  right: -45px;
  transform: translateY(-50%);
}

/* Detail Circular Images */
.detail-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
  background: var(--dark);
  transition: transform 0.3s;
}
.detail-circle:hover {
  transform: scale(1.1);
}

/* Detail Square Images */
.detail-square {
  width: 80px;
  height: 70px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
  background: var(--dark);
  transition: transform 0.3s;
}
.detail-square:hover {
  transform: scale(1.1);
}

/* Center Badge */
.floating-badge {
  position: absolute;
  top: 55%;
  left: 45%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #e3c473, #cca03c);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 35px rgba(209, 171, 79, 0.8), 0 10px 20px rgba(0,0,0,0.6);
  border: 2px solid #fff;
  z-index: 5;
}
.fb-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e0c09; /* Very dark almost black */
  line-height: 1;
}
.fb-text {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0e0c09;
  letter-spacing: 0.05em;
  margin-top: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section {
  padding: 100px 0;
  background: var(--dark-2);
}
.gallery-slider-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.gallery-slider-wrap::before,
.gallery-slider-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15vw;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.gallery-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-2), transparent);
}
.gallery-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-2), transparent);
}
.gallery-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: galleryScroll 40s linear infinite;
}
.gallery-slider-wrap:hover .gallery-slider-track {
  animation-play-state: paused;
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  height: auto;
  flex-shrink: 0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 12, 9, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 70%
  );
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--gold-light);
}
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-item p,
.info-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.info-item a:hover {
  color: var(--gold);
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-secondary);
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group select option {
  background: var(--dark-3);
}
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: var(--radius-sm);
  color: #81c784;
  font-size: 0.95rem;
  margin-top: 16px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 20px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ── Tablet (1024px) ── */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4) {
    grid-column: span 1;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-image-stack {
    height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-content {
    padding: 130px 32px 60px 48px;
    width: 58%;
  }
  .hero-side-panel {
    padding: 130px 32px 60px 16px;
  }
  .side-card--mid {
    margin-left: 16px;
  }
}

/* ── Large Mobile / Small Tablet (860px) ── */
@media (max-width: 860px) {
  /* Hero stacks vertically */
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: 100svh;
  }
  .hero-content {
    width: 100%;
    padding: 110px 20px 32px 20px;
  }

  /* Side panel becomes horizontal compact strip */
  .hero-side-panel {
    flex-direction: row;
    width: 100%;
    padding: 0 20px 56px 20px;
    gap: 10px;
    animation: none;
  }
  .side-card {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 14px;
    margin-left: 0 !important;
    border-left: 3px solid var(--gold);
  }
  .side-card--mid {
    margin-left: 0;
  }
  .side-card-icon {
    font-size: 1.8rem;
  }
  .side-card p {
    font-size: 0.95rem;
  }
  .side-card span {
    font-size: 0.72rem;
  }

  /* Hero title smaller */
  .hero-title-main {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }

  .hide-mob {
    display: none;
  }

  /* Stats row */
  .hero-stats {
    gap: 20px;
    justify-content: flex-start;
  }
  .stat-divider {
    display: block;
  }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1000; /* Always above the open menu overlay */
  }
  .nav-logo-img {
    height: 56px;
    width: 56px;
  }
  .logo {
    font-size: 1.1rem;
  }
  /* Keep navbar above the nav overlay when menu is open */
  .navbar {
    z-index: 1000;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 84px 24px 40px;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(24px);
    gap: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }
  /* Hamburger X close button styling when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hamburger.active span {
    background: var(--gold);
  }
  /* Mobile — Catalogue link special styling */
  .nav-links.open .nav-catalogue-link {
    width: 100%;
    justify-content: center;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    border-radius: 14px;
    border-width: 2px;
    letter-spacing: 0.04em;
    margin-top: 8px;
  }
  .nav-links.open .nav-catalogue-link::after {
    top: 8px;
    right: 10px;
    width: 9px;
    height: 9px;
  }

  /* Hero */
  .hero-content {
    padding: 100px 18px 28px 18px;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }
  .hero-title-top {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }
  .hero-title-main {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }
  .word.w1 {
    margin-right: 10px;
  }
  .hero-tags {
    gap: 8px;
  }
  .hero-tag {
    font-size: 0.75rem;
    padding: 5px 13px;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-actions {
    gap: 12px;
    margin-bottom: 36px;
  }
  .hero-actions .btn {
    padding: 12px 22px;
    font-size: 0.88rem;
  }

  /* Stats */
  .hero-stats {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
  .stat-divider {
    display: block;
  }
  .stat-num {
    font-size: 1.7rem;
  }
  .stat-suffix {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 0.62rem;
  }

  /* Side panel — visible and stacked on mobile */
  .hero-side-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 18px 48px;
    gap: 12px;
    box-sizing: border-box;
  }
  .side-card {
    flex: unset;
    width: 100%;
    margin-left: 0 !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }
  .products-section {
    padding: 60px 0;
  }

  /* Why section */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .why-image-stack {
    height: 280px;
  }
  .why-section {
    padding: 60px 0;
  }
  .wrapper-top .img-frame {
    height: 260px;
  }
  .wrapper-bottom .img-frame {
    height: 220px;
  }
  .floating-badge {
    width: 110px;
    height: 110px;
  }
  .fb-num {
    font-size: 1.6rem;
  }
  .fb-text {
    font-size: 0.85rem;
  }

  /* Gallery */
  .gallery-section {
    padding: 60px 0;
  }
  /* Tablet gallery size auto handled by Swiper */

  /* Contact */
  .contact-section {
    padding: 60px 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .footer-logo-img {
    height: 56px;
    width: 56px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    padding: 24px 24px;
  }
}

/* ── Small Mobile (480px) ── */
@media (max-width: 480px) {
  /* Navbar */
  .nav-logo-img {
    height: 48px;
    width: 48px;
  }
  .logo {
    font-size: 1rem;
    gap: 7px;
  }
  .logo em {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero-content {
    padding: 90px 16px 24px 16px;
  }
  .hero-badge {
    font-size: 0.68rem;
  }
  .hero-title-main {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats in 3-col grid */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    text-align: center;
  }
  .stat {
    align-items: center;
  }
  .stat-divider {
    display: block;
    width: 1px;
    height: 32px;
  }

  /* Side panel compact */
  .hero-side-panel {
    padding: 0 16px 44px;
    gap: 8px;
  }
  .side-card {
    padding: 12px 14px;
    gap: 12px;
  }
  .side-card-icon {
    font-size: 1.5rem;
  }
  .side-card p {
    font-size: 0.9rem;
  }
  .side-card span {
    font-size: 0.7rem;
  }

  /* Mobile gallery size auto handled by Swiper */

  /* Why image */
  .why-image-stack {
    height: 380px;
    margin-top: 24px;
  }
  .wrapper-top {
    width: 75%;
    right: 5%;
  }
  .wrapper-bottom {
    width: 70%;
  }
  .wrapper-top .img-frame {
    height: 220px;
  }
  .wrapper-bottom .img-frame {
    height: 180px;
  }
  .floating-badge {
    width: 95px;
    height: 95px;
  }
  .fb-num {
    font-size: 1.4rem;
  }
  .fb-text {
    font-size: 0.75rem;
  }

  /* Pillars */
  .pillar {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── Very Small (360px) ── */
@media (max-width: 380px) {
  .hero-title-main {
    font-size: 1.9rem;
  }
  .hero-tags {
    display: none;
  }
  .word.w1 {
    margin-right: 6px;
  }
  .hero-side-panel {
    display: flex;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-divider {
    display: none;
  }
  .stat {
    align-items: flex-start;
  }
}
