/* ============================================================
   PLUS-CARE — shared site styles
   Design tokens are the single source of truth. See BRAND.md.
   Rule: components use tokens, never raw hex.
   ============================================================ */
:root {
    /* --- brand colours (§5 Brand DNA) --- */
    --rose: #e5147e;
    --rose-soft: #f7cfe2;
    /* primary action / accent */
    --navy: #26287a;
    /* headings / trust */
    --leaf: #3da135;
    --leaf-dark: #2f7d29;
    /* nature / freshness / eco */
    --lemon: #f4c518;
    --lemon-soft: #fbecb0;
    /* energy accent (sparingly) */
    --gold: #c9a24b;
    /* premium detail */

    /* --- neutrals --- */
    --ink: #33314a;
    /* body text */
    --muted: #7a7890;
    /* secondary text */
    --wordmark: #6f7173;
    /* logo gray */
    --paper: #fffdfb;
    /* page background */

    /* --- type (§6) --- */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', system-ui, -apple-system, sans-serif;

    /* --- radius (§8) --- */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    /* --- elevation: soft, navy-tinted (§8) --- */
    --shadow-card: 0 26px 50px -26px rgba(38, 40, 122, .28);
    --shadow-soft: 0 16px 24px rgba(38, 40, 122, .14);

    /* --- rhythm --- */
    --section-y: 72px;
}

* {
    box-sizing: border-box
}

html,
body {
    /* safety net: never allow horizontal scrolling */
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
}

h1,
h2,
h3,
h4,
.display {
    font-family: var(--font-display)
}

a {
    text-decoration: none
}

.text-muted-2 {
    color: var(--muted) !important
}

/* ---- buttons ----
   hover language: a gentle springy scale + a soft halo ring that blooms
   outward (filled buttons), and an ink fill that closes in from the
   edges (outline buttons). */
.btn-brand {
    background: linear-gradient(135deg, var(--rose), #b30f63);
    color: #fff;
    font-weight: 600;
    border: none;
    box-shadow: 0 12px 24px -12px rgba(229, 20, 126, .7), 0 0 0 0 rgba(229, 20, 126, .35);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease-in-out;
}

.btn-brand:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 16px 30px -12px rgba(229, 20, 126, .75), 0 0 0 8px rgba(229, 20, 126, .12);
}

.btn-brand:active {
    transform: scale(.97);
}

.btn-outline-brand {
    border: 1.5px solid var(--rose);
    color: var(--rose);
    font-weight: 600;
    background: transparent;
    box-shadow: inset 0 0 0 0 var(--rose);
    transition: color .25s ease-in-out, box-shadow .3s ease-in-out, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-outline-brand:hover {
    color: #fff;
    box-shadow: inset 0 0 0 2.4em var(--rose);
    transform: scale(1.05);
}

.btn-outline-brand:active {
    transform: scale(.97);
}

.rounded-pill-2 {
    border-radius: 999px
}

/* ---- navbar (fixed) ---- */
/* default page offset for the fixed header; js/site.js refines it to the live height */
body {
    padding-top: 72px
}

.navbar {
    background: rgba(255, 253, 251, .78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(51, 49, 74, .07);
    transition: box-shadow .3s ease-in-out
}

/* soft depth cue once the page is scrolled (js toggles .scrolled) */
.navbar.scrolled {
    box-shadow: 0 14px 30px -20px rgba(38, 40, 122, .28)
}

.navbar .brand-logo {
    height: 46px;
    width: auto;
    transition: transform .2s ease-in-out
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.04)
}

.navbar .nav-link {
    color: var(--ink);
    font-weight: 500;
    letter-spacing: .01em;
    padding: .5rem 1rem !important;
    position: relative
}

.navbar .nav-link {
    transition: color .2s ease-in-out
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--rose)
}

/* underline grows in from the left on hover; stays put on the active link */
.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: .25rem;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--rose), var(--lemon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease-in-out;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

/* ---- custom menu button: hamburger ⇄ cross ---- */
.menu-btn {
    position: relative;
    z-index: 1070;
    /* stays above the sidebar so it can close it */
    width: 42px;
    height: 42px;
    border: none;
    background: none;
    padding: 9px;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2.4px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .28s ease, opacity .2s ease;
    transform-origin: center;
}

.menu-btn:hover span {
    background: var(--rose)
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(7.4px) rotate(45deg)
}

.menu-btn.open span:nth-child(2) {
    opacity: 0
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7.4px) rotate(-45deg)
}

/* ---- custom mobile sidebar (left, jQuery-driven) ---- */
/* opens BELOW the sticky header — top is set by jQuery to the live navbar height */
.side-nav {
    position: fixed;
    top: 72px;
    left: 0;
    bottom: 0;
    z-index: 1019;
    /* under the sticky navbar (z 1020) so the header stays usable */
    width: min(300px, 82vw);
    background: rgba(255, 253, 251, .78);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px rgba(38, 40, 122, .18);
    padding: 8px 22px 26px;
    display: flex;
    flex-direction: column;
    transform: translateX(-102%);
    transition: transform .28s ease;
}

.side-nav.open {
    transform: translateX(0)
}

.side-nav-list {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    flex: 1;
}

.side-nav-link {
    display: block;
    padding: .8rem 2px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid rgba(51, 49, 74, .06);
}

.side-nav-link:hover,
.side-nav-link.active {
    color: var(--rose)
}

.side-nav-cta {
    align-self: flex-start
}

.side-nav-backdrop {
    position: fixed;
    top: 72px;
    /* below the header too — kept in sync by jQuery */
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1015;
    background: rgba(51, 49, 74, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.side-nav-backdrop.show {
    opacity: 1;
    visibility: visible
}

body.side-nav-lock {
    overflow: hidden
}

@media (min-width: 768px) {

    /* md+ never shows the sidebar (inline nav takes over) */
    .side-nav,
    .side-nav-backdrop {
        display: none
    }
}

/* ---- generic section ---- */
.section {
    padding: var(--section-y) 0
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600
}

.section h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-style: italic;
    font-weight: 500;
    color: var(--navy)
}

.lead-2 {
    color: var(--muted);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.75
}

/* ---- hero ---- */
.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(900px 500px at 10% -10%, rgba(244, 197, 24, .18), transparent 60%),
        radial-gradient(800px 600px at 100% 0%, rgba(229, 20, 126, .12), transparent 55%),
        radial-gradient(700px 700px at 50% 120%, rgba(61, 161, 53, .14), transparent 60%),
        linear-gradient(180deg, #fffdfb, #fff6ef);
}

.hero h1 {
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.08;
    color: var(--navy);
    font-style: italic;
    font-weight: 500
}

.hero h1 .accent {
    font-style: normal;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-img {
    filter: drop-shadow(0 30px 50px rgba(38, 40, 122, .22));
    max-width: 100%
}

/* small-screen hero: show the banner as a square, cropping the empty left area to the products */
.hero-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: right center;
    border-radius: 20px;
}

/* Large screens: show the wide range banner in full (natural aspect, uncropped)
   with the copy overlaid on its empty pink→lemon left area.
   Small screens keep the stacked layout above. */
/* full-bleed backdrop that continues the banner's pink→lemon wash on ultra-wide/4K sides */
.hero-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #fdeef2 0%, #fffef9 50%, #fbf6e1 100%);
}

/* the banner itself is capped and centred so it never balloons past 1920px.
   min keeps enough height for the copy on small (576–768) banners; max caps FHD→4K. */
.hero-banner-inner {
    position: relative;
    max-width: 1920px;
    margin-inline: auto;
    height: clamp(430px, 52vw, 820px);
}

.hero-banner-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    /* keep caps + bottle bases, trim only empty top / floor reflection */
}

.hero-banner-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center
}

/* copy is wider on small banners, tighter on large so it never overlaps the products */
.hero-banner-copy .hero-copy {
    max-width: 66%
}

.hero-banner-copy .hero-copy .lead-2 {
    max-width: 440px
}

@media (min-width: 992px) {
    .hero-banner-copy .hero-copy {
        max-width: 44%
    }
}

/* scale hero-banner type with viewport width so the copy fits the banner and never crowds the products */
.hero-banner-copy .eyebrow {
    font-size: clamp(10px, 1.1vw, 12px)
}

.hero-banner-copy h1 {
    font-size: clamp(27px, 5.2vw, 62px)
}

.hero-banner-copy .lead-2 {
    font-size: clamp(13px, 1.55vw, 17px)
}

.hero-banner-copy .btn {
    font-size: clamp(13px, 1.25vw, 16px)
}

/* ---- feature strip ---- */
.feature {
    padding: 22px
}

/* below lg: compact horizontal rows — icon left, text beside it */
@media (max-width: 991.98px) {
    .feature {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 6px;
    }

    .feature .ico {
        flex: 0 0 46px;
        width: 46px;
        height: 46px;
        margin-bottom: 0;
    }
}

.feature .ico {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    background: rgba(61, 161, 53, .1);
    color: var(--leaf-dark);
    transition: transform .25s ease-in-out, background-color .25s ease-in-out
}

.feature:hover .ico {
    transform: translateY(-4px) scale(1.06);
    background: rgba(61, 161, 53, .16)
}

.feature h5 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    margin: 0 0 4px;
    font-size: 1.02rem
}

.feature p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0
}

/* full-detail rows on the products page: land anchors below the fixed header */
.product-row {
    scroll-margin-top: 130px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(51, 49, 74, .08);
}

.product-row:first-child {
    padding-top: 12px;
}

.product-row:last-child {
    border-bottom: 0;
    padding-bottom: 12px;
}

/* keep detail text at a comfortable measure */
.product-row .product-info {
    max-width: 580px;
}

/* gold eyebrow-style sub-heading used inside product details */
.detail-h {
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--gold);
}

/* secondary details band (usage / ingredients / caution) under each row */
.product-details-panel {
    margin-top: 36px;
    padding: 26px 30px;
    background: linear-gradient(160deg, #fbfbfd, #f4f1f8);
    border: 1px solid rgba(51, 49, 74, .08);
    border-radius: var(--radius-lg);
}

.product-details-panel ol,
.product-details-panel ul {
    margin: 0;
    padding-left: 1.15rem;
}

.product-details-panel li {
    color: var(--muted);
    font-size: .92rem;
    margin-bottom: 6px;
}

.product-details-panel li:last-child {
    margin-bottom: 0;
}

.product-details-panel p {
    color: var(--muted);
    font-size: .92rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .product-row {
        padding: 36px 0;
    }

    .product-details-panel {
        margin-top: 28px;
        padding: 22px;
    }
}

/* ---- product cards ---- */
.product-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(51, 49, 74, .08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: transform .25s ease-in-out, box-shadow .25s ease-in-out;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card)
}

/* hover border: two arcs of the signature rose→lemon→leaf gradient
   grow OUTWARD IN BOTH DIRECTIONS from the top-right and bottom-left
   corners — top edge sweeps left while the right edge sweeps down (and
   mirrored from bottom-left) — until the four fronts join at the
   top-left and bottom-right corners (conic ring masked to a 2.5px
   band). js/site.js animates --bd-p from 0% to 50% (each arc's half of
   the circle) while sliding --bd-from counterclockwise so both ends of
   each arc advance at the pace of the edge they travel; the
   `transparent 0` stops keep crisp edges at the draw positions. */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    padding: 2.5px;
    background: conic-gradient(from var(--bd-from, -45deg),
            var(--rose),
            var(--lemon) var(--bd-p, 0%),
            transparent 0,
            transparent 50%,
            var(--lemon) 0,
            var(--leaf) calc(50% + var(--bd-p, 0%) / 2),
            var(--rose) calc(50% + var(--bd-p, 0%)),
            transparent 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    /* fade applies on mouse-leave only — on hover the ring shows at once
       so the draw is visible from its very first frame */
    transition: opacity .3s ease-in-out;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 1;
    transition: none;
}

.product-thumb {
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, #fbfbfd, #f4f1f8);
    overflow: hidden
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease-in-out
}

/* gentle zoom on the image when the card (or a detail-row thumb) is hovered */
.product-card:hover .product-thumb img,
.product-thumb:hover img {
    transform: scale(1.05)
}

/* "View details →" arrow nudges forward on card hover */
.product-card .view-link .arr {
    display: inline-block;
    transition: transform .2s ease-in-out
}

.product-card:hover .view-link .arr {
    transform: translateX(4px)
}

.product-thumb.empty {
    background: linear-gradient(160deg, var(--lemon-soft), var(--rose-soft))
}

.product-thumb .leaf-badge {
    width: 64px;
    height: 64px;
    opacity: .85
}

.product-card .body {
    padding: 18px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column
}

/* ---- team profiles (about page) — card-less: large circular portrait on a
   soft-wash ring, Cormorant italic name, gold role, signature gradient rule ---- */
.team-profile {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    transition: transform .25s ease-in-out;
}

.team-profile:hover {
    transform: translateY(-6px);
}

/* circular soft colour-wash ring framing the portrait (fragrance = colour, §7) */
.team-profile .frame {
    border-radius: 50%;
    padding: 12px;
    width: min(100%, 270px);
    margin: 0 auto 22px;
    background: linear-gradient(160deg,
            color-mix(in srgb, var(--rose-soft) 65%, #fff),
            color-mix(in srgb, var(--lemon-soft) 45%, #fff));
    box-shadow: var(--shadow-card);
}

.team-profile .frame.lemon {
    background: linear-gradient(160deg,
            color-mix(in srgb, var(--lemon-soft) 65%, #fff),
            color-mix(in srgb, var(--leaf) 16%, #fff));
}

.team-profile .frame .ph {
    border-radius: 50%;
    overflow: hidden;
}

.team-profile .frame img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: 50% 22%;
    transition: transform .45s ease-in-out;
}

.team-profile:hover .frame img {
    transform: scale(1.05);
}

.team-profile h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.55rem;
    color: var(--navy);
    margin: 0;
}

/* thin signature-gradient rule between name and role */
.team-profile .rule {
    width: 44px;
    height: 2px;
    border-radius: 2px;
    margin: 10px auto;
    background: linear-gradient(90deg, var(--rose), var(--lemon), var(--leaf));
}

.team-profile .role {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
}

.cat-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--leaf-dark);
    background: rgba(61, 161, 53, .1);
    padding: 4px 10px;
    border-radius: 999px
}

.product-card h3 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 1.12rem;
    margin: 12px 0 4px;
    color: var(--ink)
}

.product-card .tag {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 14px;
    flex: 1
}

.badge-soon {
    background: var(--gold);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 3px 8px;
    border-radius: 999px;
    text-transform: uppercase
}

/* ---- CTA band ---- */
.cta-band {
    background: linear-gradient(120deg, var(--navy), #3a3ca0);
    color: #fff;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.cta-band h2 {
    color: #fff
}

/* signature thin gradient rule along the top edge */
.cta-rule {
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--rose), var(--lemon), var(--leaf));
    opacity: .9;
}

/* soft blurred colour washes in the corners */
.cta-wash {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.cta-wash-rose {
    width: 420px;
    height: 420px;
    background: var(--rose);
    top: -180px;
    right: -120px;
    opacity: .28;
}

.cta-wash-lemon {
    width: 380px;
    height: 380px;
    background: var(--lemon);
    bottom: -190px;
    left: -110px;
    opacity: .16;
}

/* CTA-band buttons: light-on-navy variants of the brand buttons —
   same spring-scale + halo / edge-fill hover language */
.btn-cta-light {
    background: #fff;
    color: var(--navy);
    font-weight: 600;
    border: none;
    box-shadow: 0 12px 24px -12px rgba(23, 24, 64, .5), 0 0 0 0 rgba(255, 255, 255, .3);
    transition: color .2s ease-in-out, transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease-in-out;
}

.btn-cta-light:hover {
    color: var(--rose);
    transform: scale(1.05);
    box-shadow: 0 16px 30px -12px rgba(23, 24, 64, .55), 0 0 0 8px rgba(255, 255, 255, .14);
}

.btn-cta-light:active {
    transform: scale(.97);
}

.btn-cta-ghost {
    border: 1.5px solid rgba(255, 255, 255, .55);
    color: #fff;
    font-weight: 600;
    background: transparent;
    box-shadow: inset 0 0 0 0 #fff;
    transition: color .25s ease-in-out, border-color .25s ease-in-out, box-shadow .3s ease-in-out, transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.btn-cta-ghost:hover {
    color: var(--navy);
    border-color: #fff;
    box-shadow: inset 0 0 0 2.4em #fff, 0 12px 24px -14px rgba(23, 24, 64, .5);
    transform: scale(1.05);
}

.btn-cta-ghost:active {
    transform: scale(.97);
}

/* gently floating soap bubbles */
.cta-bubble {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .35);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .28), rgba(255, 255, 255, .02));
    pointer-events: none;
    animation: cta-float 9s ease-in-out infinite;
}

.cta-bubble.b1 {
    width: 46px;
    height: 46px;
    top: 18%;
    left: 42%;
    animation-duration: 8s
}

.cta-bubble.b2 {
    width: 22px;
    height: 22px;
    top: 62%;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 1.2s
}

.cta-bubble.b3 {
    width: 30px;
    height: 30px;
    top: 24%;
    right: 8%;
    animation-duration: 10s;
    animation-delay: .6s
}

.cta-bubble.b4 {
    width: 14px;
    height: 14px;
    bottom: 16%;
    left: 12%;
    animation-duration: 7s;
    animation-delay: 2s
}

@keyframes cta-float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-16px)
    }
}

@media (prefers-reduced-motion: reduce) {
    .cta-bubble {
        animation: none
    }
}

/* framed product shot inside the band */
.cta-img {
    max-width: 330px;
    width: 100%;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, .16);
    box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .45);
    transform: rotate(2deg);
    transition: transform .35s ease-in-out;
}

.cta-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* ---- map (contact page) ---- */
.map-card {
    border: 1px solid rgba(51, 49, 74, .08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    /* clip the iframe to the rounded corners on Safari too */
    transform: translateZ(0);
}

.map-embed {
    display: block;
    width: 100%;
    height: clamp(320px, 42vw, 440px);
    border: 0;
}

/* ---- footer ---- */
.site-footer {
    background: #201f33;
    color: #cfcede;
    padding: 56px 0 28px
}

.site-footer a {
    color: #cfcede
}

.site-footer a:hover {
    color: #fff
}

.site-footer .brand-logo {
    height: 48px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 12px
}

.site-footer h6 {
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
    margin-bottom: 16px
}

.site-footer .foot-link {
    display: block;
    padding: 5px 0;
    color: #b9b8cb;
    transition: color .2s ease-in-out, padding-left .2s ease-in-out
}

.site-footer .foot-link:hover {
    color: #fff;
    padding-left: 6px
}

.site-footer .dev-credit {
    color: #b9b8cb;
    transition: color .2s ease-in-out;
}

.site-footer .dev-credit:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 36px;
    padding-top: 20px;
    color: #9998ab;
    font-size: .85rem
}

/* ---- page header banner ---- */
.page-head {
    background:
        radial-gradient(700px 400px at 100% -20%, rgba(229, 20, 126, .1), transparent 60%),
        linear-gradient(180deg, #fffdfb, #fff6ef);
    border-bottom: 1px solid rgba(51, 49, 74, .06);
}

.page-head h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-style: italic;
    font-weight: 500;
    color: var(--navy)
}

.breadcrumb-brand a {
    color: var(--muted)
}

.breadcrumb-brand .sep {
    color: var(--gold);
    margin: 0 8px
}

/* ============================================================
   MOTION (§9 Brand DNA) — gentle and organic; motion = care
   ============================================================ */

/* ---- page loader (js/site.js hides it after load, shown ≥1s) ---- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    /* above the fixed navbar */
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
}

.page-loader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    height: 64px;
    width: auto;
    animation: loader-pulse 1.6s ease-in-out infinite;
}

@keyframes loader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.05);
        opacity: .85
    }
}

/* signature thin gradient rule, sweeping while the page loads */
.loader-bar {
    position: relative;
    width: 150px;
    height: 3px;
    border-radius: 3px;
    overflow: hidden;
    background: rgba(51, 49, 74, .08);
}

.loader-bar::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -40%;
    width: 40%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--rose), var(--lemon), var(--leaf));
    animation: loader-sweep 1.1s ease-in-out infinite;
}

@keyframes loader-sweep {
    to {
        left: 100%
    }
}

@media (prefers-reduced-motion: reduce) {

    /* calm static state: full gradient rule, no pulse/sweep */
    .loader-logo {
        animation: none
    }

    .loader-bar::after {
        animation: none;
        left: 0;
        width: 100%
    }
}

/* ---- hero entrance (plays on load) ---- */
@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

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

@keyframes soft-zoom {
    from {
        opacity: 0;
        transform: scale(1.04)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.hero .eyebrow {
    animation: rise-in .7s ease-in-out both
}

.hero h1 {
    animation: rise-in .7s ease-in-out .12s both
}

.hero .lead-2 {
    animation: rise-in .7s ease-in-out .24s both
}

.hero .d-flex.flex-wrap {
    animation: rise-in .7s ease-in-out .36s both
}

.hero-banner-img,
.hero-square {
    animation: soft-zoom 1s ease-in-out both
}

/* ---- scroll reveal ----
   js/site.js tags elements with .reveal and adds .in as they enter the
   viewport (staggered via --rd). Without js the class is never added,
   so content stays fully visible. */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .65s ease-in-out, transform .65s ease-in-out;
    transition-delay: var(--rd, 0ms);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* ---- calm static state (§9: always honour reduced motion) ---- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    /* no draw animation: show the completed border ring statically */
    .product-card:hover::after {
        --bd-p: 50%;
    }
}
/* ============================================================
   Legal pages (privacy/terms) — admin richtext body
   Plain <p>/<h2>/<h3> from the editor render like the original
   .lead-2 / .h5 styled markup.
   ============================================================ */
.legal-body p,
.legal-body li {
    color: var(--muted);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.75
}

.legal-body h2,
.legal-body h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 .5rem;
    font-style: normal
}

.legal-body ul,
.legal-body ol {
    padding-left: 1.4rem
}

.legal-body a {
    color: var(--rose)
}

/* Hero/CTA headings — italic doubles as the rose accent so the admin's
   rich-text editor (which knows bold/italic, not custom spans) can produce it */
.hero h1 i,
.hero h1 em {
    color: var(--rose);
    font-style: inherit
}

/* ============================================================
   Lucide icons — thin-stroke, brand-toned (admin-selectable)
   ============================================================ */
.lucide {
    stroke-width: 1.6px
}

.feature .ico .lucide {
    width: 28px;
    height: 28px;
    color: var(--leaf)
}

.value-ico {
    color: var(--leaf);
    margin-bottom: .25rem
}

.value-ico .lucide {
    width: 34px;
    height: 34px
}

.feature-ico .lucide {
    width: 24px;
    height: 24px;
    color: var(--rose)
}

.tick-ico {
    color: var(--leaf);
    display: inline-flex;
    flex-shrink: 0
}

.tick-ico .lucide {
    width: 16px;
    height: 16px;
    stroke-width: 2.2px
}

.product-card .view-link .arr .lucide {
    width: 14px;
    height: 14px;
    vertical-align: -2px
}

