@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
  --bg-color: #050505;
  --bg-darker: #020202;
  --bg-light: #0d0d0d;
  --bg-card: rgba(13, 13, 13, 0.6);
  --gold: #d4af37;
  --gold-rgb: 212, 175, 55;
  --gold-light: #f3e5ab;
  --gold-dark: #aa7c11;
  --text-white: #f3f4f6;
  --text-gray: #a3a3a3;
  --silver: #e5e7eb;
  --border-glass: rgba(212, 175, 55, 0.12);
  --border-glass-hover: rgba(212, 175, 55, 0.3);
  --font-serif: 'Cormorant Garamond', serif;
  --font-luxury: 'Playfair Display', serif;
  --font-sans: 'Poppins', sans-serif;
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s ease;
}

/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 1px;
}

p {
  color: var(--text-gray);
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

/* Custom Luxury Cursor */
.custom-cursor {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
}

/* Cursor Hover states triggered by JS */
.custom-cursor.hovered {
  width: 56px;
  height: 56px;
  background-color: rgba(var(--gold-rgb), 0.05);
  border-color: var(--gold);
}

.custom-cursor-dot.hovered {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: var(--text-white);
}

/* Button & Link utilities */
.btn-gold {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-color);
  background-color: var(--gold);
  border: 1px solid var(--gold);
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-medium);
  cursor: pointer;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--gold);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.4);
}

.btn-outline {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-medium);
  cursor: pointer;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--text-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-outline:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-outline:hover {
  color: var(--bg-color);
  border-color: var(--text-white);
}

/* Glow effects & utilities */
.glow-text {
  text-shadow: 0 0 10px rgba(var(--gold-rgb), 0.3);
}

.glow-border {
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.1);
  transition: var(--transition-medium);
}

.glow-border:hover {
  box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.25);
  border-color: var(--gold);
}

/* Glassmorphism */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
}

/* Page Section padding */
section {
  padding: 100px 8%;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-subtitle {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-white);
  font-weight: 300;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Scroll reveal initial states */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-medium);
}

.navbar.scrolled {
  padding: 15px 8%;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: opacity var(--transition-medium);
}

.navbar-logo {
  height: 45px;
  width: auto;
  border-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text-white);
  font-weight: 500;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar-link {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-gray);
  padding: 8px 0;
  position: relative;
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

.navbar-link:hover {
  color: var(--gold);
}

.navbar-link:hover::after {
  width: 100%;
}

.navbar-link.active {
  color: var(--gold);
}

.navbar-link.active::after {
  width: 100%;
}

.navbar-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.navbar-social-link {
  color: var(--text-gray);
  font-size: 1.1rem;
}

.navbar-social-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger-box {
  width: 26px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  position: absolute;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Hamburger active animation */
.hamburger.is-active .hamburger-inner {
  transform: rotate(45deg);
  background-color: var(--gold);
}

.hamburger.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  background-color: var(--gold);
}

.hamburger.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  background-color: var(--gold);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--bg-darker);
  overflow: hidden;
  padding-bottom: 140px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0) 60%, var(--bg-color) 100%);
  z-index: 2;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 30px;
  color: var(--text-white);
  opacity: 0;
  transform: translateY(35px);
  animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  letter-spacing: 2px;
}

.hero-title span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 45px;
  color: var(--text-gray);
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-btns {
  display: flex;
  gap: 25px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  animation: fadeIn 2s ease 1.5s forwards;
}

.scroll-line {
  height: 50px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
  background: var(--gold-light);
  animation: scrollDown 2s infinite ease-in-out;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 10px;
  color: var(--text-gray);
}

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

@keyframes fadeIn {
  to {
    opacity: 0.7;
  }
}

@keyframes scrollDown {
  0% {
    top: -15px;
  }
  50% {
    top: 50px;
  }
  100% {
    top: 50px;
  }
}

/* BRAND STORY SECTION */
.brand-story {
  background: var(--bg-darker);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.story-img-container {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
}

.story-img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(5, 5, 5, 0.6) 100%);
  z-index: 2;
  pointer-events: none;
}

.story-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-img-container:hover .story-img {
  transform: scale(1.05);
}

.story-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(var(--gold-rgb), 0.05);
  filter: blur(100px);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  top: -50px;
  right: -50px;
}

.story-content {
  display: flex;
  flex-direction: column;
}

.story-subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.story-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 300;
}

.story-title span {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--gold-light);
}

.story-text {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: var(--text-white);
}

.story-desc {
  font-size: 0.95rem;
  margin-bottom: 40px;
}

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

.story-detail-item h4 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.story-detail-item p {
  font-size: 0.85rem;
}

/* FEATURED COLLECTION SECTION */
.collections {
  background: var(--bg-color);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 25px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: var(--transition-slow);
  cursor: pointer;
}

/* Grid span logic for cinematic look */
.collection-card:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

.collection-card:nth-child(2) {
  grid-column: span 3;
  grid-row: span 1;
}

.collection-card:nth-child(3) {
  grid-column: span 3;
  grid-row: span 1;
}

.collection-card:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.collection-card:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.3) 50%, rgba(5, 5, 5, 0.1) 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 3;
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.collection-tag {
  font-family: var(--font-sans);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.collection-name {
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 15px;
}

.collection-link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.collection-link svg {
  transition: transform 0.3s ease;
}

/* Card hover animation */
.collection-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(var(--gold-rgb), 0.15);
}

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

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.4) 50%, rgba(5, 5, 5, 0.15) 100%);
}

.collection-card:hover .collection-info {
  transform: translateY(0);
}

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

.collection-card:hover .collection-link svg {
  transform: translateX(5px);
}

/* SIGNATURE SHOWCASE SECTION */
.signature-showcase {
  background: var(--bg-darker);
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.showcase-slider-wrapper {
  overflow: hidden;
  padding: 20px 0;
  cursor: grab;
}

.showcase-slider-wrapper:active {
  cursor: grabbing;
}

.showcase-track {
  display: flex;
  gap: 40px;
  padding-left: 8%;
  padding-right: 8%;
  will-change: transform;
}

.showcase-item {
  flex: 0 0 450px;
  position: relative;
  height: 580px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
  user-select: none;
}

.showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.8) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.showcase-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.showcase-item.wide-banner .showcase-item-img {
  object-position: center top;
}

.showcase-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  z-index: 3;
}

.showcase-item-category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.showcase-item-name {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-white);
  margin-bottom: 10px;
}

.showcase-item-price {
  font-family: var(--font-sans);
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Wider custom highlight card inside showcase */
.showcase-item.wide-banner {
  flex: 0 0 750px;
}

.showcase-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.12);
}

.showcase-item:hover .showcase-item-img {
  transform: scale(1.04);
}

.showcase-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 8% 0 8%;
}

.showcase-instructions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-gray);
}

.showcase-drag-line {
  width: 60px;
  height: 1px;
  background: var(--text-gray);
  position: relative;
}

.showcase-drag-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: horizontalDrag 2s infinite ease-in-out;
}

@keyframes horizontalDrag {
  0% { left: 0; }
  50% { left: 54px; }
  100% { left: 0; }
}

.showcase-arrows {
  display: flex;
  gap: 15px;
}

.showcase-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.showcase-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
}

/* WHY CHOOSE US SECTION */
.why-us {
  background: var(--bg-color);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-glass);
  transition: var(--transition-slow);
}

.why-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.05);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
  margin-bottom: 25px;
  transition: var(--transition-medium);
}

.why-card-icon svg {
  width: 30px;
  height: 30px;
  transition: var(--transition-medium);
}

.why-card-title {
  font-size: 1.35rem;
  font-weight: 300;
  margin-bottom: 15px;
  color: var(--text-white);
}

.why-card-text {
  font-size: 0.85rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(13, 13, 13, 0.8);
  box-shadow: 0 15px 35px rgba(var(--gold-rgb), 0.15);
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  color: var(--bg-color);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.4);
  border-color: var(--gold);
  transform: rotateY(180deg);
}

/* TESTIMONIAL CAROUSEL SECTION */
.testimonials {
  background: var(--bg-darker);
  position: relative;
}

.testimonials-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(var(--gold-rgb), 0.03);
  filter: blur(150px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-medium);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 10px;
}

.testimonial-card {
  padding: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-quote-icon {
  color: rgba(var(--gold-rgb), 0.15);
  margin-bottom: 20px;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  color: var(--gold);
  margin-bottom: 25px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-white);
  margin-bottom: 35px;
  font-weight: 300;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}

.testimonial-user-info {
  text-align: left;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-white);
}

.testimonial-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* INSTAGRAM GALLERY */
.instagram-gallery {
  background: var(--bg-color);
}

.insta-masonry {
  columns: 4 250px;
  column-gap: 25px;
  margin-bottom: 50px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 25px;
  break-inside: avoid;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-slow);
}

.insta-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.insta-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 2;
  transition: var(--transition-medium);
}

.insta-hover-overlay svg {
  color: var(--gold);
  width: 36px;
  height: 36px;
  transform: scale(0.6);
  transition: var(--transition-medium);
}

.insta-item:hover {
  border-color: var(--gold);
}

.insta-item:hover img {
  transform: scale(1.05);
}

.insta-item:hover .insta-hover-overlay {
  opacity: 1;
}

.insta-item:hover .insta-hover-overlay svg {
  transform: scale(1);
}

.insta-btn-container {
  text-align: center;
}

/* CONTACT & MAP */
.contact {
  background: var(--bg-darker);
  display: grid;
  grid-template-columns: 1.10fr 0.90fr;
  gap: 70px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-address {
  font-style: normal;
  margin-bottom: 40px;
}

.contact-address-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 300;
}

.contact-address-text {
  font-size: 1.05rem;
  color: var(--text-white);
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 10px;
}

.contact-phone svg {
  color: var(--gold);
}

.contact-phone a:hover {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 45px;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition-medium);
}

.contact-btn.btn-call {
  background: var(--gold);
  color: var(--bg-color);
  border: 1px solid var(--gold);
}

.contact-btn.btn-call:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.3);
}

.contact-btn.btn-whatsapp-cta {
  background: #25d366;
  color: white;
  border: 1px solid #25d366;
}

.contact-btn.btn-whatsapp-cta:hover {
  background: transparent;
  color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.btn-directions {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-btn.btn-directions:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
}

.contact-socials-container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.contact-socials-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.contact-socials {
  display: flex;
  gap: 15px;
}

.contact-social-item {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-gray);
  transition: var(--transition-fast);
}

.contact-social-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
  transform: translateY(-3px);
}

/* Map wrapper & Dark thematic filter */
.map-wrapper {
  position: relative;
  border: 1px solid var(--border-glass);
  min-height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 450px;
  filter: grayscale(1) invert(0.92) contrast(1.1); /* Turns Google maps into elegant dark luxury theme! */
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 32px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: var(--transition-medium);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* FOOTER */
.footer {
  background: linear-gradient(to bottom, var(--bg-darker) 0%, var(--bg-color) 100%);
  border-top: 1px solid var(--gold-dark);
  padding: 80px 8% 40px 8%;
  color: var(--text-gray);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 45px;
  width: auto;
  border-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-white);
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 30%, var(--gold-light) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-text {
  font-size: 0.85rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
}

.footer-col h4 {
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--gold);
}

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

.footer-links a {
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

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

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

/* RESPONSIVE DESIGN BREAKPOINTS */

@media (max-width: 1200px) {
  section {
    padding: 80px 5%;
  }
  .navbar {
    padding: 20px 5%;
  }
  .navbar.scrolled {
    padding: 12px 5%;
  }
  .collections-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
  }
  .collection-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .collection-card:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .collection-card:nth-child(3) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .collection-card:nth-child(4) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .collection-card:nth-child(5) {
    grid-column: span 4;
    grid-row: span 1;
  }
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .showcase-track {
    padding-left: 5%;
    padding-right: 5%;
  }
  .showcase-controls {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .brand-story {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .story-img {
    height: auto;
  }
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  /* Disable custom cursor on touch/mobile devices */
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
  body {
    cursor: default !important;
  }
  .hamburger {
    display: block;
  }
  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-darker);
    border-left: 1px solid var(--border-glass);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }
  .navbar-menu.is-active {
    right: 0;
  }
  .navbar-socials {
    display: none; /* Hide top-right socials on mobile, shown in hamburger if needed */
  }
  .hero {
    height: 60vw;
    min-height: 240px;
  }
  .scroll-indicator {
    display: none;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 15px;
  }
  .btn-gold, .btn-outline {
    width: 100%;
    text-align: center;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .collections-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
  .collection-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .showcase-item {
    flex: 0 0 320px;
    height: 450px;
  }
  .showcase-item.wide-banner {
    flex: 0 0 540px;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 30px;
  }
  .testimonial-text {
    font-size: 1.25rem;
  }
  .insta-masonry {
    columns: 2 150px;
    column-gap: 15px;
  }
  .insta-item {
    margin-bottom: 15px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .navbar-title {
    font-size: 1.2rem;
  }
  .story-img {
    height: auto;
  }
  .story-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
  .insta-masonry {
    columns: 1 100%;
  }
}
