/* ==========================================================================
   MUSES & CUPID - Warm Luxury Editorial Design System
   ========================================================================== */

/* 1. Reset & Variables */
:root {
  /* Warm Ivory Theme Color Tokens */
  --bg-primary: #F8F5EF;        /* Warm Ivory */
  --bg-secondary: #FAF7F2;      /* Warm Cream / Soft Ivory */
  --bg-beige: #F3EFE9;          /* Soft Beige */
  --bg-card: #EFEBE4;           /* Warm Cream card bg */
  
  --accent-gold: #C5A880;       /* Champagne Gold Accent */
  --accent-gold-hover: #B4966E; /* Slightly darker gold */
  --accent-taupe: #8E8278;      /* Light Taupe */
  --accent-sage: #73826F;       /* Muted Sage */
  
  --text-dark: #2A2825;         /* Luxury Soft Black / Charcoal */
  --text-muted: #5C5751;        /* Muted Earthy Charcoal */
  --text-light: #FFFFFF;
  
  --border-light: rgba(197, 168, 128, 0.18); /* Soft Champagne Gold borders */
  --border-neutral: rgba(142, 130, 120, 0.15); /* Soft Taupe borders */
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --container-width: 1440px;
  --transition-luxury: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadow Systems */
  --shadow-editorial: 0 15px 45px rgba(92, 87, 81, 0.03);
  --shadow-hover: 0 25px 60px rgba(142, 130, 120, 0.08);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-primary);
  line-height: 1.7;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-hover);
}

/* Selection highlight */
::selection {
  background-color: rgba(197, 168, 128, 0.2);
  color: var(--text-dark);
}

/* 2. Typography Rules */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 6rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 3rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1.5rem; }
.mt-2 { margin-top: 3rem; }

/* 3. Section Header Components */
.section-header {
  margin-bottom: 5rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-taupe);
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.1;
  font-family: var(--font-serif);
}

.section-divider {
  width: 45px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 1.8rem auto 0 auto;
}

/* Custom Vector Background Doodles */
.doodle-container {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--accent-gold);
  opacity: 0.035; /* Subtle and refined, like a watermark */
  transition: opacity 0.5s ease;
}

.doodle-collections-left { left: 2%; top: 15%; width: 220px; height: 220px; }
.doodle-collections-right { right: 2%; bottom: 10%; width: 220px; height: 220px; }
.doodle-about-left { left: 4%; bottom: 15%; width: 240px; height: 280px; }
.doodle-about-right { right: 4%; top: 12%; width: 240px; height: 280px; }
.doodle-portfolio-left { left: 2%; top: 25%; width: 200px; height: 350px; }
.doodle-portfolio-right { right: 2%; bottom: 20%; width: 200px; height: 350px; }
.doodle-reviews-left { left: 5%; top: 20%; width: 180px; height: 240px; }
.doodle-reviews-right { right: 5%; bottom: 15%; width: 180px; height: 240px; }
.doodle-contact-left { left: 6%; top: 18%; width: 180px; height: 220px; }
.doodle-contact-right { right: 6%; bottom: 18%; width: 180px; height: 220px; }

/* 4. Luxury Custom Cursor */
@media (pointer: fine) {
  .custom-cursor {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
  }
  
  .custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(197, 168, 128, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  }

  .cursor-hover .custom-cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold-hover);
  }
  
  .cursor-hover .custom-cursor-follower {
    width: 46px;
    height: 46px;
    background-color: rgba(197, 168, 128, 0.06);
    border-color: var(--accent-gold-hover);
  }
}

/* 5. Header / Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-luxury);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header.scrolled {
  height: 90px;
  background-color: rgba(248, 245, 239, 0.85); /* Frosted warm ivory background */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(92, 87, 81, 0.02);
}

.nav-container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 3rem;
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: 38%;
}

.nav-menu-left {
  justify-content: flex-end;
}

.nav-menu-right {
  justify-content: flex-start;
}

.nav-item {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark); /* Initial state is dark charcoal */
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-fast);
}

/* Luxury line hover animation */
.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover {
  color: var(--accent-gold);
  opacity: 1;
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item.active {
  color: var(--accent-gold);
  opacity: 1;
}

.nav-item.active::after {
  transform: scaleX(1);
}

/* Centered Logo */
.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24%;
  transition: var(--transition-luxury);
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-luxury);
  filter: none; /* No filter, natural charcoal/gold details show initially */
}

.main-header.scrolled .nav-logo {
  height: 44px;
}

/* Right Nav rounded button */
.nav-cta-btn {
  display: inline-flex;
  padding: 0.65rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  background-color: var(--bg-beige); /* Filled beige background */
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-luxury);
  margin-left: 2rem;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

/* Mobile drawer toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.mobile-menu-toggle .bar {
  width: 24px;
  height: 1.5px;
  background-color: var(--text-dark); /* Dark charcoal initially */
  transition: var(--transition-fast);
}

/* Mobile drawer panel */
.nav-menu-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--bg-primary);
  box-shadow: -15px 0 50px rgba(92, 87, 81, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.2rem;
  padding: 3rem;
  transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

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

.nav-item-mobile {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.nav-item-mobile:hover {
  color: var(--accent-gold);
}

.nav-btn-mobile {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  background-color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
  border-radius: 50px;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: var(--transition-fast);
}

.nav-btn-mobile:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
}

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .logo-link { width: auto; justify-content: flex-start; }
  .mobile-menu-toggle { display: flex; }
  
  .mobile-menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .mobile-menu-toggle.active .bar:nth-child(2) { opacity: 0; }
  .mobile-menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* 6. Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally in the page */
  overflow: hidden;
  background-color: var(--bg-primary);
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.1s ease-out; /* Parallax LERP hook via JS */
  will-change: transform;
}

/* Left-to-right subtle overlay to keep text legible while preserving original colors */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* Background image remains crystal clear */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 800px; /* Wider container for centered layout */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content relative to each other */
  text-align: center;
}

.hero-brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.0rem, 8.5vw, 6.2rem); /* Dynamic clamp for all viewports including 320px */
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark); /* Crisp soft black */
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap; /* Keep brand name in one line */
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.2vw, 2.8rem); /* Increased size */
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--text-dark); /* Crisp soft black */
  margin-bottom: 1.5rem;
}

.hero-divider-heart {
  color: var(--accent-gold);
  margin-bottom: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-divider-heart svg {
  width: 18px; /* Increased heart size */
  height: auto;
}

.hero-description {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem); /* Increased size */
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  text-align: center;
  max-width: 650px; /* Restrict width for ideal line breaks */
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-luxury);
  border: 1px solid transparent;
}

.hero-section .btn-primary {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
  box-shadow: none;
}

.hero-section .btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  color: var(--text-light);
  transform: translateY(-2px);
}

.hero-section .btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--accent-gold);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-section .btn-secondary:hover {
  background-color: var(--bg-beige);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-neutral);
}

.btn-secondary-outline:hover {
  background-color: var(--bg-beige);
  border-color: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.scroll-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-arrow-container {
  color: var(--text-muted);
  animation: scrollBounce 2s infinite ease-in-out;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
  .hero-section {
    justify-content: center;
    padding-left: 0;
  }
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 0 1.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* 7. Collections Section */
.collections-section {
  position: relative;
  padding: 9rem 0;
  background-color: #f4eae0; /* Fallback color */
  background-image: url('collections-bg.jpg?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.collections-container {
  position: relative;
  z-index: 2;
}

/* Header Styles */
.collections-header {
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.collections-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent-taupe);
  margin-bottom: 0.3rem;
}

.collections-heart-icon {
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.collections-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 300;
  color: #122131; /* Elegant dark blue/charcoal */
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.collections-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #122131;
  margin-bottom: 1.4rem;
  opacity: 0.85;
}

.collections-ornament {
  margin-top: 0.4rem;
  display: flex;
  justify-content: center;
}

/* Curated Collections Grid Styling */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 4.5rem;
}

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

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

.collection-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(184, 172, 150, 0.08);
  border: 1px solid rgba(220, 212, 195, 0.35);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(184, 172, 150, 0.18);
  border-color: var(--accent-gold);
}

.collection-img-wrapper {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
}

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

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

.collection-content {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.collection-card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.collection-card:hover .collection-card-title {
  color: var(--accent-gold);
}

.collection-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  flex-grow: 1;
}

.btn-text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  margin-top: auto;
}

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

.btn-text .arrow {
  transition: transform 0.3s ease;
}

.btn-text:hover .arrow {
  transform: translateX(4px);
}

/* Signature Collections Carousel Styling */
.collections-carousel-container {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  padding: 0;
  --carousel-gap: 30px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  padding: 20px 0; /* Add padding to prevent card hover shadows and translations from being clipped */
}

.carousel-viewport.grabbing {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  width: 100%;
  transition: transform 600ms ease;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 calc((100% - 3 * var(--carousel-gap)) / 3.4); /* 3 full cards + 4th card slightly visible */
  background-color: var(--bg-secondary); /* Soft ivory background */
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(92, 87, 81, 0.04);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-light);
}

.carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(92, 87, 81, 0.08);
  border-color: var(--accent-gold);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* Elegant portrait aspect ratio */
  overflow: hidden;
  background-color: var(--bg-beige);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.card-content {
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.carousel-card:hover .card-title {
  color: var(--accent-gold);
}

.card-title-divider {
  width: 35px;
  height: 1px;
  background-color: var(--accent-gold);
  margin-bottom: 1.2rem;
}

.card-description {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Nav Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(197, 168, 128, 0.25);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(92, 87, 81, 0.05);
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.carousel-nav-btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 24px rgba(184, 172, 150, 0.25);
  background-color: var(--bg-primary);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.prev-btn {
  left: -28px; /* Slightly overlap the bounds for high-end feel */
}

.next-btn {
  right: -28px;
}

/* Pagination Dots */
.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 3.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.carousel-dot.active {
  background-color: var(--accent-gold);
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .collections-carousel-container {
    --carousel-gap: 25px;
  }
  .carousel-card {
    flex: 0 0 calc((100% - var(--carousel-gap)) / 2); /* 2 cards visible on tablet */
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .collections-carousel-container {
    --carousel-gap: 0px;
  }
  .carousel-card {
    flex: 0 0 100%; /* 1 card visible on mobile */
    border-radius: 18px;
  }
  .card-image-wrapper {
    border-radius: 18px 18px 0 0;
  }
  .carousel-nav-btn {
    display: none; /* Hide arrows on mobile for gesture simplicity */
  }
  .carousel-viewport {
    padding: 10px 0;
  }
}


/* 8. About Section */
.about-section {
  position: relative;
  padding: 7.5rem 0;
  background-color: #f4eae0; /* Fallback color */
  background-image: url('about-bg.jpg?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.about-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(184, 172, 150, 0.15);
}

@media (min-width: 769px) {
  .about-image-wrapper {
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%);
  }
}

.about-img {
  width: 100%;
  height: 700px;
  display: block;
  object-fit: cover;
  transition: var(--transition-slow);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(42, 40, 37, 0.04) 0%, rgba(42, 40, 37, 0) 100%);
  pointer-events: none;
}

.about-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.about-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.about-sub-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.creator-bio {
  font-style: italic;
  margin-bottom: 0;
}

/* Luxury icons layout */
.luxury-icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.luxury-icon-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.luxury-icon-item .icon-label {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* Icon Item Hover effect */
.luxury-icon-item:hover .icon-wrapper {
  background-color: var(--accent-gold);
  color: var(--text-light);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

/* Tablet Responsive Split */
@media (min-width: 769px) and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 45fr 55fr;
    gap: 40px;
  }
  .about-img {
    height: 600px;
  }
}

/* Mobile Responsive Stacking */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-image-wrapper {
    order: -1; /* Image first on mobile */
  }
  .about-content {
    order: 1; /* Text below image on mobile */
  }
  .about-img {
    height: 480px;
  }
}

/* 9. Customisation Process Section */
.process-section {
  position: relative;
  padding: 10rem 0;
  background-color: #f4eae0; /* Fallback color */
  background-image: url('process-bg.jpg?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  margin-top: 6rem;
}

.timeline-progress-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-neutral);
  z-index: 1;
}

.timeline-progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--accent-gold);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.timeline-card-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: transparent;
  padding: 0 1rem;
}

.step-number-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
  transition: var(--transition-luxury);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-taupe);
  transition: var(--transition-fast);
}

.step-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.step-description {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Hover & Active Step State Animation */
.timeline-card-step:hover .step-number-container {
  background-color: var(--bg-beige);
  border-color: var(--accent-gold);
  transform: translateY(-4px) scale(1.05);
}

.timeline-card-step:hover .step-num {
  color: var(--accent-gold-hover);
}

@media (max-width: 900px) {
  .timeline-progress-line {
    display: none;
  }
  .timeline-steps-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .timeline-card-step {
    padding: 0;
  }
  .step-number-container {
    margin-bottom: 1.5rem;
  }
}

/* 10. Portfolio Gallery Section */
.portfolio-section {
  position: relative;
  padding: 10rem 0;
  background-color: #f4eae0; /* Fallback color */
  background-image: url('portfolio-bg.jpg?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border-light);
  overflow: hidden;
}

/* Masonry grid via CSS columns */
.gallery-masonry {
  column-count: 3;
  column-gap: 2.2rem;
  width: 100%;
}

@media (max-width: 991px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .gallery-masonry {
    column-count: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 2.2rem;
  cursor: pointer;
}

.gallery-item-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-slow);
}

/* Gallery Hover Overlay */
.gallery-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(42, 40, 37, 0.45); /* Soft premium dark overlay */
  display: flex;
  align-items: flex-end;
  padding: 2.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-info {
  transform: translateY(20px);
  transition: var(--transition-luxury);
  width: 100%;
}

.gallery-cat {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.gallery-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.gallery-view-btn {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--text-light);
  padding-bottom: 2px;
}

/* Gallery item hover animations */
.gallery-item:hover .gallery-img {
  transform: scale(1.07);
}

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

.gallery-item:hover .gallery-info {
  transform: translateY(0);
}

.gallery-item:hover .gallery-item-inner {
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
}

/* 11. Lightbox Gallery Viewer */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(248, 245, 239, 0.98); /* Frosted warm ivory */
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 2002;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: 100;
  color: var(--text-dark);
  cursor: pointer;
  z-index: 2002;
  transition: var(--transition-fast);
  padding: 1rem;
}

.lightbox-nav:hover {
  color: var(--accent-gold);
}

.lightbox-prev { left: 3rem; }
.lightbox-next { right: 3rem; }

.lightbox-content-wrapper {
  max-width: 85%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2001;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(92, 87, 81, 0.12);
  border: 1px solid var(--border-light);
  transform: scale(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-info-overlay {
  text-align: center;
  margin-top: 1.8rem;
}

.lightbox-cat {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold-hover);
  margin-bottom: 0.4rem;
  display: block;
}

.lightbox-title {
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .lightbox-nav { display: none; }
  .lightbox-close { right: 1.5rem; top: 1.5rem; }
}

/* 12. Client Reviews Section */
.reviews-section {
  position: relative;
  padding: 10rem 0;
  background-color: #f4eae0; /* Fallback color */
  background-image: url('testimonials-bg.jpg?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.review-card {
  background-color: var(--bg-beige); /* Soft beige background cards */
  padding: 3.5rem 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-editorial);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition-luxury);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.review-stars {
  font-size: 0.9rem;
  color: var(--accent-gold);
  letter-spacing: 0.35em;
  margin-bottom: 1.5rem;
}

.review-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.review-author {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-taupe);
}

/* Card hover animation */
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-gold);
  background-color: var(--bg-primary); /* Shifting slightly on hover */
}

/* 13. Contact / Commission CTA Section */
.contact-section {
  position: relative;
  padding: 10rem 0;
  background-color: #f4eae0; /* Fallback color */
  background-image: url('contact-bg.jpg?v=2');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.contact-new-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.contact-header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-line {
  height: 1px;
  width: 50px;
  background-color: var(--accent-gold);
  opacity: 0.6;
}

.contact-leaf-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
}

.contact-section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 1.2rem;
}

.contact-new-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-heart-separator {
  color: var(--accent-gold);
  margin-bottom: 1.8rem;
  opacity: 0.8;
}

.contact-new-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 4.5rem auto;
}

/* Platforms Grid */
.contact-platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5.5rem;
}

@media (max-width: 768px) {
  .contact-platforms-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.platform-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 10px 30px rgba(184, 172, 150, 0.12);
  border: 1px solid rgba(220, 212, 195, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(184, 172, 150, 0.22);
}

.platform-icon-wrapper {
  margin-bottom: 1.8rem;
}

.platform-icon-wrapper.wa-icon {
  color: #25D366;
}

.platform-icon-wrapper.ig-icon {
  color: #C13584;
}

.platform-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.platform-title span {
  font-style: italic;
  font-family: var(--font-serif);
}

.platform-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.p-line {
  height: 1px;
  width: 25px;
  background-color: var(--accent-gold);
}

.platform-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 2.2rem;
  max-width: 280px;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.platform-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.platform-btn .arrow {
  transition: transform 0.3s ease;
}

.platform-btn:hover .arrow {
  transform: translateX(4px);
}

.btn-wa {
  background-color: #2E4F32; /* Deep forest green */
}

.btn-ig {
  background-color: #9B505F; /* Muted rose-red/mauve */
}

/* Highlights */
.contact-highlights-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 5.5rem;
}

@media (max-width: 850px) {
  .contact-highlights-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .highlight-vertical-divider {
    display: none;
  }
}

.highlight-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
}

.highlight-icon {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.highlight-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

.highlight-vertical-divider {
  width: 1px;
  background-color: var(--border-light);
  align-self: stretch;
}

/* Info Pill Bar */
.contact-info-pill-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  background-color: #f2edd9; /* Soft cream background */
  border-radius: 50px;
  padding: 0.9rem 2.8rem;
  box-shadow: 0 5px 15px rgba(184, 172, 150, 0.08);
  margin: 0 auto;
}

@media (max-width: 850px) {
  .contact-info-pill-bar {
    flex-direction: column;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 450px;
    gap: 1.2rem;
  }
  .pill-dot {
    display: none;
  }
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.pill-item:hover {
  color: var(--accent-gold);
}

.pill-icon {
  color: var(--accent-gold);
  display: flex;
  align-items: center;
}

.pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent-gold);
  opacity: 0.6;
}

.contact-link-item:hover .contact-detail {
  color: var(--accent-gold-hover);
}

/* 14. Footer */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 6rem 0 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 6rem;
}

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.footer-block {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.5rem;
}

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

.footer-description {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
  letter-spacing: 0.05em;
}

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

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

.footer-links-list a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

.footer-info-text {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-info-text strong {
  color: var(--text-dark);
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding: 2.2rem 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .footer-bottom-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.copyright-text {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--accent-taupe);
}

.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--accent-taupe);
  text-decoration: none;
  margin-left: 2rem;
  transition: var(--transition-fast);
}

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

/* 15. Scroll Reveal Animations Setup */
.scroll-reveal {
  opacity: 1; /* Handled smoothly by individual nested items */
}

.scroll-reveal-fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-fade-left {
  opacity: 0;
  transform: translateX(35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-fade-right {
  opacity: 0;
  transform: translateX(-35px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

/* Transition delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Responsive Layout Optimizations */
@media (max-width: 1024px) {
  .main-header {
    height: 90px;
  }
  .main-header.scrolled {
    height: 75px;
  }
  .nav-logo {
    height: 42px;
  }
  .main-header.scrolled .nav-logo {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .collection-img-wrapper {
    height: 210px;
  }
  .about-img {
    height: 350px;
  }
  .review-card {
    padding: 2.5rem 1.5rem;
  }
  .platform-card {
    padding: 2.5rem 1.5rem;
  }
  .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-bottom-links a {
    margin-left: 0;
  }
}
