:root {
    --gold: #C9A84C;
    --gold-light: #E8CC7A;
    --gold-pale: #F5E9C6;
    --black: #0A0A0A;
    --dark: #111010;
    --charcoal: #1C1C1C;
    --cream: #FAF6EE;
    --white: #FFFFFF;
    --text-muted: #888;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--black);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ---- CURSOR ---- */
  * { cursor: none; }
  .cursor {
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.18s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.7;
  }


  /* ---- NAV ---- */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 28px 60px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(10,10,10,0.97); border-bottom: 1px solid rgba(201,168,76,0.15); }
  .nav-logo {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
  }
  .nav-links { display: flex; gap: 42px; list-style: none; }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250,246,238,0.7);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cart {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    font-weight: 300; color: var(--cream); text-decoration: none;
    border: 1px solid rgba(201,168,76,0.4);
    padding: 9px 22px;
    transition: all 0.3s;
  }
  .nav-cart:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }


  @keyframes logoGlowPulse {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(201,168,76,0.25)) drop-shadow(0 0 20px rgba(201,168,76,0.08)); }
    50%       { filter: drop-shadow(0 0 22px rgba(201,168,76,0.7)) drop-shadow(0 0 55px rgba(201,168,76,0.22)); }
  }
  @keyframes logoSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @keyframes logoSpinReverse {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
  }
  @keyframes shimmerSweep {
    0%   { transform: translateX(-340px); }
    100% { transform: translateX(340px); }
  }
  @keyframes sparkle1 {
    0%,100% { opacity: 0; transform: scale(0) translate(0,0); }
    20%      { opacity: 1; transform: scale(1) translate(0,0); }
    80%      { opacity: 0.6; transform: scale(0.4) translate(3px,-8px); }
  }
  @keyframes sparkle2 {
    0%,100% { opacity: 0; transform: scale(0) translate(0,0); }
    30%      { opacity: 1; transform: scale(1.2) translate(0,0); }
    70%      { opacity: 0; transform: scale(0.2) translate(-5px,-10px); }
  }
  @keyframes sparkle3 {
    0%,100% { opacity: 0; transform: scale(0) translate(0,0); }
    40%      { opacity: 0.9; transform: scale(1) translate(0,0); }
    90%      { opacity: 0; transform: scale(0.3) translate(6px,-6px); }
  }
  @keyframes arcPulse {
    0%,100% { opacity: 0.25; }
    50%      { opacity: 0.6; }
  }
  @keyframes tearDrip {
    0%, 100% { transform: scaleY(1)   scaleX(1);   filter: drop-shadow(0 0 6px rgba(201,168,76,0.5)); }
    40%       { transform: scaleY(1.07) scaleX(0.95); filter: drop-shadow(0 0 14px rgba(201,168,76,0.85)); }
    70%       { transform: scaleY(0.96) scaleX(1.04); filter: drop-shadow(0 0 8px rgba(201,168,76,0.6)); }
  }
  @keyframes tearFadeIn {
    from { opacity: 0; transform: translateY(-6px) scaleY(0.5); }
    to   { opacity: 1; transform: translateY(0)    scaleY(1); }
  }

  .hero-logo-wrap {
    margin: 0 auto 36px;
    position: relative;
    width: 280px; height: 160px;
    opacity: 0;
    animation: fadeUp 1.1s 0.5s forwards;
  }
  .hero-logo-wrap svg.logo-svg {
    width: 100%; height: 100%;
    animation: logoGlowPulse 4s 1.6s ease-in-out infinite;
    overflow: visible;
  }
  .hero-logo-img {
    width: 280px; margin: 0 auto 36px;
    opacity: 0; animation: fadeUp 1.1s 0.5s forwards, logoGlowPulse 4s 1.6s ease-in-out infinite;
    display: block;
  }
  /* ---- HERO ---- */
  .hero {
    height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
                linear-gradient(135deg, #0A0A0A 0%, #141210 50%, #0A0A0A 100%);
  }
  .hero-grain {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4; pointer-events: none;
  }
  .hero-lines {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201,168,76,0.03) 79px, rgba(201,168,76,0.03) 80px);
  }
  .hero-content {
    position: relative; z-index: 2;
    text-align: center;
    max-width: 900px; padding: 0 40px;
  }
  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 10px; letter-spacing: 7px; text-transform: uppercase;
    color: var(--gold); font-weight: 300;
    margin-bottom: 30px;
    opacity: 0; animation: fadeUp 1s 0.3s forwards;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 1.2s 0.7s forwards;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 13px; font-weight: 200; letter-spacing: 3px;
    color: rgba(250,246,238,0.55);
    margin-bottom: 52px;
    opacity: 0; animation: fadeUp 1.2s 0.9s forwards;
  }
  .hero-ctas {
    display: flex; gap: 20px; justify-content: center; align-items: center;
    opacity: 0; animation: fadeUp 1.2s 1.1s forwards;
  }
  .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    padding: 16px 44px;
    text-decoration: none;
    transition: all 0.35s;
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gold-light);
    transform: translateX(-100%);
    transition: transform 0.35s;
    z-index: 0;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }
  .btn-secondary {
    font-family: 'Jost', sans-serif;
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 300;
    color: var(--cream); text-decoration: none;
    display: flex; align-items: center; gap: 10px;
    transition: color 0.3s;
  }
  .btn-secondary:hover { color: var(--gold); }
  .btn-secondary::after {
    content: '→'; transition: transform 0.3s;
  }
  .btn-secondary:hover::after { transform: translateX(5px); }
  .hero-scroll {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 1s 1.5s forwards;
  }
  .hero-scroll span {
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(250,246,238,0.35);
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
  }

  /* ---- MARQUEE ---- */
  .marquee-section {
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 18px 0;
    overflow: hidden;
    background: rgba(201,168,76,0.03);
  }
  .marquee-track {
    display: flex; gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
  }
  .marquee-item {
    font-family: 'Cinzel', serif;
    font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
    color: rgba(201,168,76,0.6);
    padding: 0 50px;
    flex-shrink: 0;
  }
  .marquee-sep {
    color: var(--gold); opacity: 0.4;
    padding: 0 10px;
  }

  /* ---- PHILOSOPHY ---- */
  .section-philosophy {
    padding: 140px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px; margin: 0 auto;
  }
  .phil-text {}
  .section-label {
    font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
    color: var(--gold); font-weight: 400;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 16px;
  }
  .section-label::before {
    content: '';
    display: block; width: 40px; height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300; line-height: 1.15;
    margin-bottom: 28px;
  }
  .section-title em { font-style: italic; color: var(--gold-light); }
  .section-body {
    font-size: 14px; font-weight: 200; line-height: 1.9;
    color: rgba(250,246,238,0.6);
    margin-bottom: 36px;
  }
  .phil-visual {
    position: relative;
  }
  .phil-card {
    background: var(--charcoal);
    border: 1px solid rgba(201,168,76,0.12);
    padding: 60px;
    position: relative;
    overflow: hidden;
  }
  .phil-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 200px; line-height: 1;
    color: rgba(201,168,76,0.06);
    position: absolute; top: -20px; left: 20px;
  }
  .phil-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-style: italic;
    line-height: 1.6; font-weight: 300;
    color: var(--cream);
    position: relative; z-index: 1;
    margin-bottom: 32px;
  }
  .phil-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 24px; border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 32px;
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 300; color: var(--gold);
    line-height: 1;
  }
  .stat-label {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(250,246,238,0.4); margin-top: 6px; font-weight: 300;
  }
  .phil-ornament {
    position: absolute;
    width: 200px; height: 200px;
    border: 1px solid rgba(201,168,76,0.08);
    border-radius: 50%;
    top: -50px; right: -50px;
  }
  .phil-ornament::before {
    content: '';
    position: absolute; inset: 20px;
    border: 1px solid rgba(201,168,76,0.05);
    border-radius: 50%;
  }

  /* ---- COLLECTION ---- */
  .section-collection {
    padding: 100px 60px;
    max-width: 1400px; margin: 0 auto;
  }
  .collection-header {
    text-align: center; margin-bottom: 72px;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }
  .product-card {
    position: relative;
    background: var(--charcoal);
    overflow: hidden;
    transition: transform 0.5s;
  }
  .product-card:hover { transform: translateY(-4px); }
  .product-card.featured {
    grid-row: span 2;
  }
  .product-img {
    width: 100%; aspect-ratio: 3/4;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1710 0%, #222018 40%, #191710 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; color: rgba(201,168,76,0.15);
    transition: transform 0.6s;
    position: relative;
    overflow: hidden;
  }
  .product-card.featured .product-img {
    aspect-ratio: 3/5;
  }
  .product-card:hover .product-img-inner {
    transform: scale(1.04);
  }
  .product-img-inner {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.7s ease;
  }
  .product-img-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
    transition: opacity 0.5s;
  }
  .product-card:hover .product-img-bg { opacity: 2; }
  .product-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-size: 100px; color: rgba(201,168,76,0.12);
    transition: transform 0.5s, color 0.5s;
    position: relative; z-index: 1;
  }
  .product-card.featured .product-symbol { font-size: 140px; }
  .product-card:hover .product-symbol { color: rgba(201,168,76,0.22); transform: scale(1.05); }
  .product-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 50%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px 28px;
  }
  .product-tag {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 300;
    margin-bottom: 8px;
  }
  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    margin-bottom: 6px;
  }
  .product-card.featured .product-name { font-size: 30px; }
  .product-desc {
    font-size: 11px; font-weight: 200; color: rgba(250,246,238,0.5);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.4s, transform 0.4s;
  }
  .product-card:hover .product-desc { opacity: 1; transform: translateY(0); }
  .product-price-row {
    display: flex; align-items: center; justify-content: space-between;
  }
  .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--gold-light);
  }
  .add-to-cart {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    font-weight: 300; color: var(--black);
    background: var(--gold);
    border: none; padding: 10px 18px;
    transition: background 0.3s;
    opacity: 0; transform: translateY(5px);
    transition: opacity 0.4s 0.05s, transform 0.4s 0.05s, background 0.3s;
  }
  .product-card:hover .add-to-cart { opacity: 1; transform: translateY(0); }
  .add-to-cart:hover { background: var(--gold-light); }
  .new-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gold);
    color: var(--black);
    font-size: 8px; letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 12px; font-weight: 500;
  }

  /* ---- RITUAL ---- */
  .section-ritual {
    padding: 140px 60px;
    background: var(--charcoal);
    position: relative; overflow: hidden;
  }
  .ritual-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 50%),
      repeating-conic-gradient(rgba(201,168,76,0.015) 0% 25%, transparent 0% 50%);
    background-size: auto, 60px 60px;
  }
  .ritual-inner {
    max-width: 1200px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .ritual-header { text-align: center; margin-bottom: 80px; }
  .ritual-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
  }
  .ritual-step {
    background: var(--charcoal);
    padding: 50px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
  }
  .ritual-step:hover { background: #222; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    position: absolute; top: 20px; right: 20px;
    transition: color 0.4s;
  }
  .ritual-step:hover .step-num { color: rgba(201,168,76,0.15); }
  .step-icon {
    font-size: 28px; margin-bottom: 20px; display: block;
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400;
    margin-bottom: 14px; color: var(--cream);
  }
  .step-text {
    font-size: 12px; font-weight: 200; line-height: 1.8;
    color: rgba(250,246,238,0.5);
  }
  .step-gold-line {
    width: 0; height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
    transition: width 0.5s;
  }
  .ritual-step:hover .step-gold-line { width: 40px; }

  /* ---- TESTIMONIALS ---- */
  .section-testimonials {
    padding: 140px 60px;
    max-width: 1200px; margin: 0 auto;
    text-align: center;
  }
  .testimonial-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 32px; margin-top: 72px;
  }
  .testimonial-card {
    border: 1px solid rgba(201,168,76,0.12);
    padding: 44px 36px;
    position: relative;
    transition: border-color 0.4s, transform 0.4s;
  }
  .testimonial-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-4px); }
  .stars {
    color: var(--gold); font-size: 12px; letter-spacing: 4px;
    margin-bottom: 24px;
  }
  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px; font-style: italic; font-weight: 300;
    line-height: 1.7; color: rgba(250,246,238,0.75);
    margin-bottom: 28px;
  }
  .testimonial-author {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold);
  }

  /* ---- NEWSLETTER ---- */
  .section-newsletter {
    padding: 100px 60px;
    background: linear-gradient(135deg, #0f0e0c 0%, #1a1710 50%, #0f0e0c 100%);
    position: relative; overflow: hidden;
  }
  .newsletter-glow {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }
  .newsletter-inner {
    max-width: 680px; margin: 0 auto;
    text-align: center; position: relative; z-index: 1;
  }
  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 50px; font-weight: 300;
    margin-bottom: 16px;
  }
  .newsletter-sub {
    font-size: 12px; font-weight: 200; letter-spacing: 1.5px;
    color: rgba(250,246,238,0.45); margin-bottom: 48px;
  }
  .newsletter-form {
    display: flex; gap: 0;
    border: 1px solid rgba(201,168,76,0.3);
  }
  .newsletter-input {
    flex: 1; background: transparent;
    border: none; padding: 18px 26px;
    font-family: 'Jost', sans-serif; font-size: 12px;
    font-weight: 200; letter-spacing: 1px;
    color: var(--cream); outline: none;
  }
  .newsletter-input::placeholder { color: rgba(250,246,238,0.25); }
  .newsletter-btn {
    font-family: 'Cinzel', serif;
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    background: var(--gold); color: var(--black);
    border: none; padding: 18px 36px;
    transition: background 0.3s;
    white-space: nowrap;
  }
  .newsletter-btn:hover { background: var(--gold-light); }

  /* ---- FOOTER ---- */
  footer {
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(201,168,76,0.12);
    background: #080808;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
  }
  .footer-brand {}
  .footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 18px; letter-spacing: 5px;
    color: var(--gold); margin-bottom: 6px;
  }
  .footer-tagline {
    font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(250,246,238,0.3); margin-bottom: 24px;
  }
  .footer-about {
    font-size: 12px; font-weight: 200; line-height: 1.8;
    color: rgba(250,246,238,0.4); max-width: 280px;
  }
  .footer-col-title {
    font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px; font-weight: 400;
  }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 12px; }
  .footer-links a {
    font-size: 12px; font-weight: 200; letter-spacing: 0.5px;
    color: rgba(250,246,238,0.4); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(201,168,76,0.08);
  }
  .footer-copy {
    font-size: 10px; letter-spacing: 1.5px;
    color: rgba(250,246,238,0.2);
  }
  .footer-socials { display: flex; gap: 24px; }
  .footer-socials a {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(250,246,238,0.3); text-decoration: none;
    transition: color 0.3s;
  }
  .footer-socials a:hover { color: var(--gold); }

  /* ---- ANIMATIONS ---- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.7); }
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ---- RESPONSIVE ---- */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    .section-philosophy { grid-template-columns: 1fr; padding: 80px 24px; gap: 50px; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .product-card.featured { grid-row: span 1; }
    .product-card.featured .product-img { aspect-ratio: 3/4; }
    .ritual-steps { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .section-collection, .section-testimonials, .section-newsletter, footer { padding-left: 24px; padding-right: 24px; }
    .section-ritual { padding-left: 24px; padding-right: 24px; }
  }