  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
  :root {
    --cream: #F5F0E8;
    --ivory: #FAF7F2;
    --gold: #B8965A;
    --gold-light: #D4AF72;
    --dark: #1A1612;
    --charcoal: #2E2A25;
    --warm-gray: #8A847C;
    --border: rgba(184, 150, 90, 0.25);
  }
 
  html { scroll-behavior: smooth; }
 
  body {
    background: var(--ivory);
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }
 
  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 4rem;
    background: #FAF7F2;
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--border);
  }
 
  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }
 
  .nav-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
  }
 
  .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
 
  .nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
  }
 
  .nav-links a:hover { color: var(--gold); }
 
  .nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
 
  .nav-actions a {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
  }
 
  .nav-actions a:hover { color: var(--gold); }
 
  .nav-cart {
    width: 36px; height: 36px;
    border: 0.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s;
    text-decoration: none;
  }
 
  .nav-cart:hover { border-color: var(--gold); }
 
  .nav-cart svg { width: 14px; height: 14px; stroke: var(--charcoal); fill: none; }
 
  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
  }
 
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 4rem;
    position: relative;
  }
 
  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
  }
 
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--dark);
    margin-bottom: 2rem;
  }
 
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }
 
  .hero-description {
    font-size: 0.75rem;
    line-height: 2;
    letter-spacing: 0.05em;
    color: var(--warm-gray);
    max-width: 320px;
    margin-bottom: 3rem;
  }
 
  .hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
 
  .btn-primary {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--dark);
    border: none;
    padding: 1rem 2.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
  }
 
  .btn-primary:hover { background: var(--charcoal); }
 
  .btn-secondary {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 0.5px solid var(--gold-light);
    padding-bottom: 2px;
    transition: color 0.3s;
  }
 
  .hero-ornament {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
 
  .hero-ornament-line {
    width: 60px;
    height: 0.5px;
    background: var(--gold);
  }
 
  .hero-ornament-text {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--warm-gray);
  }
 
  .hero-right {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  /* Decorative perfume bottle illustration */
  .bottle-wrap {
    position: relative;
    width: 340px;
    height: 460px;
    z-index: 2;
  }
 
  .bottle-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
    filter: drop-shadow(0 32px 48px rgba(26, 22, 18, 0.22));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
 
  .hero-right-label {
    position: absolute;
    top: 3rem;
    right: 3rem;
    text-align: right;
  }
 
  .hero-right-label p {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 0.3rem;
  }
 
  .hero-right-label span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gold);
  }
 
  /* ── MARQUEE ── */
  .marquee-section {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 1.2rem 0;
    overflow: hidden;
    background: var(--dark);
  }
 
  .marquee-track {
    display: flex;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }
 
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
 
  .marquee-item {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
  }
 
  .marquee-diamond {
    width: 4px; height: 4px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
  }
 
  /* ── COLLECTION ── */
  .collection {
    padding: 8rem 4rem;
  }
 
  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }
 
  .section-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }
 
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--dark);
  }
 
  .section-link {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-gray);
    text-decoration: none;
    border-bottom: 0.5px solid var(--border);
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
    margin-bottom: 0.5rem;
  }
 
  .section-link:hover { color: var(--gold); border-color: var(--gold); }
 
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
 
  .product-card {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    cursor: pointer;
  }
 
  .product-card:hover .product-img-placeholder { transform: scale(1.03); }
  .product-card:hover .product-overlay { opacity: 1; }
 
  .product-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
  }
 
  .product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 22, 18, 0.08);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .product-overlay-btn {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--dark);
    padding: 0.8rem 1.8rem;
    cursor: pointer;
    border: none;
    transform: translateY(8px);
    transition: transform 0.3s;
  }
 
  .product-card:hover .product-overlay-btn { transform: translateY(0); }
 
  .product-info {
    padding: 1.5rem 1.5rem 2rem;
  }
 
  .product-family {
    font-size: 0.5rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
 
  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
 
  .product-sub {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    margin-bottom: 1rem;
  }
 
  .product-price {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--dark);
  }
 
  /* Bottle SVG illustrations per card */
  .bottle-svg { width: 100px; }
 
  /* ── PHILOSOPHY BAND ── */
  .philosophy {
    background: var(--dark);
    padding: 8rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
 
 
 
  .philosophy-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
 
  .philosophy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 2rem;
  }
 
  .philosophy-title em {
    font-style: italic;
    color: var(--gold-light);
  }
 
  .philosophy-body {
    font-size: 0.72rem;
    line-height: 2.1;
    letter-spacing: 0.04em;
    color: rgba(250, 247, 242, 0.55);
    margin-bottom: 2.5rem;
  }
 
  .philosophy-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
  }
 
  .philosophy-stat {
    background: rgba(250, 247, 242, 0.04);
    border: 0.5px solid rgba(184, 150, 90, 0.2);
    padding: 2rem;
  }
 
  .philosophy-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    display: block;
    margin-bottom: 0.3rem;
  }
 
  .philosophy-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.4);
  }
 
  /* ── BESTSELLERS HORIZONTAL ── */
  .bestsellers {
    padding: 8rem 4rem;
    background: var(--ivory);
  }
 
  .bestsellers-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
  }
 
  .bs-card {
    border-top: 0.5px solid var(--border);
    padding-top: 2rem;
    cursor: pointer;
  }
 
  .bs-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
  }
 
  .bs-img {
    width: 100%;
    aspect-ratio: 1/1.3;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
  }
 
  .bs-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(26,22,18,0.06));
  }
 
  .bs-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.3rem;
  }
 
  .bs-note {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    color: var(--warm-gray);
    margin-bottom: 0.8rem;
  }
 
  .bs-price {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--dark);
  }
 
  /* ── EXPERIENCE BAND ── */
  .experience {
    padding: 0;
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
 
  .exp-block {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
 
  .exp-block-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
 
  .exp-block:hover .exp-block-img { transform: scale(1.04); }
 
  /* SVG illustration fills */
  .exp-block-img-perfume {
    background-color: #2A2018;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .exp-block-img-gift {
    background-color: #1E2828;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .exp-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,5,0.85) 0%, rgba(10,8,5,0.3) 55%, transparent 100%);
    z-index: 1;
  }
 
  .exp-block-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
  }
 
  .exp-block-tag {
    display: inline-block;
    font-size: 0.5rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid rgba(184,150,90,0.5);
    padding: 0.4rem 0.9rem;
    margin-bottom: 1.4rem;
  }
 
  .exp-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 1rem;
  }
 
  .exp-block-title em { font-style: italic; color: var(--gold-light); }
 
  .exp-block-body {
    font-size: 0.68rem;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: rgba(250,247,242,0.6);
    margin-bottom: 2rem;
    max-width: 340px;
  }
 
  .exp-block-btn {
    display: inline-block;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ivory);
    border: 0.5px solid rgba(250,247,242,0.5);
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
    background: transparent;
  }
 
  .exp-block-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
  }
 
  /* divider line between blocks */
  .exp-block:first-child {
    border-right: 0.5px solid rgba(184,150,90,0.2);
  }
 
  /* ── NEWSLETTER ── */
  .newsletter {
    padding: 5rem 4rem;
    background: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
 
 
 
  .newsletter-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }
 
  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.2;
  }
 
  .newsletter-form {
    display: flex;
    flex: 1;
    max-width: 480px;
    border-bottom: 0.5px solid rgba(184, 150, 90, 0.4);
    gap: 0;
  }
 
  .newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--ivory);
    padding: 1rem 0;
  }
 
  .newsletter-input::placeholder { color: rgba(250, 247, 242, 0.3); }
 
  .newsletter-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 1rem 0;
    transition: color 0.3s;
  }
 
  .newsletter-submit:hover { color: var(--gold-light); }
 
  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    padding: 4rem 4rem 2rem;
    border-top: 0.5px solid rgba(184, 150, 90, 0.15);
  }
 
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }
 
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: 1.2rem;
  }
 
  .footer-brand-tagline {
    font-size: 0.62rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
    color: rgba(250, 247, 242, 0.35);
    max-width: 240px;
  }
 
  .footer-col-title {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
 
  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
 
  .footer-col ul li a {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    color: rgba(250, 247, 242, 0.4);
    text-decoration: none;
    transition: color 0.3s;
  }
 
  .footer-col ul li a:hover { color: var(--gold-light); }
 
  .footer-bottom {
    border-top: 0.5px solid rgba(184, 150, 90, 0.12);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  .footer-copy {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    color: rgba(250, 247, 242, 0.25);
  }
 
  .footer-social {
    display: flex;
    gap: 2rem;
  }
 
  .footer-social a {
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(250, 247, 242, 0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
 
  .footer-social a:hover { color: var(--gold); }
 
  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .hero-eyebrow  { animation: fadeUp 0.8s ease both; animation-delay: 0.1s; }
  .hero-title    { animation: fadeUp 0.9s ease both; animation-delay: 0.25s; }
  .hero-description { animation: fadeUp 0.9s ease both; animation-delay: 0.4s; }
  .hero-cta      { animation: fadeUp 0.9s ease both; animation-delay: 0.55s; }
 
/* ══════════════════════════════════════════════
   FOTOS REALES — Hero, Product Cards, Bestsellers
   ══════════════════════════════════════════════ */
 
/* ── Hero: foto1 ocupa todo el panel derecho ── */
.bottle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
 
.bottle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
 
/* ── Product Cards Signature ── */
.pcard-img {
  padding: 0 !important;
  background: transparent !important;
  overflow: hidden;
}
 
.pcard-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
.product-card:hover .pcard-photo {
  transform: scale(1.04);
}
 
/* Card oscuro Nuit L'Ambre */
.pcard-dark {
  background: #1A1612;
}
.pcard-info-dark {
  background: #1A1612;
}
.pcard-info-dark .product-family { color: #B8965A; }
.pcard-info-dark .product-name   { color: #FAF7F2; }
.pcard-info-dark .product-sub    { color: rgba(250,247,242,0.4); }
.pcard-info-dark .product-price  { color: #D4AF72; }
 
/* ── Bestsellers / Favoritos ── */
.bsimg-photo {
  padding: 0 !important;
  background: transparent !important;
  overflow: hidden;
}
 
.bs-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
.bs-card:hover .bs-photo {
  transform: scale(1.04);
}
 
/* ── Hero: foto ocupa 100% del panel derecho sin recortar el frasco ── */
.hero-right {
  position: relative;
  overflow: hidden;
}
 
.bottle-wrap {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}
 
.bottle-photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  filter: none !important;
  transition: none !important;
}
 
/* Los círculos decorativos encima de la foto */
.bottle-bg-circle,
.bottle-bg-circle-2 {
  z-index: 2;
  pointer-events: none;
}
 
/* Label encima de la foto */
.hero-right-label {
  z-index: 3;
}