/* ==========================================
   M.B. JEWELLERS - ULTRA PREMIUM CSS
   Mobile-First | SEO Optimized | Accessible
   ========================================== */

/* CSS Variables */
:root {
  --gold: #D4AF37;
  --gold-light: #F4D03F;
  --gold-dark: #B8960C;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-gradient: linear-gradient(135deg, #D4AF37, #F4D03F, #D4AF37);
  --charcoal: #1C1C1C;
  --charcoal-light: #2A2A2A;
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #FDF8F0;
  --ivory: #FFFEF5;
  --gray-100: #F7F7F5;
  --gray-200: #EDEDEB;
  --gray-300: #D4D4D0;
  --gray-500: #737373;
  --gray-700: #404040;
  --gray-900: #171717;
  --success: #16A34A;
  --danger: #DC2626;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.25);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  --container-max: 1280px;
  --container-padding: 1rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  background: var(--gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}

h1     { font-size: clamp(2rem, 6vw, 3.75rem); }
h2     { font-size: clamp(1.75rem, 4.5vw, 2.75rem); }
h3     { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p      { margin-bottom: 1rem; }

.lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.text-gold   { color: var(--gold); }
.text-center { text-align: center; }
.text-white  { color: var(--white); }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.bg-light { background: var(--gray-100); }
.bg-cream { background: var(--cream); }
.bg-dark {
  background: var(--charcoal);
  color: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212,175,55,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--gray-300);
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
}

.btn-text {
  color: var(--gold);
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
}

.btn-text:hover {
  color: var(--gold-dark);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn-block { width: 100%; }

.btn svg { flex-shrink: 0; }

/* =====================
   TOP BAR
   ===================== */
.top-bar {
  background: var(--charcoal);
  color: var(--white);
  padding: 0.4rem 0;
  font-size: 0.8125rem;
  position: relative;
  z-index: 101;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .top-bar-content {
    justify-content: center;
    text-align: center;
  }
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.top-bar-item a {
  color: var(--gold-light);
  font-weight: 500;
}

.top-bar-item a:hover {
  color: var(--white);
}

.live-rates {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.rate-pill {
  background: rgba(212,175,55,0.15);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  border: 1px solid rgba(212,175,55,0.25);
  white-space: nowrap;
}

.rate-pill strong {
  color: var(--gold-light);
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--transition-base);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.main-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  border-bottom-color: transparent;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hamburger */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 102;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  position: relative;
  transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: all var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after  { bottom: -7px; }

.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Nav Menu — Mobile First */
.nav-menu {
  display: none;
  position: absolute;
  top: 100%; /* Directly below the navbar */
  left: 0;
  right: 0;
  height: auto;
  background: var(--white);
  padding: 1.5rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  overflow-y: auto;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-bottom: 2px solid var(--gold);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.nav-menu.active {
  display: flex;
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-link {
  display: block;
  padding: 0.875rem 1rem;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 1.0625rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

.has-dropdown { position: relative; }

.dropdown {
  display: none;
  padding-left: 1rem;
  margin-top: 0.25rem;
}

.has-dropdown.open .dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--gray-700);
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}

.nav-cta {
  display: none;
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 28, 28, 0.85) 0%,
    rgba(28, 28, 28, 0.6) 50%,
    rgba(28, 28, 28, 0.75) 100%
  );
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.hero-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.375rem 1.25rem;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-full);
}

.hero-title {
  color: var(--white);
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 4rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-subtitle.light { color: var(--gold-light); }

.section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-title.light { color: var(--white); }

.section-description {
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-description.light {
  color: rgba(255,255,255,0.7);
}

/* Brand Introduction */
.brand-content {
  display: grid;
  gap: 2.5rem;
}

.brand-text .lead {
  margin-bottom: 1.5rem;
}

.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.image-frame:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  bottom: -10px;
  right: 16px;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features / Why Choose Us */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.08);
  border-radius: var(--radius-lg);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.feature-text {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* =====================
   COLLECTIONS
   ===================== */
.collections-showcase {
  display: grid;
  gap: 1.25rem;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.collection-card.featured {
  grid-column: 1 / -1;
}

.collection-link {
  display: block;
  position: relative;
}

.collection-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.collection-card.featured .collection-image {
  aspect-ratio: 16/9;
}

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

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

.collection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.collection-card:hover .collection-overlay {
  opacity: 1;
}

.view-btn {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

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

.collection-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(28,28,28,0.9), transparent);
  color: var(--white);
}

.collection-info h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 0.125rem;
}

.collection-info p {
  color: var(--gold);
  font-size: 0.8125rem;
  margin: 0;
  font-weight: 500;
}

/* =====================
   RATE HIGHLIGHT
   ===================== */
.rate-highlight {
  background: var(--charcoal);
  color: var(--white);
}

.rate-card {
  padding: 2.5rem 1.5rem;
}

.rate-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rate-header h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.live-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(22,163,74,0); }
}

.rate-date {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.rate-grid {
  display: grid;
  gap: 1rem;
}

.rate-item {
  background: var(--charcoal-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-base);
}

.rate-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.rate-item.gold {
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(244,208,63,0.06));
}

.rate-item.gold-24 {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(244,208,63,0.04));
}

.rate-item.silver {
  background: linear-gradient(135deg, rgba(192,192,192,0.12), rgba(220,220,220,0.06));
}

.rate-metal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.metal-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  background: rgba(212,175,55,0.15);
  color: var(--gold);
}

.rate-item.silver .metal-icon {
  background: rgba(192,192,192,0.2);
  color: #C0C0C0;
}

.metal-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.rate-price {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.amount {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.unit {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-left: 0.25rem;
}

.rate-change {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
}

.rate-change.positive {
  color: var(--success);
  background: rgba(22,163,74,0.1);
}

.rate-change.negative {
  color: var(--danger);
  background: rgba(220,38,38,0.1);
}

.rate-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* =====================
   TRUST SECTION
   ===================== */
.trust-content {
  display: grid;
  gap: 3rem;
}

.trust-text .light {
  color: rgba(255,255,255,0.8);
}

.trust-badges {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: all var(--transition-base);
}

.badge:hover {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.3);
}

.badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.trust-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
}

.trust-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: var(--cream);
}

.cta-card {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.15);
}

.cta-card h2 {
  margin-bottom: 0.75rem;
}

.cta-card p {
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   ABOUT PAGE
   ===================== */
.page-hero {
  position: relative;
  padding: 2rem 0 1.5rem;
  background: var(--charcoal);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212,175,55,0.1), transparent 60%);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  position: relative;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* About Content */
.about-story { padding: 4rem 0; }

.story-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 1.5rem;
}

.value-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.value-card:hover {
  border-color: rgba(212,175,55,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.25rem;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  transform: translateX(-5px);
}

.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.timeline-text {
  color: var(--gray-700);
  font-size: 0.9375rem;
  margin: 0;
}

/* =====================
   COLLECTIONS PAGE
   ===================== */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--gray-700);
  -webkit-tap-highlight-color: transparent;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--charcoal);
}

.product-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212,175,55,0.2);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-actions {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  opacity: 0;
  transform: translateY(5px);
  transition: all var(--transition-base);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.enquiry-btn {
  background: var(--white);
  color: var(--charcoal);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.enquiry-btn:hover {
  background: var(--gold);
}

.product-info {
  padding: 1rem;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.product-category {
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 500;
}

/* =====================
   GOLD RATE PAGE
   ===================== */
.rate-page-grid {
  display: grid;
  gap: 1.5rem;
}

.rate-page-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.rate-page-card:hover {
  border-color: rgba(212,175,55,0.3);
}

.rate-page-card.premium {
  background: linear-gradient(135deg, #1C1C1C, #2A2A2A);
  border-color: rgba(212,175,55,0.3);
  color: var(--white);
}

.rate-page-card.premium h3 {
  color: var(--white);
}

.rate-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rate-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--gold);
}

.rate-card-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.rate-card-unit {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Calculator */
.calculator-section {
  background: var(--gray-100);
}

.calculator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: border-color var(--transition-fast);
  background: var(--white);
  color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.calc-result {
  text-align: center;
  padding: 1.5rem;
  background: rgba(212,175,55,0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.2);
}

.calc-result-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.calc-result-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.2);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border-radius: var(--radius-md);
}

.contact-icon svg  {
  width: 20px;
  height: 20px;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0;
}

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

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--success);
  margin-bottom: 1rem;
}

.form-success h3 {
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray-500);
}

/* =====================
   ENQUIRY MODAL
   ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gray-700);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--gray-200);
}

.modal h2 {
  margin-bottom: 0.25rem;
}

.modal p {
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

/* =====================
   FOOTER
   ===================== */
.main-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-logo .logo-title {
  color: var(--white);
  font-size: 1.25rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.footer-links ul { list-style: none; }

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition-fast);
}

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

.footer-contact address {
  font-style: normal;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
}

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

/* =====================
   WHATSAPP FLOAT
   ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* =====================
   ANIMATIONS
   ===================== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="zoom-in"] {
  transform: scale(0.95);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* =====================
   ABOUT PAGE SPECIFICS
   ===================== */
.page-header {
  /* padding: 4rem 0 3rem; */
  padding: 2.5rem 0 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  list-style: none;
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: var(--gray-300);
}

.breadcrumb a {
  color: var(--charcoal);
  font-weight: 500;
}

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

.page-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.experience-badge.floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 2;
}

.signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.signature-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.signature-title {
  font-size: 0.875rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* Timeline */
.timeline-section {
  background: var(--cream);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(212,175,55,0.3);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 0 0 6px var(--cream);
  z-index: 2;
}

.timeline-content {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.timeline-content h3 {
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.timeline-content p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* Founder Section */
.founder-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.5;
  margin: 2rem 0 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
}

.founder-image {
  max-width: 400px;
  margin: 0 auto;
}

.gold-border {
  border: 2px solid var(--gold);
  padding: 0.5rem;
  background: rgba(255,255,255,0.05);
}

/* Certifications */
.cert-grid {
  display: grid;
  gap: 1.5rem;
}

.cert-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cert-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.cert-item:hover::before {
  transform: scaleX(1);
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--off-white);
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: inset 0 2px 10px rgba(212,175,55,0.1);
}

.cert-item h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.cert-item p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin: 0;
}

/* =====================
   RESPONSIVE — 375px
   ===================== */
@media (min-width: 375px) {
  :root {
    --container-padding: 1.25rem;
  }
}

/* =====================
   RESPONSIVE — 425px
   ===================== */
@media (min-width: 425px) {
  .hero-stats {
    gap: 2.5rem;
  }

  .trust-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================
   RESPONSIVE — 640px
   ===================== */
@media (min-width: 640px) {
  .section { padding: 5rem 0; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collections-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .rate-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================
   RESPONSIVE — 768px
   ===================== */
@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }

  .section { padding: 5.5rem 0; }

  .brand-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .trust-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .scroll-indicator { display: block; }

  .page-hero {
    padding: 8rem 0 4rem;
  }

  .cta-card {
    padding: 4rem 3rem;
  }

  .rate-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid,
  .founder-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .founder-content {
    direction: rtl;
  }

  .founder-content > * {
    direction: ltr;
  }

  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline::before {
    left: 50%;
  }

  .timeline-item {
    width: 50%;
    padding-left: 0;
    padding-right: 40px;
  }

  .timeline-item:nth-child(even) {
    margin-left: auto;
    padding-right: 0;
    padding-left: 40px;
  }

  .timeline-year {
    left: auto;
    right: -21px;
  }

  .timeline-item:nth-child(even) .timeline-year {
    right: auto;
    left: -21px;
  }
}

/* =====================
   RESPONSIVE — 1024px (Desktop)
   ===================== */
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }

  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    animation: none;
    z-index: auto;
    height: auto;
    overflow: visible;
    box-shadow: none;
  }

  .nav-link {
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
    background: transparent !important;
  }

  .nav-cta {
    display: inline-flex;
    margin-left: 1rem;
  }

  .has-dropdown:hover .dropdown {
    display: block;
  }

  .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    z-index: 200;
    margin-top: 0.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .collections-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .collection-card.featured {
    grid-column: 1 / -1;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .section { padding: 6rem 0; }
}

/* =====================
   LARGE DESKTOP
   ===================== */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }
}

/* =====================
   PRINT
   ===================== */
@media print {
  .top-bar, .main-header, .main-footer,
  .scroll-indicator, .mobile-menu-toggle {
    display: none !important;
  }
  .hero { min-height: auto; }
}

/* =====================
   Motion Preferences
   ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
