:root {
    --pink: #d4609a;
    --pink-light: #f0b8d8;
    --pink-pale: #fce8f3;
    --pink-dark: #8a3070;
    --plum: #6a1a5a;
    --cream: #fdf8fb;
    --text: #2a0e22;
    --text-muted: #7a4d6e;
    --text-light: #b88aaa;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Raleway', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR */
  .cursor {
    position: fixed; width: 12px; height: 12px;
    background: var(--pink); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .3s var(--ease-out), height .3s var(--ease-out);
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid var(--pink); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .4s var(--ease-out), height .4s var(--ease-out), opacity .3s;
    opacity: .5;
  }
  .cursor.expanded { width: 48px; height: 48px; opacity: .15; }
  .cursor-ring.expanded { width: 60px; height: 60px; opacity: .2; }

  /* GRAIN */
  .grain {
    position: fixed; inset: -50%; width: 200%; height: 200%;
    pointer-events: none; z-index: 100; opacity: .025;
    animation: grain .4s steps(1) infinite;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
  }
  @keyframes grain {
    0%,100%{transform:translate(0,0)} 10%{transform:translate(-2%,-3%)} 20%{transform:translate(3%,2%)}
    30%{transform:translate(-1%,4%)} 40%{transform:translate(4%,-1%)} 50%{transform:translate(-3%,3%)}
    60%{transform:translate(2%,-4%)} 70%{transform:translate(-4%,1%)} 80%{transform:translate(1%,-2%)}
    90%{transform:translate(3%,4%)}
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    padding: 28px 48px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .4s, padding .4s;
  }
  nav.scrolled {
    background: rgba(253,248,251,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 48px;
    border-bottom: .5px solid rgba(212,96,154,.15);
  }
  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    height: 32px; width: auto;
    transition: filter .4s;
  }
  nav.scrolled .nav-logo img {
    filter: brightness(0) saturate(100%) invert(35%) sepia(50%) saturate(600%) hue-rotate(290deg) brightness(0.9);
  }
  nav.scrolled .nav-cta { color: var(--pink-dark); border-color: var(--pink-light); }
  nav.scrolled .nav-cta:hover { background: var(--pink); color: white; border-color: var(--pink); }
  .nav-cta {
    font-family: var(--sans);
    font-size: .75rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); text-decoration: none;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 10px 24px; border-radius: 100px;
    transition: background .25s, color .25s, border-color .25s;
  }
  .nav-cta:hover { background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); color: white; border-color: white; }

  /* HERO */
  .hero {
    min-height: 100svh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    position: relative; overflow: hidden;
    padding: 120px 24px 80px;
    background: #f2a0c8;
  }
  .hero-bg { position: absolute; inset: 0; z-index: 0; }
  .hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(80px); opacity: .4;
    animation: float 12s ease-in-out infinite;
  }
  .hero-blob:nth-child(1) { width:700px;height:700px;background:radial-gradient(circle,#e8609a,#d4609a);top:-150px;left:-200px;animation-delay:0s; }
  .hero-blob:nth-child(2) { width:600px;height:600px;background:radial-gradient(circle,#f080b8,#e8609a);top:50%;right:-150px;animation-delay:-4s; }
  .hero-blob:nth-child(3) { width:500px;height:500px;background:radial-gradient(circle,#d4609a,#c04080);bottom:-100px;left:50%;transform:translateX(-50%);animation-delay:-8s; }
  @keyframes float {
    0%,100%{transform:translateY(0) scale(1)} 33%{transform:translateY(-30px) scale(1.05)} 66%{transform:translateY(20px) scale(.97)}
  }

  .hero-logo {
    position: relative; z-index: 1;
    width: clamp(220px, 45vw, 480px);
    opacity: 0; transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out) .3s forwards;
    margin-bottom: 8px;
  }
  .hero-logo img {
    width: 100%; height: auto; display: block;
  }

  .hero-subtitle {
    font-family: var(--sans);
    font-size: clamp(.95rem, 2.2vw, 1.2rem);
    font-weight: 300; color: rgba(255,255,255,0.85);
    max-width: 500px; line-height: 1.75;
    margin-top: 28px;
    position: relative; z-index: 1;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .8s var(--ease-out) .7s forwards;
  }

  .hero-actions {
    display: flex; gap: 16px; margin-top: 44px;
    flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 1;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .8s var(--ease-out) .9s forwards;
  }
  .btn-primary {
    font-family: var(--sans); font-size: .75rem; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase;
    color: white; background: var(--pink); border: none;
    padding: 16px 36px; border-radius: 100px; text-decoration: none;
    transition: background .25s, transform .2s var(--ease-spring); display: inline-block;
  }
  .btn-primary:hover { background: var(--pink-dark); transform: scale(1.04); }
  .btn-ghost {
    font-family: var(--sans); font-size: .75rem; font-weight: 500;
    letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 16px 36px; border-radius: 100px; text-decoration: none;
    transition: border-color .25s, color .25s, transform .2s var(--ease-spring); display: inline-block;
  }
  .btn-ghost:hover { border-color: white; color: white; transform: scale(1.04); }


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

  /* SECTION BASE */
  .section-label {
    font-size: .65rem; font-weight: 600; letter-spacing: .3em;
    text-transform: uppercase; color: var(--pink);
    margin-bottom: 16px; display: block;
  }

  /* MANIFESTO */
  .manifesto {
    padding: 60px 48px 140px; max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .manifesto-heading {
    font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.8rem);
    font-weight: 700; line-height: 1.15; color: var(--plum); margin-bottom: 24px;
  }
  .manifesto-heading em { font-style: italic; color: var(--pink); }
  .manifesto-text { font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--text-muted); margin-bottom: 20px; }
  .manifesto-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .manifesto-stat {
    background: white; border: 1px solid rgba(212,96,154,.25);
    border-radius: 20px; padding: 24px 16px; text-align: center;
    transition: transform .3s var(--ease-spring), box-shadow .3s;
    min-height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(212,96,154,.08);
  }
  .manifesto-stat:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(212,96,154,.12); }
  .manifesto-stat:nth-child(2), .manifesto-stat:nth-child(4) { margin-top: 0; }
  .stat-icon { font-size: 1.4rem; margin-bottom: 12px; color: var(--pink); }
  .stat-value { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--plum); line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--plum); }

  /* DIVIDER */
  .divider {
    display: flex; align-items: center; gap: 20px;
    padding: 0 48px; max-width: 1100px; margin: 0 auto; opacity: .3;
  }
  .divider-line { flex: 1; height: .5px; background: var(--pink); }
  .divider-diamond { width: 6px; height: 6px; background: var(--pink); transform: rotate(45deg); flex-shrink: 0; }

  /* SCENTS */
  .scents { padding: 120px 48px; }
  .scents-header { text-align: center; margin-bottom: 80px; max-width: 600px; margin-left: auto; margin-right: auto; }
  .scents-heading { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--plum); margin-bottom: 16px; line-height: 1.2; }
  .scents-heading em { font-style: italic; color: var(--pink); }
  .scents-subtext { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; }
  .scents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; max-width: 1200px; margin: 0 auto;
  }
  .scent-card {
    background: white; border: .5px solid rgba(212,96,154,.15);
    border-radius: 24px; overflow: hidden;
    text-decoration: none; color: inherit;
    transition: transform .4s var(--ease-spring), box-shadow .4s, border-color .3s;
    display: flex; flex-direction: column; position: relative;
  }
  .scent-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(212,96,154,.14); border-color: rgba(212,96,154,.4); }
  .scent-img-wrap {
    aspect-ratio: 4/3; background: var(--pink-pale);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
  }
  .scent-img-wrap img {
    width: 100%; height: 100%; object-fit: contain; object-position: center;
    padding: 24px; transition: transform .6s var(--ease-out);
  }
  .scent-card:hover .scent-img-wrap img { transform: scale(1.06); }
  .scent-img-placeholder {
    font-size: 4.5rem; opacity: .35;
  }
  .scent-number {
    position: absolute; top: 16px; right: 16px;
    font-family: var(--serif); font-size: .75rem; font-weight: 400; font-style: italic;
    color: var(--pink); background: white; border-radius: 100px;
    padding: 4px 10px; border: .5px solid rgba(212,96,154,.3);
  }
  .scent-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
  .scent-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: var(--plum); margin-bottom: 8px; line-height: 1.25; }
  .scent-desc {
    font-size: .82rem; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.65; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .scent-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 20px; padding-top: 16px; border-top: .5px solid rgba(212,96,154,.15);
  }
  .scent-price { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--plum); }
  .scent-shop { font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--pink); display: flex; align-items: center; gap: 6px; }
  .scent-shop-arrow {
    width: 22px; height: 22px; background: var(--pink-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background .25s, transform .3s var(--ease-spring);
  }
  .scent-card:hover .scent-shop-arrow { background: var(--pink); transform: translate(2px,-2px); }
  .scent-card:hover .scent-shop-arrow svg path { stroke: white; }

  /* PHOTOS SECTION */
  .photos { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
  .photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  .photo-item {
    border-radius: 20px; overflow: hidden;
    aspect-ratio: 3/4; background: var(--pink-pale);
    display: flex; align-items: center; justify-content: center;
  }
  .photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
  .photo-item:hover img { transform: scale(1.04); }
  .photo-placeholder { color: var(--text-light); font-size: .8rem; font-weight: 300; letter-spacing: .1em; }

  /* VALUES */
  .values { padding: 120px 48px;  position: relative; overflow: hidden; }
  .values-bg {
    position: absolute; inset: 0; opacity: .15;
    background-image: radial-gradient(circle at 20% 50%, #fff 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, #fff 0%, transparent 50%);
  }
  .values-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
  .values-header { text-align: center; margin-bottom: 72px; }
  .values-heading { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: white; line-height: 1.2; }
  .values-heading em { font-style: italic; color: white; opacity: .85; }
  .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
  .value-item {
    text-align: center; padding: 36px 28px;
    border: 1px solid rgba(255,255,255,0.25); border-radius: 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .3s, border-color .3s;
  }
  .value-item:hover { background: rgba(255,255,255,.05); border-color: rgba(212,96,154,.4); }
  .value-icon-wrap {
    width: 56px; height: 56px; background: rgba(255,255,255,0.3);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
  }
  .value-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: white; margin-bottom: 12px; }
  .value-text { font-size: .9rem; font-weight: 600; color: white; line-height: 1.7; }

  /* CTA */
  .cta-section { padding: 100px 48px 120px; text-align: center; position: relative; overflow: hidden; background: var(--pink-pale); }
  .cta-bg-blob {
    position: absolute; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(212,96,154,.08) 0%, transparent 70%);
    border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
    pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; }
  .cta-heading { font-family: var(--serif); font-size: clamp(2.5rem,6vw,5rem); font-weight: 700; color: var(--plum); line-height: 1.1; margin-bottom: 24px; }
  .cta-heading em { font-style: italic; color: var(--pink); }
  .cta-text { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 48px; line-height: 1.75; }

  /* FOOTER */
  footer {
    padding: 48px; border-top: .5px solid rgba(212,96,154,.15);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px;
  }
  .footer-logo { display: flex; align-items: center; text-decoration: none; }
  .footer-logo svg { height: 28px; width: auto; color: var(--plum); }
  .footer-text { font-size: .75rem; color: var(--text-light); font-weight: 300; letter-spacing: .05em; }
  .footer-legal { font-size: .7rem; color: var(--text-light); font-weight: 300; }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }
  .reveal-delay-4 { transition-delay: .4s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .manifesto { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
    .manifesto-right { grid-template-columns: 1fr 1fr; }
    .manifesto-stat:nth-child(2), .manifesto-stat:nth-child(4) { margin-top: 0; }
    .scents { padding: 80px 24px; }
    .values { padding: 80px 24px; }
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .cta-section { padding: 100px 24px; }
    footer { padding: 32px 24px; flex-direction: column; text-align: center; }
    .divider { padding: 0 24px; }
    .photos { padding: 60px 24px; }
  }
  @media (max-width: 600px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .scents-grid { grid-template-columns: 1fr; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }

  /* WAVE - samostatný element za hero sekcí */
  .hero-section-wrap {
    position: relative;
  }
  .hero-wave-divider {
    position: relative;
    margin-top: -120px;
    z-index: 2;
    line-height: 0;
    pointer-events: none;
  }
  .hero-wave-divider svg {
    display: block;
    width: 100%;
    height: 130px;
  }

  .values-inner { position: relative; z-index: 2; }

  .values-wave-wrap {
    position: relative;
    margin-top: 60px;
    background: linear-gradient(160deg, #f9b8d8 0%, #f090bc 50%, #f4a0cc 100%);
  }
  .values-wave-top {
    line-height: 0;
    margin-bottom: -2px;
  }
  .values-wave-top svg { display: block; width: 100%; }
  .values-wave-bot {
    line-height: 0;
    margin-top: -2px;
  }
  .values-wave-bot svg { display: block; width: 100%; }

  /* ── GALLERY ─────────────────────────────────────── */
  .gallery-section {
    padding: 100px 0 80px;
    overflow: hidden;
    background: var(--cream);
  }
  .gallery-header {
    text-align: center;
    padding: 0 48px;
    margin-bottom: 56px;
  }
  .gallery-heading {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--plum);
    line-height: 1.2;
  }
  .gallery-heading em { font-style: italic; color: var(--pink); }

  .gallery-track-wrap {
    position: relative;
    cursor: grab;
    user-select: none;
  }
  .gallery-track-wrap:active { cursor: grabbing; }
  .gallery-track-wrap::before,
  .gallery-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  .gallery-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--cream), transparent);
  }
  .gallery-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--cream), transparent);
  }

  .gallery-track {
    display: flex;
    gap: 20px;
    padding: 20px 60px 40px;
    will-change: transform;
  }

  .gallery-card {
    flex: 0 0 240px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
    box-shadow: 0 8px 30px rgba(212,96,154,0.12);
  }
  .gallery-card:hover {
    transform: translateY(-12px) rotate(-1deg) scale(1.03);
    box-shadow: 0 24px 50px rgba(212,96,154,0.25);
  }
  .gallery-card:nth-child(even):hover {
    transform: translateY(-12px) rotate(1deg) scale(1.03);
  }

  .gallery-card-img {
    width: 240px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
  }
  .gallery-card:hover .gallery-card-img img { transform: scale(1.08); }

  .gallery-card-placeholder {
    font-family: var(--serif);
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    position: absolute;
    pointer-events: none;
    user-select: none;
  }

  .gallery-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(106,26,90,0.85), transparent);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.35s, transform 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .gallery-card:hover .gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  .gallery-card-name {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.2;
  }
  .gallery-card-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-light);
    margin-top: 4px;
  }

  /* ── SCENTS ALTERNATING ──────────────────────────── */
  .scents { padding: 80px 0 120px; }
  .scents-header {
    text-align: center; margin-bottom: 80px;
    max-width: 600px; margin-left: auto; margin-right: auto; padding: 0 24px;
  }

  .scents-alternating {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    gap: 0;
  }

  .sec-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 0.5px solid rgba(212,96,154,0.12);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .sec-row:last-child { border-bottom: none; }
  .sec-row:hover { transform: translateY(-4px); }

  /* Liché — foto vlevo, info vpravo (default) */
  .sec-row .sec-row-img { order: 0; }
  .sec-row .sec-row-info { order: 1; }

  /* Sudé — foto vpravo, info vlevo */
  .sec-row.reverse .sec-row-img { order: 1; }
  .sec-row.reverse .sec-row-info { order: 0; }

  .sec-row-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 340px;
  }
  .sec-row-img img {
    max-height: 320px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(212,96,154,0.22));
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
  }
  .sec-row:hover .sec-row-img img {
    transform: translateY(-12px) scale(1.04);
    filter: drop-shadow(0 36px 60px rgba(212,96,154,0.32));
  }

  .sec-row-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sec-row.reverse .sec-row-info { text-align: right; }

  .sec-num {
    font-family: var(--serif);
    font-size: 0.75rem;
    font-style: italic;
    color: var(--pink);
    letter-spacing: 0.1em;
  }
  .sec-name {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--plum);
    line-height: 1.15;
    margin: 0;
  }
  .sec-mood {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
    margin: 0;
    line-height: 1.6;
  }
  .sec-price {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink-dark);
    margin-top: 4px;
  }
  .sec-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink);
    transition: gap 0.25s;
  }
  .sec-row.reverse .sec-cta { justify-content: flex-end; }
  .sec-row:hover .sec-cta { gap: 10px; }

  @media (max-width: 760px) {
    .scents-alternating { padding: 0 24px; }
    .sec-row, .sec-row.reverse {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 40px 0;
    }
    .sec-row .sec-row-img,
    .sec-row.reverse .sec-row-img { order: 0; height: 240px; }
    .sec-row .sec-row-info,
    .sec-row.reverse .sec-row-info { order: 1; text-align: left; }
    .sec-row.reverse .sec-cta { justify-content: flex-start; }
    .sec-row-img img { max-height: 220px; }
  }
