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

  :root {
    --cream: #F5F0E8;
    --cream-dark: #EDE6D6;
    --ink: #1A1714;
    --ink-soft: #3D3730;
    --gold: #B8955A;
    --gold-light: #D4AE78;
    --gold-pale: #F0E6CC;
    --muted: #8C8479;
    --white: #FDFBF7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--white);
    color: var(--ink);
    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: 1.5rem 4rem;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid rgba(184, 149, 90, 0.2);
    transition: padding 0.3s;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--ink);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink-soft);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    padding: 0;
  }

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

  .nav-cart-btn {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 0.6rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .nav-cart-btn:hover { background: var(--gold); }

  /* ── 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;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .hero-left::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 0.5px solid rgba(184, 149, 90, 0.15);
  }

  .hero-left::after {
    content: '';
    position: absolute;
    bottom: 60px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    border: 0.5px solid rgba(184, 149, 90, 0.2);
  }

  .hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--muted);
    max-width: 340px;
    margin-bottom: 3rem;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s;
  }

  .btn-primary:hover { background: var(--gold); }

  .btn-secondary {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: var(--ink);
    padding: 1rem 2rem;
    border: 0.5px solid rgba(26, 23, 20, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
  }

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

  .hero-right {
    position: relative;
    background: var(--ink);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Decorative perfume bottle illustration */
  .bottle-scene {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 0.5px solid rgba(184, 149, 90, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .hero-badge span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
    line-height: 1.3;
  }

  /* ── MARQUEE ── */
  .marquee-wrapper {
    background: var(--gold);
    overflow: hidden;
    padding: 0.85rem 0;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 18s linear infinite;
    width: max-content;
  }

  .marquee-item {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 2.5rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }

  .marquee-item::after {
    content: '✦';
    font-size: 0.5rem;
    opacity: 0.6;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTION SHARED ── */
  section { padding: 7rem 4rem; }

  .section-label {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: var(--gold); }

  /* ── FEATURED PRODUCTS ── */
  .products-section {
    background: var(--white);
  }

  .products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
  }

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

  .product-card {
    background: var(--cream);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: transform 0.4s;
  }

  .product-card:hover { transform: translateY(-4px); }

  .product-card.featured {
    grid-column: span 1;
    grid-row: span 2;
  }

  .product-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .product-img.tall { aspect-ratio: 2/3; }

  .product-img svg {
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.4s;
  }

  .product-card:hover .product-img svg { opacity: 0.85; transform: scale(1.04); }

  .product-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26,23,20,0.7));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(60px);
    transition: transform 0.35s;
  }

  .product-card:hover .product-overlay { transform: translateY(0); }

  .product-overlay .add-btn {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--gold);
    border: none;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }

  .product-info {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.3rem;
  }

  .product-note {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .product-price {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  .product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    padding: 0.3rem 0.7rem;
  }

  /* ── ABOUT / BRAND STORY ── */
  .about-section {
    background: var(--ink);
    color: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 8rem 4rem;
  }

  .about-section .section-label { color: var(--gold-light); }
  .about-section .section-title { color: var(--cream); }

  .about-text {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 2rem;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 0.5px solid rgba(184, 149, 90, 0.25);
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
  }

  .about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border: 0.5px solid rgba(184, 149, 90, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .about-frame::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px; right: -16px; bottom: -16px;
    border: 0.5px solid rgba(184, 149, 90, 0.1);
  }

  /* ── SCENT FAMILIES ── */
  .scents-section {
    background: var(--cream);
  }

  .scents-header { text-align: center; margin-bottom: 4rem; }

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

  .scent-card {
    padding: 2.5rem 1.5rem;
    border: 0.5px solid rgba(184, 149, 90, 0.2);
    background: var(--white);
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: border-color 0.2s, transform 0.3s;
  }

  .scent-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
  }

  .scent-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .scent-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

  .scent-desc {
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
    letter-spacing: 0.02em;
  }

  /* ── BESTSELLERS ── */
  .bestsellers-section { background: var(--white); }

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

  .bs-card {
    cursor: pointer;
    text-decoration: none;
    display: block;
  }

  .bs-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: background 0.25s;
  }

  .bs-card:hover .bs-img { background: var(--cream-dark); }

  .bs-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }

  .bs-size {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
  }

  .bs-price {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 400;
  }

  .bs-rating {
    display: flex;
    gap: 2px;
    align-items: center;
    margin-top: 0.3rem;
  }

  .bs-rating span { font-size: 0.65rem; color: var(--muted); margin-left: 4px; }

  /* ── NEWSLETTER ── */
  .newsletter-section {
    background: var(--gold-pale);
    text-align: center;
    padding: 6rem 4rem;
  }

  .newsletter-section .section-title { margin-bottom: 1rem; }

  .newsletter-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
  }

  .newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
  }

  .newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 0.5px solid rgba(26, 23, 20, 0.2);
    background: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    letter-spacing: 0.05em;
  }

  .newsletter-input::placeholder { color: var(--muted); }
  .newsletter-input:focus { border-color: var(--gold); }

  .newsletter-submit {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }

  .newsletter-submit:hover { background: var(--gold); }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: var(--cream);
    padding: 7rem 4rem;
  }

  .testimonials-header { text-align: center; margin-bottom: 4rem; }

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

  .testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 0.5px solid rgba(184, 149, 90, 0.15);
    position: relative;
  }

  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--gold-pale);
    line-height: 0.5;
    margin-bottom: 1rem;
    user-select: none;
  }

  .testimonial-text {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .testimonial-author {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .star-row {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 5rem 4rem 2rem;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 0.5px solid rgba(184, 149, 90, 0.15);
    margin-bottom: 2rem;
  }

  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--cream);
    margin-bottom: 1rem;
  }

  .footer-tagline {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.8;
    max-width: 260px;
    margin-bottom: 2rem;
  }

  .footer-socials {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 0.5px solid rgba(184, 149, 90, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 240, 232, 0.6);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    transition: border-color 0.2s, color 0.2s;
  }

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

  .footer-col h4 {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
  }

  .footer-col ul { list-style: none; }

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

  .footer-col ul li a {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.05em;
  }

  .footer-col ul li a:hover { color: var(--gold-light); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.1em;
  }

  .footer-bottom a {
    color: rgba(245, 240, 232, 0.3);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (max-width: 1024px) {
    nav { padding: 1.25rem 2rem; }
    .nav-links { display: none; }
    section { padding: 5rem 2rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { min-height: 400px; }
    .hero-left { padding: 4rem 2rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .scents-grid { grid-template-columns: 1fr 1fr; }
    .bestsellers-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-section { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  }

  @media (max-width: 640px) {
    nav { padding: 1rem 1.5rem; }
    .products-grid { grid-template-columns: 1fr; }
    .scents-grid { grid-template-columns: 1fr 1fr; }
    .bestsellers-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .newsletter-submit { width: 100%; }
    section { padding: 4rem 1.5rem; }
  }
