/* =========================================================
   Botanical editorial design system
   Premium nursery / lifestyle brand aesthetic
   ========================================================= */

:root {
    --bo-forest: #16291d;
    --bo-green: #2f5d3a;
    --bo-leaf: #4a7c50;
    --bo-olive: #7d8b5a;
    --bo-ivory: #fbf9f4;
    --bo-paper: #f4f0e6;
    --bo-beige: #e8e0d1;
    --bo-brown: #8a6a4f;
    --bo-yellow: #e0b53f;
    --bo-ink: #21281f;
    --bo-muted: #6c7367;
    --bo-line: rgba(33, 40, 31, 0.12);
    --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", "Nunito Sans", "Segoe UI", sans-serif;
    --header-offset: 124px;

    /* legacy tokens used by inner pages */
    --primary: var(--bo-green);
    --primary-dark: var(--bo-forest);
    --primary-soft: #e7ede4;
    --btn: var(--bo-green);
    --btn-hover: var(--bo-forest);
    --footer-bg: var(--bo-ivory);
    --primary-rgb: 47, 93, 58;
    --dark-rgb: 22, 41, 29;
}

* { box-sizing: border-box; }

body.site-body {
    font-family: var(--font-body);
    color: var(--bo-ink);
    background: var(--bo-ivory);
    line-height: 1.75;
    padding-top: var(--header-offset);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--bo-forest);
}

a { color: var(--bo-green); transition: color .25s ease; }
a:hover { color: var(--bo-forest); }

::selection { background: var(--bo-beige); }

.bo-serif-italic {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .09s; }
.reveal-delay-2 { transition-delay: .18s; }
.reveal-delay-3 { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--bo-ivory);
    transition: box-shadow .3s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 1px 0 var(--bo-line), 0 10px 30px rgba(22, 41, 29, 0.06);
}

.top-announce {
    background: var(--bo-forest);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    letter-spacing: 0.01em;
}
.top-announce-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.35rem 1.25rem;
    padding: 0.4rem 0;
}
.top-announce-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-weight: 500;
}
.top-announce-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 1.15rem;
}
.top-announce-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 400;
}
.top-announce-links a:hover { color: #fff; }
.top-announce-sep {
    color: rgba(255, 255, 255, 0.28);
}

.site-navbar {
    background: transparent;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bo-line);
}
.site-navbar-inner {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--bo-forest);
}
.brand-lockup.has-logo .brand-lockup-img {
    height: 58px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
}
.brand-lockup-mark {
    width: 44px;
    height: 44px;
    border-radius: 50% 50% 50% 4px;
    background: var(--bo-green);
    color: var(--bo-ivory);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
}
.brand-lockup-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.brand-lockup-text strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
}
.brand-lockup-text small {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bo-olive);
}

.site-nav-links { gap: 0.1rem; }
.site-navbar .nav-link {
    color: var(--bo-ink) !important;
    font-weight: 500;
    font-size: 0.855rem;
    letter-spacing: 0.03em;
    padding: 0.5rem 0.8rem !important;
    position: relative;
}
.site-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.15rem;
    height: 1px;
    background: var(--bo-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--bo-green) !important;
}
.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after { transform: scaleX(1); }
.site-navbar .dropdown-toggle::after {
    border: 0;
    content: "\f282";
    font-family: "bootstrap-icons";
    font-size: 0.6rem;
    vertical-align: 0.05em;
    margin-left: 0.3rem;
}
.site-navbar .dropdown-menu {
    border: 1px solid var(--bo-line);
    border-radius: 0.35rem;
    box-shadow: 0 18px 40px rgba(22, 41, 29, 0.1);
    padding: 0.35rem;
    background: var(--bo-ivory);
}
.site-navbar .dropdown-item {
    border-radius: 0.25rem;
    font-size: 0.875rem;
    padding: 0.45rem 0.8rem;
    color: var(--bo-ink);
}
.site-navbar .dropdown-item:hover { background: var(--bo-paper); }
.site-navbar .dropdown-item.active,
.site-navbar .dropdown-item:active {
    background: var(--bo-green);
    color: #fff;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: 0.75rem;
}
.nav-tool {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--bo-ink);
    text-decoration: none;
    position: relative;
    font-size: 1.05rem;
    transition: background .25s ease, color .25s ease;
}
.nav-tool:hover {
    background: var(--bo-paper);
    color: var(--bo-green);
}
.nav-cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    min-width: 1rem;
    height: 1rem;
    border-radius: 999px;
    background: var(--bo-green);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    display: grid;
    place-items: center;
    padding: 0 0.2rem;
}
.site-navbar .navbar-toggler {
    border-color: var(--bo-line);
    padding: 0.35rem 0.55rem;
}
.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2316291d' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.6' d='M4 8h22M4 15h22M4 22h22'/%3e%3c/svg%3e");
}
.brand-mark { display: none; }
.nav-circle-strip { display: none !important; }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn-bo-solid,
.btn-primary {
    background: var(--bo-forest);
    border: 1px solid var(--bo-forest);
    color: var(--bo-ivory) !important;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    padding: 0.72rem 1.6rem;
    box-shadow: none;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.btn-bo-solid:hover,
.btn-primary:hover {
    background: var(--bo-green);
    border-color: var(--bo-green);
    color: #fff !important;
    transform: translateY(-1px);
}
.btn-bo-ghost,
.btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(33, 40, 31, 0.28);
    color: var(--bo-ink) !important;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.72rem 1.6rem;
    transition: border-color .25s ease, color .25s ease;
}
.btn-bo-ghost:hover,
.btn-outline-primary:hover {
    background: transparent;
    border-color: var(--bo-forest);
    color: var(--bo-forest) !important;
}
.btn-bo-light {
    background: var(--bo-ivory);
    border: 1px solid var(--bo-ivory);
    color: var(--bo-forest) !important;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.72rem 1.6rem;
}
.btn-bo-light:hover { background: #fff; color: var(--bo-forest) !important; }

.bo-textlink {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bo-forest);
    border-bottom: 1px solid var(--bo-line);
    padding-bottom: 0.35rem;
    transition: border-color .3s ease, gap .3s ease;
}
.bo-textlink:hover {
    color: var(--bo-green);
    border-color: var(--bo-green);
    gap: 0.75rem;
}

/* ---------------------------------------------------------
   Section furniture
   --------------------------------------------------------- */
.bo-section {
    padding: clamp(4rem, 9vw, 7.5rem) 0;
    position: relative;
}
.bo-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--bo-olive);
    margin-bottom: 0.85rem;
}
.bo-title {
    font-size: clamp(2.1rem, 4.4vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 0.9rem;
}
.bo-title em {
    font-style: italic;
    color: var(--bo-green);
}
.bo-lede {
    color: var(--bo-muted);
    font-size: 1.02rem;
    max-width: 34rem;
}
.bo-section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.bo-section-head.is-center { text-align: center; }
.bo-section-head.is-center .bo-lede { margin-inline: auto; }

.bo-sprig {
    display: block;
    width: 78px;
    height: auto;
    color: var(--bo-olive);
    opacity: 0.75;
}
.bo-section-head.is-center .bo-sprig { margin: 1.15rem auto 0; }

/* Paper texture used on ivory blocks */
.bo-paper-bg {
    background-color: var(--bo-paper);
    background-image:
        radial-gradient(circle at 12% 18%, rgba(125, 139, 90, 0.09), transparent 32%),
        radial-gradient(circle at 88% 76%, rgba(138, 106, 79, 0.08), transparent 30%);
}

/* ---------------------------------------------------------
   Hero — editorial split
   --------------------------------------------------------- */
.hero-parallax,
.hero-parallax-bg { display: none !important; }

.bo-hero {
    position: relative;
    background-color: var(--bo-ivory);
    background-image: radial-gradient(circle at 8% 12%, rgba(125, 139, 90, 0.1), transparent 34%);
    overflow: hidden;
}
.bo-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: min(88vh, 760px);
}
.bo-hero-copy {
    padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
    padding-left: max(1.5rem, calc((100vw - 1320px) / 2 + 0.75rem));
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.bo-hero-script {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--bo-olive);
    margin-bottom: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}
.bo-hero-copy h1 {
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 1.35rem;
}
.bo-hero-copy h1 span { display: block; }
.bo-hero-copy h1 .is-accent {
    color: var(--bo-green);
    font-style: italic;
}
.bo-hero-copy > p {
    color: var(--bo-muted);
    font-size: 1.05rem;
    max-width: 30rem;
    margin-bottom: 2rem;
}
.bo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.bo-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--bo-line);
    padding-top: 1.4rem;
    max-width: 32rem;
}
.bo-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--bo-muted);
}
.bo-hero-trust i { color: var(--bo-olive); font-size: 0.9rem; }

.bo-hero-media {
    position: relative;
    min-height: 420px;
}
.bo-hero-media img.bo-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 180px;
}
.bo-hero-card {
    position: absolute;
    right: clamp(1rem, 3vw, 2.5rem);
    bottom: clamp(1.5rem, 4vw, 3rem);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(2px);
    padding: 1.1rem 1.35rem;
    border-radius: 0.4rem;
    box-shadow: 0 20px 45px rgba(22, 41, 29, 0.14);
    max-width: 15rem;
}
.bo-hero-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1;
    color: var(--bo-forest);
}
.bo-hero-card span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bo-muted);
    margin-top: 0.2rem;
}
.bo-avatars {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
}
.bo-avatars img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-right: -8px;
}
.bo-avatars span {
    margin-left: 1rem;
    font-size: 0.72rem;
    color: var(--bo-olive);
    letter-spacing: 0.04em;
}

/* ---------------------------------------------------------
   Trust row — quiet, thin separators
   --------------------------------------------------------- */
.bo-trust-row {
    border-top: 1px solid var(--bo-line);
    border-bottom: 1px solid var(--bo-line);
    background: var(--bo-ivory);
}
.bo-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.bo-trust-item {
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
    text-align: center;
    border-left: 1px solid var(--bo-line);
}
.bo-trust-item:first-child { border-left: 0; }
.bo-trust-item i {
    font-size: 1.35rem;
    color: var(--bo-olive);
    display: block;
    margin-bottom: 0.65rem;
}
.bo-trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--bo-forest);
    margin-bottom: 0.2rem;
}
.bo-trust-item span {
    font-size: 0.84rem;
    color: var(--bo-muted);
}

/* ---------------------------------------------------------
   Category discovery — arched imagery
   --------------------------------------------------------- */
.bo-discover { background: var(--bo-ivory); }
.bo-arch-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(0.85rem, 2vw, 1.75rem);
}
.bo-arch {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.bo-arch-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 999px 999px 14px 14px;
    background: var(--bo-paper);
}
.bo-arch-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.bo-arch-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.02rem;
    color: var(--bo-forest);
    margin-top: 1.1rem;
    position: relative;
    padding-bottom: 0.4rem;
}
.bo-arch-name::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 34px;
    height: 1px;
    background: var(--bo-green);
    transform: translateX(-50%) scaleX(0);
    transition: transform .35s ease;
}
.bo-arch-cta {
    display: block;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bo-olive);
    margin-top: 0.35rem;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .35s ease, transform .35s ease;
}
.bo-arch:hover { transform: translateY(-10px); }
.bo-arch:hover .bo-arch-frame img { transform: scale(1.08); }
.bo-arch:hover .bo-arch-name::after { transform: translateX(-50%) scaleX(1); }
.bo-arch:hover .bo-arch-cta { opacity: 1; transform: none; }
.bo-arch:focus-visible { outline: 2px solid var(--bo-green); outline-offset: 6px; }

/* ---------------------------------------------------------
   Our story — magazine layout
   --------------------------------------------------------- */
.bo-story { background: var(--bo-paper); }
.bo-story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 6vw, 5.5rem);
    align-items: center;
}
.bo-story-art {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 1rem;
    align-items: start;
}
.bo-story-main {
    position: relative;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    border-radius: 260px 260px 10px 10px;
}
.bo-story-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bo-story-stack {
    display: grid;
    gap: 1rem;
    padding-top: 3.5rem;
}
.bo-story-stack img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
}
.bo-play {
    position: absolute;
    left: 50%;
    bottom: 1.75rem;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background .3s ease, transform .3s ease;
}
.bo-play:hover {
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateX(-50%) scale(1.06);
}
.bo-values {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.5rem;
    display: grid;
    gap: 1rem;
    max-width: 30rem;
}
.bo-values li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bo-line);
}
.bo-values li:last-child { border-bottom: 0; padding-bottom: 0; }
.bo-values i {
    color: var(--bo-olive);
    font-size: 1.05rem;
    margin-top: 0.15rem;
}
.bo-values strong {
    display: block;
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--bo-forest);
}
.bo-values div span {
    display: block;
    font-size: 0.86rem;
    color: var(--bo-muted);
}

/* ---------------------------------------------------------
   Promotional band
   --------------------------------------------------------- */
.bo-promo {
    position: relative;
    background: var(--bo-forest) center/cover no-repeat;
    color: var(--bo-ivory);
    padding: clamp(4rem, 8vw, 6.5rem) 0;
    overflow: hidden;
}
.bo-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(95deg, rgba(11, 26, 16, 0.9) 0%, rgba(11, 26, 16, 0.66) 52%, rgba(11, 26, 16, 0.35) 100%);
}
.bo-promo > .container { position: relative; z-index: 2; }
.bo-promo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}
.bo-promo-copy { max-width: 34rem; }
.bo-promo-kicker {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--bo-yellow);
    margin-bottom: 1rem;
}
.bo-promo-copy h2 {
    color: var(--bo-ivory);
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 0.85rem;
}
.bo-promo-copy p {
    color: rgba(251, 249, 244, 0.82);
    font-size: 1.05rem;
    margin-bottom: 1.85rem;
}
.bo-promo-badge {
    width: clamp(160px, 20vw, 216px);
    aspect-ratio: 1;
    background: var(--bo-yellow);
    color: var(--bo-forest);
    border-radius: 62% 38% 55% 45% / 48% 56% 44% 52%;
    display: grid;
    place-content: center;
    text-align: center;
    line-height: 1.15;
    animation: bo-blob 14s ease-in-out infinite;
}
.bo-promo-badge small {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.bo-promo-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    line-height: 1;
    color: var(--bo-forest);
    margin: 0.2rem 0;
}
@keyframes bo-blob {
    0%, 100% { border-radius: 62% 38% 55% 45% / 48% 56% 44% 52%; }
    50% { border-radius: 45% 55% 42% 58% / 58% 42% 56% 44%; }
}
@media (prefers-reduced-motion: reduce) {
    .bo-promo-badge { animation: none; }
}

/* ---------------------------------------------------------
   Featured plants — editorial rhythm
   --------------------------------------------------------- */
.bo-featured { background: var(--bo-ivory); }
.bo-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    align-items: start;
}
.bo-plant { position: relative; }
.bo-plant:nth-child(even) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
.bo-plant-media {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bo-paper);
    display: block;
}
.bo-plant:nth-child(4n+1) .bo-plant-media { aspect-ratio: 3 / 4; }
.bo-plant:nth-child(4n+2) .bo-plant-media { aspect-ratio: 4 / 5; }
.bo-plant:nth-child(4n+3) .bo-plant-media { aspect-ratio: 3 / 4.4; }
.bo-plant:nth-child(4n+4) .bo-plant-media { aspect-ratio: 4 / 5.2; }
.bo-plant-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22,.61,.36,1);
}
.bo-plant:hover .bo-plant-media img { transform: scale(1.05); }
.bo-plant-like {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    color: var(--bo-forest);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.bo-plant-like:hover { transform: scale(1.08); }
.bo-plant-like.is-liked { background: var(--bo-green); color: #fff; }
.bo-plant-body {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1rem;
}
.bo-plant-body h3 {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
}
.bo-plant-body h3 a { color: var(--bo-forest); text-decoration: none; }
.bo-plant-body h3 a:hover { color: var(--bo-green); }
.bo-plant-price {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--bo-olive);
    white-space: nowrap;
}
.bo-plant-meta {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bo-muted);
    margin-top: 0.2rem;
}
.bo-plant-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.9rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--bo-line);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bo-forest);
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.bo-plant-cart:hover {
    background: var(--bo-forest);
    border-color: var(--bo-forest);
    color: var(--bo-ivory);
}

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.bo-voices { background: var(--bo-paper); }
.bo-voice {
    background: #fff;
    border-radius: 4px;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.bo-voice::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(125, 139, 90, 0.07);
}
.bo-voice-stars {
    color: var(--bo-yellow);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.bo-voice p {
    font-family: var(--font-display);
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--bo-forest);
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}
.bo-voice-person {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--bo-line);
    padding-top: 1.25rem;
}
.bo-voice-person img,
.bo-voice-initial {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}
.bo-voice-initial {
    background: var(--bo-paper);
    color: var(--bo-green);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
}
.bo-voice-person strong {
    display: block;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--bo-forest);
}
.bo-voice-person small {
    color: var(--bo-muted);
    font-size: 0.8rem;
}

/* ---------------------------------------------------------
   Contact strip
   --------------------------------------------------------- */
.bo-contact {
    background: var(--bo-forest);
    color: var(--bo-ivory);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.bo-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--bo-ivory);
    text-decoration: none;
}
.bo-contact-item:hover { color: #fff; }
.bo-contact-icon {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    border: 1px solid rgba(251, 249, 244, 0.3);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: background .3s ease, border-color .3s ease;
}
.bo-contact-item:hover .bo-contact-icon {
    background: rgba(251, 249, 244, 0.1);
    border-color: rgba(251, 249, 244, 0.6);
}
.bo-contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
}
.bo-contact-item small {
    display: block;
    color: rgba(251, 249, 244, 0.72);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.footer-premium.site-footer {
    background: var(--bo-ivory) !important;
    color: var(--bo-ink);
    border-radius: 0 !important;
    margin-top: 0 !important;
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    border-top: 1px solid var(--bo-line);
}
.footer-premium.site-footer a { color: var(--bo-muted); }
.footer-premium.site-footer a:hover { color: var(--bo-green); }
.footer-premium.site-footer p,
.footer-premium.site-footer li,
.footer-premium.site-footer h5 { color: var(--bo-ink); }
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bo-forest) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.footer-desc {
    color: var(--bo-muted);
    font-size: 0.94rem;
    max-width: 24rem;
}
.footer-col-title {
    font-family: var(--font-body) !important;
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: var(--bo-forest) !important;
    margin-bottom: 1.1rem;
}
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a {
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-premium .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-premium .social-links a {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    border: 1px solid var(--bo-line);
    background: transparent;
    color: var(--bo-forest);
    display: inline-grid;
    place-items: center;
    box-shadow: none;
}
.footer-premium .social-links a:hover {
    background: var(--bo-forest);
    border-color: var(--bo-forest);
    color: var(--bo-ivory);
}
.google-rating-card {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--bo-line);
    border-radius: 4px;
    padding: 0.7rem 1rem;
    text-decoration: none;
    color: var(--bo-ink);
    max-width: 100%;
}
.google-rating-card > i { font-size: 1.25rem; color: #4285f4; }
.google-rating-card strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
}
.google-rating-card small {
    display: block;
    color: var(--bo-yellow);
    font-size: 0.72rem;
}
.google-rating-card:hover { color: var(--bo-ink); border-color: var(--bo-olive); }
.footer-premium .footer-bottom {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: 1.25rem 0;
    border-top: 1px solid var(--bo-line);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--bo-muted);
    font-size: 0.83rem;
}
.footer-premium .footer-logo { max-height: 68px; width: auto; }

/* Floating contact buttons */
.floating-social { display: none !important; }
.float-btn {
    border-radius: 50% !important;
    box-shadow: 0 14px 30px rgba(22, 41, 29, 0.18);
}

/* ---------------------------------------------------------
   Inner pages (kept consistent with new identity)
   --------------------------------------------------------- */
.page-hero {
    border-radius: 0;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(11, 26, 16, 0.78), rgba(11, 26, 16, 0.66)),
        var(--page-hero-image) center/cover;
    padding: calc(var(--header-offset) + 2.5rem) 0 3.5rem;
    min-height: 240px;
}
.page-hero::before,
.page-hero::after { display: none !important; }
.page-hero > .container { text-align: center; }
.page-hero h1 { color: var(--bo-ivory); margin: 0 auto; }
.page-hero p { color: rgba(251, 249, 244, 0.85); font-family: var(--font-body); }
.page-hero-breadcrumb { justify-content: center; }

.product-card {
    border-radius: 6px;
    border: 1px solid var(--bo-line);
    box-shadow: none;
    background: #fff;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(22, 41, 29, 0.08);
}
.product-card-ig .ig-post-header,
.product-card-ig .ig-post-actions,
.product-card-ig .ig-post-likes,
.product-card-ig .ig-caption-handle,
.product-card-ig .ig-heart-burst { display: none !important; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .bo-arch-row { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 2.5rem; }
    .bo-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    :root { --header-offset: 112px; }
    .brand-lockup.has-logo .brand-lockup-img { height: 48px; }
    .site-nav-links { margin: 0.75rem 0; }
    .site-navbar .nav-link::after { display: none; }
    .nav-tools { margin: 0.25rem 0 0.75rem; }
    .top-announce-inner { justify-content: center; text-align: center; }
    .top-announce-links { justify-content: center; }

    .bo-hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .bo-hero-copy {
        padding: clamp(2.5rem, 7vw, 3.5rem) 1.25rem 2.5rem;
        padding-left: max(1.25rem, calc((100vw - 720px) / 2));
        padding-right: max(1.25rem, calc((100vw - 720px) / 2));
    }
    .bo-hero-media { min-height: 380px; height: 58vh; }
    .bo-hero-media img.bo-hero-photo { border-bottom-left-radius: 0; }

    .bo-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .bo-trust-item:nth-child(odd) { border-left: 0; }
    .bo-trust-item:nth-child(n+3) { border-top: 1px solid var(--bo-line); }

    .bo-story-grid { grid-template-columns: 1fr; }
    .bo-story-art { max-width: 620px; }
}

@media (hover: none) {
    .bo-arch-cta { opacity: 1; transform: none; }
}

@media (max-width: 767.98px) {
    body.site-body { line-height: 1.7; }
    .bo-arch-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bo-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
    .bo-plant:nth-child(even) { margin-top: 0; }
    .bo-plant .bo-plant-media { aspect-ratio: 3 / 4 !important; }
    .bo-story-main { border-radius: 180px 180px 8px 8px; }
    .bo-story-stack { padding-top: 1.5rem; }
    .bo-promo-grid { justify-content: center; text-align: center; }
    .bo-promo-copy { max-width: none; }
    .bo-promo-badge { margin: 0 auto; }
}

@media (max-width: 575.98px) {
    .bo-hero-card { right: 1rem; left: 1rem; max-width: none; }
    .bo-trust-grid { grid-template-columns: 1fr; }
    .bo-trust-item { border-left: 0; border-top: 1px solid var(--bo-line); }
    .bo-trust-item:first-child { border-top: 0; }
    .bo-arch-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 0.85rem; }
}
