/* =====================================================
   SIOR VERDE — Homepage Stylesheet
   Fonts : Playfair Display (serif) / Hanken Grotesk (sans)
   ===================================================== */

:root {
    --sv-cream: #f5ede3;
    --sv-cream-soft: #f7f1e9;
    --sv-card-bg: #f4f2ed;
    --sv-tile-bg: #e9e0d3;
    --sv-ink: #2b1503;
    --sv-brown: #2e1a07;
    --sv-brown-deep: #2b1503;
    --sv-rose: #af8777;
    --sv-rose-soft: #af8777;
    --sv-white: #ffffff;
    --sv-line: rgba(30, 18, 6, 0.18);
    --sv-line-light: rgba(252, 250, 246, 0.25);
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Satoshi", sans-serif;
}


/* ---------- Base ---------- */

* {
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--sv-ink);
    background-color: var(--sv-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-opa img {
    position: absolute;
    left: 56%;
    z-index: 0;
    transform: translateX(-50%);
}

.sv-container {
    padding-left: 4%;
    padding-right: 4%;
}

.sv-section {
    padding: 120px 0;
}


/* ---------- Typography helpers ---------- */

.sv-eyebrow {
    font-size: 16px;
    color: var(--sv-rose);
    letter-spacing: 0.02em;
    margin-bottom: 18px;
}

.sv-eyebrow-light {
    font-size: 15px;
    color: var(--sv-rose-soft);
    margin-bottom: 14px;
    letter-spacing: -0.25px;
    line-height: 22px;
}

.sv-h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 40px;
    color: var(--sv-ink);
}

.sv-lead-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(24px, 2.7vw, 31px);
    line-height: 40px;
    color: var(--sv-ink);
    margin-bottom: 0;
    max-width: 770px;
}

.sv-body-sm {
    font-size: 16px;
    line-height: 23px;
    color: #000000;
}


/* underline links */

.sv-underline-link,
.sv-underline-link-dark,
.sv-underline-link-dim {
    display: inline-block;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: 16px;
}

.sv-underline-link {
    color: var(--sv-white);
}

.sv-underline-link:hover {
    color: var(--sv-rose-soft);
}

.sv-underline-link-dark {
    color: var(--sv-ink);
    width: fit-content;
    margin: 0 auto;
}

.sv-underline-link-dark:hover {
    color: var(--sv-rose);
}

.sv-underline-link-dim {
    color: inherit;
}


/* ---------- Buttons ---------- */

.btn {
    border-radius: 0;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.sv-btn-outline-light {
    border: 1px solid #ffffff;
    color: var(--sv-white);
    font-family: var(--font-serif);
    max-width: 170px;
    width: 100%;
    padding: 6px 42px;
    height: 30px;
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
}

.sv-btn-outline-light:hover {
    background: var(--sv-white);
    color: var(--sv-brown);
}

.sv-btn-outline-dark {
    border: 1px solid #000000;
    color: var(--sv-ink);
    padding: 11px 32px;
    background: transparent;
    letter-spacing: -0.27px;
}

.sv-btn-outline-dark:hover {
    background: var(--sv-ink);
    color: var(--sv-white);
}

.sv-btn-dark {
    background: var(--sv-brown-deep);
    color: var(--sv-white);
    padding: 12px 34px;
    width: 100%;
    border: 1px solid var(--sv-brown-deep);
    border-radius: 1px;
}

.sv-btn-dark:hover {
    background: transparent;
    color: var(--sv-brown-deep);
    border: 1px solid #2b1503;
}


/* =====================================================
   HEADER
   ===================================================== */

.sv-header {
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: linear-gradient( to bottom, rgba(20, 10, 2, 0.55), rgba(20, 10, 2, 0));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.sv-header.scrolled {
    background: rgba(26, 14, 4, 0.96);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.sv-header .navbar {
    padding-top: 5px;
    padding-bottom: 0px;
}

.sv-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--sv-white) !important;
    letter-spacing: 0.01em;
}

.sv-logo-lg {
    font-size: clamp(28px, 3vw, 38px);
}

.sv-nav .nav-link {
    color: #ffffff80;
    /* font-size: 15px; */
    margin: 0 14px;
    padding-bottom: 22px;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.sv-nav .nav-link:hover {
    color: var(--sv-white);
}

.sv-nav .nav-link.active {
    color: var(--sv-white);
    border-bottom: 1px solid rgba(252, 250, 246, 0.8);
}

.sv-contact-link {
    color: var(--sv-white);
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
}

.sv-contact-link:hover {
    color: var(--sv-rose-soft);
}

.sv-offcanvas {
    background: var(--sv-brown-deep);
    color: var(--sv-white);
    max-width: max-content;
}

@media (min-width: 1200px) {
    .sv-offcanvas {
        background: transparent;
    }
}


/* =====================================================
   MOBILE / TABLET OFFCANVAS MENU (full-width, editorial)
   Only applies below xl — at xl+ Bootstrap renders this
   markup inline in the navbar instead of as a panel.
   (Using xl/1200px rather than lg/992px because the full
   nav — 5 links + Contact us + Shop Now — needs more room
   than 992px gives it; below ~1150px it was wrapping.)
   ===================================================== */

@media (max-width: 1199.98px) {
    .sv-header .navbar {
        padding-top: 7px;
        padding-bottom: 14px;
    }
    .sv-header.scrolled {
        backdrop-filter: none;
    }
    .sv-offcanvas {
        max-width: 100vw;
        width: 100vw !important;
        height: 100vh;
        height: 100dvh;
        background: radial-gradient( 120% 100% at 100% 0%, #3a2410 0%, var(--sv-brown-deep) 60%);
        border-left: none;
    }
    .sv-offcanvas .offcanvas-header {
        padding: 14px 6% 0;
        align-items: center;
    }
    .sv-offcanvas .offcanvas-header .sv-logo {
        font-size: 22px;
    }
    .sv-offcanvas-close {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid rgba(252, 250, 246, 0.3);
        background: transparent;
        color: var(--sv-white);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    .sv-offcanvas-close:hover {
        background: var(--sv-white);
        color: var(--sv-brown-deep);
        border-color: var(--sv-white);
        transform: rotate(90deg);
    }
    .sv-offcanvas .offcanvas-body {
        display: flex;
        flex-direction: column;
        padding: 20px 6% 36px;
        overflow-y: auto;
    }
    .sv-offcanvas-eyebrow {
        color: var(--sv-rose-soft);
        font-size: 13px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin: 8px 0 18px;
    }
    /* nav list — large serif, numbered, one per row */
    .sv-offcanvas .sv-nav {
        border-top: 1px solid rgba(252, 250, 246, 0.14);
        margin: 0 0 32px;
    }
    .sv-offcanvas .sv-nav .nav-item {
        border-bottom: 1px solid rgba(252, 250, 246, 0.14);
    }
    .sv-offcanvas .sv-nav .nav-link {
        display: flex;
        align-items: baseline;
        gap: 16px;
        padding: 16px 2px;
        margin: 0;
        font-family: var(--font-serif);
        font-size: clamp(26px, 7vw, 36px);
        line-height: 1.15;
        color: rgba(252, 250, 246, 0.55);
        border-bottom: none;
        transition: color 0.35s ease, padding-left 0.35s ease;
        opacity: 0;
        transform: translateY(14px);
    }
    .sv-offcanvas .sv-nav-num {
        font-family: var(--font-sans);
        font-size: 13px;
        color: var(--sv-rose-soft);
        flex: 0 0 auto;
    }
    .sv-offcanvas .sv-nav-label {
        flex: 1 1 auto;
    }
    .sv-offcanvas .sv-nav .nav-link:hover,
    .sv-offcanvas .sv-nav .nav-link.active {
        color: var(--sv-white);
        padding-left: 10px;
    }
    .sv-offcanvas .sv-nav-num {
        color: var(--sv-rose);
        display: none;
    }
    /* staggered fade-up reveal once the panel has finished opening */
    .sv-offcanvas.show .sv-nav .nav-link,
    .sv-offcanvas.showing .sv-nav .nav-link {
        animation: svNavItemIn 0.6s ease forwards;
    }
    .sv-offcanvas .sv-nav .nav-item:nth-child(1) .nav-link {
        animation-delay: 0.08s;
    }
    .sv-offcanvas .sv-nav .nav-item:nth-child(2) .nav-link {
        animation-delay: 0.14s;
    }
    .sv-offcanvas .sv-nav .nav-item:nth-child(3) .nav-link {
        animation-delay: 0.2s;
    }
    .sv-offcanvas .sv-nav .nav-item:nth-child(4) .nav-link {
        animation-delay: 0.26s;
    }
    .sv-offcanvas .sv-nav .nav-item:nth-child(5) .nav-link {
        animation-delay: 0.32s;
    }
    @keyframes svNavItemIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* actions row — Contact us + Shop Now, spaced out and full-width-ish */
    .sv-offcanvas .sv-nav-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center !important;
        margin: 0 0 40px;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(252, 250, 246, 0.14);
    }
    .sv-offcanvas .sv-nav-actions .btn {
        padding: 6px 30px;
    }
    /* footer — contact + social, pinned toward the bottom */
    .sv-offcanvas-footer {
        margin-top: auto;
    }
    .sv-offcanvas-footer-label {
        color: var(--sv-rose-soft);
        font-size: 13px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    .sv-offcanvas-footer-link {
        display: block;
        color: rgba(252, 250, 246, 0.9);
        font-size: 16px;
        margin-bottom: 6px;
    }
    .sv-offcanvas-footer-link:hover {
        color: var(--sv-rose-soft);
    }
    .sv-offcanvas-social {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }
    .sv-offcanvas-social a {
        font-size: 13px;
        color: rgba(252, 250, 246, 0.6);
        border-bottom: 1px solid rgba(252, 250, 246, 0.3);
        padding-bottom: 2px;
    }
    .sv-offcanvas-social a:hover {
        color: var(--sv-white);
        border-color: var(--sv-white);
    }
}

@media (max-width: 420px) {
    .sv-offcanvas .sv-nav .nav-link {
        font-size: 24px;
    }
}


/* =====================================================
   HERO
   ===================================================== */

.sv-hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background: #1c0f04;
}

.heroSwiper {
    position: absolute;
    inset: 0;
    height: 100%;
}

.sv-hero-slide {
    position: relative;
    height: 100%;
}

.sv-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.06);
    transition: transform 6s ease;
}

.heroSwiper .swiper-slide-active .sv-hero-img {
    transform: scale(1);
}

.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(20, 10, 2, 0.55) 0%, rgba(20, 10, 2, 0) 45%);
}

.sv-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15%;
    z-index: 5;
    pointer-events: none;
}

.sv-hero-content a {
    pointer-events: auto;
}

.sv-hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(34px, 3.5vw, 40px);
    line-height: 1.28;
    color: var(--sv-white);
    margin-bottom: 26px;
}


/* prev / next */

.sv-hero-prev,
.sv-hero-next {
    background: none;
    border: 0;
    color: rgba(252, 250, 246, 0.85);
    font-size: 15px;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: color 0.3s ease;
}

.sv-hero-prev:hover,
.sv-hero-next:hover {
    color: var(--sv-white);
}

.sv-hero-prev {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
}

.sv-hero-next-wrap {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 14px;
}

.sv-hero-count {
    color: var(--sv-rose-soft);
    font-size: 15px;
}


/* badges */

.sv-hero-badges {
    position: absolute;
    right: 4%;
    bottom: 15%;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--sv-white);
}

.sv-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.sv-badge svg {
    color: var(--sv-rose-soft);
}

.sv-badge-divider {
    width: 1px;
    height: 34px;
    background: var(--sv-line-light);
}

@media (max-width: 767.98px) {
    .sv-hero-badges {
        display: none;
    }
    .sv-hero-content {
        bottom: 20%;
    }
}


/* =====================================================
   MISSION
   ===================================================== */

.sv-mission {
    background: var(--sv-cream);
}


/* =====================================================
   BANNERS (full-bleed image sections)
   ===================================================== */

.sv-banner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sv-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* oversized + centered so GSAP can translate it vertically without gaps */

.sv-banner-img[data-parallax-bg] {
    height: 130%;
    top: -15%;
    will-change: transform;
}

.sv-banner-shade {
    position: absolute;
    inset: 0;
    background: #00000066;
}

.sv-shade-left {
    background: linear-gradient( to right, rgba(10, 8, 4, 0.55) 0%, rgba(10, 8, 4, 0.15) 65%);
}

.sv-banner-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 0 4%;
    bottom: 13%;
}

.sv-banner-quote {
    min-height: 94vh;
}

.sv-banner-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(30px, 3.2vw, 40px);
    line-height: 1;
    color: var(--sv-white);
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.sv-banner-sub {
    max-width: 507px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(252, 250, 246, 0.85);
    letter-spacing: -0.25px;
}


/* stream / inspiration */

.sv-banner-stream {
    min-height: 700px;
    height: 94vh;
}

.sv-banner-left {
    max-width: 880px;
    margin-right: auto;
    padding-left: 8%;
}

.sv-banner-serif {
    font-family: var(--font-serif);
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.55;
    color: var(--sv-cream-soft);
    margin: 0;
}


/* pre-footer cta */

.sv-banner-cta {
    height: 94vh;
}


/* =====================================================
   FEATURED FRAGRANCE BANNER
   (full-bleed image, white card floating bottom-right,
   shared by homepage + perfumes collection page)
   ===================================================== */

.sv-feature-banner {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    background: var(--sv-cream);
}

.sv-feature-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.sv-feature-img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
}


/* floating white info card, bottom-right on both banners */

.sv-feature-card-wrap {
    position: absolute;
    right: 2%;
    bottom: 4%;
    width: min(420px, 88%);
    background: var(--sv-white);
    padding: 26px 28px 28px;
    box-shadow: 0 20px 55px rgba(20, 10, 2, 0.2);
}

.sv-card-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--sv-ink);
}

.sv-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #3a2c1d;
    margin-bottom: 18px;
}

.sv-feature-card-wrap .btn {
    padding: 11px 0;
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .sv-feature-banner {
        min-height: 70vh;
    }
    .sv-feature-card-wrap {
        right: 5%;
        left: 5%;
        bottom: 6%;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .sv-feature-card-wrap {
        padding: 22px 22px 24px;
    }
    .sv-card-title {
        font-size: 20px;
    }
}


/* =====================================================
   PRODUCTS DRAG CAROUSEL
   ===================================================== */

.sv-products {
    background: var(--sv-cream);
    padding: 80px 0 120px;
    position: relative;
}

.productSwiper {
    overflow: visible;
    padding-left: 0;
    cursor: none;
}

.sv-product-slide {
    width: min(450px, 82vw);
}

.sv-product-media {
    position: relative;
    background: var(--sv-tile-bg);
    height: clamp(360px, 33vw, 475px);
    overflow: hidden;
}

.sv-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.sv-product:hover .sv-product-media img {
    transform: scale(1.05);
}

.sv-media-dark {
    background: #2a190a;
}

.sv-media-warm {
    background: #d8c4a2;
}

.sv-product-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 21px;
    text-align: center;
    margin: 22px 0 0;
    color: var(--sv-ink);
}


/* hover pop card */

.sv-product-pop {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 7%;
    background: var(--sv-card-bg);
    padding: 22px 22px 24px;
    box-shadow: 0 18px 45px rgba(20, 10, 2, 0.22);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.sv-product:hover .sv-product-pop,
.sv-product:focus-within .sv-product-pop {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sv-product-pop .sv-card-title {
    font-size: 22px;
    margin-bottom: 8px;
}

.sv-product-pop .sv-card-text {
    font-size: 14px;
    margin-bottom: 16px;
}


/* drag cursor */

.sv-drag-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff66;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--sv-ink);
    pointer-events: none;
    z-index: 40;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sv-drag-cursor.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (hover: none),
(pointer: coarse) {
    .sv-drag-cursor {
        display: none;
    }
    .productSwiper {
        cursor: grab;
    }
}


/* =====================================================
   INGREDIENTS
   ===================================================== */

.sv-ingredients {
    background: var(--sv-cream);
}

.sv-vline {
    border-left: 1px solid var(--sv-line);
    padding-left: 28px;
}

.sv-ing-head {
    margin-bottom: 20px;
}


/* the three columns each carry their own vertical offset,
   which is what creates the staggered look in the design */

.sv-ing-card {
    margin: 0;
    max-width: 250px;
}

.sv-ing-card img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    display: block;
}

.sv-ing-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 22px;
    margin: 20px 0 4px;
}

.sv-ing-origin {
    color: var(--sv-rose);
    font-size: 15px;
    margin: 0;
}


/* ── the stagger ──
   Lavender sits highest, Coffee in the middle,
   Saffron drops lowest */

.sv-ing-lavendar {
    margin-top: -145px;
    margin-left: auto;
}

.sv-ing-coffee {
    margin-top: 80px;
}

.sv-ing-saffron {
    margin-top: 180px;
    margin-left: auto;
    margin-right: auto;
}

.sv-ing-more {
    margin-top: 90px;
    margin-left: auto;
    max-width: 250px;
}

.sv-ing-count {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--sv-rose);
    margin-bottom: 4px;
}


/* tablet: keep the stagger but tighten it up */

@media (max-width: 1199.98px) {
    .sv-ing-card img {
        height: 300px;
    }
    .sv-ing-lavendar {
        margin-top: -90px;
    }
    .sv-ing-coffee {
        margin-top: 60px;
    }
    .sv-ing-saffron {
        margin-top: 130px;
    }
    .sv-ing-more {
        margin-top: 60px;
    }
}


/* mobile: drop the offsets entirely and stack cleanly */

@media (max-width: 767.98px) {
    .sv-ing-card,
    .sv-ing-more {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .sv-ing-lavendar,
    .sv-ing-coffee,
    .sv-ing-saffron {
        margin-top: 0;
    }
    .sv-ing-grid>[class*="col-"]+[class*="col-"] {
        margin-top: 40px;
    }
    .sv-ing-more {
        margin-top: 40px;
        text-align: center;
    }
}


/* =====================================================
   3 STEPS
   ===================================================== */

.sv-steps {
    background: var(--sv-cream-soft);
    padding: 180px 0;
}

.sv-steps-media {
    height: 100%;
    min-height: 420px;
}

.sv-steps-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.sv-steps-body {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    padding: 90px 6%;
}

.sv-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border: 1px solid var(--sv-rose);
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--sv-ink);
    margin-bottom: 18px;
}

.sv-step-label {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 34px;
}

.sv-step-text {
    max-width: 480px;
    margin: 0 auto 30px;
}

.sv-steps-pagination {
    position: static !important;
    margin-top: 44px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.sv-steps-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid var(--sv-rose);
    opacity: 1;
}

.sv-steps-pagination .swiper-pagination-bullet-active {
    background: var(--sv-rose);
}


/* =====================================================
   JOURNEY / SUSTAINABILITY
   ===================================================== */

.sv-journey {
    background: var(--sv-cream);
}

.sv-journey .sv-h2 {
    max-width: 810px;
}


/* the image is pulled up so it sits alongside the heading,
   while the copy below drops well down the column */

.sv-journey-row {
    margin-top: -60px;
}

.sv-journey-copy {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 250px;
}

.sv-journey-media {
    margin: 0;
    max-width: 600px;
}

.sv-journey-media img {
    width: 100%;
    height: clamp(400px, 46vw, 680px);
    object-fit: cover;
    display: block;
}

@media (max-width: 1199.98px) {
    .sv-journey-copy {
        padding-top: 160px;
    }
}

@media (max-width: 991.98px) {
    .sv-journey-row {
        margin-top: 30px;
    }
    .sv-journey-copy {
        max-width: 100%;
        margin-left: 0;
        padding-top: 0;
    }
    .sv-journey-media {
        max-width: 100%;
        margin-top: 40px;
    }
    .sv-journey-media img {
        height: 380px;
    }
}

@media (max-width: 575.98px) {
    .sv-journey-media img {
        height: 300px;
    }
}


/* =====================================================
   FOOTER
   ===================================================== */

.sv-footer {
    background: radial-gradient( 80% 90% at 60% 45%, #3a2410 0%, var(--sv-brown-deep) 70%);
    color: var(--sv-cream-soft);
    padding-top: 40px;
}

.sv-footer-top {
    padding-bottom: 60px;
}

.sv-footer-serif-link {
    font-family: var(--font-serif);
    font-size: 21px;
    color: var(--sv-white);
    padding-bottom: 2px;
}

.sv-footer-serif-link:hover {
    color: var(--sv-rose-soft);
}

.sv-footer-muted {
    color: var(--sv-rose-soft);
    font-size: 14px;
    margin-bottom: 16px;
}

.sv-footer-news {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(252, 250, 246, 0.12);
}

.sv-news-form {
    max-width: 440px;
}

.sv-news-input {
    border-radius: 0;
    border: 0;
    background: var(--sv-white);
    padding: 13px 18px;
    font-size: 15px;
    color: var(--sv-ink);
    flex: 1 1 auto;
    min-width: 0;
}

.sv-news-input:focus {
    box-shadow: none;
    background: #fff;
}

.sv-news-btn {
    background: var(--sv-rose);
    color: var(--sv-white);
    padding: 12.5px 30px;
    border-radius: 0;
}

.sv-news-btn:hover {
    background: var(--sv-rose-soft);
    color: var(--sv-brown-deep);
}

.sv-news-msg {
    font-size: 14px;
    margin: 10px 0 0;
    color: var(--sv-rose-soft);
    min-height: 18px;
}

.sv-news-msg.error {
    color: #e8a48b;
}

.sv-news-msg.success {
    color: #cde3b9;
}

.sv-footer-links {
    padding: 30px 0 10px;
}

.sv-footer-text,
.sv-footer-text a {
    color: var(--sv-cream-soft);
    font-style: normal;
    font-size: 14px;
    line-height: 23px;
}

.sv-footer-text a:hover {
    color: var(--sv-rose-soft);
}

.sv-footer-tagline {
    font-family: var(--font-serif);
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.4;
    color: var(--sv-rose);
    margin: 40px 0 60px;
}

.sv-footer-bottom {
    padding: 22px 0;
    font-size: 12px;
    color: #fff;
}

.sv-footer-bottom a {
    color: #af8777;
}

.sv-footer-bottom a:hover {
    color: var(--sv-white);
}


/* =====================================================
   REVEAL ON SCROLL
   ===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .sv-hero-img {
        transform: none;
        transition: none;
    }
}


/* =====================================================
   CONTACT PAGE — HERO WITH INFO BAR
   ===================================================== */

.sv-contact-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.sv-shade-bottom {
    background: #00000033;
}

.sv-contact-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3%;
    z-index: 2;
    padding-top: 120px;
}

.sv-contact-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(34px, 3.6vw, 40px);
    color: var(--sv-white);
    margin-bottom: 34px;
}

.sv-contact-divider {
    border-top: 1px solid #af8777;
}

.sv-contact-info {
    padding: 30px 0 42px;
}

.sv-contact-text,
.sv-contact-text a {
    color: rgba(252, 250, 246, 0.92);
    font-size: 15px;
    font-style: normal;
    line-height: 1.7;
}

.sv-contact-text a:hover {
    color: var(--sv-rose-soft);
}

@media (max-width: 767.98px) {
    .sv-contact-hero {
        min-height: 640px;
    }
    .sv-contact-info .col-6 {
        margin-bottom: 20px;
    }
}


/* =====================================================
   CONTACT PAGE — INQUIRY FORM
   ===================================================== */

.sv-inquiry {
    background: var(--sv-cream);
}

.sv-accent {
    color: var(--sv-rose);
}

.sv-inquiry-form .row {
    margin-bottom: 6px;
}

.sv-field {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--sv-line);
    padding: 18px 0;
}

.sv-field-label {
    font-size: 15px;
    color: #000000;
    white-space: nowrap;
    margin: 0;
    flex: 0 0 auto;
}

.sv-field-input {
    flex: 1 1 auto;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 15px;
    color: var(--sv-ink);
    padding: 0;
    min-width: 0;
}

.sv-field-input:focus {
    outline: none;
    box-shadow: none;
}

.sv-field-input::placeholder {
    color: var(--sv-ink);
    opacity: 0.55;
}

select.sv-field-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23B08D77' stroke-width='2'><path d='M12 5v14M5 12h14'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 22px;
    cursor: pointer;
}


/* message field spans full width, label sits above, larger tap area */

.sv-field-message {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 10px;
}

.sv-field-message .sv-field-label {
    margin-bottom: 10px;
}

.sv-field-message textarea.sv-field-input {
    text-align: left;
    resize: none;
    min-height: 90px;
}

.sv-form-msg {
    font-size: 14px;
    margin: 18px 0 0;
    min-height: 18px;
    color: var(--sv-rose);
}

.sv-form-msg.error {
    color: #b4472c;
}

.sv-form-msg.success {
    color: #5c7a47;
}

.sv-inquiry-submit {
    margin-top: 34px;
    padding: 13px 40px;
    max-width: 580px;
}

@media (max-width: 767.98px) {
    .sv-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .sv-field-input {
        text-align: left;
        width: 100%;
    }
}


/* =====================================================
   MISSION / STORY
   ===================================================== */

.sv-mission {
    background: var(--sv-cream);
}


/* =====================================================
   INGREDIENTS (image backgrounds for ingredient blocks)
   ===================================================== */

.sv-ing-figure {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
}

.sv-ing-figure img {
    display: none;
}

.sv-ing-figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}


/* =====================================================
   JOURNEY / SUSTAINABILITY (background image right)
   ===================================================== */

.sv-journey {
    background: var(--sv-cream);
}


/* =====================================================
   RESPONSIVE TWEAKS (banners + mission + journey)
   ===================================================== */

@media (max-width: 991.98px) {
    .sv-section {
        padding: 80px 0;
    }
    .sv-banner-quote,
    .sv-banner-stream,
    .sv-banner-cta {
        min-height: 520px;
    }
    .sv-banner-left {
        padding-left: 4%;
    }
}

@media (max-width: 575.98px) {
    .sv-section {
        padding: 64px 0;
    }
    .sv-banner-quote,
    .sv-banner-stream,
    .sv-banner-cta {
        min-height: 460px;
    }
    .sv-footer-tagline {
        margin: 50px 0 60px;
    }
    .sv-news-form {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .sv-mission {
        min-height: auto;
    }
    .sv-mission::after {
        display: none;
    }
    .sv-journey-media {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .sv-mission {
        min-height: auto;
    }
    .sv-mission::after {
        display: none;
    }
    .sv-journey-media {
        height: 280px;
    }
}


/* =====================================================
   COLLECTION PAGE — SPLIT HERO ("Our" / "Collection")
   ===================================================== */

.sv-collection-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.sv-collection-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3%;
    z-index: 2;
    padding-top: 120px;
}

.sv-collection-title-row {
    margin-bottom: 34px;
}

.sv-collection-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(34px, 4vw, 40px);
    color: var(--sv-white);
    margin: 0;
    line-height: 1;
}

.sv-collection-info {
    padding: 30px 0 46px;
}

.sv-collection-lead {
    font-size: 24px;
    line-height: 1.4;
    color: #ffffff;
    max-width: 560px;
    margin: 0;
    letter-spacing: -0.5px;
    font-family: var(--font-serif);
    max-width: 630px;
}

@media (max-width: 767.98px) {
    .sv-collection-hero {
        min-height: 620px;
    }
    .sv-collection-title-row {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start !important;
    }
}


/* =====================================================
   COLLECTION PAGE — TWO-COLUMN FRAGRANCE PAIR
   ===================================================== */

.sv-collection-pair {
    background: var(--sv-cream);
}

.sv-pair-panel {
    position: relative;
    min-height: clamp(830px, 56vw, 830px);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-pair-light {
    background: var(--sv-white);
}

.sv-pair-warm {
    background: #ebe0d3;
}

.sv-pair-media {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.sv-pair-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    will-change: transform;
}

.sv-pair-card {
    position: absolute;
    /* left: 50%; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    bottom: 4%;
    width: min(420px, 84%);
    background: var(--sv-white);
    padding: 22px 24px 24px;
    box-shadow: 0 16px 40px rgba(20, 10, 2, 0.16);
    border-radius: 1px;
}

.sv-pair-card .sv-card-title {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.sv-pair-card .sv-card-text {
    font-size: 13.5px;
    margin-bottom: 16px;
}

.sv-pair-card .btn {
    padding: 10px 0;
    font-size: 13.5px;
}

@media (max-width: 767.98px) {
    /* .sv-pair-panel {
      min-height: 420px;
  } */
    .sv-pair-card {
        left: 6%;
        right: 6%;
        width: auto;
        bottom: 6%;
    }
}


/* =====================================================
   COLLECTION PAGE — HIGH-END INGREDIENTS
   ===================================================== */

.sv-collection-ingredients {
    background: var(--sv-cream);
}

.sv-collection-ingredients .sv-h2 {
    max-width: 760px;
}

.sv-collection-ing-media {
    margin: 0;
}

.sv-collection-ing-media img {
    width: 100%;
    height: clamp(280px, 40vw, 590px);
    object-fit: cover;
    display: block;
    max-width: 580px;
}

@media (max-width: 767.98px) {
    .sv-collection-ing-media img {
        height: 280px;
    }
}


/* =====================================================
   OUR STORY PAGE — HERO
   ===================================================== */

.sv-story-hero {
    min-height: 780px;
}

.sv-story-lead-row {
    padding: 28px 0 44px;
}


/* =====================================================

   OUR STORY PAGE — INTRO (with decorative blob)
   ===================================================== */

.sv-story-intro {
    position: relative;
    overflow: hidden;
}

.sv-story-blob {
    position: absolute;
    left: 20%;
    top: 15%;
    width: 620px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}

.sv-story-intro .container-xxl {
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .sv-story-blob {
        width: 420px;
        height: 420px;
        left: 20%;
        top: 30%;
    }
}


/* =====================================================

   OUR STORY PAGE — TIMELINE (alternating slider)
   ===================================================== */

.sv-timeline {
    position: relative;
    background: var(--sv-cream);
    overflow: hidden;
}


/* the stage holds the watermark + slider, and reserves the
   vertical room the alternating up/down offsets need */

.sv-timeline-stage {
    position: relative;
    margin-top: 40px;
    padding: 120px 0 60px;
}

.sv-timeline-watermark {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(60px, 12vw, 140px);
    color: rgba(30, 18, 6, 0.05);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.timelineSwiper {
    position: relative;
    z-index: 1;
    overflow: visible;
    cursor: none;
}


/* each slide = image (with year under it) + paragraph beside it */

.sv-timeline-item {
    width: min(520px, 86vw);
    display: flex;
    align-items: flex-end;
    gap: 22px;
    transition: transform 0.6s ease;
}

.sv-timeline-media {
    flex: 0 0 260px;
    max-width: 260px;
    margin: 0;
}

.sv-timeline-media img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
}

.sv-timeline-year {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--sv-ink);
    margin: 14px 0 0;
}

.sv-timeline-text {
    flex: 1 1 auto;
    margin: 0 0 48px;
}


/* ── the alternating rhythm ──
   odd slides (1st, 3rd, 5th…) sit low,
   even slides (2nd, 4th…) sit high */

.timelineSwiper .swiper-slide:nth-child(odd) {
    transform: translateY(140px);
}

.timelineSwiper .swiper-slide:nth-child(even) {
    transform: translateY(-140px);
}

@media (max-width: 991.98px) {
    .sv-timeline-item {
        width: min(460px, 88vw);
        gap: 18px;
    }
    .sv-timeline-media {
        flex-basis: 200px;
    }
    .sv-timeline-media img {
        height: 290px;
    }
}


/* on small screens drop the alternating offsets and stack the
   text under the image — side-by-side is too cramped to read */

@media (max-width: 767.98px) {
    .sv-timeline-stage {
        padding: 40px 0 20px;
    }
    .timelineSwiper .swiper-slide:nth-child(odd),
    .timelineSwiper .swiper-slide:nth-child(even) {
        transform: none;
    }
    .sv-timeline-item {
        width: min(300px, 78vw);
        display: block;
    }
    .sv-timeline-media {
        max-width: 100%;
    }
    .sv-timeline-media img {
        height: 300px;
    }
    .sv-timeline-text {
        margin-top: 16px;
    }
    .sv-timeline-watermark {
        font-size: 60px;
        top: 6%;
    }
}

@media (hover: none),
(pointer: coarse) {
    .timelineSwiper {
        cursor: grab;
    }
}


/* =====================================================
   OUR STORY PAGE — INGREDIENTS (centered heading + trio)
   ===================================================== */

.sv-story-ingredients {
    background: var(--sv-cream);
}

.sv-story-ing-media {
    margin: 0;
}

.sv-story-ing-media img {
    width: 100%;
    height: clamp(320px, 47vw, 680px);
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .sv-story-ing-media img {
        height: 320px;
    }
}


/* =====================================================
   INGREDIENTS PAGE — HERO + MOOD TABS
   ===================================================== */

.sv-ingr-hero {
    height: 100vh;
}

.sv-mood-row {
    margin-top: 60px;
    padding-top: 30px;
    border-bottom: 1px solid #362d2233;
}

.sv-mood-tabs {
    display: flex;
    gap: 32px;
}

.sv-mood-tab {
    font-size: 14px;
    color: #2b15034d;
    padding-bottom: 4px;
    transition: color 0.3 border-color 0.3 nt-family: var(--font-serif);
}

.sv-mood-tab:hover,
.sv-mood-tab.active {
    color: var(--sv-ink);
    border-bottom-color: var(--sv-ink);
}

.sv-mood-tab-disabled {
    color: #c9bdae;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .sv-mood-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .sv-mood-tabs {
        gap: 22px;
        flex-wrap: wrap;
    }
}


/* =====================================================
   INGREDIENTS PAGE — FULL-BLEED INGREDIENT BANNER
   (Coconut / Lavender: photo + floating card + quote)
   ===================================================== */

.sv-ingr-banner {
    position: relative;
    min-height: clamp(480px, 58vw, 780px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.sv-ingr-card {
    position: absolute;
    right: 5%;
    width: min(450px, 88%);
    background: #f7f1ea;
    padding: 26px 28px 28px;
    box-shadow: 0 20px 55px rgba(20, 10, 2, 0.2);
    z-index: 2;
}

.sv-ingr-card-mid-right {
    top: 36%;
    transform: translateY(-50%);
}

.sv-ingr-card-top-right {
    top: 36%;
}

.sv-ingr-card .sv-card-title {
    font-size: 24px;
    margin-bottom: 52px;
}

.sv-ingr-card .sv-card-text {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 60px;
    letter-spacing: -0.25px;
}

.sv-ingr-bottles {
    display: flex;
    gap: 18px;
}

.sv-ingr-bottle {
    margin: 0;
    text-align: center;
}

.sv-ingr-bottle img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.sv-ingr-bottle figcaption {
    font-size: 12px;
    color: #000000;
    line-height: 1.3;
    max-width: 100px;
    margin: 0 auto;
}

.sv-ingr-quote {
    position: absolute;
    left: 5%;
    bottom: 8%;
    max-width: 570px;
    font-family: var(--font-serif);
    /* font-style: italic; */
    font-size: clamp(17px, 1.7vw, 24px);
    line-height: 1.5;
    color: var(--sv-white);
    margin: 0;
    z-index: 2;
}

.sv-ingr-quote-right {
    left: auto;
    right: 5%;
    text-align: right;
}

@media (max-width: 767.98px) {
    .sv-ingr-banner {
        min-height: auto;
        padding: 60px 0;
        flex-direction: column;
    }
    .sv-ingr-card {
        position: static;
        transform: none;
        width: auto;
        margin: 0 5% 24px;
    }
    .sv-ingr-quote {
        position: static;
        max-width: none;
        margin: 0 5%;
        text-align: left !important;
    }
}


/* =====================================================

   INGREDIENTS PAGE — VANILLA SPLIT PANEL
   ===================================================== */

.sv-ingr-split {
    display: flex;
    min-height: clamp(480px, 55vw, 680px);
}

.sv-ingr-split-panel {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.sv-ingr-split-card {
    background: var(--sv-tile-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.sv-ingr-card-static {
    position: static;
}

.sv-ingr-split-media {
    background: #d9c79f;
}

.sv-ingr-card-mid-left {
    top: 36%;
    transform: translateY(-50%);
    right: auto;
    left: 5%;
}

.sv-ingr-split-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
}

.sv-ingr-split-media .sv-ingr-quote {
    right: 6%;
    left: auto;
    bottom: 8%;
    color: var(--sv-ink);
}

@media (max-width: 767.98px) {
    .sv-ingr-split {
        flex-direction: column;
        min-height: auto;
    }
    .sv-ingr-split-panel {
        width: 100%;
        min-height: 340px;
    }
    .sv-ingr-split-media .sv-ingr-quote {
        position: static;
        color: var(--sv-ink);
        text-align: left;
        margin: 16px 5% 0;
        max-width: none;
    }
}


/* =====================================================

   INGREDIENTS PAGE — PROJECTION / OBJECTIVE
   ===================================================== */

.sv-projection {
    padding-top: 120px;
    background: var(--sv-cream);
}

.sv-projection-body {
    max-width: 460px;
    margin: 0 auto;
    padding: 90px 0%;
    text-align: center;
}

.sv-projection-media {
    height: 100%;
    max-height: 780px;
    overflow: hidden;
}

.sv-projection-media img {
    width: 100%;
    height: 100%;
    max-height: 780px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .sv-projection-media,
    .sv-projection-media img {
        min-height: 340px;
    }
}


/* =====================================================
   PRODUCT PAGE — PROMO BAR
   ===================================================== */

.sv-promo-bar {
    background-color: #ffffff1a;
    top: 10%;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 111;
    width: 100%;
    left: 4%;
    position: absolute;
    color: white;
    font-size: 13px;
    letter-spacing: -0.27px;
    padding: 5px 17px;
    max-width: 520px;
}

.sv-promo-bar svg {
    color: var(--sv-rose-soft);
}


/* =====================================================
   PRODUCT PAGE — GALLERY (drag carousel, 3 images)
   ===================================================== */

.sv-product-gallery {
    position: relative;
    background: var(--sv-cream);
    cursor: none;
}

.sv-gallery-slide {
    height: clamp(280px, 32vw, 420px);
    overflow: hidden;
}

.sv-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (hover: none),
(pointer: coarse) {
    .sv-product-gallery {
        cursor: grab;
    }
}


/* =====================================================

   PRODUCT PAGE — PRODUCT INFO
   ===================================================== */

.sv-product-info {
    background: var(--sv-cream);
    padding-top: 70px;
}

.sv-product-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: clamp(30px, 3vw, 40px);
    color: var(--sv-ink);
    margin-bottom: 8px;
}

.sv-product-subtitle {
    color: var(--sv-rose);
    font-size: 16px;
    margin-bottom: 58px;
}

.sv-product-desc {
    max-width: 560px;
    margin-bottom: 32px;
}

.sv-product-cta {
    padding: 13px 44px;
}


/* price row */

.sv-product-price-row {
    border-bottom: 1px solid var(--sv-line);
    padding-bottom: 24px;
    margin-bottom: 34px;
}

.sv-field-label-sm {
    font-size: 14px;
    color: #af8777;
    margin: 0;
}

.sv-product-price {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--sv-ink);
    margin: 0;
}

.sv-product-pay-note {
    font-size: 14px;
    color: #af8777;
    margin: 6px 0 0;
}

.sv-h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--sv-ink);
}


/* olfactory notes */

.sv-notes-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-top: 1px solid var(--sv-line);
}

.sv-notes-group {
    display: flex;
    gap: 22px;
}

.sv-note {
    margin: 0;
    text-align: center;
    position: relative;
    cursor: default;
}


/* tooltip bubble */

.sv-note[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    transform: translateX(-50%) translateY(6px);
    width: max-content;
    max-width: 180px;
    background: var(--sv-ink);
    color: var(--sv-white);
    font-family: var(--font-sans);
    font-size: 12.5px;
    line-height: 1.5;
    padding: 10px 14px;
    box-shadow: 0 10px 26px rgba(20, 10, 2, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0 transform 0.25s eas visibility 0.25s ease index: 5;
}


/* small caret under the bubble */

.sv-note[data-tooltip]::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--sv-ink);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0 visibility 0.25s ea-index: 5;
}

.sv-note[data-tooltip]:hover::after,
.sv-note[data-tooltip]:hover::before,
.sv-note[data-tooltip]:focus::after,
.sv-note[data-tooltip]:focus::before,
.sv-note[data-tooltip]:focus-visible::after,
.sv-note[data-tooltip]:focus-visible::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sv-note[data-tooltip]:focus-visible {
    outline: 1px solid var(--sv-rose);
    outline-offset: 4px;
    border-radius: 8px;
}

.sv-note img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 8px;
    box-shadow: 0 4px 10px rgba(20, 10, 2, 0.18);
}

.sv-note figcaption {
    font-size: 12.5px;
    color: #3a2c1d;
}


/* other details */

.sv-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--sv-line);
}

.sv-detail-row:last-of-type {
    border-bottom: 1px solid var(--sv-line);
}

.sv-detail-value {
    font-size: 14.5px;
    color: var(--sv-ink);
}


/* accordion */

.sv-product-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-top: 1px solid var(--sv-line);
}

.sv-product-accordion .accordion-item:last-child {
    border-bottom: 1px solid var(--sv-line);
}

.sv-product-accordion .accordion-button {
    background: transparent;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--sv-ink);
    padding: 18px 0;
    box-shadow: none;
}

.sv-product-accordion .accordion-button:not(.collapsed) {
    color: var(--sv-ink);
    background: transparent;
    box-shadow: none;
}

.sv-product-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-family: var(--font-sans);
    font-size: 22px;
    line-height: 1;
    color: var(--sv-rose);
    transition: transform 0.3s ease;
}

.sv-product-accordion .accordion-button:not(.collapsed)::after {
    content: "\2212";
    transform: none;
}

.sv-product-accordion .accordion-body {
    font-size: 14px;
    line-height: 1.65;
    color: #3a2c1d;
    padding: 0 0 20px;
}

@media (max-width: 991.98px) {
    .sv-product-info .col-lg-5 {
        margin-top: 50px;
    }
}


/* =====================================================
   PRODUCT PAGE — RELATED PRODUCTS
   ===================================================== */

.sv-product-related {
    padding-top: 90px;
}


/* =====================================================
   SOURCING PAGE — HERO + FEATHER BANNER
   ===================================================== */

.sv-sourcing-hero {
    min-height: 780px;
}

.sv-banner-serif-center {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}


/* =====================================================
   SOURCING PAGE — WORLD MAP
   ===================================================== */

.sv-sourcing-map {
    background: var(--sv-cream);
}

.sv-map-wrap {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 50px auto 60px;
    padding: 0 4%;
}

.sv-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

.sv-map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.sv-map-pin img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--sv-white);
    box-shadow: 0 6px 16px rgba(20, 10, 2, 0.22);
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.sv-map-pin:hover img,
.sv-map-pin:focus img {
    transform: scale(1.12);
}

.sv-map-pin-card {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: var(--sv-white);
    padding: 30px 20px 16px 20px;
    white-space: nowrap;
    box-shadow: 0 10px 26px rgba(20, 10, 2, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0 transform 0.25s eas visibility 0.25s easepinter-events: none;
}

.sv-map-pin-card strong {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 15px;
    color: var(--sv-ink);
}

.sv-map-pin-card em {
    font-style: normal;
    font-size: 12px;
    color: #a99b89;
}

.sv-map-pin:hover .sv-map-pin-card,
.sv-map-pin:focus .sv-map-pin-card,
.sv-map-pin:focus-visible .sv-map-pin-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

@media (max-width: 767.98px) {
    .sv-map-wrap {
        margin: 34px auto 40px;
    }
    .sv-map-pin img {
        width: 34px;
        height: 34px;
    }
    .sv-map-pin-card {
        padding: 6px 12px;
    }
    .sv-map-pin-card strong {
        font-size: 13px;
    }
    .sv-map-pin-card em {
        font-size: 10.5px;
    }
}


/* =====================================================

   SOURCING PAGE — CRAFT PRACTICES
   ===================================================== */

.sv-sourcing-craft {
    background: var(--sv-cream);
}

.sv-sourcing-craft-media {
    margin: 0;
}

.sv-sourcing-craft-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    max-width: 350px;
}

.sv-sourcing-craft-media-tall img {
    height: 730px;
    max-width: 560px;
}

@media (max-width: 767.98px) {
    .sv-sourcing-craft-media img,
    .sv-sourcing-craft-media-tall img {
        height: 280px;
    }
}


/* =====================================================

   SOURCING PAGE — MARKET PRESENCE
   ===================================================== */

.sv-sourcing-market {
    background: var(--sv-cream);
}

.sv-sourcing-market-media {
    margin: 0;
}

.sv-sourcing-market-media img {
    width: 100%;
    height: clamp(320px, 44vw, 630px);
    object-fit: cover;
    display: block;
    max-width: 520px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0.5em 1em;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    max-width: fit-content;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-text-fill-color: #000000;
    /* your text color */
    transition: background-color 9999s ease-in-out 0s;
}

.sv-news-form .wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    /* allows children to wrap instead of staying in one row */
}

.sv-news-form .wpcf7-form .wpcf7-form-control-wrap {
    flex: 1;
}

.sv-news-form .wpcf7-response-output {
    flex-basis: 100%;
    /* forces it to take the full row width */
    order: 3;
    /* ensures it renders after input + button */
    margin-top: 0.5rem;
    margin-left: 0 !important;
    /* CF7 sometimes adds inline margin */
}


/* =====================================================
   HOMEPAGE — MOBILE (≤ 767px)
   Matches SV_Homepage_Mobile mockups.
   ===================================================== */

@media (max-width: 767.98px) {
    /* ---------- global rhythm ---------- */
    .sv-section {
        padding: 64px 0;
    }
    .sv-h2 {
        font-size: 26px;
        line-height: 1.35;
    }
    .sv-lead-serif {
        font-size: 22px;
        line-height: 1.4;
    }
    .sv-body-sm {
        font-size: 14px;
        line-height: 1.6;
    }
    .sv-eyebrow,
    .sv-eyebrow-light {
        font-size: 13px;
    }
    /* ---------- HERO ---------- */
    .sv-hero {
        height: auto;
        min-height: 620px;
    }
    .sv-hero-title {
        font-size: 28px;
    }
    .sv-hero-content {
        bottom: auto;
        top: 58%;
    }
    /* badges flow inline under "View Collection" instead of
     sitting absolutely at the bottom-right like on desktop */
    .sv-hero-badges {
        position: static;
        margin-top: 22px;
        gap: 16px;
        color: var(--sv-white);
    }
    .sv-badge {
        font-size: 12.5px;
        gap: 6px;
    }
    .sv-badge-divider {
        height: 20px;
    }
    .sv-hero-prev,
    .sv-hero-next-wrap {
        display: none;
    }
    /* ---------- MISSION ---------- */
    .sv-mission .row {
        flex-direction: column;
    }
    .sv-mission .sv-btn-outline-dark {
        width: 100%;
    }
    /* ---------- QUOTE BANNER ---------- */
    .sv-banner-quote {
        min-height: 560px;
    }
    .sv-banner-title {
        font-size: 24px;
    }
    .sv-banner-sub {
        font-size: 13.5px;
    }
    /* ---------- FEATURE BANNERS (Divine / Oud Majeste) ---------- */
    .sv-feature-banner {
        min-height: 0;
        height: auto;
    }
    .sv-feature-img-wrap {
        position: relative;
        inset: auto;
        height: 480px;
    }
    .sv-feature-img {
        height: 100%;
    }
    .sv-feature-card-wrap {
        position: static;
        width: auto;
        margin: -60px 4% 0;
    }
    /* ---------- PRODUCTS CAROUSEL ---------- */
    .sv-products {
        padding: 50px 0 70px;
    }
    .sv-product-slide {
        width: 64vw;
    }
    .sv-product-media {
        height: 280px;
    }
    .sv-product-name {
        font-size: 18px;
        margin-top: 16px;
    }
    /* ---------- INGREDIENTS ---------- */
    .sv-ing-head {
        margin-bottom: 6px;
    }
    .sv-vline {
        padding-left: 0;
        border-left: 0;
        margin-top: 16px;
    }
    /* Coffee + Saffron sit side by side; Lavender + the "12+"
     stats block follow as one full-width row underneath */
    .sv-ing-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 4%;
    }
    .sv-ing-grid>.col-md-4:nth-child(1),
    .sv-ing-grid>.col-md-4:nth-child(2) {
        flex: 0 0 48%;
        max-width: 48%;
    }
    .sv-ing-grid>.col-md-4:nth-child(3) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .sv-ing-card {
        max-width: 100%;
        margin: 0;
    }
    .sv-ing-card img {
        height: 220px;
    }
    .sv-ing-lavendar,
    .sv-ing-coffee,
    .sv-ing-saffron {
        margin-top: 0;
    }
    .sv-ing-name {
        font-size: 18px;
    }
    .sv-ing-more {
        max-width: 100%;
        margin: 24px 0 0;
        text-align: left;
    }
    /* ---------- INSPIRATION BANNER ---------- */
    .sv-banner-stream {
        min-height: 480px;
        height: auto;
    }
    .sv-banner-left {
        padding-left: 0;
        max-width: 100%;
    }
    .sv-banner-serif {
        font-size: 16px;
    }
    /* ---------- 3 STEPS ---------- */
    .sv-steps {
        padding: 60px 0;
    }
    /* text block first, bottle image underneath — reversed
     from the desktop side-by-side order */
    .sv-steps>.row {
        display: flex;
        flex-direction: column;
    }
    .sv-steps .col-lg-7 {
        order: 1;
    }
    .sv-steps .col-lg-5 {
        order: 2;
        margin-top: 40px;
    }
    .sv-steps-body {
        padding: 0 4%;
    }
    .sv-steps-media,
    .sv-steps-media img {
        height: 320px;
        min-height: 320px;
    }
    .sv-step-text {
        font-size: 14px;
    }
    /* ---------- JOURNEY / SUSTAINABILITY ---------- */
    .sv-journey-row {
        flex-direction: column;
        margin-top: 30px;
    }
    .sv-journey-copy {
        max-width: 100%;
        margin: 24px 0 0;
        padding-top: 0;
    }
    .sv-journey-media {
        max-width: 100%;
        margin-top: 24px;
    }
    .sv-journey-media img {
        height: 320px;
    }
    .sv-journey .sv-btn-dark {
        width: 100%;
    }
    /* image comes before the copy on mobile */
    .sv-journey-row .col-lg-auto {
        order: -1;
    }
    /* ---------- PRE-FOOTER CTA ---------- */
    .sv-banner-cta {
        height: auto;
        min-height: 440px;
    }
    /* ---------- FOOTER ---------- */
    .sv-footer {
        padding-top: 44px;
    }
    /* hide the logo + Shop Now/Contact row, show "Contact us" instead */
    .sv-footer-top .col-md-6:last-child {
        display: none;
    }
    .sv-footer-top .sv-logo-lg {
        font-size: 0;
    }
    .sv-footer-top .sv-logo-lg::before {
        content: "Contact us";
        font-size: 28px;
        font-family: var(--font-serif);
        color: var(--sv-white);
    }
    .sv-footer-top {
        padding-bottom: 36px;
    }
    .sv-footer-news {
        padding-bottom: 30px;
    }
    .sv-footer-links {
        padding-top: 30px;
    }
    /* Showroom + Contact side by side; Explore hidden; Social full width */
    .sv-footer-links>[class*="col-"]:nth-child(1),
    .sv-footer-links>[class*="col-"]:nth-child(2) {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .sv-footer-links>[class*="col-"]:nth-child(3) {
        display: none;
    }
    .sv-footer-links>[class*="col-"]:nth-child(4) {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    .sv-footer-tagline {
        display: none;
    }
    .sv-footer-bottom {
        font-size: 12px;
        padding: 18px 0;
    }
}


/* =====================================================
   INGREDIENTS PAGE — MOBILE (≤ 767px)
   ===================================================== */

@media (max-width: 767.98px) {
    .sv-ingr-hero {
        height: auto;
        min-height: 560px;
    }
    /* decorative blob image — scale it down and make sure
     the <img> actually fills its box instead of rendering
     at native size */
    .sv-story-blob {
        width: 260px;
        height: 260px;
        left: 0;
        top: 20%;
    }
    .sv-story-blob img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    .sv-story-intro .row {
        flex-direction: column;
    }
    /* ---------- mood tabs ---------- */
    .sv-mood-row>.col-12 {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 14px;
    }
    .sv-mood-tabs {
        width: 100%;
        justify-content: space-between;
        gap: 0;
    }
    .sv-mood-tab {
        font-size: 13px;
    }
    /* ---------- Coconut / Vanilla / Lavender banners ---------- */
    .sv-ingr-banner {
        min-height: 0;
        padding: 0;
        display: block;
        position: relative;
    }
    .sv-ingr-banner .sv-banner-img {
        position: relative;
        top: auto;
        height: 320px;
    }
    .sv-ingr-banner .sv-banner-shade {
        position: absolute;
        inset: 0;
        height: 320px;
    }
    .sv-ingr-quote {
        position: absolute;
        top: 22px;
        left: 6%;
        right: 6%;
        bottom: auto;
        max-width: none;
        font-size: 17px;
        text-align: left !important;
    }
    .sv-ingr-card,
    .sv-ingr-card-mid-right,
    .sv-ingr-card-mid-left,
    .sv-ingr-card-top-right {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: auto;
        margin: 0;
        padding: 22px 6% 28px;
        box-shadow: none;
    }
    .sv-ingr-card .sv-card-title {
        font-size: 21px;
        margin-bottom: 12px;
    }
    .sv-ingr-card .sv-card-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .sv-ingr-bottles {
        gap: 20px;
    }
    .sv-ingr-bottle img {
        width: 60px;
        height: 60px;
    }
    /* ---------- Projection ---------- */
    .sv-projection .row {
        flex-direction: column;
    }
    /* image renders first, text block follows underneath —
     reversed from the DOM order used on desktop */
    .sv-projection .col-lg-6:last-child {
        order: -1;
    }
    .sv-projection-media,
    .sv-projection-media img {
        height: 280px;
        max-height: 280px;
    }
    .sv-projection-body {
        padding: 44px 6%;
        text-align: center;
    }
    .sv-step-text {
        font-size: 14px;
    }
}


/* =====================================================
   OUR STORY PAGE — MOBILE (≤ 767px)
   ===================================================== */

@media (max-width: 767.98px) {
    .sv-story-hero {
        min-height: 560px;
    }
    .sv-story-intro .row {
        flex-direction: column;
    }
    .sv-story-intro [style*="max-width: 800px"],
    .sv-story-intro [style*="max-width: 440px"] {
        max-width: 100% !important;
    }
    /* ---------- Timeline ---------- */
    .sv-timeline-stage {
        padding: 50px 0 24px;
    }
    .timelineSwiper .swiper-slide:nth-child(odd),
    .timelineSwiper .swiper-slide:nth-child(even) {
        transform: none;
    }
    .sv-timeline-item {
        width: min(250px, 68vw);
        display: block;
    }
    .sv-timeline-media {
        max-width: 100%;
        flex-basis: auto;
    }
    .sv-timeline-media img {
        height: 230px;
    }
    .sv-timeline-year {
        font-size: 19px;
    }
    .sv-timeline-text {
        margin-top: 14px;
    }
    .sv-timeline-watermark {
        font-size: 62px;
        top: 10%;
    }
    /* ---------- Inspiration banner ---------- */
    .sv-banner-stream {
        min-height: 460px;
        height: auto;
    }
    .sv-banner-left {
        padding-left: 0;
        max-width: 100%;
    }
    .sv-banner-serif {
        font-size: 16px;
    }
    /* ---------- High-End Ingredients trio ---------- */
    .sv-story-ingredients .row.gy-5 {
        flex-direction: column;
    }
    /* petal image comes first, both copy blocks stack beneath it */
    .sv-story-ingredients .col-auto {
        order: -1;
    }
    .sv-story-ingredients [style*="max-width: 420px"] {
        max-width: 100% !important;
        padding: 0 !important;
    }
    .sv-story-ing-media {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }
    .sv-story-ingredients .col-lg-4:last-child .btn {
        width: 100%;
    }
}