/* ================================================================
   Sony Jewellers — Master Stylesheet
   Premium 22k Gold Specialty Jeweller — Malton, Mississauga
   ================================================================ */

/* -----------------------------------
   1. CSS Variables (Brand Foundation)
   ----------------------------------- */
:root {
  --primary: #C9A227;
  --primary-light: #E1B948;
  --primary-dark: #9C7E1F;
  --accent: #1A1A1A;
  --accent-light: #2A2A2A;
  --accent-soft: #383838;

  --cream: #FBF8F1;
  --cream-light: #FEFCF7;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #888888;
  --text-muted: #B0B0B0;
  --white: #FFFFFF;
  --off-white: #FAFAF5;
  --border-soft: #E8E2D2;

  --gold-gradient: linear-gradient(135deg, #C9A227 0%, #E1B948 50%, #C9A227 100%);
  --gold-gradient-soft: linear-gradient(135deg, #E1B948 0%, #C9A227 100%);
  --gold-shimmer: linear-gradient(90deg, #9C7E1F, #E1B948, #C9A227, #E1B948, #9C7E1F);

  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
  --shadow: 0 4px 20px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.12);
  --shadow-lg: 0 16px 50px rgba(26, 26, 26, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.18);
  --shadow-gold-lg: 0 12px 48px rgba(201, 162, 39, 0.28);

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', 'Helvetica Neue', sans-serif;

  --container-max: 1280px;
  --section-padding-y: 7rem;
  --section-padding-y-mobile: 4rem;

  --transition-fast: 0.2s ease;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -----------------------------------
   2. Reset & Base
   ----------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.4rem; }

p { margin-bottom: 1rem; color: var(--text-medium); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--section-padding-y) 0; }
.section-light { background: var(--cream-light); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--accent); color: var(--off-white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.78); }

.section-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section-tagline::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--primary);
}

.section-title { margin-bottom: 1.25rem; color: var(--accent); }

.section-description {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 720px;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }
.text-center .section-tagline { padding-left: 0; }
.text-center .section-tagline::before { display: none; }
.text-center .section-description { margin-left: auto; margin-right: auto; }

.gold-text { color: var(--primary-dark); }
.gold-bg { background: var(--gold-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* -----------------------------------
   3. Buttons
   ----------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient-soft);
  color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.btn-primary::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: left 0.6s ease;
}

.btn-primary:hover { box-shadow: var(--shadow-gold-lg); transform: translateY(-2px); }
.btn-primary:hover::before { left: 100%; }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-cta {
  background: var(--accent);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-cta:hover {
  background: var(--primary);
  color: var(--accent);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--accent);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* -----------------------------------
   4. Animations
   ----------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes hvSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes hvSparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulseSoft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* -----------------------------------
   5. Navbar
   ----------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  line-height: 1;
}

.logo-text .gold { color: var(--primary-dark); font-style: italic; }

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--primary-dark); }

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

.cta-button {
  background: var(--accent);
  color: var(--primary);
  padding: 0.85rem 1.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 1px solid var(--accent);
}

.cta-button:hover {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Nav dropdown (Collections menu) */
.nav-item-dropdown { position: relative; }

.dropdown-caret {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.7em;
  opacity: 0.6;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-item-dropdown:hover .dropdown-caret,
.nav-item-dropdown.open .dropdown-caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility 0s linear var(--transition);
  z-index: 50;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent var(--white) transparent;
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity var(--transition), transform var(--transition);
}

.nav-dropdown li { margin: 0; }

.nav-dropdown a {
  display: block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}

.nav-dropdown a::after { display: none; }

.nav-dropdown a:hover {
  background: var(--cream);
  color: var(--primary-dark);
  border-left-color: var(--primary);
  padding-left: 1.95rem;
}

.nav-dropdown-divider {
  height: 1px;
  margin: 0.4rem 1.25rem;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.35), transparent);
  pointer-events: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------
   6. Page Header (inner pages)
   ----------------------------------- */
.page-header {
  margin-top: 88px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at top right, rgba(201, 162, 39, 0.15), transparent 60%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.page-header-content { position: relative; z-index: 1; text-align: center; }

.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header .subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--primary-light); }
.breadcrumbs span { color: rgba(255, 255, 255, 0.5); }

/* -----------------------------------
   7. Hero (homepage)
   ----------------------------------- */
.hero {
  margin-top: 88px;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text { animation: fadeInUp 1s ease-out; }

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 3rem;
}

.hero-tagline::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--primary);
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  background: var(--gold-shimmer);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
}

.hero-rating-stars {
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: 0.15em;
}

.hero-rating-text {
  font-size: 0.92rem;
  color: var(--text-medium);
}

.hero-rating-text strong { color: var(--accent); font-weight: 600; }

/* Hero visual — orbit ring with 22k gold motif */
.hero-visual { position: relative; height: 520px; animation: fadeIn 1.2s ease-out 0.3s both; }

.orbit-container {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 420px; height: 420px;
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold-lg), inset 0 0 30px rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.center-text-large {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.center-text-small {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* Main orbit ring — where the emojis sit. Static, clean, slightly more visible. */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring::before,
.orbit-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Middle decorative ring — slow elegant spin. Stays inside the container. */
.orbit-ring::before {
  top: 50%; left: 50%;
  width: 82%; height: 82%;
  margin-top: -41%;
  margin-left: -41%;
  border: 1px dashed rgba(201, 162, 39, 0.32);
  animation: hvSpin 60s linear infinite;
}

/* Inner ring — close to the gold sphere, subtle. Static. */
.orbit-ring::after {
  top: 50%; left: 50%;
  width: 64%; height: 64%;
  margin-top: -32%;
  margin-left: -32%;
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.orbit-emoji {
  position: absolute;
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 162, 39, 0.25);
  animation: hvFloat 4.5s ease-in-out infinite;
  z-index: 3;
}

/* 6 evenly-distributed positions around a 420px orbit. Use calc/right/bottom
   directly so the hvFloat translateY doesn't conflict with centering. */
.orbit-emoji.e1 { top: -32px; left: calc(50% - 32px); animation-delay: 0s; }       /* 12 o'clock */
.orbit-emoji.e2 { top: 73px; right: -4px; animation-delay: 0.5s; }                 /* 2 o'clock */
.orbit-emoji.e3 { bottom: 73px; right: -4px; animation-delay: 1s; }                /* 4 o'clock */
.orbit-emoji.e4 { bottom: -32px; left: calc(50% - 32px); animation-delay: 1.5s; }  /* 6 o'clock */
.orbit-emoji.e5 { bottom: 73px; left: -4px; animation-delay: 2s; }                 /* 8 o'clock */
.orbit-emoji.e6 { top: 73px; left: -4px; animation-delay: 2.5s; }                  /* 10 o'clock */

.sparkle {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--primary-light);
  animation: hvSparkle 2s ease-in-out infinite;
}

.sparkle.s1 { top: 10%; left: 20%; animation-delay: 0s; }
.sparkle.s2 { top: 70%; right: 15%; animation-delay: 0.7s; }
.sparkle.s3 { bottom: 15%; left: 30%; animation-delay: 1.4s; }

/* -----------------------------------
   8. Stats Section
   ----------------------------------- */
.stats-section {
  background: var(--accent);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.stat-card { text-align: center; padding: 0 1rem; }

.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  background: var(--gold-gradient);
  width: 64px; height: 64px;
  border-radius: 50%;
  line-height: 64px;
  color: var(--accent);
  box-shadow: var(--shadow-gold);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

/* -----------------------------------
   9. Content Sections (cards)
   ----------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--white);
  padding: 3rem 2.25rem;
  text-align: center;
  border: 1px solid var(--border-soft);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 72px; height: 72px;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 2rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: rotateY(360deg);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.feature-card .feature-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
  position: relative;
}

.feature-card .feature-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: margin-left var(--transition-fast);
}

.feature-card:hover .feature-link::after { margin-left: 1rem; }

/* Collection card variant */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.collection-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: var(--accent);
  cursor: pointer;
  transition: all var(--transition);
}

.collection-card-img {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.4;
  transition: all var(--transition-slow);
}

.collection-card:hover .collection-card-img { transform: scale(1.05); opacity: 0.6; }

.collection-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, transparent 100%);
  z-index: 1;
}

.collection-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.collection-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.collection-card .collection-link {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}

/* -----------------------------------
   10. FAQ Accordion
   ----------------------------------- */
.faq-section { padding: var(--section-padding-y) 0; }

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  transition: all var(--transition-fast);
}

.faq-item:first-child { border-top: 1px solid var(--border-soft); }

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.005em;
  transition: color var(--transition-fast);
}

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

.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-dark);
  transition: all var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--gold-gradient);
  border-color: transparent;
  color: var(--accent);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.75rem 0;
  color: var(--text-medium);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* -----------------------------------
   11. CTA Banner
   ----------------------------------- */
.cta-banner {
  background: var(--accent);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.cta-content .hero-buttons { justify-content: center; margin-bottom: 0; }

/* -----------------------------------
   12. Reviews / Testimonials
   ----------------------------------- */
.reviews-section { background: var(--cream); padding: var(--section-padding-y) 0; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--white);
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--border-soft);
  position: relative;
  transition: all var(--transition);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-stars {
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.review-text {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* -----------------------------------
   13. Footer
   ----------------------------------- */
.footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold-gradient);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-column h4 {
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-column .logo-text {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.footer-column .logo-text .gold { color: var(--primary); }

.footer-about {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 1rem 0 1.5rem;
}

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

.social-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: var(--accent);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition-fast);
}

.footer-column ul a:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer-contact-item .footer-contact-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a { color: var(--primary); }
.footer-bottom a:hover { color: var(--primary-light); }

/* -----------------------------------
   14. Page-Specific Styles
   ----------------------------------- */

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-list { list-style: none; }

.contact-info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.contact-info-content p {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-info-content a:hover { color: var(--primary-dark); }

.map-embed {
  width: 100%;
  height: 480px;
  border: 1px solid var(--border-soft);
}

/* Blog page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.blog-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
}

.blog-card-content { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.92rem;
  color: var(--text-medium);
  flex: 1;
}

.blog-card .feature-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 500;
}

/* Blog post (single) */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 0;
}

.blog-post h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.blog-post-meta {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
}

.blog-post p {
  font-size: 1.08rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.blog-post h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
}

.blog-post h3 { font-size: 1.4rem; margin: 2rem 0 1rem; }

.blog-post a { color: var(--primary-dark); border-bottom: 1px solid var(--primary); }

.blog-post-cta {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--primary);
  padding: 2rem;
  margin: 2.5rem 0;
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p { font-size: 1.05rem; line-height: 1.85; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat-card {
  background: var(--cream);
  border: 1px solid var(--border-soft);
  padding: 1.75rem;
  text-align: center;
}

.about-stat-card .stat-value {
  color: var(--primary-dark);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.about-stat-card .stat-label { color: var(--text-medium); letter-spacing: 0.1em; }

/* -----------------------------------
   15. Utility Classes
   ----------------------------------- */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.hide-mobile { display: block; }
.show-mobile { display: none; }

/* -----------------------------------
   16. Responsive Breakpoints
   ----------------------------------- */
@media (max-width: 1024px) {
  :root { --section-padding-y: 5rem; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { height: 460px; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 3rem 2rem; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  .navbar-container { padding: 0 1.5rem; height: 72px; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-link { font-size: 1rem; }
  .cta-button { display: none; }
  .hamburger { display: flex; }
  /* Mobile dropdown — inline expand */
  .nav-dropdown {
    position: static;
    transform: none !important;
    width: 100%;
    min-width: 0;
    background: var(--cream);
    border: none;
    box-shadow: none;
    padding: 0.4rem 0;
    margin-top: 0.6rem;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), visibility 0s linear var(--transition);
  }
  .nav-dropdown::before, .nav-dropdown::after { display: none; }
  .nav-item-dropdown:hover .nav-dropdown { visibility: hidden; max-height: 0; }
  .nav-item-dropdown.open .nav-dropdown {
    visibility: visible;
    max-height: 400px;
    transition: max-height var(--transition);
  }
  .nav-dropdown a { padding: 0.65rem 2rem; font-size: 0.92rem; }
  .nav-dropdown-divider { margin: 0.3rem 2rem; }
  .nav-item-dropdown.open .nav-dropdown { max-height: 600px; }
  .hero { margin-top: 72px; padding: 3rem 0 4rem; }
  .page-header { margin-top: 72px; padding: 4rem 0 3rem; }
  .hero-visual { height: 380px; }
  .orbit-container { width: 320px; height: 320px; }
  .orbit-center { width: 160px; height: 160px; }
  .center-text-large { font-size: 2.6rem; }
  .orbit-emoji { width: 52px; height: 52px; font-size: 1.5rem; }
  /* Reposition emojis for the smaller orbit (320px container, 52px emoji) */
  .orbit-emoji.e1 { top: -26px; left: calc(50% - 26px); }
  .orbit-emoji.e2 { top: 54px; right: -5px; }
  .orbit-emoji.e3 { bottom: 54px; right: -5px; }
  .orbit-emoji.e4 { bottom: -26px; left: calc(50% - 26px); }
  .orbit-emoji.e5 { bottom: 54px; left: -5px; }
  .orbit-emoji.e6 { top: 54px; left: -5px; }
  .feature-card { padding: 2.5rem 1.75rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stat-value { font-size: 2rem; }
}

@media (max-width: 640px) {
  :root { --section-padding-y: 4rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .stats-container { grid-template-columns: 1fr; gap: 2rem; }
  .feature-grid, .collection-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .review-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}
