/* ==========================================================================
   AURMONIC — Luxury Design System
   Crafted for editorial elegance. Inspired by Celine, Bottega Veneta, The Row.
   ========================================================================== */


/* ==========================================================================
   1. CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* --- Brand Golds --- */
  --gold-light: #A3993B;
  --gold-deep: #7A7232;
  --gold-accent: #C4A94D;
  --gold-pale: #D4C97A;
  --gold-gradient: linear-gradient(135deg, #A3993B, #C4A94D, #7A7232);

  /* --- Blacks --- */
  --black-deep: #0A0A0A;
  --black-soft: #1A1A18;
  --black-mid: #2A2A28;

  /* --- Whites --- */
  --white-warm: #F0EDE8;
  --white-pure: #FAFAF8;

  /* --- Gray Scale --- */
  --gray-100: #EAE8E3;
  --gray-200: #E8E8E5;
  --gray-300: #D1D1CC;
  --gray-400: #A8A8A3;
  --gray-500: #7A7A75;
  --gray-600: #5C5C58;
  --gray-700: #3D3D3A;
  --gray-800: #2A2A28;
  --gray-900: #1A1A18;

  /* --- Typography --- */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* --- Easing --- */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* --- Layout --- */
  --container-max: 1240px;
  --container-narrow: 700px;
  --container-padding: clamp(1.5rem, 4vw, 3rem);

  /* --- Z-index layers --- */
  --z-loading: 9998;
  --z-mobile-menu: 9000;
  --z-nav: 8000;
  --z-overlay: 100;
  --z-content: 10;
  --z-base: 1;
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--gold-accent);
  color: var(--black-deep);
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}


/* ==========================================================================
   3. LAYOUT — CONTAINER
   ========================================================================== */

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

.container--narrow {
  max-width: var(--container-narrow);
}


/* ==========================================================================
   4. LOADING SCREEN
   ========================================================================== */

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: var(--z-loading);
  background-color: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out-expo);
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  display: flex;
  gap: 0.15em;
  justify-content: center;
  margin-bottom: 2rem;
}

.loading-letter {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.9rem;
  letter-spacing: 0.5em;
  color: var(--gold-accent);
  opacity: 0;
  transform: translateY(8px);
  animation: letterReveal 0.5s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--i, 0) * 0.08s + 0.3s);
}

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

.loading-line {
  width: 0;
  height: 1px;
  background-color: var(--gold-accent);
  margin: 0 auto;
  animation: loadingLineExpand 1.2s var(--ease-out-expo) 1s forwards;
}

@keyframes loadingLineExpand {
  to {
    width: 80px;
  }
}




/* ==========================================================================
   6. NAVIGATION — CENTERED LOGO GRID
   ========================================================================== */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: background-color 0.4s ease,
              border-color 0.4s ease,
              backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem var(--container-padding);
  transition: padding 0.4s ease;
}

/* --- Scrolled state --- */
.main-nav.nav-scrolled {
  background-color: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(196, 169, 77, 0.1);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
}

.main-nav.nav-scrolled .nav-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* When mobile menu is open, remove backdrop-filter to prevent
   it from creating a new containing block that constrains
   .mobile-menu's position:fixed from being fullscreen */
.main-nav.menu-open,
.main-nav.nav-scrolled.menu-open {
  background-color: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}

/* --- Logo --- */
.nav-logo {
  justify-self: center;
  text-decoration: none;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--white-pure);
  transition: opacity 0.3s ease;
}

.nav-logo:hover .logo-text {
  opacity: 0.8;
}

/* --- Nav links --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links--left {
  justify-self: end;
}

.nav-links--right {
  justify-self: start;
}

.nav-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-pure);
  opacity: 0.7;
  transition: opacity 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold-accent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover {
  opacity: 1;
}

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

.nav-link.active {
  opacity: 1;
}

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

/* --- Language Switcher (Desktop) --- */
.nav-lang-switcher {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.lang-option {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.lang-option:hover {
  color: var(--white-pure);
}

.lang-option.active {
  color: var(--gold-accent);
  font-weight: 400;
}

.lang-separator {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  color: var(--gray-600);
}

/* --- Mobile Language Switcher --- */
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.mobile-lang-option {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.mobile-lang-option:hover {
  color: var(--white-pure);
}

.mobile-lang-option.active {
  color: var(--gold-accent);
  font-weight: 400;
}

.mobile-lang-separator {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--gray-600);
}

/* --- Hamburger --- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: calc(var(--z-mobile-menu) + 10);
  justify-self: end;
  grid-column: 3;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--white-pure);
  transition: transform 0.4s var(--ease-out-expo),
              opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.active .hamburger-line:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-hamburger.active .hamburger-line:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}


/* ==========================================================================
   7. MOBILE MENU
   ========================================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  background-color: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-out-expo),
              visibility 0.5s;
}

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

.mobile-menu-content {
  text-align: center;
  width: 100%;
  padding: 2rem;
}

.mobile-logo-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
}

.mobile-menu-logo {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--white-pure);
  display: block;
  margin-bottom: 3rem;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white-pure);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out-expo),
              transform 0.5s var(--ease-out-expo),
              color 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.06s);
  line-height: 1.6;
}

.mobile-menu.active .mobile-nav-link {
  opacity: 0.7;
  transform: translateY(0);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  opacity: 1;
  color: var(--gold-accent);
}

.mobile-nav-cta {
  margin-top: 1.5rem;
  color: var(--gold-accent);
}

.mobile-menu.active .mobile-nav-cta {
  opacity: 1;
}

.mobile-menu-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.mobile-menu-email {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

.mobile-menu-email:hover {
  color: var(--gold-accent);
}

/* --- Responsive nav breakpoint --- */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-lang-switcher {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-container {
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-logo {
    grid-column: 2;
  }
}


/* ==========================================================================
   8. HERO
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero--home {
  min-height: 100vh;
}

.hero-bg,
.hero .parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: var(--z-base);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.4) 40%,
    rgba(10, 10, 10, 0.15) 70%,
    transparent 100%
  );
  z-index: 2;
}

/* Hero overlay for non-home pages without explicit .hero-overlay element */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.35) 40%,
    rgba(10, 10, 10, 0.1) 70%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero-eyebrow,
.hero-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1.05;
  color: var(--white-pure);
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.hero-line {
  width: 60px;
  height: 1px;
  background-color: var(--gold-accent);
  margin: 2rem auto;
}

.hero-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

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

/* --- Scroll indicator --- */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-content);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.scroll-text {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  writing-mode: vertical-lr;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background-color: var(--gold-accent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Hero CTA for subpages */
.hero-cta {
  margin-top: 2rem;
}


/* ==========================================================================
   9. BUTTON SYSTEM
   ========================================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  text-align: center;
  line-height: 1;
  text-decoration: none;
}

.btn-gold,
.btn-primary {
  background-color: var(--gold-accent);
  color: var(--black-deep);
}

.btn-gold:hover,
.btn-primary:hover {
  background-color: var(--gold-deep);
  color: var(--white-pure);
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white-pure);
}

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

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
}

.btn-outline:hover {
  background-color: var(--gold-accent);
  color: var(--black-deep);
}


/* ==========================================================================
   10. SECTION SYSTEM
   ========================================================================== */

.section {
  padding: clamp(5rem, 8vw, 10rem) 0;
  position: relative;
}

.section--dark {
  background-color: var(--black-soft);
  color: var(--white-pure);
}

.section--manifesto {
  padding: clamp(6rem, 10vw, 14rem) 0;
}

.section--fullimage {
  height: 50vh;
  overflow: hidden;
  padding: 0;
}

.section--cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 2;
}

/* --- Section typography --- */
.section-eyebrow,
.section-subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  display: block;
}

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

.section-heading,
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-800);
}

.section-header--light .section-heading,
.section-header--light .section-title,
.section--dark .section-heading,
.section--dark .section-title {
  color: var(--white-pure);
}

.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.section-footer {
  margin-top: clamp(3rem, 5vw, 5rem);
  text-align: center;
}

/* --- Gold line separator --- */
.gold-line,
.gold-separator {
  height: 1px;
  background-color: var(--gold-accent);
  width: 60px;
  margin: 2rem auto;
  transition: width 0.8s var(--ease-out-expo);
}

.gold-line.animated,
.gold-separator.animated {
  width: 80px;
}


/* ==========================================================================
   11. MANIFESTO
   ========================================================================== */

.manifesto-block {
  text-align: center;
}

.manifesto-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.manifesto-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 2;
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.manifesto-text:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   12. FULL-WIDTH IMAGE BREAK
   ========================================================================== */

.fullimage-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 769px) {
  .fullimage-wrapper {
    background-attachment: fixed;
  }
}


/* ==========================================================================
   13. COLLECTION CARDS — MASONRY GRID
   ========================================================================== */

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

/* === WIZARD CONTACT FORM (DARK THEME) === */
.section-dark {
  background: var(--black-soft);
}
.section-dark .section-title {
  color: var(--white-warm);
}

.wizard {
  max-width: 780px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

.wizard-progress {
  position: relative;
  margin-bottom: 3rem;
}

.wizard-progress-bar {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--gold-accent);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 25%;
  transform: translateY(-50%);
  z-index: 0;
}

.wizard-steps-indicator {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.wizard-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
}

.wizard-step-dot--active {
  color: #fff;
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  box-shadow: 0 2px 12px rgba(196, 169, 77, 0.4);
}

.wizard-step-dot--done {
  color: var(--gold-accent);
  border-color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.12);
}

/* Step content */
.wizard-step {
  display: none;
}

.wizard-step--active {
  display: block;
  animation: wizardFadeIn 0.4s ease forwards;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.wizard-step-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
}

.wizard-step-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}

/* Event type cards (Step 1) */
.wizard-event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.wizard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 2rem 1.2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.wizard-card:hover {
  border-color: rgba(196, 169, 77, 0.4);
  background: rgba(196, 169, 77, 0.06);
}

.wizard-card--selected {
  border-color: var(--gold-accent) !important;
  background: rgba(196, 169, 77, 0.1) !important;
  box-shadow: 0 0 0 1px var(--gold-accent);
}

.wizard-card-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-accent);
  opacity: 0.7;
}

.wizard-card--selected .wizard-card-icon {
  opacity: 1;
}

.wizard-card-title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-warm);
}

.wizard-card-desc {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

/* Collection cards (Step 2) */
.wizard-collection-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wizard-collection-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.wizard-collection-card:hover {
  border-color: rgba(196, 169, 77, 0.4);
}

.wizard-collection-card.wizard-card--selected {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 1px var(--gold-accent);
}

.wizard-collection-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.03);
}

.wizard-collection-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-warm);
  padding: 0.8rem 0.5rem;
}

.wizard-collection-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-deep);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
}

.wizard-collection-card.wizard-card--selected .wizard-collection-check {
  opacity: 1;
  transform: scale(1);
}

/* Pack interest cards (Step 4) */
.wizard-pack-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.wizard-pack-option {
  text-align: left;
  padding: 1.2rem !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.wizard-pack-option--no {
  text-align: center;
  align-items: center !important;
}

.wizard-pack-option--no .wizard-card-icon {
  color: rgba(255, 255, 255, 0.4);
}

.wizard-pack-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-accent);
  margin-bottom: 0.2rem;
}

.wizard-pack-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin-top: 0.3rem;
}

.wizard-pack-items {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

/* Product cards (Step 3) */
.wizard-product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.wizard-product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.wizard-product-card:hover {
  border-color: rgba(196, 169, 77, 0.4);
}

.wizard-product-card.wizard-card--selected {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 1px var(--gold-accent);
  background: rgba(196, 169, 77, 0.08);
}

.wizard-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.03);
}

.wizard-product-name {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-warm);
  padding: 0.6rem 0.4rem;
}

.wizard-product-check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-deep);
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
}

.wizard-product-card.wizard-card--selected .wizard-product-check {
  opacity: 1;
  transform: scale(1);
}

.wizard-hint {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-top: 1.2rem;
  font-style: italic;
}

/* Step 4 contact fields (dark context) */
.wizard-contact-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wizard-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.wizard-contact-fields .form-input,
.wizard-contact-fields .form-textarea {
  color: var(--white-warm);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  background: transparent;
}

.wizard-contact-fields .form-input:focus,
.wizard-contact-fields .form-textarea:focus {
  border-bottom-color: var(--gold-accent);
}

.wizard-contact-fields .form-label {
  color: rgba(255, 255, 255, 0.4);
}

.wizard-contact-fields .form-input:focus ~ .form-label,
.wizard-contact-fields .form-input:not(:placeholder-shown) ~ .form-label,
.wizard-contact-fields .form-textarea:focus ~ .form-label,
.wizard-contact-fields .form-textarea:not(:placeholder-shown) ~ .form-label {
  color: var(--gold-accent);
}

/* Date with "no lo se" */
.wizard-date-group {
  display: flex;
  flex-direction: column;
}

.wizard-date-wrapper {
  transition: opacity 0.3s ease;
}

.wizard-date-input {
  width: 100%;
  max-width: none;
}

.wizard-date-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

.wizard-date-unknown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.wizard-date-unknown input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--gold-accent);
  cursor: pointer;
}

/* Navigation */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1rem;
}

.wizard-nav-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-nav-back {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 0;
}

.wizard-nav-back:hover {
  color: var(--white-warm);
}

.wizard-nav-skip {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.8rem 0;
  margin-left: auto;
}

.wizard-nav-skip:hover {
  color: rgba(196, 169, 77, 0.7);
}

.wizard-nav-next,
.wizard-nav-submit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  position: relative;
}

.wizard-step-error {
  text-align: center;
  display: block;
  margin-top: 1rem;
}

/* ===== WIZARD SUCCESS SCREEN ===== */
.wizard-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.wizard-success--visible {
  opacity: 1;
  transform: translateY(0);
}

.wizard-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.wizard-success-check {
  width: 80px;
  height: 80px;
}

.wizard-success-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transform-origin: center;
}

.wizard-success--visible .wizard-success-circle {
  animation: wizardCircleDraw 0.8s ease-out 0.2s forwards;
}

.wizard-success-tick {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}

.wizard-success--visible .wizard-success-tick {
  animation: wizardTickDraw 0.5s ease-out 0.8s forwards;
}

@keyframes wizardCircleDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes wizardTickDraw {
  to { stroke-dashoffset: 0; }
}

.wizard-success-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.wizard-success-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.wizard-success-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(196, 169, 77, 0.08);
  border: 1px solid rgba(196, 169, 77, 0.2);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.wizard-success-ref-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.wizard-success-ref-code {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-accent);
  letter-spacing: 0.05em;
}

.wizard-success-message {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.wizard-success-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.wizard-success-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
}

.wizard-success-btn svg {
  width: 18px;
  height: 18px;
}

.wizard-success-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.wizard-success-link:hover {
  color: var(--gold-accent);
}

@media (max-width: 480px) {
  .wizard-success {
    padding: 2rem 0.5rem;
  }
  .wizard-success-title {
    font-size: 1.7rem;
  }
  .wizard-success-ref {
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Contact info bar */
.contact-info-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 169, 77, 0.15);
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.contact-info-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

/* Wizard responsive */
@media (max-width: 768px) {
  .wizard-event-cards {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .wizard-event-cards .wizard-card {
    flex-direction: row;
    text-align: left;
    padding: 1.2rem;
  }
  .wizard-event-cards .wizard-card-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .wizard-collection-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .wizard-product-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .wizard-pack-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .wizard-contact-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .wizard-step-title {
    font-size: 1.3rem;
  }
  .contact-info-bar {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .wizard-collection-cards {
    grid-template-columns: 1fr;
  }
  .wizard-product-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .wizard-pack-cards {
    grid-template-columns: 1fr;
  }
  .wizard-nav {
    flex-wrap: wrap;
  }
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
}

.collection-card--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* --- Card image --- */
.collection-card-img,
.collection-card-image {
  position: absolute;
  inset: 0;
}

.collection-card-img img,
.collection-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}

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

/* --- Card overlay gradient --- */
.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.2) 50%,
    transparent 100%
  );
  z-index: 3;
  transition: opacity 0.5s ease;
}

.collection-card:hover::before {
  opacity: 0.9;
}

/* --- Card content --- */
.collection-card-content,
.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 4;
}

.collection-card-name,
.collection-card-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-pure);
}

.collection-card-desc,
.collection-card-description {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.5rem 0;
  line-height: 1.6;
}

.collection-card-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out-expo),
              transform 0.4s var(--ease-out-expo);
  display: inline-block;
  margin-top: 0.5rem;
}

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

/* --- Card overlay button style (used in eventos, bodas) --- */
.collection-card-overlay .btn {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out-expo) 0.1s,
              transform 0.4s var(--ease-out-expo) 0.1s,
              background-color 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

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

/* --- Responsive collections --- */
@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-card--tall {
    grid-row: span 1;
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 480px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   13b. PUBLIC PACKS GRID
   ========================================================================== */

.packs-public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pack-public-card {
  background: var(--color-bg-alt, #1A1816);
  border: 1px solid rgba(196, 169, 77, 0.15);
  border-radius: 6px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
}

.pack-public-card:hover {
  border-color: rgba(196, 169, 77, 0.4);
}

.pack-public-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.3rem;
  color: var(--color-gold, #C4A94D);
  margin: 0 0 1rem 0;
  font-weight: 500;
}

.pack-public-desc {
  color: var(--color-text-body, rgba(250, 248, 245, 0.7));
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pack-public-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.pack-public-items li {
  font-size: 0.8rem;
  color: var(--color-text-body, rgba(250, 248, 245, 0.7));
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(196, 169, 77, 0.08);
}

.pack-public-items li:last-child {
  border-bottom: none;
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
}

@media (max-width: 480px) {
  .packs-public-grid {
    grid-template-columns: 1fr;
  }
}


/* Memories page tabs — premium */
.memories-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem auto 3rem;
  max-width: 650px;
}
.memories-tab-btn {
  padding: 0.85rem 2rem;
  background: rgba(196, 169, 77, 0.04);
  border: 1px solid rgba(196, 169, 77, 0.15);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s ease;
}
.memories-tab-btn:hover {
  color: var(--gold-accent);
  border-color: rgba(196, 169, 77, 0.35);
  background: rgba(196, 169, 77, 0.08);
}
.memories-tab-btn.active {
  color: var(--gold-accent);
  border-color: rgba(196, 169, 77, 0.5);
  background: rgba(196, 169, 77, 0.1);
  box-shadow: 0 0 15px rgba(196, 169, 77, 0.08);
}
.memories-tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.memories-tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 480px) {
  .memories-tabs { flex-direction: column; gap: 0.4rem; }
  .memories-tab-btn { padding: 0.7rem 1.2rem; font-size: 0.72rem; text-align: center; }
}

/* ==========================================================================
   14. FEATURES GRID (Why Aurmonic)
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-card {
  padding: 2.5rem 2rem;
  border-left: 1px solid rgba(196, 169, 77, 0.2);
}

.feature-card:first-child {
  border-left: none;
}

.feature-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3rem;
  color: var(--gold-accent);
  opacity: 0.3;
  margin-bottom: 1.5rem;
  display: block;
  line-height: 1;
}

.feature-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 1rem;
}

.feature-text,
.feature-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-left: none;
    border-bottom: 1px solid rgba(196, 169, 77, 0.15);
    padding: 2rem 0;
  }

  .feature-card:last-child {
    border-bottom: none;
  }
}


/* ==========================================================================
   15. TESTIMONIALS
   ========================================================================== */

.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonial {
  padding: 3rem 0;
  border-top: 1px solid rgba(196, 169, 77, 0.15);
}

.testimonial:first-child {
  border-top: none;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-footer cite {
  font-style: normal;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  display: block;
}

.testimonial-role {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  color: var(--gray-500);
  display: block;
}


/* ==========================================================================
   16. CTA SECTION
   ========================================================================== */

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: var(--z-base);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: var(--z-content);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white-pure);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-text,
.cta-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* section-cta style for subpages that use the simpler CTA pattern */
.section-cta {
  background-color: var(--black-soft);
  padding: clamp(5rem, 8vw, 10rem) 0;
}

.section-cta .cta-content {
  max-width: 700px;
}

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

.section-cta .cta-description {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}


/* ==========================================================================
   BLOG
   ========================================================================== */

/* Blog Hero */
.blog-hero {
  padding: 10rem 0 4rem;
  background: var(--black-deep);
}

.blog-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white-warm);
  letter-spacing: 0.02em;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  background: var(--white-warm);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #e8e5e0;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-category {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black-deep);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.blog-card-excerpt {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(26, 24, 22, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.blog-card-date {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(26, 24, 22, 0.4);
}

.blog-card-readmore {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-accent);
  letter-spacing: 0.05em;
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-pagination-btn {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.blog-pagination-btn:hover {
  color: var(--gold-deep);
}

.blog-pagination-info {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(26, 24, 22, 0.4);
}

.blog-empty {
  text-align: center;
  padding: 4rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(26, 24, 22, 0.5);
}

/* Blog Article Hero */
.blog-article-hero {
  padding: 10rem 0 4rem;
  background-color: var(--black-deep);
  background-size: cover;
  background-position: center;
}

.blog-breadcrumb {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.blog-breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.blog-breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

.blog-breadcrumb-sep {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.2);
}

.blog-article-category {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-accent);
  margin-bottom: 1rem;
}

.blog-article-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white-warm);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-article-date {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

/* Blog Article Content */
.blog-article-content {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(26, 24, 22, 0.8);
  line-height: 1.85;
}

.blog-article-content h2 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--black-deep);
  margin: 2.5rem 0 1rem;
}

.blog-article-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black-deep);
  margin: 2rem 0 0.75rem;
}

.blog-article-content p {
  margin-bottom: 1.2rem;
}

.blog-article-content ul,
.blog-article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.blog-article-content li {
  margin-bottom: 0.5rem;
}

.blog-article-content blockquote {
  border-left: 3px solid var(--gold-accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(26, 24, 22, 0.6);
}

.blog-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}

/* Blog CTA */
.blog-cta {
  max-width: 720px;
  margin: 4rem auto 2rem;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--black-deep);
  border-radius: 4px;
}

.blog-cta-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white-warm);
  margin-bottom: 1.5rem;
}

.blog-back {
  max-width: 720px;
  margin: 2rem auto 0;
}

.blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-back-link:hover {
  color: var(--gold-deep);
}

/* Blog Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    padding: 8rem 0 3rem;
  }
  .blog-article-hero {
    padding: 8rem 0 3rem;
  }
}


/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--black-deep);
  padding-top: 6rem;
}

.footer-top {
  padding-bottom: 0;
}

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

.footer-logo-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-logo {
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.4em;
  font-size: 0.9rem;
  color: var(--white-pure);
  display: block;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-accent);
  margin-top: 1rem;
}

.footer-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-top: 1.5rem;
}

.footer-heading {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 1.5rem;
}

.footer-nav,
.footer-contact,
.footer-social-col {
  display: flex;
  flex-direction: column;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
}

.footer-newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 169, 77, 0.25);
  border-right: none;
  color: var(--gray-800);
  padding: 0.5rem 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  border-radius: 2px 0 0 2px;
  outline: none;
}

.footer-newsletter-input:focus {
  border-color: var(--gold-accent);
}

.footer-newsletter-btn {
  background: var(--gold-accent);
  color: var(--black-deep);
  border: 1px solid var(--gold-accent);
  padding: 0.5rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.footer-newsletter-btn:hover {
  background: var(--gold-deep);
}

.footer-newsletter-msg {
  font-size: 0.7rem;
  font-family: var(--font-sans);
  margin-top: 0.3rem;
}

.footer-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--gray-500);
  transition: color 0.3s ease;
  padding: 0.35rem 0;
  display: inline-block;
}

.footer-link:hover {
  color: var(--white-pure);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color 0.3s ease;
}

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

/* --- Footer bottom --- */
.footer-bottom {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-copyright {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

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

.footer-legal-link {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--gray-400);
}

.footer-payment-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.5rem;
}

.footer-payment-icons svg {
  width: 36px;
  height: 22px;
  color: var(--gray-600);
  opacity: 0.5;
}

/* ===== TRUST BADGES ===== */

.trust-badges-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(196,169,77,0.1);
  border-bottom: 1px solid rgba(196,169,77,0.1);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-accent);
}

.trust-badge-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

@media (max-width: 768px) {
  .trust-badges { gap: 2rem; }
  .trust-badges-section { padding: 2rem 0; }
}

@media (max-width: 480px) {
  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* ===== EXIT INTENT POPUP ===== */

.exit-popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: exitPopupFadeIn 0.3s ease forwards;
}

@keyframes exitPopupFadeIn { to { opacity: 1; } }

.exit-popup {
  background: var(--black-soft, #1A1816);
  border: 1px solid rgba(196,169,77,0.2);
  border-radius: 4px;
  max-width: 440px;
  width: 90%;
  padding: 2.5rem;
  position: relative;
}

.exit-popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--gray-500);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: color 0.3s;
}

.exit-popup-close:hover { color: var(--white-warm); }

.exit-popup h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white-warm);
  margin-bottom: 0.5rem;
}

.exit-popup p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exit-popup-form input,
.exit-popup-form select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,169,77,0.15);
  color: var(--white-warm);
  padding: 0.65rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  border-radius: 3px;
  outline: none;
  transition: border-color 0.3s;
}

.exit-popup-form input:focus,
.exit-popup-form select:focus {
  border-color: var(--gold-accent);
}

.exit-popup-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C4A94D' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2rem;
}

.exit-popup-form select option {
  background: #1A1816;
  color: var(--white-warm);
}

.exit-popup-form button {
  background: var(--gold-accent);
  color: var(--black-deep);
  border: none;
  padding: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.3s;
  margin-top: 0.25rem;
}

.exit-popup-form button:hover { background: var(--gold-deep); }

.exit-popup-success {
  text-align: center;
  padding: 1rem 0;
  color: var(--gold-accent);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .exit-popup { padding: 2rem 1.5rem; }
  .exit-popup h3 { font-size: 1.3rem; }
}

/* ===== URGENCY BANNER ===== */

.urgency-banner {
  background: var(--black-soft, #1A1816);
  border-top: 1px solid var(--gold-accent);
  border-bottom: 1px solid rgba(196,169,77,0.15);
  padding: 0.8rem 0;
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.urgency-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.urgency-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}

.urgency-days {
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 1rem;
}

.urgency-text strong {
  color: var(--white-warm);
  font-weight: 500;
}

.urgency-cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black-deep);
  background: var(--gold-accent);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}

.urgency-cta:hover {
  background: var(--gold-deep);
}

@media (max-width: 768px) {
  .urgency-content { gap: 0.5rem; }
  .urgency-text { font-size: 0.75rem; text-align: center; }
  .urgency-icon { display: none; }
}

@media (max-width: 480px) {
  .urgency-cta { width: 100%; text-align: center; }
}

/* ==========================================================================
   PROCESS PROGRESS BAR (sticky)
   ========================================================================== */

.process-progress-bar {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196, 169, 77, 0.2);
  padding: 0.8rem 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.process-progress-bar.visible {
  opacity: 1;
  transform: translateY(0);
}

.progress-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.progress-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(196, 169, 77, 0.4);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.progress-step-dot:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.progress-step-dot.active {
  background: var(--gold-accent);
  border-color: var(--gold-accent);
  color: var(--black-deep);
}

.progress-step-dot.completed {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.progress-step-line {
  width: 40px;
  height: 1px;
  background: rgba(196, 169, 77, 0.2);
  flex-shrink: 0;
}

.progress-step-line.filled {
  background: var(--gold-accent);
}

@media (max-width: 480px) {
  .progress-step-dot { width: 30px; height: 30px; font-size: 0.6rem; }
  .progress-step-line { width: 20px; }
}

/* --- Process Step Expandable --- */
.process-step-toggle {
  background: none;
  border: none;
  color: var(--gold-accent);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s;
}

.process-step-toggle:hover { color: var(--gold-pale); }

.process-step-toggle .toggle-icon {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s;
}

.process-step-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(45deg);
}

.process-step-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.process-step-extra.open {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.8rem;
}

.process-step-extra p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1rem;
  border-left: 2px solid rgba(196, 169, 77, 0.3);
}

.footer-gold-line {
  height: 1px;
  background-color: var(--gold-accent);
  width: 0;
  margin: 0 auto;
  transition: width 1.2s var(--ease-out-expo);
}

.footer-gold-line.animated {
  width: 100%;
}


/* --- Responsive footer --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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


/* ==========================================================================
   18. FORMS — FLOATING LABELS (contacto.php)
   ========================================================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  padding: 1.25rem 0 0.75rem;
  transition: border-color 0.3s ease;
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--gold-accent);
}

.form-label {
  position: absolute;
  top: 1.25rem;
  left: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--gray-400);
  pointer-events: none;
  transition: all 0.3s var(--ease-out-expo);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
  top: 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
}

.form-select {
  width: 100%;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-300);
  padding: 1.25rem 0 0.75rem;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-select:focus {
  border-bottom-color: var(--gold-accent);
}

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

.form-error {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  color: #c44;
  display: block;
  margin-top: 0.35rem;
  min-height: 1rem;
}

.form-submit {
  margin-top: 1rem;
}

.form-btn {
  position: relative;
}

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

.btn-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.form-btn.loading .btn-text {
  opacity: 0;
}

.form-btn.loading .btn-loader {
  opacity: 1;
}

.form-message {
  margin-top: 1rem;
}

.form-success {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gold-accent);
}

.form-error-message {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: #c44;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}


/* ==========================================================================
   19. PROCESS STEPS — PREMIUM (proceso.php)
   ========================================================================== */

.process-timeline-section {
  background-color: var(--black-deep);
  color: var(--white-warm);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.process-timeline-section .section-title,
.process-timeline-heading {
  color: var(--white-warm);
}

.process-steps {
  max-width: 900px;
  margin: 4rem auto 0;
}

.process-step {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2.5rem 0;
}

.process-step--reverse {
  direction: rtl;
}

.process-step--reverse > * {
  direction: ltr;
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-num {
  font-family: var(--font-serif);
  font-weight: 200;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold-accent);
  opacity: 0.25;
  line-height: 1;
  letter-spacing: -0.02em;
}

.process-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-accent);
  border: 1px solid rgba(196, 169, 77, 0.2);
  border-radius: 50%;
  padding: 12px;
  flex-shrink: 0;
}

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

.process-step-content {
  padding-top: 0.25rem;
}

.process-step-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--white-warm);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.process-step-line {
  width: 40px;
  height: 1px;
  background-color: var(--gold-accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.process-step-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(240, 237, 232, 0.65);
  line-height: 1.9;
  max-width: 480px;
}

.process-step-connector {
  display: flex;
  justify-content: center;
  padding: 0 0 0 5.5rem;
}

.process-step-connector-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(196, 169, 77, 0.3), rgba(196, 169, 77, 0.05));
}

/* Quality cards — premium */
.quality-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.quality-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition: border-color 0.4s ease;
}

.quality-card:hover {
  border-color: var(--gold-accent);
}

.quality-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--gold-accent);
}

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

.quality-card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.quality-card-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* Process responsive */
@media (max-width: 768px) {
  .process-step {
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
  }

  .process-step--reverse {
    direction: ltr;
  }

  .process-step-icon {
    display: none;
  }

  .process-step-num {
    font-size: 2.5rem;
  }

  .process-step-connector {
    padding-left: 2rem;
  }

  .process-step-connector-line {
    height: 2rem;
  }

  .quality-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ==========================================================================
   20. VALUES GRID (sobre.php, contacto.php)
   ========================================================================== */

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

.value-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.value-icon {
  font-size: 1.2rem;
  color: var(--gold-accent);
  margin-bottom: 1rem;
  display: block;
}

.value-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.value-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 169, 77, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-800);
  transition: color 0.3s ease;
  gap: 1rem;
}

.faq-question:hover {
  color: var(--gold-accent);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gold-accent);
  transition: transform 0.3s ease;
}

.faq-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0;
}

.faq-open .faq-answer {
  max-height: 300px;
  padding: 0 0 1.5rem 0;
}

.faq-answer p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ============================
   ENGRAVING CUSTOMIZER
   ============================ */
.engraving-customizer-section {
  background: var(--black-soft, #1A1816);
}

.customizer-box {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(196, 169, 77, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
  background: rgba(10, 10, 10, 0.6);
}

.customizer-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.customizer-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.customizer-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.customizer-input,
.customizer-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(196, 169, 77, 0.2);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--white-warm, #FAF8F5);
  transition: border-color 0.3s ease;
}

.customizer-input:focus,
.customizer-select:focus {
  outline: none;
  border-color: var(--gold-accent);
}

.customizer-select option {
  background: #1A1816;
  color: #FAF8F5;
}

.customizer-preview {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  margin-bottom: 2rem;
}

.customizer-svg-box {
  width: 250px;
  height: auto;
}

.customizer-svg {
  width: 100%;
  height: auto;
  color: rgba(196, 169, 77, 0.4);
  transition: all 0.3s ease;
}

.customizer-cta {
  text-align: center;
}

@media (max-width: 600px) {
  .customizer-controls {
    grid-template-columns: 1fr;
  }
  .customizer-box {
    padding: 1.5rem;
  }
  .customizer-svg-box {
    width: 200px;
  }
}


/* ==========================================================================
   21. CATALOG — COLLECTION LAYOUTS (catalogo.php)
   ========================================================================== */

.collection-section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  background-color: var(--black-deep);
  color: var(--white-warm);
}

.collection-section:nth-child(even) {
  background-color: var(--black-soft);
}

.collection-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.collection-layout--image-right {
  direction: ltr;
}

.collection-layout--image-right .collection-info {
  order: 1;
}

.collection-layout--image-right .collection-image {
  order: 2;
}

.collection-image {
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1s var(--ease-out-expo);
}

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

.collection-name {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.collection-meaning {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.collection-narrative {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.collection-info .btn {
  margin-top: 1rem;
}

/* Dark section text adjustments for catalog */
.collection-section[style*="background-color"] .collection-meaning,
.collection-section:nth-child(even) .collection-meaning {
  color: var(--gray-400);
}

.collection-section[style*="background-color"] .collection-narrative,
.collection-section:nth-child(even) .collection-narrative {
  color: rgba(255, 255, 255, 0.55);
}

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

  .collection-layout--image-right .collection-info {
    order: 2;
  }

  .collection-layout--image-right .collection-image {
    order: 1;
  }
}


/* ==========================================================================
   22. USE CASES GRID (eventos.php)
   ========================================================================== */

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

.use-case-card {
  padding: 2.5rem;
  border: 1px solid rgba(196, 169, 77, 0.15);
  transition: border-color 0.4s ease;
}

.use-case-card:hover {
  border-color: rgba(196, 169, 77, 0.35);
}

.use-case-icon {
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.use-case-icon svg {
  width: 40px;
  height: 40px;
}

.use-case-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--white-pure);
  margin-bottom: 0.75rem;
}

.use-case-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   23. ORGANIZER FEATURES (eventos.php)
   ========================================================================== */

.organizer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.organizer-feature {
  padding: 0;
}

.organizer-feature .feature-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.organizer-feature .feature-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
}

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


/* ==========================================================================
   24. EXPERIENCE STEPS (bodas.php)
   ========================================================================== */

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

.experience-step {
  padding: 1.5rem 0;
}

.step-number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--gold-accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
  line-height: 1;
}

.step-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

.step-description {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.8;
}


/* ==========================================================================
   25. BRAND POSITIONING BLOCK (shared component)
   ========================================================================== */

.brand-positioning {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.brand-text {
  text-align: left;
}

.brand-text p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.brand-text p:last-child {
  margin-bottom: 0;
}

/* Narrative content block (eventos.php) */
.narrative-content p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.narrative-content p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   26. ANIMATIONS
   ========================================================================== */

/* --- Animate on scroll: initial states --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

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

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

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

[data-animate="draw-line"] {
  opacity: 1;
  transform: none;
}

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

/* --- Animated state --- */
[data-animate].animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* --- Fallback: forzar visibilidad si JS no anima tras 4s --- */
@keyframes forceVisible {
  to { opacity: 1; transform: none; }
}

[data-animate]:not(.animated) {
  animation: forceVisible 0s 4s forwards;
}

/* --- Stagger children --- */
[data-stagger] > * {
  transition-delay: calc(var(--stagger-index, 0) * 80ms);
}

/* Explicit stagger for cards */
[data-stagger] > :nth-child(1) { --stagger-index: 0; }
[data-stagger] > :nth-child(2) { --stagger-index: 1; }
[data-stagger] > :nth-child(3) { --stagger-index: 2; }
[data-stagger] > :nth-child(4) { --stagger-index: 3; }
[data-stagger] > :nth-child(5) { --stagger-index: 4; }
[data-stagger] > :nth-child(6) { --stagger-index: 5; }
[data-stagger] > :nth-child(7) { --stagger-index: 6; }
[data-stagger] > :nth-child(8) { --stagger-index: 7; }

/* --- Text reveal animation --- */
.text-reveal {
  opacity: 1;
  transform: none;
  visibility: hidden; /* Ocultar texto raw hasta que JS procese los spans */
}

.text-reveal.processed {
  visibility: visible; /* JS añade .processed tras crear los word spans */
}

.text-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.text-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s var(--ease-out-expo),
              opacity 0.7s var(--ease-out-expo);
}

.text-reveal.animated .word-inner {
  transform: translateY(0);
  opacity: 1;
}

/* --- Draw line animation --- */
[data-animate="draw-line"] {
  width: 0;
}

[data-animate="draw-line"].animated {
  width: 60px;
  transition: width 0.8s var(--ease-out-expo);
}

/* --- Gold separator draw --- */
.gold-separator[data-animate="draw-line"],
.gold-line[data-animate="draw-line"] {
  width: 0;
}

.gold-separator[data-animate="draw-line"].animated,
.gold-line[data-animate="draw-line"].animated {
  width: 60px;
}


/* --- Page transition --- */
body.page-transitioning {
  opacity: 0;
  transition: opacity 0.3s ease;
}


/* ==========================================================================
   27. PARALLAX BACKGROUND
   ========================================================================== */

.parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: var(--z-base);
  will-change: transform;
}


/* ==========================================================================
   28. UTILITY CLASSES
   ========================================================================== */

/* --- Text --- */
.text-gold {
  color: var(--gold-accent);
}

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

/* --- Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Section planners / why modifiers --- */
.section-planners,
.section-why {
  background-color: var(--gray-100);
}

.section-collections {
  /* default background */
}

.section-experience {
  /* default background */
}


/* ==========================================================================
   29. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

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

  .text-reveal {
    opacity: 1;
    transform: none;
    visibility: visible !important;
  }

  .loading-screen {
    display: none;
  }

  .collection-card-img img,
  .collection-card-image img,
  .collection-image img {
    transition: none;
  }
}


/* ==========================================================================
   30. WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Pulse animation on idle */
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 4px 14px rgba(37, 211, 102, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float {
  animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  animation: none;
}


/* ==========================================================================
   31. RESPONSIVE REFINEMENTS
   ========================================================================== */

/* --- Large screens --- */
@media (min-width: 1440px) {
  :root {
    --container-max: 1360px;
  }
}

/* --- Tablets landscape --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
  }

}

/* --- Tablets portrait --- */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 90%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .whatsapp-float {
    bottom: 1.2rem;
    right: 1.2rem;
    width: 48px;
    height: 48px;
  }

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

  .section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
  }

  .section-heading,
  .section-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .section-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .manifesto-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .cta-title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }

  .cta-text,
  .cta-description {
    font-size: 0.9rem;
  }

  /* Contact page grid stack */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Planners grid on bodas */
  .planners-benefits,
  .experience-steps {
    grid-template-columns: 1fr;
  }

  /* Narrative content */
  .narrative-content,
  .brand-text {
    max-width: 100% !important;
  }

  .narrative-content p,
  .brand-text p {
    font-size: 0.9rem;
  }

  /* Footer */
  .site-footer {
    padding-top: 3.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo-icon {
    margin: 0 auto 0.5rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    gap: 1.5rem;
    justify-content: center;
  }

  /* Section CTA */
  .section-cta {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
  }

  .section-cta .cta-description {
    font-size: 0.9rem;
  }

  /* Collections grid (homepage) */
  .collections-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .collection-card {
    min-height: 280px;
  }

  .collection-card--tall {
    grid-column: span 1;
    min-height: 280px;
  }

  .collection-card-name,
  .collection-card-title {
    font-size: 0.7rem;
  }

  .collection-card-desc,
  .collection-card-description {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* --- Mobile small --- */
@media (max-width: 480px) {
  :root {
    --container-padding: 1.25rem;
  }

  .btn {
    padding: 0.85rem 2rem;
    font-size: 0.6rem;
    width: 100%;
    max-width: 300px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-eyebrow,
  .hero-subtitle {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    margin-bottom: 0;
  }

  .hero-line {
    margin: 1.5rem auto;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .hero-cta {
    margin-top: 1.5rem;
  }

  .section-eyebrow,
  .section-subtitle {
    font-size: 0.55rem;
  }

  .section-heading,
  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }

  .gold-separator {
    margin: 1.5rem auto;
  }

  /* Timeline */
  .timeline {
    padding-left: 1.25rem;
  }

  .timeline-item {
    padding-left: 1.75rem;
    padding-bottom: 2rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }

  /* Use cases */
  .use-case-card {
    padding: 1.5rem;
  }

  .use-case-title {
    font-size: 1.05rem;
  }

  .use-case-description {
    font-size: 0.8rem;
  }

  /* Organizer grid */
  .organizer-feature .feature-title {
    font-size: 1.05rem;
  }

  .organizer-feature .feature-description {
    font-size: 0.85rem;
  }

  /* Catalog collections */
  .collection-layout {
    gap: 1.5rem;
  }

  .collection-name {
    font-size: 0.7rem;
  }

  .collection-narrative {
    font-size: 0.85rem;
  }

  .collection-info .btn {
    width: 100%;
    text-align: center;
  }

  /* Values grid (about/contact) */
  .value-title {
    font-size: 1rem;
  }

  .value-description {
    font-size: 0.85rem;
  }

  /* Forms */
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 1rem;
    padding: 1rem 0 0.75rem;
  }

  .form-label {
    font-size: 0.75rem;
  }

  /* Experience steps */
  .experience-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-number {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .step-title {
    font-size: 0.75rem;
  }

  .step-description {
    font-size: 0.8rem;
  }

  /* Footer mobile */
  .footer-grid {
    gap: 1.75rem;
  }

  .footer-logo {
    font-size: 0.8rem;
  }

  .footer-heading {
    font-size: 0.6rem;
    margin-bottom: 0.75rem;
  }

  .footer-link {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.65rem;
  }

  .footer-legal-link {
    font-size: 0.65rem;
  }

  /* Mobile menu adjustments */
  .mobile-nav-link {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.5;
  }

  .mobile-nav-cta {
    margin-top: 1rem;
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  /* Collections homepage grid: 1 col on very small */
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .collection-card {
    min-height: 240px;
  }

  .collection-card--tall {
    min-height: 240px;
  }
}


/* ==========================================================================
   31. CATALOG PHILOSOPHY (catalogo.php)
   ========================================================================== */

.catalog-philosophy p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 2;
  color: var(--gray-600);
}


/* ==========================================================================
   32. DARK SECTION OVERRIDES
   ========================================================================== */

/* Background color alt for catalog sections */
[style*="background-color: var(--color-bg-alt"],
[style*="background-color:#0a0a0a"],
[style*="background-color: #0a0a0a"] {
  background-color: var(--black-soft) !important;
}

/* Dark section text adjustments */
.section--dark .section-eyebrow,
.section--dark .section-subtitle {
  color: var(--gold-accent);
}

.section--dark .feature-card {
  border-left-color: rgba(196, 169, 77, 0.2);
}

/* section-why for sobre.php */
.section-why {
  background-color: var(--gray-100);
}

.section-why .value-card {
  border-bottom-color: var(--gray-200);
}


/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background-color: rgba(10, 10, 10, 0.97);
  border-top: 1px solid rgba(196, 169, 77, 0.2);
  padding: 1.25rem 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-link {
  color: var(--gold-accent);
  text-decoration: none;
  margin-left: 0.3rem;
  transition: color 0.3s ease;
}

.cookie-banner-link:hover {
  color: var(--white-pure);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background-color: var(--gold-accent);
  color: var(--black-deep);
  border: 1px solid var(--gold-accent);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
  background-color: transparent;
  color: var(--gold-accent);
}

.btn-cookie-reject {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-reject:hover {
  color: var(--white-pure);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 0 1.25rem;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   LEGAL PAGES (Privacy & Terms)
   ========================================================================== */

.legal-page {
  padding-top: 8rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.legal-updated {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.legal-content p {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-section-title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-accent);
  letter-spacing: 0.03em;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.legal-list li {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 4px;
  height: 4px;
  background-color: var(--gold-accent);
  border-radius: 50%;
}


/* ==========================================================================
   COLLECTION HEADERS (catalog collection intros)
   ========================================================================== */

.collection-header {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.collection-header-name {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.75rem;
}

.collection-header-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-warm);
  margin-bottom: 1.5rem;
}

.collection-header-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.collection-header-ideal {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(196, 169, 77, 0.6);
  line-height: 1.7;
}


/* ==========================================================================
   PRODUCT DETAILS (premium product sections within collections)
   ========================================================================== */

.product-details-grid {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/* --- Individual Product Detail --- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-detail:last-child {
  border-bottom: none;
}

.product-detail--image-right {
  direction: rtl;
}

.product-detail--image-right > * {
  direction: ltr;
}

/* --- Product Image --- */
.product-detail-image {
  position: sticky;
  top: 100px;
  align-self: start;
  overflow: hidden;
  max-height: 80vh;
  min-height: 400px;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

.product-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 169, 77, 0.12);
  pointer-events: none;
}

/* --- Product Content --- */
.product-detail-content {
  padding-top: 1rem;
}

.product-detail-name {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
}

.product-detail-meaning {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-warm);
  margin-bottom: 1.25rem;
}

.product-detail-separator {
  width: 40px;
  height: 1px;
  background: var(--gold-accent);
  margin-bottom: 1.5rem;
}

.product-detail-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

/* --- Product Specs --- */
.product-detail-specs {
  margin-bottom: 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-spec {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.product-spec-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.product-spec-value {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Packaging Section (standalone) --- */
.packaging-section {
  background: var(--color-bg-alt, #0a0a0a);
}

.packaging-tiers {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.packaging-tier--premium {
  direction: rtl;
}
.packaging-tier--premium > * {
  direction: ltr;
}

.packaging-tier-visual {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.5s ease;
}
/* --- Básico: borde sutil limpio --- */
.packaging-tier-visual--basic {
  border: 1px solid rgba(196, 169, 77, 0.2);
}
/* --- Premium: borde dorado animado shimmer --- */
.packaging-tier-visual--premium {
  padding: 3px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(196,169,77,0.35), rgba(139,118,53,0.5), rgba(196,169,77,0.7), rgba(232,216,156,0.5), rgba(196,169,77,0.35));
  background-size: 300% 300%;
  animation: premiumBorderShimmer 4s ease infinite;
  overflow: visible;
}
@keyframes premiumBorderShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Esquinas decorativas premium */
.packaging-tier-visual--premium::before,
.packaging-tier-visual--premium::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(196, 169, 77, 0.7);
  border-style: solid;
  z-index: 5;
  pointer-events: none;
}
.packaging-tier-visual--premium::before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
}
.packaging-tier-visual--premium::after {
  bottom: -6px;
  right: -6px;
  border-width: 0 2px 2px 0;
}
/* Esquinas opuestas con wrapper del content */
.packaging-tier--premium .packaging-tier-visual::before {
  top: -6px;
  right: -6px;
  left: auto;
  border-width: 2px 2px 0 0;
}
.packaging-tier--premium .packaging-tier-visual::after {
  bottom: -6px;
  left: -6px;
  right: auto;
  border-width: 0 0 2px 2px;
}
/* Glow hover premium */
.packaging-tier-visual--premium:hover {
  box-shadow: 0 0 25px rgba(196, 169, 77, 0.2), 0 0 50px rgba(196, 169, 77, 0.08);
}
.packaging-tier-visual img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(196, 169, 77, 0.1);
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
}
.packaging-tier-visual--basic img {
  border: none;
}
.packaging-tier-visual--premium img {
  border: none;
  border-radius: 5px;
}
.packaging-tier-visual:hover img {
  transform: scale(1.03);
}
.packaging-tier-visual img[style*="display: none"] + .packaging-visual-fallback,
.packaging-tier-visual img:not([src]),
.packaging-tier-visual .packaging-visual-fallback {
  display: flex;
}
.packaging-tier-visual img + .packaging-visual-fallback {
  display: none;
}
.packaging-tier-visual img[style*="display: none"] ~ .packaging-visual-fallback {
  display: flex !important;
}
.packaging-visual-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(196, 169, 77, 0.12);
  z-index: 1;
}
.packaging-tier-visual--basic .packaging-visual-fallback {
  background: linear-gradient(160deg, #111 0%, #0d0d0d 50%, #111 100%);
}
.packaging-tier-visual--premium .packaging-visual-fallback {
  background: linear-gradient(160deg, #141210 0%, #0e0c08 50%, #141210 100%);
}
.packaging-visual-diamond {
  font-size: 2rem;
  color: rgba(196, 169, 77, 0.25);
  margin-bottom: 0.5rem;
}
.packaging-tier-visual--premium .packaging-visual-diamond {
  color: rgba(196, 169, 77, 0.5);
}
.packaging-visual-label {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}
.packaging-tier-visual--premium .packaging-visual-label {
  color: rgba(196, 169, 77, 0.35);
}

.packaging-tier-badge {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.8rem;
}
.packaging-tier-badge--economy {
  border-color: rgba(160, 160, 160, 0.3);
  color: rgba(200, 200, 200, 0.8);
}

.packaging-tier-badge--premium {
  border-color: rgba(196, 169, 77, 0.4);
  color: var(--color-gold, #C4A94D);
  background: linear-gradient(90deg, rgba(196,169,77,0.08) 0%, rgba(196,169,77,0.2) 50%, rgba(196,169,77,0.08) 100%);
  background-size: 200% 100%;
  animation: badgeShimmer 3s ease infinite;
}
@keyframes badgeShimmer {
  0%   { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

.packaging-tier-title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-text, #e8e4dd);
  margin-bottom: 1rem;
}

.packaging-tier-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.packaging-tier-includes {
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 169, 77, 0.12);
}
.packaging-includes-label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold, #C4A94D);
  margin-bottom: 0.6rem;
}
.packaging-tier-includes ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
}
.packaging-tier-includes li {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  padding-left: 14px;
}
.packaging-tier-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border: 1px solid rgba(196, 169, 77, 0.4);
}
.packaging-tier--premium .packaging-tier-includes li::before {
  background: rgba(196, 169, 77, 0.2);
  border-color: var(--color-gold, #C4A94D);
}

@media (max-width: 768px) {
  .packaging-tier {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .packaging-tier--premium {
    direction: ltr;
  }
  .packaging-tier-title {
    font-size: 1.3rem;
  }
}

/* --- Delivery Timelines Section --- */
.delivery-timelines-section {
  background: var(--color-bg-alt, #0a0a0a);
}
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
  max-width: 1300px;
  margin: 0 auto;
}
.delivery-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(196, 169, 77, 0.12);
  border-radius: 6px;
  background: rgba(196, 169, 77, 0.02);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.delivery-card:hover {
  border-color: rgba(196, 169, 77, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(196, 169, 77, 0.06);
  transform: translateY(-4px);
}
.delivery-card-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 1.2rem;
  color: var(--color-gold, #C4A94D);
  opacity: 0.7;
}
.delivery-card-icon svg {
  width: 100%;
  height: 100%;
}
.delivery-card-range {
  display: block;
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text, #e8e4dd);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.delivery-card-time {
  display: inline-block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 2px;
  border: 1px solid rgba(196, 169, 77, 0.4);
  color: var(--color-gold, #C4A94D);
  background: rgba(196, 169, 77, 0.08);
  margin-bottom: 1rem;
}
.delivery-card-desc {
  font-size: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
@media (max-width: 1200px) {
  .delivery-cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
  }
}
@media (max-width: 768px) {
  .delivery-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .delivery-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .delivery-card {
    padding: 1.5rem 1.2rem;
  }
}

.product-colors {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(196, 169, 77, 0.08);
}

.product-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.6rem;
}

.product-color-swatch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.product-color-swatch:hover {
  transform: translateX(3px);
}

.color-dot {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 169, 77, 0.35);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.9), 0 0 0 3px rgba(196, 169, 77, 0.12);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.product-color-swatch:hover .color-dot {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.9), 0 0 0 3px rgba(196, 169, 77, 0.3), 0 0 8px rgba(196, 169, 77, 0.15);
  transform: scale(1.1);
}

.color-name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.product-color-swatch:hover .color-name {
  color: rgba(255, 255, 255, 0.9);
}

/* --- Engraving Section --- */
.product-engraving {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 169, 77, 0.1);
}

.product-engraving-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.product-engraving:not(.product-engraving--collapsed) .product-engraving-toggle {
  margin-bottom: 2rem;
}

.product-engraving-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-accent);
}

.engraving-toggle-icon {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold-accent);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 169, 77, 0.25);
  border-radius: 50%;
  transition: transform 0.4s ease, border-color 0.3s ease;
  flex-shrink: 0;
}

.product-engraving:not(.product-engraving--collapsed) .engraving-toggle-icon {
  transform: rotate(45deg);
  border-color: rgba(196, 169, 77, 0.5);
}

.product-engraving-toggle:hover .engraving-toggle-icon {
  border-color: var(--gold-accent);
}

/* Collapsible wrapper */
.engraving-layout-wrapper {
  max-height: 800px;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 1;
}

.product-engraving--collapsed .engraving-layout-wrapper {
  max-height: 0;
  opacity: 0;
}

/* --- Engraving Layout (diagram + zones side by side) --- */
.engraving-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: start;
}

.engraving-diagram {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.engraving-svg {
  width: 180px;
  height: auto;
  color: rgba(196, 169, 77, 0.5);
}

.engraving-diagram-img {
  max-width: 220px;
  height: auto;
  opacity: 0.9;
  border-radius: 2px;
}

/* --- Zone Cards --- */
.engraving-zones-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.zone-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.zone-card:last-child {
  border-bottom: none;
}

.zone-card:hover {
  background: rgba(196, 169, 77, 0.03);
  padding-left: 0.5rem;
}

.zone-number {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
  flex-shrink: 0;
  min-width: 1.5rem;
}

.zone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.zone-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  flex: 1;
}

.zone-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 35px;
  object-fit: contain;
  object-position: left center;
  border-radius: 2px;
  border: 1px solid rgba(196, 169, 77, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

/* --- Catalog Subnav (sticky collection navigation) --- */
.catalog-subnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 169, 77, 0.15);
}

.catalog-subnav--visible {
  transform: translateY(56px);
}

.catalog-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.catalog-subnav-inner::-webkit-scrollbar {
  display: none;
}

.catalog-subnav-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.subnav-tab-num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(196, 169, 77, 0.4);
  transition: color 0.3s ease;
}

.subnav-tab-name {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.catalog-subnav-tab:hover .subnav-tab-name {
  color: rgba(255, 255, 255, 0.85);
}

.catalog-subnav-tab:hover .subnav-tab-num {
  color: rgba(196, 169, 77, 0.7);
}

.catalog-subnav-tab--active {
  border-bottom-color: var(--gold-accent);
}

.catalog-subnav-tab--active .subnav-tab-num {
  color: var(--gold-accent);
}

.catalog-subnav-tab--active .subnav-tab-name {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
  .catalog-subnav-inner {
    justify-content: flex-start;
    padding: 0 1rem;
  }
  .catalog-subnav-tab {
    padding: 0.8rem 1rem;
  }
  .subnav-tab-name {
    font-size: 0.62rem;
  }
}

/* --- Collection Dividers --- */
.collection-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: -3rem auto 0;
  padding: 0 var(--container-padding) 2rem;
}

.collection-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 169, 77, 0.3), transparent);
}

.collection-divider-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(196, 169, 77, 0.5);
  white-space: nowrap;
}

/* --- Product Detail Responsive --- */
@media (max-width: 1024px) {
  .product-detail {
    gap: 3rem;
  }

  .engraving-layout {
    grid-template-columns: 1fr;
  }

  .engraving-diagram {
    justify-content: flex-start;
  }

  .product-detail-image {
    position: relative;
    top: auto;
    max-height: none;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 768px) {
  .product-details-grid {
    gap: 4rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }

  .product-detail--image-right {
    direction: ltr;
  }

  .product-detail-image {
    aspect-ratio: 3 / 2;
  }

  .engraving-svg {
    width: 130px;
  }

  .zone-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   32B. EXTRA-SMALL SCREENS (374px, iPhone SE)
   ========================================================================== */

@media (max-width: 374px) {
  :root {
    --container-padding: 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

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

  .section-heading,
  .section-title {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.55rem;
    max-width: 100%;
  }

  .form-input,
  .form-textarea,
  .form-select {
    font-size: 0.9rem;
    padding: 0.9rem 0 0.65rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-logo-icon {
    margin: 0 auto 0.5rem;
  }

  .mobile-logo-icon {
    margin: 0 auto 0.5rem;
  }
}


/* ==========================================================================
   33. PRINT STYLES
   ========================================================================== */

@media print {
  .main-nav,
  .loading-screen,
  .hero-scroll-indicator,
  .mobile-menu {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }

  .section {
    padding: 2rem 0;
    break-inside: avoid;
  }
}

/* ===== CALCULATOR PAGE ===== */
.hero--compact {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-deep);
    position: relative;
}
.hero--compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(196,169,77,0.06) 0%, transparent 60%);
}
.calc-section {
    padding-bottom: 6rem;
    background-color: var(--black-deep);
    color: var(--white-warm);
}
.calc-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: start;
}
.calc-controls { display: flex; flex-direction: column; gap: 2.5rem; }

/* Steps */
.calc-step { display: flex; gap: 1.5rem; }
.calc-step-num {
    width: 36px; height: 36px; min-width: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    margin-top: .2rem;
}
.calc-step-content { flex: 1; }
.calc-step-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--white-warm);
    margin-bottom: .8rem;
}

/* Inputs */
.calc-input {
    width: 100%;
    padding: .7rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,169,77,0.2);
    border-radius: 4px;
    color: var(--white-warm);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: border-color .3s;
}
.calc-input:focus { border-color: var(--gold-accent); }
.calc-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}
.calc-empty-msg {
    font-size: .8rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    padding: 1.5rem;
    line-height: 1.6;
}

/* Reference timelines */
.calc-timelines-ref {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,169,77,0.15);
    border-radius: 6px;
    padding: 1.5rem;
}
.calc-ref-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}
.calc-ref-grid { display: flex; flex-direction: column; gap: .5rem; }
.calc-ref-item {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: .85rem;
}
.calc-ref-range { color: rgba(255,255,255,0.6); }
.calc-ref-time { color: var(--gold-accent); font-weight: 500; }
.calc-ref-safety {
    margin-top: .8rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(196,169,77,0.15);
    font-size: .75rem;
    color: rgba(255,255,255,0.4);
    display: flex;
    justify-content: space-between;
}
.calc-ref-safety strong { color: var(--gold-accent); }

/* Summary sidebar */
.calc-summary-wrap { position: sticky; top: 100px; }
.calc-summary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,169,77,0.2);
    border-radius: 6px;
    padding: 1.8rem;
}
.calc-summary-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(196,169,77,0.15);
}

/* Result */
.calc-countdown {
    text-align: center;
    margin-bottom: 1.5rem;
}
.calc-countdown-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--gold-accent);
    line-height: 1;
}
.calc-countdown-label {
    font-size: .75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* Status badges */
.calc-status {
    text-align: center;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}
.calc-status-icon { font-size: 1.5rem; margin-bottom: .4rem; }
.calc-status-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: .3rem;
}
.calc-status-desc { font-size: .75rem; line-height: 1.5; }
.calc-status--ok {
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.25);
}
.calc-status--ok .calc-status-icon { color: #34d399; }
.calc-status--ok .calc-status-title { color: #34d399; }
.calc-status--ok .calc-status-desc { color: rgba(52,211,153,0.7); }
.calc-status--tight {
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.25);
}
.calc-status--tight .calc-status-icon { color: #fbbf24; }
.calc-status--tight .calc-status-title { color: #fbbf24; }
.calc-status--tight .calc-status-desc { color: rgba(251,191,36,0.7); }
.calc-status--rush {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.25);
}
.calc-status--rush .calc-status-icon { color: #f87171; }
.calc-status--rush .calc-status-title { color: #f87171; }
.calc-status--rush .calc-status-desc { color: rgba(248,113,113,0.7); }
.calc-status--no {
    background: rgba(156,163,175,0.08);
    border: 1px solid rgba(156,163,175,0.25);
}
.calc-status--no .calc-status-icon { color: #9ca3af; }
.calc-status--no .calc-status-title { color: #9ca3af; }
.calc-status--no .calc-status-desc { color: rgba(156,163,175,0.7); }

/* Details rows */
.calc-details { margin-bottom: 1.2rem; }
.calc-detail-row {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: .8rem;
    color: rgba(255,255,255,0.5);
}
.calc-detail-row strong { color: var(--white-warm); }

/* Rush box */
.calc-rush-box {
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.2rem;
}
.calc-rush-title {
    font-family: var(--font-serif);
    font-size: .9rem;
    color: #f87171;
    margin-bottom: .3rem;
}
.calc-rush-note {
    font-size: .75rem;
    color: rgba(248,113,113,0.7);
    line-height: 1.5;
}

/* CTA */
.calc-cta {
    width: 100%;
    text-align: center;
    margin-top: .5rem;
}
.calc-cta-note {
    font-size: .7rem;
    color: rgba(255,255,255,0.3);
    text-align: center;
    margin-top: .6rem;
    line-height: 1.5;
}

/* Calculator responsive */
@media (max-width: 1024px) {
    .calc-layout { grid-template-columns: 1fr; }
    .calc-summary-wrap { position: relative; top: 0; }
}

/* ===== TRACKING PAGE ===== */
.tracking-section {
    padding: 4rem 0 6rem;
}
.tracking-form-wrap {
    max-width: 480px;
    margin: 0 auto;
}
.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.tracking-input {
    background: transparent;
    border: 1px solid rgba(196,169,77,0.2);
    border-bottom: none;
    color: var(--white-warm);
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 300;
    letter-spacing: .05em;
    padding: .95rem 1.25rem;
    outline: none;
    transition: border-color .3s;
}
.tracking-input:first-of-type {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.tracking-input::placeholder {
    color: rgba(240,237,232,0.25);
}
.tracking-input:focus {
    border-color: var(--gold-accent);
    position: relative;
    z-index: 1;
}
.tracking-btn {
    background: var(--gold-accent);
    border: 1px solid var(--gold-accent);
    color: var(--black-deep);
    font-family: var(--font-sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 1rem;
    cursor: pointer;
    transition: all .3s;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.tracking-btn:hover {
    background: transparent;
    color: var(--gold-accent);
}
.tracking-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
}
.tracking-error {
    font-size: .78rem;
    font-weight: 300;
    color: #D4736A;
    text-align: center;
    margin-top: 1.2rem;
    letter-spacing: .03em;
}

/* Timeline */
@keyframes trackingFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tracking-result {
    max-width: 680px;
    margin: 3rem auto 0;
    opacity: 0;
    animation: trackingFadeIn .6s ease forwards;
}
.tracking-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
    margin-bottom: 2.5rem;
}
.tracking-timeline-line {
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255,255,255,0.08);
}
.tracking-timeline-progress {
    position: absolute;
    top: 20px;
    left: 60px;
    height: 2px;
    background: var(--gold-accent);
    transition: width .8s cubic-bezier(0.16,1,0.3,1);
}
.tracking-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}
.tracking-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.12);
    background: var(--black-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .8rem;
    transition: all .4s;
    font-size: .75rem;
    color: rgba(255,255,255,0.2);
}
.tracking-step--done .tracking-step-dot {
    border-color: var(--gold-accent);
    background: var(--gold-accent);
    color: var(--black-deep);
}
.tracking-step--active .tracking-step-dot {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 6px rgba(196,169,77,0.15);
    color: var(--gold-accent);
}
.tracking-step-label {
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    line-height: 1.4;
}
.tracking-step--done .tracking-step-label,
.tracking-step--active .tracking-step-label {
    color: var(--gold-accent);
}

/* Info card */
.tracking-info {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,169,77,0.15);
    border-radius: 4px;
    padding: 1.8rem 2rem;
}
.tracking-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: .82rem;
}
.tracking-info-row:last-child {
    border-bottom: none;
}
.tracking-info-label {
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
.tracking-info-value {
    color: var(--white-warm);
    font-weight: 400;
}
.tracking-status-badge {
    display: inline-block;
    padding: .25rem .8rem;
    border-radius: 2px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(196,169,77,0.15);
    color: var(--gold-accent);
    border: 1px solid rgba(196,169,77,0.3);
}
.tracking-status-badge--cerrado {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.1);
}

/* Payment card in tracking */
.tracking-payment-card {
    margin-top: 1.5rem;
    background: rgba(196,169,77,0.06);
    border: 1px solid rgba(196,169,77,0.2);
    border-radius: 4px;
    padding: 1.2rem 1.5rem;
}
.tracking-payment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}
.tracking-payment-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
}
.tracking-payment-pct {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--gold-accent);
    font-weight: 500;
}
.tracking-payment-bar {
    width: 100%;
    height: 5px;
    background: rgba(196,169,77,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}
.tracking-payment-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-accent), #D4B95D);
    border-radius: 3px;
    transition: width 1s ease;
}
.tracking-payment-amounts {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.8rem;
}
.tracking-payment-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gold-accent);
    color: var(--black-deep);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.3s ease;
}
.tracking-payment-btn:hover {
    background: #D4B95D;
}

/* Portal card (description, etc) */
.tracking-portal-card {
    margin-top: 1.5rem;
    background: rgba(196,169,77,0.04);
    border: 1px solid rgba(196,169,77,0.15);
    border-radius: 4px;
    padding: 1.2rem 1.5rem;
}
.tracking-portal-card-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.tracking-portal-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* Transactions table */
.tracking-tx-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.tracking-tx-table th {
    font-size: 0.7rem;
    color: rgba(196,169,77,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    padding: 6px 8px;
    border-bottom: 1px solid rgba(196,169,77,0.15);
}
.tracking-tx-table td {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    padding: 8px 8px;
    border-bottom: 1px solid rgba(196,169,77,0.08);
}
.tracking-tx-table tr:last-child td {
    border-bottom: none;
}
.tracking-tx-paid {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(77,169,100,0.15);
    color: #4DA964;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.tracking-tx-pending {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(196,169,77,0.12);
    color: #C4A94D;
    border-radius: 3px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Portal actions row */
.tracking-portal-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.tracking-invoice-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: transparent;
    color: var(--gold-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--gold-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.tracking-invoice-btn:hover {
    background: rgba(196,169,77,0.1);
}

/* Tracking responsive */
@media (max-width: 600px) {
    .tracking-timeline {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 0;
    }
    .tracking-timeline-line {
        width: 2px;
        height: calc(100% - 40px);
        left: 19px;
        top: 20px;
        right: auto;
    }
    .tracking-timeline-progress {
        width: 2px !important;
        left: 19px;
        top: 20px;
    }
    .tracking-step {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: .6rem 0;
    }
    .tracking-step-dot {
        margin: 0;
        flex-shrink: 0;
    }
    .tracking-info {
        padding: 1.2rem 1rem;
    }
    .tracking-portal-card {
        padding: 1rem;
    }
    .tracking-tx-table th,
    .tracking-tx-table td {
        padding: 6px 4px;
        font-size: 0.72rem;
    }
    .tracking-tx-table th:nth-child(4),
    .tracking-tx-table td:nth-child(4) {
        display: none;
    }
    .tracking-portal-actions {
        flex-direction: column;
    }
    .tracking-portal-actions a {
        text-align: center;
    }
}

/* ==========================================================================
   PREMIUM FEATURES
   ========================================================================== */

/* 1. Custom Gold Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background-color 0.2s;
  mix-blend-mode: difference;
}
.custom-cursor.cursor-hover {
  width: 40px;
  height: 40px;
  background-color: rgba(196,169,77,0.1);
  border-color: var(--gold-accent);
}
@media (pointer: coarse) {
  .custom-cursor { display: none; }
}

/* 2. Page Transitions */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--black-deep);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}
body.page-entering {
  animation: pageEnter 0.4s ease forwards;
}
@keyframes pageEnter {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 3. Count-up Numbers */
.count-up {
  display: inline-block;
}

/* 4. Tilt 3D Effect on Cards */
.collection-card, .feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}
@media (hover: hover) {
  .collection-card:hover, .feature-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
}

/* 5. Press Section */
.section--press {
  padding: 3rem 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(196,169,77,0.08);
  border-bottom: 1px solid rgba(196,169,77,0.08);
  overflow: hidden;
}
.press-eyebrow {
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.press-logo {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.4s ease;
  white-space: nowrap;
}
.press-logo:hover {
  color: rgba(196,169,77,0.5);
}
@media (max-width: 768px) {
  .press-logos { gap: 1.5rem; }
  .press-logo { font-size: 0.85rem; }
}

/* 7. Gallery Momentos */
.section--gallery {
  padding: 5rem 0;
  background: var(--black-deep);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================================================
   PUBLIC PACKS PAGE
   ========================================================================== */
.hero--short { min-height: 50vh; }

/* Intro text */
.packs-intro-text {
  max-width: 780px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 2;
  color: rgba(250, 248, 245, 0.6);
  text-align: center;
}

/* Advantages */
.packs-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.packs-adv-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(196, 169, 77, 0.08);
  border-radius: 6px;
  transition: border-color 0.3s ease;
}
.packs-adv-card:hover {
  border-color: rgba(196, 169, 77, 0.25);
}
.packs-adv-icon {
  color: var(--gold-accent, #C4A94D);
  margin-bottom: 1.2rem;
  opacity: 0.8;
}
.packs-adv-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.15rem;
  color: var(--gold-accent, #C4A94D);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.packs-adv-text {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(250, 248, 245, 0.45);
}

/* Ornament separator */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}
.ornament-line {
  width: 60px;
  height: 1px;
  background: rgba(196, 169, 77, 0.25);
}
.ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-accent, #C4A94D);
  transform: rotate(45deg);
  opacity: 0.6;
}

/* Pack cards grid */
.packs-public-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
/* --- Pack cards premium with optional bg image --- */
.pack-public-card {
  background: linear-gradient(145deg, rgba(196, 169, 77, 0.03) 0%, rgba(196, 169, 77, 0.01) 100%);
  border: 1px solid rgba(196, 169, 77, 0.12);
  border-radius: 3px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.pack-public-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196, 169, 77, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 3;
}
.pack-public-card:hover {
  border-color: rgba(196, 169, 77, 0.35);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(196, 169, 77, 0.07);
  transform: translateY(-6px);
}
.pack-public-card:not(.pack-public-card--has-bg):hover {
  background: linear-gradient(145deg, rgba(196, 169, 77, 0.08) 0%, rgba(196, 169, 77, 0.03) 100%);
}
.pack-public-card:hover::before {
  opacity: 1;
}

/* Background image layer */
.pack-public-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pack-public-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.7);
  transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}
.pack-public-card:hover .pack-public-bg img {
  transform: scale(1.08);
  filter: brightness(0.25) saturate(0.8);
}
.pack-public-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 70%);
  z-index: 1;
  transition: background 0.5s ease;
}
.pack-public-card:hover .pack-public-overlay {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 60%);
}

/* Card with bg: reset background */
.pack-public-card--has-bg {
  background: none;
  border-color: rgba(196, 169, 77, 0.08);
}
.pack-public-card--has-bg:hover {
  border-color: rgba(196, 169, 77, 0.4);
}

/* Content layer */
.pack-public-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pack-public-number {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-accent);
  opacity: 0.7;
  margin-bottom: 1rem;
  display: block;
}
.pack-public-name {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  color: var(--white-pure, #fff);
  font-weight: 400;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.pack-public-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}
.pack-public-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
  flex: 1;
  list-style: none;
  padding: 0;
}
.pack-public-item {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  padding: 0.5rem 0 0.5rem 1.1rem;
  border-left: 2px solid rgba(196, 169, 77, 0.2);
  line-height: 1.5;
  transition: all 0.35s ease;
  transform: translateX(0);
}
.pack-public-card:hover .pack-public-item {
  border-left-color: rgba(196, 169, 77, 0.5);
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.85);
}
.pack-public-item:nth-child(1) { transition-delay: 0s; }
.pack-public-item:nth-child(2) { transition-delay: 0.03s; }
.pack-public-item:nth-child(3) { transition-delay: 0.06s; }
.pack-public-item:nth-child(4) { transition-delay: 0.09s; }
.pack-public-item:nth-child(5) { transition-delay: 0.12s; }

.pack-public-footer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 169, 77, 0.1);
  text-align: center;
}
.pack-public-footer .btn-gold {
  box-shadow: 0 3px 15px rgba(196, 169, 77, 0.15);
  transition: all 0.4s ease;
}
.pack-public-card:hover .pack-public-footer .btn-gold {
  box-shadow: 0 5px 20px rgba(196, 169, 77, 0.25);
}
.btn--small {
  font-size: 0.7rem;
  padding: 0.6rem 1.8rem;
  letter-spacing: 0.12em;
}

/* CTA block */
.packs-cta-block {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid rgba(196, 169, 77, 0.12);
  border-radius: 6px;
  background: rgba(196, 169, 77, 0.02);
}
.packs-cta-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.8rem;
  color: var(--white-warm, #F0EDE8);
  font-weight: 400;
  margin-bottom: 1rem;
}
.packs-cta-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(250, 248, 245, 0.5);
  max-width: 500px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .packs-public-grid { grid-template-columns: 1fr; }
  .packs-advantages { grid-template-columns: 1fr; gap: 1rem; }
  .packs-cta-block { padding: 3rem 1.5rem; }
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.gallery-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white-warm);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-weight: 200;
  transition: color 0.3s;
}
.gallery-lightbox-close:hover {
  color: var(--gold-accent);
}

/* 8. SVG Icon Micro-Animations */
.trust-badge-icon {
  transition: transform 0.3s ease;
}
.trust-badge:hover .trust-badge-icon {
  transform: scale(1.15);
}
.trust-badge-icon.animate-in path,
.trust-badge-icon.animate-in circle,
.trust-badge-icon.animate-in rect {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: svgDraw 1.2s ease forwards;
}
@keyframes svgDraw {
  to { stroke-dashoffset: 0; }
}

/* 11. Loading Screen - kept original animation */

/* 12. Parallax Depth Layers */
.parallax-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.parallax-layer--back {
  transform: translateZ(-2px) scale(3);
}
.parallax-layer--mid {
  transform: translateZ(-1px) scale(2);
}
.hero--home .hero-bg {
  transition: transform 0.1s linear;
}
.section--manifesto {
  position: relative;
  overflow: hidden;
}
.manifesto-block {
  position: relative;
  z-index: 2;
}


/* ==========================================================================
   MEMORIES PAGE — Premium Sections
   ========================================================================== */

/* --- Manifesto (split editorial) --- */
.mem-manifesto {
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.mem-manifesto-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.mem-manifesto-eyebrow {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
}

.mem-manifesto-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.2;
  color: var(--white-pure);
}

.mem-manifesto-right {
  padding-top: 0.5rem;
}

.mem-manifesto-line {
  width: 50px;
  height: 1px;
  background: var(--gold-accent);
  margin-bottom: 2rem;
}

.mem-manifesto-text {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .mem-manifesto-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mem-manifesto-right {
    padding-top: 0;
  }
}


/* --- Ornamental separator --- */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.ornament-diamond {
  color: var(--gold-accent);
  font-size: 0.6rem;
  opacity: 0.6;
}


/* --- 4 Concept Cards --- */
.mem-concepts {
  padding-bottom: clamp(4rem, 6vw, 7rem);
}

.mem-concepts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.mem-concept-card {
  padding: clamp(2.5rem, 3.5vw, 3.5rem);
  border: 1px solid rgba(196, 169, 77, 0.12);
  border-radius: 3px;
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
  background: rgba(196, 169, 77, 0.02);
}

.mem-concept-card:hover {
  background: rgba(196, 169, 77, 0.08);
  border-color: rgba(196, 169, 77, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(196, 169, 77, 0.06);
}

.mem-concept-icon {
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(196, 169, 77, 0.2));
}

.mem-concept-number {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold-accent);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.mem-concept-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--white-pure);
  margin-bottom: 0.75rem;
}

.mem-concept-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .mem-concepts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mem-concept-card {
    border-bottom: 1px solid rgba(196, 169, 77, 0.08);
  }
  .mem-concept-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .mem-concepts-grid {
    grid-template-columns: 1fr;
  }
  .mem-concept-card {
    border-right: none;
  }
}


/* --- Collections Grid --- */
.mem-collections {
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.mem-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.mem-collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  border: 1px solid rgba(196, 169, 77, 0.1);
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.mem-collection-card:hover {
  border-color: rgba(196, 169, 77, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(196, 169, 77, 0.05);
}

.mem-collection-img {
  position: absolute;
  inset: 0;
}

.mem-collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
  filter: brightness(0.55) saturate(0.8);
}

.mem-collection-card:hover .mem-collection-img img {
  transform: scale(1.05);
  filter: brightness(0.4) saturate(0.9);
}

.mem-collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.85) 100%);
}

.mem-collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  z-index: 2;
}

.mem-collection-index {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.75rem;
}

.mem-collection-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--white-pure);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.mem-collection-tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

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

.mem-collection-arrow {
  display: inline-block;
  font-size: 1.1rem;
  color: var(--gold-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s var(--ease-out-expo) 0.1s;
  margin-top: 0.75rem;
}

.mem-collection-card:hover .mem-collection-arrow {
  opacity: 0.7;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .mem-collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mem-collection-tagline {
    opacity: 1;
    transform: translateY(0);
  }
  .mem-collection-arrow {
    opacity: 0.7;
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .mem-collections-grid {
    grid-template-columns: 1fr;
  }
  .mem-collection-card {
    aspect-ratio: 4 / 3;
  }
}


/* --- Stats / Cifras --- */
.mem-stats {
  background: linear-gradient(135deg, var(--black-deep) 0%, rgba(196, 169, 77, 0.03) 50%, var(--black-deep) 100%);
  color: var(--white-pure);
  padding: clamp(3.5rem, 5vw, 5rem) 0;
  border-top: 1px solid rgba(196, 169, 77, 0.1);
  border-bottom: 1px solid rgba(196, 169, 77, 0.1);
}

.mem-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.mem-stat {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.mem-stat-number {
  display: block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px rgba(196, 169, 77, 0.2);
}

.mem-stat-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.mem-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(196, 169, 77, 0.35), transparent);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mem-stats-grid {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .mem-stat {
    flex-basis: 40%;
    max-width: none;
  }
  .mem-stat-divider {
    display: none;
  }
}


/* --- Timeline / Experience --- */
.mem-experience {
  background: var(--black-soft);
  color: var(--white-pure);
}

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

.mem-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196, 169, 77, 0.4) 10%, rgba(196, 169, 77, 0.4) 90%, transparent);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(196, 169, 77, 0.06);
}

.mem-timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.mem-timeline-item:last-of-type {
  margin-bottom: 0;
}

.mem-timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(196, 169, 77, 0.5);
  background: rgba(196, 169, 77, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 0 12px rgba(196, 169, 77, 0.08);
}

.mem-timeline-dot span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-accent);
}

.mem-timeline-item:hover .mem-timeline-dot {
  border-color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.12);
  box-shadow: 0 0 20px rgba(196, 169, 77, 0.15);
  transform: translateX(-50%) scale(1.1);
}

.mem-timeline-card {
  width: calc(50% - 50px);
  padding: 1.75rem 2rem;
  border: 1px solid rgba(196, 169, 77, 0.08);
  border-radius: 3px;
  background: rgba(196, 169, 77, 0.02);
  transition: all 0.4s ease;
}

.mem-timeline-item:hover .mem-timeline-card {
  border-color: rgba(196, 169, 77, 0.2);
  background: rgba(196, 169, 77, 0.05);
}

.mem-timeline-item--right .mem-timeline-card {
  margin-left: auto;
}

.mem-timeline-item:not(.mem-timeline-item--right) .mem-timeline-card {
  text-align: right;
}

.mem-timeline-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--white-pure);
  margin-bottom: 0.5rem;
}

.mem-timeline-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 768px) {
  .mem-timeline-line {
    left: 22px;
  }
  .mem-timeline-dot {
    left: 22px;
    width: 36px;
    height: 36px;
  }
  .mem-timeline-card {
    width: calc(100% - 65px);
    margin-left: auto !important;
    text-align: left !important;
  }
  .mem-timeline-item:not(.mem-timeline-item--right) .mem-timeline-card {
    text-align: left;
  }
}


/* --- Narrative section --- */
.mem-narrative {
  padding: clamp(6rem, 10vw, 12rem) 0;
}

.mem-narrative .manifesto-text {
  color: rgba(255, 255, 255, 0.65);
}


/* --- For Whom (3 columns) --- */
.mem-for-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.8;
}

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

.mem-for-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(196, 169, 77, 0.15);
  border-radius: 3px;
  transition: all 0.5s var(--ease-out-expo);
  background: rgba(196, 169, 77, 0.02);
}

.mem-for-card:hover {
  border-color: rgba(196, 169, 77, 0.4);
  background: rgba(196, 169, 77, 0.07);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.mem-for-number {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-accent);
  opacity: 0.8;
  display: block;
  margin-bottom: 1.25rem;
}

.mem-for-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--white-pure);
  margin-bottom: 0.75rem;
}

.mem-for-desc {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .mem-for-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* --- Gallery grid --- */
.mem-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mem-gallery-item {
  overflow: hidden;
  border-radius: 3px;
  position: relative;
  border: 1px solid rgba(196, 169, 77, 0.08);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.mem-gallery-item:hover {
  border-color: rgba(196, 169, 77, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(196, 169, 77, 0.05);
  transform: translateY(-3px);
}

.mem-gallery-item--tall {
  grid-row: span 2;
}

.mem-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.85);
  transition: transform 0.8s var(--ease-out-expo), filter 0.6s ease;
}

.mem-gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8) saturate(1.1);
}

@media (max-width: 768px) {
  .mem-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}

@media (max-width: 480px) {
  .mem-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .mem-gallery-item--tall {
    grid-row: span 1;
  }
}


/* --- Testimonials --- */
.mem-testimonials {
  background: var(--black-deep);
  color: var(--white-pure);
}

.mem-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.mem-testimonial {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(196, 169, 77, 0.08);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.4s ease;
}

.mem-testimonial:hover {
  border-color: rgba(196, 169, 77, 0.2);
}

.mem-testimonial-quote {
  margin-bottom: 2rem;
}

.mem-testimonial-quote svg {
  color: var(--gold-accent);
  margin-bottom: 1rem;
}

.mem-testimonial-quote p {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.mem-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196, 169, 77, 0.1);
}

.mem-testimonial-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--white-pure);
}

.mem-testimonial-role {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.72rem;
  color: var(--gold-accent);
  opacity: 0.7;
}

@media (max-width: 768px) {
  .mem-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* --- Packaging preview --- */
.mem-packaging {
  background: var(--black-soft);
  color: var(--white-pure);
}

.mem-packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.mem-packaging-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(196, 169, 77, 0.12);
  border-radius: 3px;
  transition: all 0.5s var(--ease-out-expo);
  background: rgba(196, 169, 77, 0.02);
}

.mem-packaging-card:hover {
  border-color: rgba(196, 169, 77, 0.35);
  background: rgba(196, 169, 77, 0.06);
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.mem-packaging-card--featured {
  border-color: rgba(196, 169, 77, 0.3);
  background: rgba(196, 169, 77, 0.06);
}

.mem-packaging-card--featured:hover {
  border-color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(196, 169, 77, 0.08);
}

.mem-packaging-icon {
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
  opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(196, 169, 77, 0.15));
}

.mem-packaging-card--featured .mem-packaging-icon {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(196, 169, 77, 0.25));
}

.mem-packaging-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--white-pure);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.mem-packaging-detail {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
  .mem-packaging-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .mem-packaging-card {
    padding: 2rem 1.5rem;
  }
}


/* --- CTA with background --- */
.mem-cta {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 9rem) 0;
}

.mem-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
  z-index: 1;
}

.mem-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.65) 100%);
  z-index: 1;
}

.mem-cta .section-title {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.mem-cta .btn-gold {
  box-shadow: 0 4px 20px rgba(196, 169, 77, 0.25);
}

/* ===== CAJA SORPRESA (MEMORIES) ===== */
.mem-surprise {
  position: relative;
  overflow: hidden;
}
.mem-surprise-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(196, 169, 77, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.mem-surprise .container { position: relative; z-index: 1; }

.mem-surprise-layout {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.mem-surprise-visual {
  flex: 0 0 42%;
  position: relative;
}
.mem-surprise-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.mem-surprise-box img {
  width: 100%;
  display: block;
  filter: brightness(0.65) saturate(0.9);
  transition: filter 0.5s;
}
.mem-surprise:hover .mem-surprise-box img {
  filter: brightness(0.75) saturate(1);
}
.mem-surprise-light {
  position: absolute;
  bottom: 0; left: 50%;
  width: 140%; height: 65%;
  background: radial-gradient(ellipse at center bottom, rgba(196, 169, 77, 0.2) 0%, transparent 65%);
  transform: translateX(-50%);
  pointer-events: none;
  animation: surprise-pulse 3s ease-in-out infinite;
}
@keyframes surprise-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.mem-surprise-content {
  flex: 1;
}
.mem-surprise-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.mem-surprise-hint {
  color: var(--gold-accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .mem-surprise-layout {
    flex-direction: column;
    gap: 2rem;
  }
  .mem-surprise-visual {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===== COUNTDOWN FORM PAGE ===== */
.cd-form {
  margin-top: 2.5rem;
}
.cd-form-group {
  margin-bottom: 1.5rem;
  flex: 1;
}
.cd-form-row {
  display: flex;
  gap: 1.5rem;
}
.cd-form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-accent);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.cd-form-input,
.cd-form-select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 169, 77, 0.2);
  border-radius: 3px;
  color: var(--white-warm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.cd-form-input:focus,
.cd-form-select:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.05);
}
.cd-form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4A94D' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.cd-form-select option {
  background: #1A1A18;
  color: #F0EDE8;
}
.cd-form-submit {
  margin-top: 2rem;
}
.cd-form-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.5rem;
  line-height: 1.6;
}
.cd-flash {
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  text-align: center;
}
.cd-flash--success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #27ae60;
}
.cd-flash--error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* ===== WIZARD STEPS ===== */
.cd-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
  padding: 0 1rem;
}
.cd-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: default;
  min-width: 50px;
}
.cd-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(196, 169, 77, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.cd-step-label {
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.cd-step.active .cd-step-num {
  border-color: var(--gold-accent);
  background: var(--gold-accent);
  color: #0A0A0A;
  font-weight: 600;
}
.cd-step.active .cd-step-label {
  color: var(--gold-accent);
}
.cd-step.done .cd-step-num {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}
.cd-step.done .cd-step-label {
  color: rgba(196, 169, 77, 0.5);
}
.cd-step-line {
  flex: 1;
  height: 1px;
  background: rgba(196, 169, 77, 0.15);
  margin: 0 0.3rem;
  margin-bottom: 1.2rem;
}

/* Wizard step panels */
.cd-wizard-step {
  display: none;
}
.cd-wizard-step.active {
  display: block;
  animation: cd-wizard-in 0.4s ease;
}
@keyframes cd-wizard-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.cd-step-title {
  text-align: center;
  margin-bottom: 2rem;
}
.cd-step-title h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white-warm);
  margin: 0.5rem 0 0.3rem;
}
.cd-step-title p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Wizard nav */
.cd-wizard-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 169, 77, 0.1);
}
.btn-outline {
  background: none;
  border: 1px solid rgba(196, 169, 77, 0.3);
  color: var(--gold-accent);
  padding: 0.8rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.05);
}

/* ===== STORY BLOCKS ===== */
.cd-story-block {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(196, 169, 77, 0.12);
  border-radius: 6px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  transition: border-color 0.3s;
}
.cd-story-block:hover {
  border-color: rgba(196, 169, 77, 0.25);
}
.cd-story-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cd-story-block-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(196, 169, 77, 0.15);
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
}
.cd-story-block-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.25);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0 0.3rem;
}
.cd-story-block-remove:hover {
  color: #e74c3c;
}

.cd-add-block-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  border: 1px dashed rgba(196, 169, 77, 0.2);
  border-radius: 6px;
  background: none;
  color: rgba(196, 169, 77, 0.5);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}
.cd-add-block-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.03);
}

/* Story photo */
.cd-story-photo-zone {
  position: relative;
}
.cd-story-photo-preview {
  position: relative;
  width: 120px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
}
.cd-story-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-story-photo-preview button {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-story-photo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(196, 169, 77, 0.2);
  color: rgba(196, 169, 77, 0.5);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  cursor: pointer;
  transition: all 0.3s;
}
.cd-story-photo-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

/* ===== GALLERY ===== */
.cd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.cd-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(196, 169, 77, 0.12);
}
.cd-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-gallery-item button {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.cd-gallery-item:hover button {
  opacity: 1;
}

.cd-upload-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 2rem;
  border: 2px dashed rgba(196, 169, 77, 0.15);
  border-radius: 8px;
  background: rgba(196, 169, 77, 0.02);
  color: rgba(196, 169, 77, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-sans);
}
.cd-upload-btn span {
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.cd-upload-btn small {
  font-size: 0.65rem;
  opacity: 0.6;
}
.cd-upload-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.04);
}
.cd-upload-btn--small {
  padding: 1rem;
  flex-direction: row;
  gap: 0.4rem;
}

.cd-gallery-count {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 0.5rem;
}

/* Cover photo */
.cd-cover-preview {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(196, 169, 77, 0.15);
  margin-bottom: 0.5rem;
}
.cd-cover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cd-cover-remove {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toggle sections */
.cd-toggle-section {
  margin-bottom: 0.8rem;
}
.cd-toggle-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(196, 169, 77, 0.1);
  border-radius: 4px;
  transition: all 0.3s;
}
.cd-toggle-opt:hover {
  border-color: rgba(196, 169, 77, 0.25);
  background: rgba(196, 169, 77, 0.02);
}
.cd-toggle-opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-accent);
  cursor: pointer;
}
.cd-toggle-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}
.cd-toggle-opt:has(input:checked) {
  border-color: rgba(196, 169, 77, 0.3);
  background: rgba(196, 169, 77, 0.04);
}
.cd-toggle-opt:has(input:checked) .cd-toggle-label {
  color: var(--gold-accent);
}

/* Mode selector */
.cd-mode-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.cd-mode-opt {
  flex: 1;
  cursor: pointer;
}
.cd-mode-opt input { display: none; }
.cd-mode-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(196, 169, 77, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
  text-align: center;
}
.cd-mode-card svg {
  width: 28px;
  height: 28px;
  color: rgba(196, 169, 77, 0.4);
  transition: color 0.3s;
}
.cd-mode-card span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.5);
  transition: color 0.3s;
}
.cd-mode-card small {
  font-size: 0.68rem;
  color: rgba(240, 237, 232, 0.3);
  line-height: 1.4;
}
.cd-mode-opt input:checked + .cd-mode-card {
  border-color: var(--gold-accent);
  background: rgba(196, 169, 77, 0.06);
}
.cd-mode-opt input:checked + .cd-mode-card svg {
  color: var(--gold-accent);
}
.cd-mode-opt input:checked + .cd-mode-card span {
  color: var(--gold-accent);
}

/* Color picker */
.cd-color-picker {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cd-color-opt {
  cursor: pointer;
  position: relative;
}
.cd-color-opt input { display: none; }
.cd-color-swatch {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 0.25s;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.cd-color-opt input:checked + .cd-color-swatch {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 2px var(--gold-accent), 0 0 12px rgba(196, 169, 77, 0.3);
  transform: scale(1.1);
}
.cd-color-opt:hover .cd-color-swatch {
  transform: scale(1.08);
}

/* Template grid */
.cd-template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.6rem;
}
.cd-template-opt {
  cursor: pointer;
}
.cd-template-opt input { display: none; }
.cd-template-preview {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  border: 2px solid rgba(196, 169, 77, 0.1);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0.4rem;
  transition: all 0.3s;
  overflow: hidden;
}
.cd-template-preview span {
  font-size: 0.55rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.cd-template-none {
  background: rgba(255,255,255,0.03);
  align-items: center;
}
.cd-template-none span {
  color: rgba(255,255,255,0.35);
  text-shadow: none;
}
.cd-template-opt.active .cd-template-preview,
.cd-template-opt input:checked + .cd-template-preview {
  border-color: var(--gold-accent);
  box-shadow: 0 0 12px rgba(196, 169, 77, 0.25);
}
.cd-template-opt:hover .cd-template-preview {
  border-color: rgba(196, 169, 77, 0.4);
}

/* Live preview */
.cd-live-preview {
  margin: 2rem 0 0.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(196, 169, 77, 0.15);
}
.cd-live-preview-inner {
  position: relative;
  padding: 2.5rem 1.5rem;
  background-color: #0A0A0A;
  text-align: center;
  transition: all 0.4s;
  background-size: cover;
  background-position: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cd-live-preview-label {
  position: absolute;
  top: 0.5rem;
  left: 0.7rem;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.cd-live-names {
  margin: 0;
  color: #C4A94D;
  transition: color 0.3s;
}
.cd-live-timer {
  margin-top: 0.8rem;
  color: #C4A94D;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  transition: color 0.3s;
}
.cd-live-timer small {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-left: 0.3rem;
}

@media (max-width: 600px) {
  .cd-form-row {
    flex-direction: column;
    gap: 0;
  }
  .cd-mode-selector {
    flex-direction: column;
    gap: 0.6rem;
  }
  .cd-template-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cd-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cd-steps {
    gap: 0;
    padding: 0;
  }
  .cd-step-label {
    display: none;
  }
  .cd-wizard-nav {
    flex-wrap: wrap;
  }
}
