:root {
    --bg: #f6f4ee;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --text: #183126;
    --muted: #5f7468;
    --line: rgba(24, 49, 38, 0.09);
    --primary: #2f7d57;
    --primary-dark: #1d5b3c;
    --accent: #d8e86f;
    --accent-soft: #edf5b7;
    --shadow: 0 20px 60px rgba(28, 57, 42, 0.12);
    --shadow-soft: 0 14px 34px rgba(28, 57, 42, 0.08);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(216, 232, 111, 0.26), transparent 28%),
        radial-gradient(circle at right 20%, rgba(47, 125, 87, 0.10), transparent 24%),
        linear-gradient(180deg, #fcfbf7 0%, #f3efe4 100%);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(246, 244, 238, 0.78);
    border-bottom: 1px solid rgba(24, 49, 38, 0.06);
    transition:
        background 250ms ease,
        box-shadow 250ms ease,
        border-color 250ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 34px rgba(24, 49, 38, 0.08);
    border-bottom-color: rgba(24, 49, 38, 0.08);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo-shell {
    background: linear-gradient(135deg, #1f5d3e 0%, #2f7d57 100%);
    border-radius: 18px;
    padding: 14px 18px;
    box-shadow:
        0 14px 28px rgba(47, 125, 87, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand-logo {
    width: 150px;
    height: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav a {
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav a:hover,
.nav a.is-active {
    color: var(--text);
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 700;
    white-space: nowrap;
}

.contact-icon {
    font-size: 1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform 250ms ease,
        box-shadow 250ms ease,
        background 250ms ease,
        border-color 250ms ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(180deg, #3e9568 0%, #2f7d57 100%);
    color: #fff;
    box-shadow: 0 16px 30px rgba(47, 125, 87, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 20px 34px rgba(47, 125, 87, 0.30);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(24, 49, 38, 0.08);
    color: var(--text);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #fff;
}

/* TYPOGRAPHY */
h1 {
    margin: 20px 0 18px;
    font-size: clamp(2.8rem, 6vw, 5.1rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

p {
    margin: 0;
}

.section {
    padding: 52px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head p {
    max-width: 560px;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(24, 49, 38, 0.06);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(24, 49, 38, 0.05);
}

.eyebrow--soft {
    background: rgba(216, 232, 111, 0.16);
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(180deg, #a3d86d, #2f7d57);
    box-shadow: 0 0 0 6px rgba(47, 125, 87, 0.1);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.hero-pill,
.tag-list span,
.list-chip-grid span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(24, 49, 38, 0.08);
    color: var(--text);
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(24, 49, 38, 0.05);
}

/* HERO */
.page-hero {
    padding: 58px 0 24px;
}

.editorial-hero {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 28px;
    align-items: stretch;
}

.editorial-copy {
    padding: 30px 10px 30px 0;
}

.editorial-copy p,
.plant-hero-copy p,
.contact-inner p,
.split-highlight-copy p,
.sidebar-card,
.mini-plant-copy p,
.section-head p {
    color: var(--muted);
}

.editorial-visual {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    min-height: 560px;
}

.editorial-main-card,
.editorial-side-card,
.photo-ribbon-card,
.split-highlight-media,
.plant-hero-media,
.plant-section-media,
.mini-plant-card,
.catalog-editorial,
.quick-link-card,
.plant-section-card,
.plant-list-block,
.sidebar-card,
.sidebar-card a {
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.editorial-main-card,
.editorial-side-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.editorial-main-card img,
.editorial-side-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-side-stack {
    display: grid;
    gap: 18px;
}

.editorial-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent, rgba(11, 20, 15, 0.76));
    color: #fff;
}

.editorial-overlay strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.editorial-overlay span {
    color: rgba(255, 255, 255, 0.86);
}

/* CATALOG */
.catalog-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 290px;
    gap: 18px;
}

.catalog-editorial {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.catalog-editorial:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(28, 57, 42, 0.16);
}

.catalog-editorial--large {
    grid-column: span 2;
    grid-row: span 2;
}

.catalog-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-editorial-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    background: linear-gradient(180deg, transparent, rgba(10, 19, 14, 0.8));
    color: #fff;
}

.catalog-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.catalog-editorial-overlay strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.catalog-editorial-overlay small {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.94rem;
    line-height: 1.45;
}

/* QUICK LINKS */
.quick-links-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: start;
}

.quick-links-copy {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 18px 44px rgba(24, 49, 38, 0.07);
}

.quick-links-copy h2 {
    margin: 18px 0 12px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quick-link-card {
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 16px 34px rgba(24, 49, 38, 0.06);
}

.quick-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(24, 49, 38, 0.10);
}

.quick-link-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.quick-link-card span {
    color: var(--muted);
    font-size: 0.95rem;
}

/* PHOTO RIBBON */
.photo-ribbon {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 18px;
}

.photo-ribbon-card {
    min-height: 300px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.photo-ribbon-card:hover {
    transform: translateY(-4px);
}

.photo-ribbon-card--wide {
    min-height: 340px;
}

.photo-ribbon-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SPLIT HIGHLIGHT */
.split-highlight {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 22px;
    align-items: stretch;
}

.split-highlight--alt {
    grid-template-columns: 0.98fr 1.02fr;
}

.split-highlight-copy {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 18px 44px rgba(24, 49, 38, 0.07);
}

.split-highlight-copy h2 {
    margin: 18px 0 12px;
}

.split-highlight-media {
    min-height: 440px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-highlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.feature-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 600;
}

.feature-list div::before {
    content: "✓";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(47, 125, 87, 0.11);
    color: var(--primary-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* CONTACT BANNER */
.contact-banner {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    padding: 40px;
    background:
        radial-gradient(circle at left top, rgba(216, 232, 111, 0.65), transparent 25%),
        linear-gradient(135deg, #1f5d3e 0%, #2f7d57 55%, #4ba574 100%);
    color: #fff;
    box-shadow: 0 26px 60px rgba(30, 72, 49, 0.22);
}

.contact-banner::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    right: -120px;
    top: -140px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-inner h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 12ch;
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.contact-side {
    min-width: 290px;
    display: grid;
    gap: 14px;
}

.contact-hours {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.contact-hours strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.hours-list {
    display: grid;
    gap: 10px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.hours-row span:last-child {
    color: #fff;
    font-weight: 700;
}

/* FOOTER */
.footer {
    padding: 30px 0 50px;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(24, 49, 38, 0.08);
    padding-top: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-logo-shell {
    display: inline-flex;
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f5d3e 0%, #2f7d57 100%);
}

.footer-logo {
    width: 130px;
    height: auto;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.breadcrumb strong {
    color: var(--text);
}

/* PLANT HERO */
.plant-hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.plant-hero-copy p {
    max-width: 640px;
    font-size: 1.04rem;
}

.plant-hero-media {
    min-height: 400px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.plant-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLANT PAGE */
.plant-page-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: start;
}

.plant-sidebar {
    position: sticky;
    top: 76px;
}

.sidebar-card {
    display: grid;
    gap: 12px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 16px 34px rgba(24, 49, 38, 0.06);
}

.sidebar-card strong {
    color: var(--text);
}

.sidebar-card a {
    color: var(--muted);
    font-weight: 600;
}

.sidebar-card a:hover {
    color: var(--text);
    transform: translateX(4px);
}

.plant-content {
    display: grid;
    gap: 18px;
}

.plant-section-card,
.plant-list-block {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 16px 34px rgba(24, 49, 38, 0.06);
}

.plant-section-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 18px;
    align-items: stretch;
}

.plant-section-grid--reverse {
    grid-template-columns: 1.08fr 0.92fr;
}

.plant-section-copy p {
    margin-top: 12px;
    color: var(--muted);
}

.plant-section-copy .tag-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.plant-section-media {
    min-height: 280px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.plant-section-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plant-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mini-plant-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(24, 49, 38, 0.07);
    box-shadow: 0 16px 34px rgba(24, 49, 38, 0.06);
}

.mini-plant-card:hover,
.plant-section-card:hover,
.plant-list-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(24, 49, 38, 0.10);
}

.mini-plant-card img {
    width: 100%;
    height: 140px;
    border-radius: 18px;
    object-fit: cover;
}

.mini-plant-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-plant-copy h3 {
    margin-bottom: 8px;
}

.plant-list-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 18px;
}

.plant-list-header p {
    max-width: 420px;
    color: var(--muted);
}

.list-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
/* ===== RESPONSIVE FIX ===== */

@media (max-width: 1180px) {

    .editorial-hero,
    .quick-links-panel,
    .split-highlight,
    .plant-hero,
    .plant-page-layout,
    .plant-section-grid,
    .plant-section-grid--reverse {
        grid-template-columns: 1fr;
    }

    .plant-hero-media {
        display: none
    }

    .editorial-copy,
    .plant-hero-copy {
        padding-right: 0;
    }

    .editorial-visual {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .editorial-main-card {
        min-height: 420px;
    }

    .editorial-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;
    }

    .editorial-side-card {
        min-height: 220px;
    }

    .editorial-visual {
        display: none
    }

    .catalog-editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 260px;
    }

    .catalog-editorial--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .split-highlight-media {
        display: none
    }

    .contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-side {
        width: 100%;
        min-width: 100%;
    }

    .plant-sidebar {
        position: static;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 760px) {
    .page-hero {
        padding: 34px 0 18px;
    }

    .plant-hero-media {
        display: none
    }

    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    h1 {
        font-size: clamp(2.2rem, 10vw, 3.4rem);
        line-height: 1;
    }

    h2 {
        font-size: clamp(1.7rem, 7vw, 2.3rem);
    }

    .hero-actions,
    .contact-actions {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-pills {
        display: none
    }


    .list-chip-grid,
    .contact-meta {
        gap: 8px;
    }

    .catalog-editorial-grid,
    .quick-links-grid,
    .photo-ribbon,
    .plant-duo-grid,

    .mini-plant-card,
    .editorial-side-stack {
        grid-template-columns: 1fr;
    }

    .editorial-visual {
        display: none
    }

    .catalog-editorial-grid {
        grid-auto-rows: 240px;
    }

    .catalog-editorial--large {
        grid-column: span 1;
    }

    .editorial-main-card,
    .editorial-side-card,
    .split-highlight-media,
    .plant-hero-media,
    .plant-section-media {
        min-height: 260px;
    }

    .section,
    .contact-banner {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .section-head,
    .footer-inner,
    .plant-list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .split-highlight-media {
        display: none
    }

    .quick-links-copy,
    .split-highlight-copy,
    .plant-section-card,
    .plant-list-block,
    .contact-banner {
        padding: 22px;
    }

    .footer-left {
        align-items: flex-start;
        flex-direction: column;
    }

    .header-contact {
        display: none;
    }

    .brand-logo {
        width: 126px;
    }

    .footer-logo {
        width: 110px;
    }
}

@media (max-width: 520px) {
    .page-hero {
        padding-top: 24px;
    }

    .eyebrow {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .plant-hero-media {
        display: none
    }

    .hero-pill,
    .tag-list span,
    .list-chip-grid span,
    .contact-pill {
        min-height: 34px;
        padding: 0 12px;
        font-size: 0.88rem;
    }

    .catalog-editorial-grid {
        gap: 14px;
        grid-auto-rows: 220px;
    }

    .catalog-editorial,
    .editorial-main-card,
    .editorial-side-card,
    .quick-link-card,
    .split-highlight-copy,
    .quick-links-copy,
    .plant-section-card,
    .plant-list-block,
    .contact-banner {
        border-radius: 22px;
    }

    .catalog-editorial-overlay,
    .editorial-overlay {
        padding: 16px;
    }

    .catalog-editorial-overlay strong,
    .editorial-overlay strong {
        font-size: 1.1rem;
    }

    .split-highlight-media {
        display: none
    }

    .mini-plant-card {
        padding: 14px;
        gap: 12px;
    }

    .mini-plant-card img {
        height: 180px;
    }

    .contact-inner h2 {
        max-width: 100%;
    }
}