/* =========================================
   💎 TUISA LUXURY JEWELRY - RESPONSIVE UPDATE
   Mobile-First | Enhanced Responsiveness
   ========================================= */

:root {
  /* Colors */
  --bg-cream: #FFFBF7;
  --bg-ivory: #FDF8F3;
  --bg-white: #FFFFFF;
  --brand-coral: #B85C4F;
  --brand-coral-dark: #9A4A3F;
  --brand-coral-light: #D4897D;
  --luxury-gold: #C9A962;
  --luxury-gold-light: #D4BC8A;
  --text-dark: #1A1614;
  --text-charcoal: #2D2825;
  --text-muted: #7A726D;
  --text-light: #C4BCB5;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Easing */
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-dramatic: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Shadows */
  --shadow-soft: 0 10px 40px rgba(26, 22, 20, 0.06);
  --shadow-elegant: 0 20px 60px rgba(26, 22, 20, 0.08);
  --shadow-gold: 0 8px 30px rgba(201, 169, 98, 0.15);
  
  /* Transitions */
  --transition: all 0.5s var(--ease-luxury);
}

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

html { 
  scroll-behavior: smooth; 
  cursor: none;
  font-size: 16px;
}

@media (pointer: coarse) { 
  html { cursor: auto; } 
}

body {
  font-family: var(--font-sans);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   🖱️ LUXURY CURSOR (Desktop Only)
   ========================================= */
@media (pointer: fine) {
  .cursor-dot, .cursor-circle {
    position: fixed; top: 0; left: 0;
    border-radius: 50%; pointer-events: none; z-index: 9999;
  }
  .cursor-dot { 
    width: 5px; height: 5px; 
    background: var(--luxury-gold); 
    transform: translate(-50%, -50%); 
  }
  .cursor-circle { 
    width: 40px; height: 40px; 
    border: 1px solid rgba(201, 169, 98, 0.4); 
    transform: translate(-50%, -50%); 
    transition: all 0.3s var(--ease-luxury); 
  }
  .cursor-circle.active { 
    width: 60px; height: 60px; 
    background: rgba(201, 169, 98, 0.1); 
    border-color: var(--luxury-gold); 
  }
}

/* =========================================
   🧭 NAVIGATION
   ========================================= */
header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100; padding: 1.5rem 5%;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 251, 247, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 5%;
}

/* Header scrolled state with logo */
header.scrolled .logo-image {
  height: 55px;
}

.nav-container {
  max-width: 1600px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.brand-logo:hover .logo-image {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--luxury-gold);
  margin-top: 0.2rem;
}

.desktop-nav ul {
  list-style: none; display: flex; gap: 3rem;
}

.desktop-nav a {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  position: relative; padding: 0.5rem 0;
}

.desktop-nav a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 100%; height: 1px;
  background: var(--luxury-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-luxury);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1); transform-origin: left;
}

/* Remove search button - hidden */
.nav-search { display: none; }

.hamburger {
  display: none; flex-direction: column;
  gap: 7px; cursor: pointer; padding: 0.5rem;
  z-index: 102;
}

.hamburger span {
  width: 28px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  background: var(--luxury-gold);
}
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -7px);
  background: var(--luxury-gold);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: 85%; max-width: 400px; height: 100vh;
  background: var(--bg-cream);
  padding: 7rem 2.5rem 3rem;
  transition: right 0.6s var(--ease-dramatic);
  z-index: 99;
  box-shadow: -20px 0 50px rgba(0,0,0,0.08);
}

.mobile-menu.active { right: 0; }

.mobile-menu ul {
  list-style: none; display: flex;
  flex-direction: column; gap: 1.8rem;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 400;
  display: block;
}

.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(26, 22, 20, 0.4);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 98; backdrop-filter: blur(3px);
}

.menu-overlay.active {
  opacity: 1; visibility: visible;
}

/* =========================================
   🔤 TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 8vw, 6.5rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.4rem); }

p { 
  font-size: clamp(0.9rem, 1.2vw, 1.1rem); 
  color: var(--text-muted);
  line-height: 1.8;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
}

.label-gold {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--luxury-gold);
  display: block;
  margin-bottom: 1rem;
}

.italic { font-style: italic; }
.accent { color: var(--luxury-gold); }
.text-center { text-align: center; }
.text-light { color: rgba(255,255,255,0.9); }
.text-light-large { 
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  max-width: 700px; margin: 0 auto;
}

/* =========================================
   💎 DECORATIVE ELEMENTS
   ========================================= */
.decorative-divider {
  display: flex; align-items: center; justify-content: center;
  margin: 2rem 0;
}

.divider-icon {
  width: 25px; height: 25px;
  opacity: 0.6;
}

.section-ornament {
  width: 50px; height: 50px;
  margin: 1rem auto;
  opacity: 0.5;
}

.ornament-large {
  width: 60px; height: 60px;
  margin: 0 auto 1.5rem;
  opacity: 0.7;
}

/* =========================================
   🏠 HERO SECTION - EDITORIAL
   ========================================= */
.hero-editorial {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 6% 6rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-ivory) 100%);
  overflow: hidden;
}

.hero-artwork {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70vmin; height: 70vmin;
  opacity: 0.12;
  z-index: 0;
}

.artwork-ring {
  position: absolute;
  border: 1px solid var(--luxury-gold);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 { width: 100%; height: 100%; animation: rotate 60s linear infinite; }
.ring-2 { width: 75%; height: 75%; animation: rotate 45s linear infinite reverse; }
.ring-3 { width: 50%; height: 50%; animation: rotate 30s linear infinite; }

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-jewelry-piece {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 45vmin; height: 45vmin;
  object-fit: contain;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0%, 0%) translateY(0); }
  50% { transform: translate(05%, 0%) translateY(-20px); }
}

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

.hero-label {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-dramatic) 0.3s forwards;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.label-line {
  width: 30px; height: 1px;
  background: var(--luxury-gold);
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease-dramatic) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.5s; }
.title-line:nth-child(2) { animation-delay: 0.7s; margin-left: 0; font-style: italic; }
.title-line:nth-child(3) { animation-delay: 0.9s; }

.hero-description {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-dramatic) 1.1s forwards;
  line-height: 1.7;
}

.hero-cta {
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-dramatic) 1.3s forwards;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 2;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--luxury-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* =========================================
   🎯 BUTTONS
   ========================================= */
.btn-luxury {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-light));
  color: var(--text-dark);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--luxury-gold);
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: var(--transition);
  min-width: 220px;
}

.btn-luxury::before {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s ease;
}

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

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-dark);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  min-width: 180px;
}

.btn-secondary:hover {
  border-color: var(--luxury-gold);
  color: var(--luxury-gold);
}

.btn-outline-light {
  display: inline-flex; align-items: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #fff;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-large { padding: 1.2rem 3rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--brand-coral);
  margin-top: 1.5rem;
}

.link-arrow svg { transition: transform 0.4s var(--ease-bounce); }
.link-arrow:hover svg { transform: translateX(6px); }

/* =========================================
   📐 FEATURED PIECE - ASYMMETRIC
   ========================================= */
.featured-piece {
  padding: 5rem 0;
  background: var(--bg-white);
}

.container-fluid {
  width: 100%; padding: 0 6%;
}

.split-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-asymmetric {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  header.scrolled .logo-image {
    height: 45px;
  }
}

@media (min-width: 992px) {
  .split-asymmetric {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
  }
}

.split-image {
  position: relative;
}

.image-frame {
  position: relative;
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 4px;
}

.image-frame::after {
  content: '';
  position: absolute;
  top: 1rem; left: 1rem;
  right: 1rem; bottom: 1rem;
  border: 1px solid rgba(201, 169, 98, 0.2);
  border-radius: 2px;
  pointer-events: none;
}

.featured-jewelry {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  transition: transform 1.2s var(--ease-luxury);
}

@media (min-width: 768px) {
  .featured-jewelry { max-height: 600px; }
}

.image-frame:hover .featured-jewelry {
  transform: scale(1.05);
}

.image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--luxury-gold);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.split-content {
  padding: 1rem 0;
}

.lead-text {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
  color: var(--text-charcoal);
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-list svg {
  flex-shrink: 0;
  stroke: var(--luxury-gold);
  margin-top: 2px;
  width: 18px; height: 18px;
}

/* =========================================
   📦 COLLECTIONS GRID - MAGAZINE STYLE
   ========================================= */
.collections-showcase {
  padding: 6rem 6%;
  background: var(--bg-cream);
}

@media (min-width: 768px) {
  .collections-showcase { padding: 8rem 6%; }
}

@media (min-width: 992px) {
  .collections-showcase { padding: 10rem 5%; }
}

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

@media (min-width: 768px) {
  .section-header { margin-bottom: 4rem; }
}

@media (min-width: 992px) {
  .section-header { margin-bottom: 5rem; }
}

.section-header h2 {
  margin-top: 0.8rem;
}

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

@media (min-width: 600px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 992px) {
  .collections-grid {
    gap: 2rem;
  }
  
  .card-large { grid-column: span 2; }
  .card-tall { grid-row: span 2; }
  .card-full { grid-column: span 2; }
}

.collection-card {
  position: relative;
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}

.collection-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-5px);
}

.card-image {
  position: relative;
  background: var(--bg-cream);
  padding: 2rem;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .card-image { padding: 2.5rem; min-height: 300px; }
}

.card-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  transition: transform 1s var(--ease-luxury);
}

.card-large .card-image img { max-height: 400px; }
.card-tall .card-image img { max-height: 500px; }

@media (min-width: 768px) {
  .card-image img { max-height: 400px; }
  .card-large .card-image img { max-height: 450px; }
  .card-tall .card-image img { max-height: 700px; }
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,20,0.6), transparent);
  opacity: 0;
  transition: opacity 0.6s var(--ease-luxury);
}

@media (hover: hover) {
  .card-image:hover .card-overlay {
    opacity: 1;
  }
}

.card-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .card-content { padding: 2rem; }
}

.card-content h3 {
  margin-bottom: 0.6rem;
  color: var(--text-dark);
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .card-content h3 { font-size: 1.6rem; }
}

.card-content p {
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-content p { font-size: 0.95rem; }
}

.card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-coral);
  position: relative;
  display: inline-block;
}

.card-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--brand-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-luxury);
}

.card-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.card-center {
  text-align: center;
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .card-center { padding: 3rem 2rem; }
}

.card-center h3 { margin: 1rem 0; }
.card-center p { max-width: 500px; margin: 0 auto 1.5rem; }

.bespoke-overlay {
  background: linear-gradient(to top, rgba(26,22,20,0.7), rgba(26,22,20,0.2), transparent);
}

/* =========================================
   🎨 CRAFTSMANSHIP PARALLAX
   ========================================= */
.craftsmanship-parallax {
  position: relative;
  padding: 5rem 6%;
  background: var(--text-charcoal);
  overflow: hidden;
}

@media (min-width: 768px) {
  .craftsmanship-parallax { padding: 8rem 6%; }
}

@media (min-width: 992px) {
  .craftsmanship-parallax { padding: 10rem 5%; }
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background: url('https://placehold.co/1920x1080/2D2825/C9A962?text=Craftsmanship') center/cover;
  opacity: 0.15;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.craftsmanship-content {
  position: relative;
  z-index: 2;
}

.craftsmanship-content h2 {
  margin: 1rem 0 1.5rem;
}

.craftsmanship-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .craftsmanship-stats {
    gap: 4rem;
    margin: 4rem 0;
  }
}

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

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 400;
  color: var(--luxury-gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

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

.stat-divider {
  width: 1px; height: 50px;
  background: rgba(201, 169, 98, 0.3);
}

@media (min-width: 768px) {
  .stat-divider { height: 60px; }
}

/* =========================================
   📞 VISIT CTA
   ========================================= */
.visit-cta {
  padding: 5rem 6%;
  background: var(--bg-white);
}

@media (min-width: 768px) {
  .visit-cta { padding: 6rem 6%; }
}

@media (min-width: 992px) {
  .visit-cta { padding: 8rem 5%; }
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-wrapper {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}

@media (min-width: 992px) {
  .cta-wrapper { gap: 5rem; }
}

.cta-content h2 {
  margin: 0.8rem 0 1.2rem;
}

.cta-content > p {
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-details {
  margin: 2rem 0;
}

.detail-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.detail-item svg {
  flex-shrink: 0;
  stroke: var(--luxury-gold);
  margin-top: 2px;
  width: 20px; height: 20px;
}

.detail-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.detail-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-image {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.cta-jewelry-accent {
  max-width: 300px;
  opacity: 0.8;
  animation: float 6s ease-in-out infinite;
}

@media (min-width: 768px) {
  .cta-jewelry-accent { max-width: 400px; }
}

/* =========================================
   🦶 FOOTER WITH DECORATIVE ICONS
   ========================================= */
.footer-luxury {
  background: var(--text-dark);
  color: var(--text-light);
  padding: 4rem 6% 2.5rem;
}

@media (min-width: 768px) {
  .footer-luxury { padding: 5rem 6% 2.5rem; }
}

@media (min-width: 992px) {
  .footer-luxury { padding: 6rem 5% 3rem; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}

.footer-logo {
  display: flex; flex-direction: column; align-items: flex-start;
  margin-bottom: 1.2rem;
}

.footer-logo .logo-text {
  color: #fff;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .footer-logo .logo-text { font-size: 2.2rem; }
}

.footer-brand p {
  color: var(--text-light);
  max-width: 300px;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Decorative Footer Icons */
.footer-decorative-icons {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
  align-items: center;
}

.footer-icon {
  width: 42px; 
  height: 42px;
  opacity: 0.8;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
}

.footer-icon svg {
  width: 100%; 
  height: 100%;
  stroke: var(--luxury-gold);
  stroke-width: 1;
  fill: none;
}

.footer-icon:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.1);
}

.footer-icon:hover svg {
  stroke: var(--luxury-gold-light);
  filter: drop-shadow(0 4px 8px rgba(201, 169, 98, 0.3));
}

.social-links {
  display: flex; gap: 0.8rem;
  margin-top: 1rem;
}

.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;
  transition: var(--transition);
}

.social-link:hover {
  border-color: var(--luxury-gold);
  background: rgba(201, 169, 98, 0.1);
  transform: translateY(-3px);
}

.social-link svg { 
  stroke: var(--text-light); 
  width: 16px; height: 16px;
}

.social-link:hover svg { stroke: var(--luxury-gold); }

.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 0.7rem;
}

.footer-links a,
.footer-contact a {
  color: var(--text-light);
  transition: var(--transition);
  font-size: 0.9rem;
}

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

.footer-contact li:not(:has(a)) {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* =========================================
   🎬 ANIMATIONS & REVEAL
   ========================================= */
.reveal,
.reveal-text,
.reveal-scale,
.reveal-slide,
.reveal-stagger {
  opacity: 0;
  transition: all 0.8s var(--ease-dramatic);
}

.reveal.active,
.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal { transform: translateY(30px); }
.reveal-scale { transform: scale(0.95); }
.reveal-slide { transform: translateX(30px); }

.reveal.active,
.reveal-scale.active,
.reveal-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}

.reveal-stagger {
  transform: translateY(30px);
}

/* =========================================
   📱 MOBILE RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  
  .hero-editorial { padding: 9rem 6% 5rem; }
  .hero-artwork { width: 60vmin; height: 60vmin; }
  .hero-jewelry-piece { width: 40vmin; height: 40vmin; }
  
  .btn-luxury, .btn-secondary {
    width: 100%;
    min-width: unset;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-luxury,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  .logo-image {
    height: 50px;
  }
}

@media (max-width: 600px) {
  section { padding: 4rem 6%; }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .card-large, .card-tall, .card-full {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .craftsmanship-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .stat-divider {
    width: 60px; height: 1px;
  }
  
  .split-asymmetric {
    gap: 2.5rem;
  }
  
  .image-frame {
    padding: 1.5rem;
  }
  
  .card-image {
    min-height: 220px;
    padding: 1.5rem;
  }
  
  .card-image img {
    max-height: 280px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-label { font-size: 0.65rem; }
  .logo-image {
    height: 45px;
  }
  
  header { padding: 1.2rem 6%; }
  header.scrolled { padding: 0.9rem 6%; }
  
  .mobile-menu {
    padding: 6rem 2rem 2rem;
  }
  
  .mobile-menu a {
    font-size: 1.6rem;
  }
  
  .btn-luxury, .btn-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 0.7rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .footer-luxury {
    padding: 3.5rem 6% 2rem;
  }
}

/* No scroll class */
body.no-scroll { overflow: hidden; }

/* Touch device optimizations */
@media (hover: none) {
  .collection-card:hover {
    transform: none;
  }
  
  .card-image:hover img {
    transform: none;
  }
  
  .btn-luxury:hover,
  .btn-secondary:hover {
    transform: none;
  }
}



/* Add this to your styles.css */
.collection-card {
  opacity: 1 !important;
  visibility: visible !important;
}

.card-image img {
  display: block !important;
  opacity: 1 !important;
  min-height: 200px; /* Ensure images have height */
}

/* Debug: Add border to see if cards exist */
@media (max-width: 9999px) {
  .collection-card {
    border: 1px solid rgba(201, 169, 98, 0.2);
  }
}


/* Form Input Styling */
.form-input:focus {
  outline: none;
  border-color: var(--luxury-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

/* Responsive Grid for Contact Page */
@media (min-width: 992px) {
  .contact-section .container > div {
    grid-template-columns: 1.2fr 0.8fr !important;
  }
}

@media (min-width: 768px) {
  .contact-section form > div {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .contact-section form > div > div:first-child,
  .contact-section form > div > .form-group:last-child {
    grid-column: 1 / -1;
  }
}




/* Process Section Fix */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.process-step {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-5px);
}

.process-step h4 {
  margin: 1rem 0 0.5rem;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}



/* Collections Page Specific Fixes */
.collections-showcase .collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .collections-showcase .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collections-showcase .card-large {
    grid-column: span 2;
  }
  
  .collections-showcase .card-tall {
    grid-row: span 2;
  }
  
  .collections-showcase .card-full {
    grid-column: span 2;
  }
}

.collections-showcase .collection-card {
  background: var(--bg-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.collections-showcase .card-image {
  background: var(--bg-cream);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.collections-showcase .card-image img {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.collections-showcase .card-content {
  padding: 2rem;
}

.collections-showcase .card-content h3 {
  margin: 1rem 0;
  font-size: 1.6rem;
}




/* Page Hero Section */
.page-hero {
  min-height: 60vh;
  padding: 14rem 6% 6rem;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-ivory) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .hero-content-wrapper h1 {
  margin-bottom: 1rem;
}

.page-hero .hero-content-wrapper p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   FIXES FOR ABOUT PAGE & GRIDS
   ========================================= */

/* 3-Column Grid System */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 98, 0.15);
  padding: 3rem 2rem;
  border-radius: 4px;
  transition: all 0.4s ease;
  text-align: center;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 40px rgba(26, 22, 20, 0.08);
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.4);
}

.glass-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 1.5rem 0 1rem;
  color: var(--text-dark);
}

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

.icon-wrap {
  width: 45px;
  height: 45px;
  margin: 0 auto;
  stroke: var(--luxury-gold);
  stroke-width: 1.2;
}


/* =========================================
   🔧 CRITICAL FIX: Force Sections Visible
   ========================================= */
.reveal, .reveal-stagger, .reveal-slide, .reveal-scale {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Grid Systems */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

/* Card Styles */
.glass-card {
  background: #FFFFFF;
  border: 1px solid rgba(201, 169, 98, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s ease;
}

.glass-card:hover {
  box-shadow: 0 15px 40px rgba(26, 22, 20, 0.08);
  transform: translateY(-5px);
  border-color: rgba(201, 169, 98, 0.4);
}

.glass-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin: 1.2rem 0 0.8rem;
  color: var(--text-dark);
}

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

.icon-wrap {
  width: 45px;
  height: 45px;
  margin: 0 auto;
  stroke: var(--luxury-gold);
}

/* Team Card Specific */
.team-card {
  background: var(--bg-white);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-5px);
}

.team-image {
  background: var(--bg-cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
}

.team-image img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.team-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}


/* =========================================
   🔧 FIX: Section Alignment & Spacing
   ========================================= */

/* Ensure all sections have proper spacing */
.story-section,
.philosophy-section,
.team-section,
.collections-showcase,
.contact-section,
.process-section,
.visit-cta {
  padding: 6rem 6%;
  clear: both;
}

/* Fix grid alignment */
.split-asymmetric {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .split-asymmetric {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

/* Fix content visibility */
.split-content,
.split-image {
  width: 100%;
  position: relative;
}

/* Image frame fixes */
.image-frame {
  position: relative;
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 169, 98, 0.15);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Text content fixes */
.lead-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-charcoal);
  margin: 1.5rem 0;
}

.story-section p,
.philosophy-section p,
.team-section p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Section headers */
.section-header,
.text-center {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--luxury-gold);
  margin-bottom: 1rem;
}

/* Ensure headings are visible */
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin: 1rem 0 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

/* Container fixes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}

/* Background colors */
.philosophy-section {
  background: var(--bg-white);
}

.team-section {
  background: var(--bg-cream);
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .story-section,
  .philosophy-section,
  .team-section {
    padding: 4rem 6%;
  }
  
  .split-asymmetric {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .image-frame {
    order: -1; /* Image on top on mobile */
    margin-bottom: 1.5rem;
  }
}

/* Fix for reveal animations blocking content */
.reveal,
.reveal-stagger,
.reveal-slide {
  opacity: 1 !important;
  transform: none !important;
}

/* Ensure cards display properly */
.grid-3,
.grid-2 {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

/* Glass card visibility */
.glass-card {
  background: #FFFFFF;
  border: 1px solid rgba(201, 169, 98, 0.15);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Team card visibility */
.team-card {
  background: var(--bg-white);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: 4px;
  overflow: hidden;
  opacity: 1 !important;
  visibility: visible !important;
}

.team-image {
  background: var(--bg-cream);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
}

.team-image img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
}

.team-content {
  padding: 2rem;
  text-align: center;
}

.team-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

/* Icon styling */
.icon-wrap {
  width: 45px;
  height: 45px;
  margin: 0 auto;
  stroke: var(--luxury-gold);
  stroke-width: 1.2;
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
}