  :root {
    --pink: #f4a7b9;
    --rose: #e8728a;
    --deep-rose: #c4536b;
    --gold: #c9a96e;
    --cream: #fdf6f0;
    --soft-pink: #fce8ef;
    --text-dark: #2a1a1f;
    --text-mid: #6b3d4a;
    --text-light: #b07080;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: transparent;
    padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 70px;
  }
  .nav-logo img { height: 48px; object-fit: contain; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-mid); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 400; transition: color 0.2s; }
  .nav-links a:hover { color: var(--rose); }
  .nav-cta {
    background: var(--rose); color: white; border: none; padding: 10px 24px;
    font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--deep-rose); }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    background: url('../images/hero-bg.png') right center / cover no-repeat;
    padding: 100px 5% 60px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(253,246,240,0.85) 0%, rgba(253,246,240,0.5) 40%, transparent 65%);
    pointer-events: none;
  }
  .hero-content { flex: 0 0 42%; max-width: 520px; z-index: 2; position: relative; }
  .hero-visual { display: none; }
  .hero-badge {
    display: inline-block; background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.4);
    color: var(--gold); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 6px 16px; margin-bottom: 1.5rem;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300; line-height: 1.1; color: var(--text-dark);
    margin-bottom: 1.2rem;
  }
  .hero h1 em { font-style: italic; color: var(--rose); }
  .hero p {
    font-size: 15px; line-height: 1.8; color: var(--text-mid);
    margin-bottom: 2.5rem; max-width: 420px; font-weight: 300;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--rose); color: white; border: none; padding: 14px 36px;
    font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.2em;
    text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--deep-rose); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--text-mid); border: 1px solid rgba(176,112,128,0.4);
    padding: 14px 36px; font-family: 'Jost', sans-serif; font-size: 12px;
    letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
  }
  .btn-outline:hover { border-color: var(--rose); color: var(--rose); }
  .hero-stats { display: flex; gap: 3rem; margin-top: 3rem; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: var(--rose); }
  .stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-top: 2px; }

  /* MARQUEE */
  .marquee-bar {
    background: var(--rose); color: white; padding: 12px 0; overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner { display: inline-block; animation: marquee 20s linear infinite; }
  .marquee-inner span { font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; margin: 0 2rem; }
  .marquee-inner span::before { content: '✦'; margin-right: 2rem; opacity: 0.7; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* SECTION TITLES */
  .section-title {
    text-align: center; margin-bottom: 3rem;
  }
  .section-title .eyebrow {
    font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.8rem;
  }
  .section-title h2 {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300; color: var(--text-dark); line-height: 1.2;
  }
  .section-title h2 em { font-style: italic; color: var(--rose); }

  /* FEATURED PRODUCTS */
  .products { padding: 80px 5%; background: white; }
  .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
  .product-card { background: var(--cream); position: relative; overflow: hidden; cursor: pointer; transition: transform 0.3s; }
  .product-card:hover { transform: translateY(-4px); }
  .product-card:hover .product-overlay { opacity: 1; }
  .product-img {
    height: 320px; background: var(--soft-pink);
    display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
  }
  .product-img-placeholder {
    font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(200,100,130,0.2);
  }
  .product-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--rose); color: white; font-size: 10px;
    letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px;
  }
  .product-overlay {
    position: absolute; inset: 0; background: rgba(200,100,130,0.08);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: 1.5rem; opacity: 0; transition: opacity 0.3s;
  }
  .product-overlay button {
    background: var(--text-dark); color: white; border: none; padding: 10px 24px;
    font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer;
  }
  .product-info { padding: 1.2rem 1rem; }
  .product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
  .product-sub { font-size: 12px; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 10px; }
  .product-price { font-size: 1rem; color: var(--rose); font-weight: 500; }
  .product-stars { color: var(--gold); font-size: 12px; margin-bottom: 6px; }

  /* WHY US */
  .why-us { padding: 80px 5%; background: var(--soft-pink); }
  .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1100px; margin: 0 auto; }
  .feature-card { text-align: center; padding: 2rem 1.5rem; background: white; }
  .feature-icon { font-size: 2rem; margin-bottom: 1rem; }
  .feature-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--text-dark); margin-bottom: 0.6rem; }
  .feature-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

  /* TESTIMONIALS */
  .testimonials { padding: 80px 5%; background: white; }
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
  .testi-card { background: var(--cream); padding: 2rem; border-left: 3px solid var(--pink); }
  .testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; }
  .testi-author { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
  .testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 0.8rem; }

  /* BANNER */
  .banner {
    padding: 80px 5%; text-align: center;
    background: linear-gradient(135deg, #c4536b, #e8728a, #f4a7b9);
    color: white;
  }
  .banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; margin-bottom: 1rem; }
  .banner p { font-size: 14px; letter-spacing: 0.08em; opacity: 0.9; margin-bottom: 2rem; }
  .banner-input-row { display: flex; gap: 0; max-width: 400px; margin: 0 auto; }
  .banner-input-row input {
    flex: 1; padding: 14px 20px; border: none; font-family: 'Jost', sans-serif;
    font-size: 13px; outline: none; background: rgba(255,255,255,0.9);
  }
  .banner-input-row button {
    background: var(--text-dark); color: white; border: none; padding: 14px 24px;
    font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: 0.15em;
    text-transform: uppercase; cursor: pointer; white-space: nowrap;
  }

  /* FOOTER */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,0.6);
    padding: 60px 5% 30px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 3rem; }
  .footer-brand img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
  .footer-brand p { font-size: 13px; line-height: 1.7; font-weight: 300; }
  .footer-col h4 { color: white; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--pink); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 12px; max-width: 1200px; margin: 0 auto; }

  @media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding: 100px 5% 40px; }
    .hero::before { background: rgba(253,246,240,0.75); }
    .hero p { margin: 0 auto 2rem; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { position: relative; right: auto; top: auto; transform: none; width: 100%; margin-top: 2rem; }
    .hero-logo { max-width: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    nav .nav-links { display: none; }
  }
