/* ============================================================
   BOTANICAL NURSERY — DESIGN SYSTEM
   Light green, premium, world-class
   ============================================================ */

:root {
    /* Greens */
    --g-50:  #f3faf3;
    --g-100: #e6f4e6;
    --g-200: #cde9cd;
    --g-300: #a8d6a8;
    --g-400: #7fbd7f;
    --g-500: #5aa55a;
    --g-600: #3f8a3f;
    --g-700: #2f6b2f;
    --g-800: #234f23;
    --g-900: #163316;

    --cream: #fbfaf4;
    --sand:  #f4efe1;
    --ink:   #1b2a1b;
    --ink-2: #3a4a3a;
    --mute:  #6a7a6a;
    --line:  #d8e5d8;
    --paper: #ffffff;

    --amber: #d99a3b;
    --rose:  #c9587a;
    --sky:   #6aa6c4;

    --shadow-sm: 0 1px 2px rgba(20,40,20,.04), 0 1px 3px rgba(20,40,20,.06);
    --shadow-md: 0 6px 24px -8px rgba(20,40,20,.12), 0 2px 6px rgba(20,40,20,.05);
    --shadow-lg: 0 30px 60px -20px rgba(20,40,20,.18), 0 10px 20px -10px rgba(20,40,20,.10);
    --shadow-glow: 0 0 0 1px rgba(58,138,58,.10), 0 8px 30px -8px rgba(58,138,58,.20);

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --t-fast: .18s ease;
    --t:      .28s ease;
    --t-slow: .55s cubic-bezier(.2,.7,.2,1);

    --font-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
    --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================================ RESET */
*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--g-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--g-700); }
h1,h2,h3,h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.01em; line-height: 1.15; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 400; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--ink-2); }

/* ============================================================ LAYOUT */
.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; }
.row { display: flex; gap: 16px; flex-wrap: wrap; }
.between { display:flex; justify-content: space-between; align-items: center; gap:16px; }

/* ============================================================ LEAF BG */
.leaf-bg {
    position: relative;
    background:
      radial-gradient(1200px 600px at 80% -10%, var(--g-100), transparent 60%),
      radial-gradient(900px 500px at -10% 30%, var(--g-100), transparent 60%),
      linear-gradient(180deg, var(--g-50) 0%, var(--cream) 100%);
}
.leaf-bg::before, .leaf-bg::after {
    content: ""; position: absolute; pointer-events: none; opacity: .35;
    background-repeat: no-repeat; background-size: contain;
}
.leaf-bg::before {
    top: 40px; right: -40px; width: 280px; height: 280px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 10c40 30 70 70 60 120s-70 60-110 30S10 90 40 50 60-20 100 10z' fill='%23a8d6a8' opacity='.5'/><path d='M100 10v180' stroke='%232f6b2f' stroke-width='1.5' fill='none' opacity='.5'/></svg>");
    transform: rotate(20deg);
}
.leaf-bg::after {
    bottom: -60px; left: -40px; width: 320px; height: 320px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M40 100c20-50 70-80 120-60s60 80 30 120-100 40-130 0S20 150 40 100z' fill='%23cde9cd' opacity='.6'/></svg>");
    transform: rotate(-15deg);
}

/* ============================================================ TOP ANNOUNCEMENT BAR */
.announce {
    background: var(--g-800); color: var(--g-50);
    text-align: center; font-size: .85rem; padding: 8px 16px;
    letter-spacing: .03em;
}
.announce a { color: var(--g-200); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ NAV */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251, 250, 244, .85);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-inner { display:flex; align-items:center; justify-content: space-between; height: 72px; }
.brand { display:flex; align-items:center; gap:10px; font-family: var(--font-serif); font-size: 1.4rem; color: var(--g-800); }
.brand .mark { width: 36px; height: 36px; display:grid; place-items:center; background: var(--g-700); color: var(--g-50); border-radius: 50%; }
.brand strong { font-weight: 500; }
.brand em { color: var(--g-600); font-style: italic; font-weight: 400; }

.nav-links { display:flex; align-items:center; gap: 4px; }
.nav-links a {
    padding: 8px 14px; border-radius: 999px; font-size: .94rem; color: var(--ink-2);
    transition: all var(--t-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--g-800); background: var(--g-100); }
.nav-links .accent { color: var(--g-700); font-weight: 500; }

.nav-cta { display:flex; align-items:center; gap:10px; }
.cart-pill { display:flex; align-items:center; gap:6px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: .9rem; color: var(--ink-2); background: var(--paper); }
.cart-pill .count { background: var(--g-700); color: var(--g-50); border-radius: 999px; padding: 0 8px; font-size: .75rem; min-width: 20px; text-align: center; }

.account-pill { display:flex; align-items:center; gap:8px; padding: 8px 16px; border-radius: 999px; font-size: .9rem; color: var(--g-50); background: var(--g-800); transition: background var(--t-fast); }
.account-pill:hover { background: var(--g-700); color: var(--g-50); }

.nav-divider { display:block; width: 80%; height: 1px; background: var(--line); margin: 8px auto; }
.nav-signin, .nav-signout { font-weight: 500; color: var(--g-800) !important; background: var(--g-100) !important; }
.nav-signout { background: none !important; border: 0; padding: 8px 14px; border-radius: 999px; font-size: .94rem; color: var(--mute) !important; cursor: pointer; width: 100%; text-align: left; }

.nav-toggle { display:none; background: none; border: 0; padding: 6px; cursor: pointer; color: var(--ink); }

@media (max-width: 920px) {
    .nav-links, .nav-cta .cart-pill { display: none; }
    .nav-toggle { display: inline-grid; place-items: center; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: stretch;
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--paper); padding: 12px; gap: 4px; border-bottom: 1px solid var(--line);
    }
    .nav-links.open a { padding: 12px 16px; }
}

/* ============================================================ BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 26px; border-radius: 999px; font: 500 .95rem/1 var(--font-sans);
    cursor: pointer; border: 0; transition: all var(--t); text-align: center; line-height: 1.2;
}
.btn-primary { background: var(--g-700); color: var(--g-50); box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--g-800); color: var(--g-50); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--g-800); border: 1.5px solid var(--g-300); }
.btn-ghost:hover { background: var(--g-100); border-color: var(--g-500); }
.btn-cream { background: var(--cream); color: var(--g-800); border: 1.5px solid var(--g-200); }
.btn-cream:hover { background: var(--paper); }
.btn-light { background: rgba(255,255,255,.92); color: var(--g-800); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.5); }
.btn-light:hover { background: var(--paper); }

/* Buttons inside green hero sections — invert colors for visibility */
.about-hero .btn-primary,
.inner-hero .btn-primary,
.page-head .btn-primary { background: #fff; color: var(--g-800); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.about-hero .btn-primary:hover,
.inner-hero .btn-primary:hover,
.page-head .btn-primary:hover { background: var(--g-50); color: var(--g-900); transform: translateY(-1px); }
.about-hero .btn-ghost,
.inner-hero .btn-ghost,
.page-head .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.about-hero .btn-ghost:hover,
.inner-hero .btn-ghost:hover,
.page-head .btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }
.about-hero .btn-light,
.inner-hero .btn-light,
.page-head .btn-light { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.3); backdrop-filter: none; }
.about-hero .btn-light:hover,
.inner-hero .btn-light:hover,
.page-head .btn-light:hover { background: rgba(255,255,255,.28); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.hidden { display: none !important; }

/* ============================================================ BREADCRUMBS */
.crumbs { padding: 0 0 14px; font-size: .85rem; color: var(--mute); display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.crumbs a { color: var(--g-700); text-decoration: none; transition: color .15s ease; }
.crumbs a:hover { color: var(--g-900); text-decoration: underline; text-underline-offset: 3px; }
.crumbs span { color: var(--mute); margin: 0 6px; opacity: .6; }
.crumbs .here { color: var(--ink-2); font-weight: 500; }

/* Green breadcrumb strip — applied to the .wrap that holds the crumbs
   on plant detail and policy pages (which don't have a green hero).
   Override the .wrap max-width so the green bar spans full viewport. */
.wrap.crumbs-wrap {
    background: linear-gradient(135deg, var(--g-700) 0%, var(--g-800) 60%, var(--g-900) 100%);
    color: var(--g-100);
    padding: 14px 0;
    max-width: none;
    position: relative;
    overflow: hidden;
}
.crumbs-wrap::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 10c40 30 70 70 60 120s-70 60-110 30S10 90 40 50 60-20 100 10z' fill='%23ffffff' opacity='.06'/></svg>") no-repeat center / contain;
    pointer-events: none;
}
.crumbs-wrap > nav { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 24px 0 36px; width: 100%; }
.crumbs-wrap .crumbs { color: var(--g-100); padding-bottom: 0; }
.crumbs-wrap .crumbs a { color: var(--g-50); }
.crumbs-wrap .crumbs a:hover { color: #fff; }
.crumbs-wrap .crumbs span { color: var(--g-300); }
.crumbs-wrap .crumbs .here { color: #fff; }

/* When breadcrumbs sit INSIDE a green hero/page-head, override colors */
.page-head .crumbs,
.about-hero .crumbs,
.inner-hero .crumbs { color: var(--g-100); padding-bottom: 36px; }
.page-head .crumbs a,
.about-hero .crumbs a,
.inner-hero .crumbs a { color: var(--g-50); }
.page-head .crumbs a:hover,
.about-hero .crumbs a:hover,
.inner-hero .crumbs a:hover { color: #fff; }
.page-head .crumbs span,
.about-hero .crumbs span,
.inner-hero .crumbs span { color: var(--g-300); }
.page-head .crumbs .here,
.about-hero .crumbs .here,
.inner-hero .crumbs .here { color: #fff; }

/* ============================================================ HERO GREEN (page first section) */
/* Applied to .page-head (the title section used by most index pages via
   the partial) and the .about-hero / .inner-hero custom hero sections
   on the about/why_us/amc_plan/show pages.  Excluded: .policy-hero
   (policy pages), the home page (no .page-head), and anything with
   .no-hero-green. */
.page-head,
.about-hero,
.inner-hero {
    background: linear-gradient(135deg, var(--g-700) 0%, var(--g-800) 60%, var(--g-900) 100%);
    color: var(--g-50);
    padding: 64px 0 56px;
    position: relative;
    overflow: hidden;
}
.page-head::before,
.about-hero::before,
.inner-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 10c40 30 70 70 60 120s-70 60-110 30S10 90 40 50 60-20 100 10z' fill='%23ffffff' opacity='.07'/></svg>") no-repeat center / contain;
    pointer-events: none;
}
.page-head::after,
.about-hero::after,
.inner-hero::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -60px;
    width: 320px;
    height: 320px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M40 100c20-50 70-80 120-60s60 80 30 120-100 40-130 0S20 150 40 100z' fill='%23ffffff' opacity='.05'/></svg>") no-repeat center / contain;
    pointer-events: none;
}
.page-head > .wrap,
.about-hero > .wrap,
.inner-hero > .wrap { position: relative; z-index: 1; }
.page-head h1,
.about-hero h1,
.inner-hero h1 { color: #fff; }
.page-head .lede,
.about-hero .lede,
.inner-hero .lede { color: var(--g-100); }
.page-head .eyebrow,
.about-hero .eyebrow,
.inner-hero .eyebrow { color: var(--g-200); }

/* Crumbs that sit just above a green hero should match */
.page-head + section .crumbs a,
.about-hero .crumbs a,
.inner-hero .crumbs a { color: var(--g-50); }
.page-head + section .crumbs span,
.about-hero .crumbs span,
.inner-hero .crumbs span { color: var(--g-300); }
.page-head + section .crumbs .here,
.about-hero .crumbs .here,
.inner-hero .crumbs .here { color: #fff; }

/* ============================================================ PAGE HEADER */
.page-head { padding: 64px 0 56px; }
.page-head h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 8px; color: #fff; }
.page-head .lede { font-size: 1.05rem; color: var(--g-100); max-width: 640px; }
.page-head .eyebrow { display:inline-block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-200); margin-bottom: 10px; font-weight: 500; }

/* ============================================================ CARDS / TILES */
.card { background: var(--paper); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--t); border: 1px solid var(--line); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--g-100); position: relative; }
.card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.card:hover .img img { transform: scale(1.06); }
.card .body { padding: 22px 22px 24px; }
.card .body h3 { margin-bottom: 6px; }
.card .body p { color: var(--ink-2); font-size: .92rem; margin: 0; }
.card .tag { display:inline-block; padding: 4px 10px; background: var(--g-100); color: var(--g-800); border-radius: 999px; font-size: .72rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

.tile {
    background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 28px; transition: all var(--t);
}
.tile:hover { border-color: var(--g-300); box-shadow: var(--shadow-md); }
.tile .icon { width: 48px; height: 48px; border-radius: 14px; background: var(--g-100); display:grid; place-items: center; color: var(--g-700); margin-bottom: 16px; }

/* ============================================================ GRIDS */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================ SECTION */
section { padding: 80px 0; position: relative; }
section.tight { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { display:inline-block; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-700); margin-bottom: 12px; font-weight: 500; }
.section-head h2 { margin-bottom: 10px; }
.section-head p { color: var(--ink-2); max-width: 620px; margin: 0 auto; }

/* ============================================================ HERO (for inner pages) */
.inner-hero {
    padding: 64px 0 56px;
    background:
      radial-gradient(800px 400px at 100% 0%, rgba(255,255,255,.08), transparent 60%),
      radial-gradient(600px 300px at 0% 100%, rgba(255,255,255,.06), transparent 60%),
      linear-gradient(135deg, var(--g-700) 0%, var(--g-800) 60%, var(--g-900) 100%);
    color: var(--g-50);
    position: relative;
    overflow: hidden;
}
.inner-hero h1 { color: #fff; }
.inner-hero .lede { color: var(--g-100); }
.inner-hero .eyebrow { color: var(--g-200); }
.inner-hero .crumbs a { color: var(--g-50); }
.inner-hero .crumbs span { color: var(--g-300); }
.inner-hero .crumbs .here { color: #fff; }
.inner-hero > .wrap { position: relative; z-index: 1; }

/* ============================================================ STATS */
.stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .n { font-family: var(--font-serif); font-size: 2.4rem; color: var(--g-800); display:block; }
.stat .l { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================ FORMS */
.field { margin-bottom: 18px; }
.field label { display:block; font-size: .85rem; font-weight: 500; color: var(--ink-2); margin-bottom: 6px; }
.field .req { color: var(--rose); }
.field input, .field textarea, .field select {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
    font: 400 .95rem/1.4 var(--font-sans); background: var(--paper); color: var(--ink); transition: border-color var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--g-500); box-shadow: 0 0 0 3px var(--g-100); }
.field .help { font-size: .8rem; color: var(--mute); margin-top: 4px; }
.field .err { font-size: .8rem; color: var(--rose); margin-top: 4px; }

.checkbox { display:flex; align-items:center; gap:8px; font-size: .9rem; color: var(--ink-2); }
.checkbox input { width: 16px; height: 16px; accent-color: var(--g-700); }

/* ============================================================ TOGGLE SWITCH (admin settings) */
.toggle-row { display:flex; align-items:center; gap: 18px; padding: 16px 18px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--g-50); transition: border-color var(--t-fast), background var(--t-fast); }
.toggle-row:hover { border-color: var(--g-300); background: var(--paper); }
.toggle-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.toggle-text strong { color: var(--ink); font-size: .98rem; font-weight: 500; }
.toggle-text small { font-size: .82rem; }
.switch { position: relative; display: inline-block; width: 48px; height: 26px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider { position: absolute; cursor: pointer; inset: 0; background: var(--line); border-radius: 999px; transition: background var(--t-fast); }
.switch-slider::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform var(--t-fast); box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.switch input:checked + .switch-slider { background: var(--g-700); }
.switch input:checked + .switch-slider::before { transform: translateX(22px); }
.toggle-status { font-size: .8rem; font-weight: 600; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px; min-width: 78px; text-align: center; }
.toggle-status.on { background: var(--g-100); color: var(--g-800); border: 1px solid var(--g-300); }
.toggle-status.off { background: #fdecec; color: #8a2a2a; border: 1px solid #f4cccc; }

.alert { padding: 14px 18px; border-radius: 12px; font-size: .9rem; margin-bottom: 16px; }
.alert-success { background: var(--g-100); color: var(--g-800); border: 1px solid var(--g-200); }
.alert-error   { background: #fdecec; color: #8a2a2a; border: 1px solid #f4cccc; }

/* ============================================================ RICH TEXT EDITOR (admin, custom HTML-aware) */
/* ============================================================== RTE */
.rte { position: relative; margin-bottom: 14px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); overflow: hidden; box-shadow: 0 1px 2px rgba(20,40,30,.04); }
.rte:focus-within { border-color: var(--g-500); box-shadow: 0 0 0 3px var(--g-100), 0 1px 2px rgba(20,40,30,.04); }

/* Toolbar — sticky, grouped, with subtle inner separators */
.rte-toolbar { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 8px 10px; background: linear-gradient(180deg, #f8faf6, #f1f5ef); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 5; backdrop-filter: blur(6px); }
.rte-group { display: inline-flex; align-items: center; gap: 1px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 2px; box-shadow: 0 1px 0 rgba(20,40,30,.02); }
.rte-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-width: 30px; height: 28px; padding: 0 8px; background: transparent; color: var(--ink-2); border: 1px solid transparent; border-radius: 6px; cursor: pointer; font: 500 .85rem/1 var(--font-sans); transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease; white-space: nowrap; }
.rte-btn:hover { background: var(--g-100); color: var(--g-800); }
.rte-btn:active { background: var(--g-200); }
.rte-btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--g-300); }
.rte-btn strong, .rte-btn em, .rte-btn u, .rte-btn s { font-size: .95rem; }
.rte-btn.rte-btn-active { background: var(--g-700); color: #fff; }
.rte-btn svg { display: block; }
.rte-sep { display: inline-block; width: 1px; height: 22px; background: var(--line); margin: 0 2px; opacity: .8; }
.rte-spacer { flex: 1 1 auto; }
.rte-select { height: 32px; padding: 0 8px; background: var(--paper); color: var(--ink-2); border: 1px solid var(--line); border-radius: 6px; font: 500 .82rem var(--font-sans); cursor: pointer; }
.rte-select:hover { border-color: var(--g-300); }

/* Dropdown (custom, not native) */
.rte-dropdown { position: relative; display: inline-flex; }
.rte-dd-trigger { padding: 0 6px 0 8px; gap: 5px; min-width: 0; }
.rte-dd-label { font-size: .82rem; max-width: 90px; overflow: hidden; text-overflow: ellipsis; }
.rte-dd-caret { opacity: .65; transition: transform .2s ease; }
.rte-dropdown.rte-dd-open .rte-dd-caret { transform: rotate(180deg); }
.rte-dd-menu { position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; max-width: 320px; max-height: 340px; overflow-y: auto; padding: 4px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 10px 30px rgba(20,40,30,.12), 0 2px 6px rgba(20,40,30,.06); z-index: 30; animation: rte-dd-in .14s ease-out; }
@keyframes rte-dd-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.rte-dd-item { display: flex; align-items: center; width: 100%; padding: 8px 10px; background: transparent; border: 0; border-radius: 6px; text-align: left; color: var(--ink-2); cursor: pointer; font: 500 .88rem var(--font-sans); transition: background .12s ease; }
.rte-dd-item:hover { background: var(--g-100); color: var(--g-800); }
.rte-dd-item:focus-visible { outline: none; background: var(--g-100); }
.rte-dd-item .rte-dd-style { display: block; width: 100%; }
.rte-editor { min-height: 320px; max-height: 60vh; padding: 16px 20px; overflow-y: auto; font: 400 1rem/1.7 var(--font-sans); color: var(--ink); outline: none; }
.rte-editor:focus { outline: none; }
.rte-editor h1, .rte-editor h2, .rte-editor h3, .rte-editor h4 { margin: 1.2em 0 .5em; font-family: var(--font-serif); }
.rte-editor h1 { font-size: 1.8rem; }
.rte-editor h2 { font-size: 1.5rem; }
.rte-editor h3 { font-size: 1.25rem; }
.rte-editor h4 { font-size: 1.1rem; }
.rte-editor p { margin: 0 0 1em; }
.rte-editor ul, .rte-editor ol { padding-left: 1.4em; margin: 0 0 1em; }
.rte-editor li { margin-bottom: .3em; }
.rte-editor blockquote { border-left: 3px solid var(--g-500); padding: 6px 16px; color: var(--ink-2); font-style: italic; margin: 1em 0; background: var(--g-50); border-radius: 0 8px 8px 0; }
.rte-editor pre { background: #1f2a23; color: #e8efe9; padding: 14px 16px; border-radius: 8px; overflow-x: auto; font: 400 .88rem/1.55 ui-monospace, "SF Mono", Consolas, monospace; }
.rte-editor code { background: var(--g-100); color: var(--g-900); padding: 1px 6px; border-radius: 4px; font: 400 .88rem ui-monospace, "SF Mono", Consolas, monospace; }
.rte-editor pre code { background: transparent; color: inherit; padding: 0; }
.rte-editor a { color: var(--g-700); text-decoration: underline; text-underline-offset: 3px; }
.rte-editor img { max-width: 100%; height: auto; border-radius: 8px; margin: 1em 0; display: block; }
.rte-editor hr { border: 0; border-top: 1px solid var(--line); margin: 1.5em 0; }
.rte-editor table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.rte-editor th, .rte-editor td { padding: 8px 12px; border: 1px solid var(--line); }
.rte-editor th { background: var(--g-50); font-weight: 600; text-align: left; }
.rte-editor[contenteditable="false"] { background: #fafaf8; cursor: not-allowed; }

/* Source-edit mode: show the textarea, hide the contenteditable */
.rte.rte-source-mode .rte-editor { display: none; }
.rte.rte-source-mode textarea.rte-source { display: block !important; min-height: 320px; padding: 14px 16px; background: #fdfcf7; color: var(--ink); font: 400 .88rem/1.55 ui-monospace, "SF Mono", Consolas, monospace; border: 0; outline: none; resize: vertical; }
.rte-source { display: none; }

/* Preview mode */
.rte-preview-head { display: flex; align-items: center; gap: 14px; padding: 10px 16px; background: linear-gradient(180deg, #f8faf6, #fff); border-bottom: 1px solid var(--g-100); position: sticky; top: 0; z-index: 4; }
.rte-preview-tag { display: inline-block; padding: 4px 10px; background: var(--g-700); color: #fff; border-radius: 999px; font: 600 .72rem/1 var(--font-sans); letter-spacing: .08em; text-transform: uppercase; }
.rte-preview-hint { color: var(--mute); font-size: .85rem; flex: 1; }
.rte-preview-close { background: var(--paper); color: var(--g-800); border: 1px solid var(--g-300); }
.rte-preview-close:hover { background: var(--g-100); }
.rte.rte-preview-on .rte-toolbar.rte-toolbar-min { box-shadow: 0 0 0 2px var(--g-300) inset; }
.rte.rte-preview-on .rte-btn[data-toggle="preview"] { background: var(--g-700); color: #fff; border-color: var(--g-800); }
.rte-preview-body { padding: 20px 24px; min-height: 280px; max-height: 60vh; overflow-y: auto; font: 400 1rem/1.7 var(--font-sans); color: var(--ink-2); }
.rte-preview-body h1, .rte-preview-body h2, .rte-preview-body h3, .rte-preview-body h4 { font-family: var(--font-serif); color: var(--ink); }
.rte-preview-body h2 { font-size: 1.5rem; margin: 1.2em 0 .4em; }
.rte-preview-body h3 { font-size: 1.25rem; margin: 1.2em 0 .4em; }
.rte-preview-body p { margin: 0 0 1em; }
.rte-preview-body ul, .rte-preview-body ol { padding-left: 1.4em; margin: 0 0 1em; }
.rte-preview-body li { margin-bottom: .3em; }
.rte-preview-body blockquote { border-left: 3px solid var(--g-500); padding: 6px 16px; font-style: italic; background: var(--g-50); border-radius: 0 8px 8px 0; }
.rte-preview-body img { max-width: 100%; border-radius: 8px; margin: 1em 0; display: block; }
.rte-preview-body table { width: 100%; border-collapse: collapse; margin: 1em 0; }
.rte-preview-body th, .rte-preview-body td { padding: 8px 12px; border: 1px solid var(--line); }
.rte-preview-body th { background: var(--g-50); }
.rte-preview-body a { color: var(--g-700); text-decoration: underline; }
.rte-preview-body pre { background: #1f2a23; color: #e8efe9; padding: 14px 16px; border-radius: 8px; overflow-x: auto; }

/* Fullscreen */
.rte.rte-fullscreen { position: fixed; inset: 0; z-index: 200; border-radius: 0; }
.rte.rte-fullscreen .rte-editor { max-height: calc(100vh - 60px); height: calc(100vh - 60px); }

/* Mobile: collapse groups, hide labels */
@media (max-width: 720px) {
    .rte-toolbar { gap: 4px; padding: 6px 8px; }
    .rte-group { padding: 1px; }
    .rte-btn { min-width: 28px; height: 28px; padding: 0 6px; }
    .rte-dd-label { display: none; }
    .rte-dd-trigger { padding: 0 6px; }
    .rte-dd-caret { display: none; }
    .rte-sep { display: none; }
    .rte-spacer { display: none; }
    .rte-editor { padding: 12px 14px; min-height: 240px; }
    .rte-preview-body { padding: 14px 16px; }
    .rte-dd-menu { min-width: 180px; }
}
.alert-info    { background: #eaf3f8; color: #2a5a72; border: 1px solid #cfe1ec; }

/* ============================================================ AUTH SPLIT */
.auth-shell { min-height: 80vh; display:grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.auth-side { background: var(--g-800); color: var(--g-50); padding: 56px; display:flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.auth-side h2 { color: var(--g-50); font-size: 2.4rem; }
.auth-side p { color: var(--g-200); }
.auth-form { padding: 56px; display:flex; flex-direction: column; justify-content: center; }
.auth-form h1 { font-size: 2rem; margin-bottom: 6px; }
.auth-form p.lede { color: var(--ink-2); margin-bottom: 32px; }
@media (max-width: 800px) { .auth-shell { grid-template-columns: 1fr; } .auth-side { display: none; } .auth-form { padding: 32px 24px; } }

/* ============================================================ BADGE / KBD / MISC */
.badge { display:inline-flex; align-items:center; gap:6px; padding: 4px 10px; background: var(--g-100); color: var(--g-800); border-radius: 999px; font-size: .75rem; font-weight: 500; }
.badge.amber { background: #fbeed1; color: #7a5a16; }
.badge.sky { background: #e1eff7; color: #2a5a72; }
.badge-ok { background: #e8f5ec; color: #1c5d2c; border: 1px solid #b7e6c4; }
.badge-warn { background: #fbeed1; color: #7a5a16; border: 1px solid #f0d99a; }
.badge-bad { background: #fdecec; color: #8a2a2a; border: 1px solid #f4cccc; }

/* ============================================================ PROJECT GALLERY (admin) */
.project-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 12px; margin-bottom: 20px; }
.project-gallery-thumb { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; background: var(--g-100); box-shadow: 0 2px 6px rgba(0,0,0,.06); }
.project-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-gallery-delete { position: absolute !important; top: 6px !important; right: 6px !important; margin: 0 !important; padding: 0 !important; }
.project-gallery-x { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,.7); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; font: 700 18px/1 var(--font-sans); padding: 0; line-height: 1; transition: all .2s ease; box-shadow: 0 2px 4px rgba(0,0,0,.3); }
.project-gallery-x:hover { background: #c92a2a; transform: scale(1.1); }
.project-gallery-empty { font-size: .88rem; margin-bottom: 14px; padding: 18px; border: 1.5px dashed var(--line); border-radius: 12px; background: var(--g-50); text-align: center; color: var(--mute); }
.project-gallery-upload { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--g-100); }
@media (max-width: 500px) { .project-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; } }

/* ============================================================ SUBSCRIPTION STATUS BAR */
.sub-status-text { display:flex; align-items:center; gap:10px; font-size: .95rem; }
.sub-status-actions { display:flex; align-items:center; gap:8px; }
.sub-status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mute); }
.sub-status-bar[data-status="active"] .sub-status-dot { background: #2f9e44; box-shadow: 0 0 0 4px rgba(47,158,68,.18); }
.sub-status-bar[data-status="cancelled"], .sub-status-bar[data-status="expired"] { background: #fff5f5; border-color: #f4cccc; }
.sub-status-bar[data-status="cancelled"] .sub-status-dot, .sub-status-bar[data-status="expired"] .sub-status-dot { background: #c92a2a; box-shadow: 0 0 0 4px rgba(201,42,42,.18); }
.sub-status-bar[data-status="paused"], .sub-status-bar[data-status="pending"] .sub-status-dot { background: #f59f00; box-shadow: 0 0 0 4px rgba(245,159,0,.18); }
@media (max-width: 600px) { .sub-status-bar { flex-direction: column; align-items: stretch; } .sub-status-actions { justify-content: stretch; } .sub-status-actions .btn { flex: 1; } }

.divider { display:flex; align-items: center; gap: 12px; color: var(--mute); font-size: .8rem; margin: 16px 0; }
.divider::before, .divider::after { content:""; flex: 1; height: 1px; background: var(--line); }

/* ============================================================ FOOTER */
footer.site {
    background: var(--g-900); color: var(--g-200); padding: 72px 0 24px; margin-top: 80px; position: relative; overflow: hidden;
}
footer.site::before { content:""; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 10c40 30 70 70 60 120s-70 60-110 30S10 90 40 50 60-20 100 10z' fill='%23a8d6a8' opacity='.06'/></svg>") no-repeat center/contain; }
.foot-brand { font-family: var(--font-serif); font-size: 1.8rem; color: var(--g-50); margin-bottom: 12px; }

/* ============================================================ PILLARS / FEATURE STRIP */
.pillars { display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pillar { padding: 28px 24px; background: var(--paper); border-radius: var(--radius); border: 1px solid var(--line); text-align: center; }
.pillar .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--g-100); color: var(--g-700); display:grid; place-items: center; margin: 0 auto 14px; }
.pillar h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 500; margin-bottom: 6px; }
.pillar p { font-size: .85rem; color: var(--mute); margin: 0; }
@media (max-width: 800px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================ CTA STRIP */
.cta-strip {
    margin: 60px 0; padding: 56px;
    background: linear-gradient(135deg, var(--g-700) 0%, var(--g-800) 100%);
    color: var(--g-50); border-radius: var(--radius-xl);
    display:flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.cta-strip::after { content:""; position: absolute; right: -50px; top: -50px; width: 280px; height: 280px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><path d='M100 10c40 30 70 70 60 120s-70 60-110 30S10 90 40 50 60-20 100 10z' fill='%23ffffff' opacity='.06'/></svg>") no-repeat center/contain; }
.cta-strip h2 { color: var(--g-50); margin-bottom: 6px; }
.cta-strip p { color: var(--g-200); margin: 0; }
.cta-strip .btn-light { background: #fbfaf4 !important; color: var(--g-800) !important; border: 1.5px solid rgba(255,255,255,.4); }
.cta-strip .btn-light:hover { background: #ffffff !important; color: var(--g-900) !important; }
.cta-strip .btn-ghost { color: #fbfaf4; border-color: rgba(255,255,255,.4); }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ============================================================ HOMEPAGE — video + 2 buttons */
.home-shell {
    position: fixed; inset: 0; overflow: hidden; background: #0a160a;
}
.home-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    overflow: hidden;
    background: #061206;
}
.home-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,22,10,.10) 0%, rgba(10,22,10,.55) 100%);
}
.home-content {
    position: absolute; inset: 0;
    display:flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 24px; color: #f3faf3;
}
.home-mark {
    width: 88px; height: 88px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    display:grid; place-items: center;
    color: #f3faf3; margin-bottom: 24px;
    backdrop-filter: blur(8px);
    animation: floatIn 1.2s .2s both;
}
.home-content h1 {
    font-family: var(--font-serif); font-weight: 300; font-style: italic;
    font-size: clamp(2.4rem, 6vw, 5rem);
    color: #fbfaf4; letter-spacing: -.02em; line-height: 1.05;
    margin-bottom: 12px; max-width: 16ch;
    text-shadow: 0 4px 20px rgba(0,0,0,.4);
    animation: floatIn 1.2s .4s both;
}
.home-content .home-sub {
    font-size: 1.1rem; color: #cde9cd; max-width: 540px;
    margin: 0 0 36px; letter-spacing: .02em;
    text-shadow: 0 2px 10px rgba(0,0,0,.4);
    animation: floatIn 1.2s .6s both;
}
.home-buttons {
    display:flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: floatIn 1.2s .8s both;
}
.home-buttons .btn { padding: 18px 36px; font-size: 1.02rem; min-width: 220px; }
.home-credit {
    position: absolute; bottom: 20px; left: 0; right: 0; text-align: center;
    color: rgba(255,255,255,.5); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
    animation: floatIn 1.5s 1.2s both;
}
.home-fallback {
    position: absolute; inset: 0;
    background:
      radial-gradient(800px 400px at 30% 20%, rgba(127,189,127,.20), transparent 60%),
      radial-gradient(700px 400px at 70% 80%, rgba(95,150,95,.20), transparent 60%),
      linear-gradient(160deg, #0f2210 0%, #061206 100%);
}

@keyframes floatIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================ TESTIMONIAL */
.quote-card { background: var(--paper); padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.quote-card .stars { color: #d99a3b; margin-bottom: 10px; font-size: 1.05rem; }
.quote-card .q { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.45; color: var(--ink); font-style: italic; margin-bottom: 16px; }
.quote-card .who { display:flex; align-items: center; gap: 12px; }
.quote-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--g-200); color: var(--g-800); display:grid; place-items: center; font-weight: 500; }
.quote-card .who .nm { font-size: .9rem; color: var(--ink); }
.quote-card .who .ro { font-size: .8rem; color: var(--mute); }

/* ============================================================ PRESS */
.press-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px; align-items: center; }
.press-card { background: var(--paper); padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); text-align: center; }
.press-card .logo { font-family: var(--font-serif); font-size: 1.3rem; color: var(--g-800); margin-bottom: 8px; }
.press-card .by { font-size: .8rem; color: var(--mute); margin-bottom: 12px; }
.press-card a { font-size: .9rem; color: var(--g-700); font-weight: 500; }
@media (max-width: 800px) { .press-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================ GALLERY */
.gallery { columns: 3 280px; column-gap: 16px; }
.gallery .gi { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; }
.gallery .gi img { width: 100%; display: block; transition: transform var(--t-slow); }
.gallery .gi:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .gallery { columns: 2 160px; } }

/* ============================================================ PROJECT DETAIL LAYOUT */
.project-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.project-layout .prose { max-width: none; }
.project-layout .prose .lead { font-size: 1.15rem; color: var(--ink); line-height: 1.7; font-family: var(--font-sans); margin: 0 0 1.5em; font-weight: 400; }
.project-facts { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; position: sticky; top: 88px; }
.project-facts h3 { font-family: var(--font-serif); font-size: 1.05rem; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); letter-spacing: .02em; }
.project-facts dl { display: grid; grid-template-columns: 1fr 2fr; gap: 12px 16px; margin: 0 0 18px; }
.project-facts dt { color: var(--mute); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; padding-top: 3px; }
.project-facts dd { color: var(--ink); font-size: .95rem; margin: 0; }
.fact-badge { display: inline-block; padding: 6px 12px; background: var(--g-100); color: var(--g-800); border: 1px solid var(--g-300); border-radius: 999px; font-size: .78rem; font-weight: 500; }
@media (max-width: 900px) { .project-layout { grid-template-columns: 1fr; } .project-facts { position: static; } }

/* ============================================================ PLANT DETAIL LAYOUT */
.plant-layout { display: grid; grid-template-columns: 1.1fr 1.4fr 1fr; gap: 32px; align-items: start; }
.plant-layout .plant-hero img { display: block; }
.plant-layout .plant-care-card { background: var(--g-50); border: 1px solid var(--g-200); border-radius: var(--radius-lg); padding: 24px 22px; position: sticky; top: 88px; }
.plant-layout .plant-care-card h3 { font-family: var(--font-serif); font-size: 1.1rem; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 1px solid var(--g-200); letter-spacing: .02em; color: var(--g-800); }
.plant-layout .plant-care-card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 14px; margin: 0 0 16px; }
.plant-layout .plant-care-card dt { color: var(--g-800); font-size: .85rem; font-weight: 500; padding-top: 2px; white-space: nowrap; }
.plant-layout .plant-care-card dd { color: var(--ink); font-size: .9rem; margin: 0; }
.plant-layout .prose { max-width: none; }
@media (max-width: 1000px) { .plant-layout { grid-template-columns: 1fr 1fr; } .plant-layout .plant-hero { grid-column: 1 / -1; } .plant-layout .plant-care-card { position: static; grid-column: 1 / -1; } }
@media (max-width: 600px) { .plant-layout { grid-template-columns: 1fr; } }

/* ============================================================ PLANT DETAIL LAYOUT (2-col, image sticky left) */
.plant-layout-2col { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.plant-hero-sticky { position: sticky; top: 88px; }
.plant-hero-sticky img { display: block; }
.plant-content-scrolling .prose { max-width: none; }

/* At-a-glance care card (2-col variant) */
.plant-care-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 22px 20px; box-shadow: 0 1px 2px rgba(15,25,18,.04); }
.plant-care-card::before { display: none; }
.plant-care-card h3 { font-family: var(--font-serif); font-size: 1.05rem; margin: 0 0 14px; padding-bottom: 12px; letter-spacing: .01em; color: var(--g-900); border-bottom: 1px solid var(--line); }
.plant-care-card .eyebrow-mini { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-700); font-weight: 600; margin-bottom: 16px; }
.plant-care-card .actions { display: flex; flex-direction: column; gap: 8px; padding-top: 18px; margin-top: 6px; border-top: 1px solid var(--line); }
.plant-care-card .actions .btn { margin: 0; padding: 12px 16px; font-size: .88rem; }

/* At-a-glance care list — spec sheet style, professional */
.plant-care-list { margin: 0 0 22px; padding: 0; }
.plant-care-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.plant-care-row:last-child { border-bottom: 0; }
.plant-care-row dt { margin: 0; font-size: .82rem; color: var(--mute); font-weight: 500; display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.plant-care-row dt .plant-care-ic { color: var(--g-700); font-size: 1rem; width: 18px; text-align: center; }
.plant-care-row dd { margin: 0; font-size: .88rem; color: var(--ink); text-align: right; line-height: 1.4; flex: 0 1 auto; min-width: 0; }
.plant-care-row dd::before { content: ""; display: inline-block; width: 18px; }

@media (max-width: 900px) { .plant-layout-2col { grid-template-columns: 1fr; } .plant-hero-sticky { position: static; } .plant-care-card { box-shadow: 0 6px 18px rgba(15, 25, 18, .06); } }

/* ============================================================ SERVICE DETAIL LAYOUT */
.service-layout { display: grid; grid-template-columns: 1.1fr 1.4fr 1fr; gap: 32px; align-items: start; }
.service-layout .service-hero img { display: block; box-shadow: 0 12px 40px rgba(15, 25, 18, .12); }
.service-layout .prose { max-width: none; }
.service-sidebar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; position: sticky; top: 88px; box-shadow: 0 8px 24px rgba(15, 25, 18, .06); }
.service-price { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line); }

/* ============================================================ SERVICE DETAIL LAYOUT (2-col, image at top of sidebar) */
.service-layout-2col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.service-layout-2col .prose { max-width: none; }
.service-layout-2col .service-sidebar { padding: 20px; }
.service-layout-2col .service-hero { margin: -20px -20px 20px; }
.service-layout-2col .service-hero img { display: block; width: 100%; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); box-shadow: 0 8px 24px rgba(15, 25, 18, .08); aspect-ratio: 16/10; object-fit: cover; }
.service-layout-2col .service-hero-fallback { display: grid; place-items: center; aspect-ratio: 16/10; background: var(--g-100); font-size: 5rem; border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); color: var(--g-700); }
@media (max-width: 900px) { .service-layout-2col { grid-template-columns: 1fr; } .service-layout-2col .service-sidebar { position: static; } }
.service-price-amount { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; color: var(--g-800); margin-top: 4px; }
.service-sidebar h4 { font-family: var(--font-sans); font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin: 0 0 10px; }
.service-mini-link { display: inline-block; margin-top: 8px; color: var(--g-700); font-weight: 500; font-size: .9rem; }
.service-mini-link:hover { color: var(--g-800); }
@media (max-width: 1000px) { .service-layout { grid-template-columns: 1fr 1fr; } .service-layout .service-hero { grid-column: 1 / -1; } .service-layout .service-sidebar { position: static; grid-column: 1 / -1; } }
@media (max-width: 600px) { .service-layout { grid-template-columns: 1fr; } }

/* ============================================================ BEFORE/AFTER */
.ba { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .lbl { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 500; color: var(--ink); }
.ba .lbl.r { left: auto; right: 12px; }

/* ============================================================ SHOP / PRODUCT */
.product { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--t); }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--g-300); }
.product .img { aspect-ratio: 1/1; background: var(--g-100); position: relative; overflow: hidden; }
.product .img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.product:hover .img img { transform: scale(1.05); }
.product .body { padding: 18px 20px 20px; }
.product .nm { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 4px; }
.product .pr { font-weight: 500; color: var(--g-800); font-size: 1rem; }
.product .pr small { color: var(--mute); font-weight: 400; margin-left: 4px; font-size: .82rem; text-decoration: line-through; }
.product .ot { font-size: .8rem; color: var(--mute); margin-top: 4px; }

.cart-line { display:grid; grid-template-columns: 80px 1fr auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line .th { width: 80px; aspect-ratio: 1/1; background: var(--g-100); border-radius: 12px; overflow: hidden; }
.cart-line .th img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .nm { font-weight: 500; }
.cart-line .qty { display:flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; }
.cart-line .qty button { background: none; border: 0; padding: 4px 10px; cursor: pointer; color: var(--ink); }
.cart-line .qty input { width: 40px; text-align: center; border: 0; font: inherit; background: none; }
.cart-line .tot { font-weight: 500; color: var(--g-800); }

.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 88px; }
.summary .row1 { display:flex; justify-content: space-between; padding: 6px 0; font-size: .95rem; color: var(--ink-2); }
.summary .row1.tot { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 14px; font-weight: 500; color: var(--ink); font-size: 1.1rem; }

/* ============================================================ PAGINATION */
.pagination { display:flex; gap: 6px; justify-content: center; margin: 40px 0 0; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--line); border-radius: 8px; font-size: .9rem; color: var(--ink-2); background: var(--paper); }
.pagination .active span { background: var(--g-700); color: var(--g-50); border-color: var(--g-700); }
.pagination a:hover { background: var(--g-100); border-color: var(--g-300); }

/* ============================================================ ACCOUNT */
.account-grid { display:grid; grid-template-columns: 240px 1fr; gap: 40px; }
.account-side { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; height: fit-content; position: sticky; top: 88px; }
.account-side a { display:flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; color: var(--ink-2); font-size: .92rem; }
.account-side a:hover, .account-side a.active { background: var(--g-100); color: var(--g-800); }
.account-main { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
@media (max-width: 800px) { .account-grid { grid-template-columns: 1fr; } .account-side { position: static; } }

.kpi-row { display:grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.kpi { background: var(--g-50); border: 1px solid var(--g-200); border-radius: var(--radius); padding: 20px; }
.kpi .n { font-family: var(--font-serif); font-size: 1.8rem; color: var(--g-800); display: block; }
.kpi .l { font-size: .8rem; color: var(--mute); text-transform: uppercase; letter-spacing: .1em; }
@media (max-width: 800px) { .kpi-row { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px) { .kpi-row { grid-template-columns: 1fr; } }

table.t { width: 100%; border-collapse: collapse; }
table.t th, table.t td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
table.t th { color: var(--mute); font-weight: 500; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; }
table.t tr:hover td { background: var(--g-50); }

/* Responsive: on narrow screens, swap tables for stacked card rows.
   Each <td> needs data-label="<column header>" so we can render the label above the value. */
@media (max-width: 720px) {
    .admin-main table.t { border: 0; }
    .admin-main table.t thead { display: none; }
    .admin-main table.t tbody tr { display: block; margin-bottom: 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); padding: 4px 14px; box-shadow: var(--shadow-sm); }
    .admin-main table.t tbody tr:hover td { background: transparent; }
    .admin-main table.t td { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--g-100); text-align: right; }
    .admin-main table.t td:last-child { border-bottom: 0; }
    .admin-main table.t td::before { content: attr(data-label); flex: 0 0 38%; text-align: left; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
    .admin-main table.t td.right { justify-content: flex-end; }
    .admin-main table.t td.right::before { display: none; }
    .admin-main table.t td .badge { white-space: nowrap; }
    .admin-main table.t td form { display: inline-block; }
}

/* ============================================================ ADMIN */
.admin-shell { display:block; min-height: 100vh; }
.admin-side { background: var(--g-900); color: var(--g-200); padding: 24px 16px; position: fixed; top: 0; left: 0; width: 240px; height: 100vh; overflow-y: auto; z-index: 60; transition: transform .28s ease; }
.admin-side .abrand { font-family: var(--font-serif); font-size: 1.4rem; color: var(--g-50); margin-bottom: 24px; padding: 0 8px; }
.admin-side a { display:flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 10px; color: var(--g-200); font-size: .9rem; margin-bottom: 2px; }
.admin-side a:hover, .admin-side a.active { background: var(--g-800); color: var(--g-50); }
.admin-side .group { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-400); padding: 16px 14px 6px; }
.admin-main { background: var(--g-50); padding: 32px; min-height: 100vh; margin-left: 240px; max-width: 1400px; }
.admin-top { display:flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.admin-top h1 { font-size: 1.6rem; }

/* Mobile hamburger + drawer */
.admin-hamburger { display: none; position: fixed; top: 14px; left: 14px; z-index: 70; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--g-900); color: #fff; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); }
.admin-hamburger:hover { background: var(--g-800); }
.admin-backdrop { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, .45); z-index: 55; opacity: 0; transition: opacity .28s ease; }
.admin-backdrop.open { display: block; opacity: 1; }
.admin-close { display: none; position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 8px; background: transparent; color: var(--g-200); cursor: pointer; align-items: center; justify-content: center; }
.admin-close:hover { background: var(--g-800); color: var(--g-50); }

/* Compact admin panels (settings, forms, etc.) */
.admin-main .panel { padding: 22px 24px; margin-bottom: 18px; }
.admin-main .panel h2 { font-size: 1.05rem; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.admin-main .field { margin-bottom: 12px; }
.admin-main .field label { font-size: .8rem; margin-bottom: 4px; }
.admin-main .field input, .admin-main .field textarea, .admin-main .field select { padding: 9px 12px; font-size: .9rem; border-radius: 8px; }

@media (max-width: 860px) {
    .admin-hamburger { display: flex; }
    .admin-close { display: flex; }
    .admin-side { transform: translateX(-100%); box-shadow: 4px 0 24px rgba(0,0,0,.18); }
    .admin-side.open { transform: translateX(0); }
    .admin-main { margin-left: 0; padding: 70px 18px 32px; }
    .admin-top h1 { font-size: 1.35rem; }
    .admin-top { flex-wrap: wrap; gap: 12px; }
    .admin-top .btn { font-size: .85rem; padding: 8px 14px; }
    .admin-main .panel { padding: 18px 16px; }
    .admin-main .grid-2, .admin-main .grid-3, .admin-main .grid-4 { grid-template-columns: 1fr; }
    .admin-main .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    .kpi { padding: 16px; }
    .kpi .n { font-size: 1.4rem; }
    .faq-row { padding: 12px !important; }
    .toggle-row { flex-wrap: wrap; gap: 12px; }
    .toggle-row .toggle-text { width: 100%; }
    .summary { position: static !important; }
    .pagination { flex-wrap: wrap; gap: 6px; }
    .pagination a, .pagination span { padding: 6px 10px; font-size: .85rem; }
}

.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.panel h2 { font-size: 1.2rem; margin-bottom: 16px; }

/* ============================================================ TABS */
.tabs { display:flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tabs a { padding: 12px 18px; color: var(--ink-2); border-bottom: 2px solid transparent; font-size: .92rem; }
.tabs a.active, .tabs a:hover { color: var(--g-800); border-color: var(--g-700); }

/* ============================================================ PROSE */
.prose { max-width: 740px; margin: 0 auto; }
.prose h2 { margin: 1.6em 0 .5em; font-size: 1.6rem; scroll-margin-top: 24px; }
.prose h3 { margin: 1.4em 0 .5em; font-size: 1.25rem; scroll-margin-top: 24px; }
.prose p, .prose li { font-size: 1.02rem; line-height: 1.75; color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }
.prose blockquote { border-left: 3px solid var(--g-500); padding-left: 20px; color: var(--ink-2); font-style: italic; margin: 1.4em 0; }
.prose a { color: var(--g-700); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ UTILITIES */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.flex { display: flex; } .center { justify-content: center; align-items: center; } .gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.muted { color: var(--mute); }
.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }
.right { text-align: right; }

/* ============================================================ ABOUT / WHY-US */
.about-hero {
    background:
      radial-gradient(900px 500px at 100% 0%, rgba(255,255,255,.08), transparent 60%),
      radial-gradient(700px 400px at 0% 100%, rgba(255,255,255,.06), transparent 60%),
      linear-gradient(135deg, var(--g-700) 0%, var(--g-800) 60%, var(--g-900) 100%);
    color: var(--g-50);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.about-hero h1 { color: #fff; }
.about-hero .lede { color: var(--g-100); }
.about-hero .eyebrow { color: var(--g-200); }
.about-hero .crumbs a { color: var(--g-50); }
.about-hero .crumbs span { color: var(--g-300); }
.about-hero .crumbs .here { color: #fff; }
.about-hero > .wrap { position: relative; z-index: 1; }
.about-hero-grid { display:grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.about-hero-art, .nursery-art { position: relative; aspect-ratio: 1/1; min-height: 320px; }
.leaf-disc-1 { display: none; }
.leaf-disc-2 { display: none; }
.leaf-disc-3 { display: none; }
@media (max-width: 900px) { .about-hero-grid { grid-template-columns: 1fr; } .about-hero-art { display: none; } }

.timeline { position: relative; padding-left: 0; }
.timeline-row { display:grid; grid-template-columns: 80px 28px 1fr; gap: 14px; align-items: start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.timeline-row:last-child { border-bottom: 0; }
.timeline-year { font-family: var(--font-serif); font-size: 1.4rem; color: var(--g-800); }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--g-700); margin-top: 10px; position: relative; }
.timeline-dot::after { content:""; position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 1px; height: 28px; background: var(--g-300); }
.timeline-row:last-child .timeline-dot::after { display: none; }
.timeline-text { color: var(--ink-2); padding-top: 6px; }

.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: all var(--t); }
.why-card:hover { border-color: var(--g-300); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-num { position: absolute; top: 18px; right: 22px; font-family: var(--font-serif); font-size: 1.8rem; color: var(--g-300); font-weight: 500; }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: .92rem; color: var(--ink-2); margin: 0; }

.compare-table th, .compare-table td { text-align: center; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--ink); }
.compare-table th { color: var(--mute); }
.compare-table th:nth-child(3), .compare-table td:nth-child(3) { background: var(--g-50); color: var(--g-800) !important; }
.compare-table tr:hover td { background: var(--g-50); }
.compare-table tr:hover td:nth-child(3) { background: var(--g-100); }

/* ============================================================ FOOTER v2 */
.foot-top { display:grid; grid-template-columns: 1.4fr 1.2fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.10); }
.foot-brand-block .foot-brand { font-family: var(--font-serif); font-size: 2rem; color: var(--g-50); margin-bottom: 12px; display: block; }
.foot-brand-block .foot-tagline { color: var(--g-300); font-size: .95rem; line-height: 1.6; max-width: 36ch; margin: 0 0 20px; }
.foot-socials { display:flex; gap: 8px; }
.social-chip { width: 40px; height: 40px; display:grid; place-items:center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 50%; color: var(--g-200); font-size: .78rem; font-weight: 500; letter-spacing: .05em; transition: all var(--t-fast); }
.social-chip:hover { background: var(--g-700); color: var(--g-50); transform: translateY(-2px); }

.foot-subscribe h4, .foot-trust h4 { color: var(--g-50); font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; font-weight: 500; }
.foot-subscribe p { color: var(--g-300); font-size: .9rem; line-height: 1.55; margin: 0 0 14px; }
.subscribe-form { display:flex; gap: 8px; margin-bottom: 10px; }
.subscribe-form input { flex: 1; min-width: 0; padding: 12px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--g-50); font: inherit; font-size: .92rem; }
.subscribe-form input::placeholder { color: var(--g-400); }
.subscribe-form input:focus { outline: 0; background: rgba(255,255,255,.10); border-color: var(--g-400); }
.subscribe-form button { padding: 12px 20px; background: var(--g-500); color: var(--g-50); border: 0; border-radius: 999px; font: 500 .92rem/1 var(--font-sans); cursor: pointer; transition: all var(--t-fast); white-space: nowrap; }
.subscribe-form button:hover { background: var(--g-400); }
.foot-subscribe small { color: var(--g-400); font-size: .78rem; }
.foot-subscribe small a { color: var(--g-300); text-decoration: underline; text-underline-offset: 2px; }
.foot-subscribe .alert { font-size: .85rem; padding: 8px 14px; }

.trust-list { list-style:none; padding: 0; margin: 0; }
.trust-list li { display:flex; align-items:center; gap: 10px; padding: 6px 0; color: var(--g-200); font-size: .9rem; }
.trust-ic { width: 28px; height: 28px; display:grid; place-items:center; background: rgba(168,214,168,.12); border-radius: 8px; font-size: .9rem; }

.foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px 0 32px; border-bottom: 1px solid rgba(255,255,255,.10); }
.foot-col { min-width: 0; }
.foot-col h4 { color: var(--g-50); font-family: var(--font-sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.10); }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 11px; font-size: .92rem; }
.foot-col a { color: var(--g-200); transition: color var(--t-fast); display: inline-block; }
.foot-col a:hover { color: var(--g-50); transform: translateX(2px); }

.foot-payments { display:flex; align-items:center; gap: 32px; padding: 32px 0; flex-wrap: wrap; }
.foot-payments-label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-400); font-weight: 500; }
.pay-chips { display:flex; gap: 8px; flex-wrap: wrap; }
.pay-chip { padding: 6px 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 6px; color: var(--g-200); font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.pay-badges { display:flex; gap: 16px; margin-left: auto; }
.badge-ssl { color: var(--g-200); font-size: .78rem; }
.foot-payments { border-top: 1px solid rgba(255,255,255,.10); }

.foot-bottom { padding-top: 32px; font-size: .85rem; color: var(--g-300); text-align: center; }

@media (max-width: 980px) { .foot-top { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; } .pay-badges { margin-left: 0; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================ POLICY PAGES */
.policy-hero {
    background:
      radial-gradient(900px 500px at 100% 0%, var(--g-100), transparent 60%),
      radial-gradient(700px 400px at 0% 100%, var(--g-100), transparent 60%),
      var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 32px 0 56px;
}
.policy-hero-grid { display:grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
.policy-meta { display:flex; gap: 8px; flex-wrap: wrap; }
.policy-chip { padding: 6px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: .8rem; color: var(--ink-2); }
.policy-toc { position: sticky; top: 88px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.policy-toc h4 { font-family: var(--font-sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: 14px; font-weight: 500; }
.policy-toc ol { list-style: decimal; padding-left: 22px; margin: 0; }
.policy-toc li { padding: 6px 0; font-size: .92rem; color: var(--ink-2); }
.policy-toc li a { color: var(--g-700); }
.policy-toc li a:hover { color: var(--g-800); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .policy-hero-grid { grid-template-columns: 1fr; } .policy-toc { position: static; } }

.policy-prose h2 { scroll-margin-top: 100px; position: relative; padding-top: 1.6em; }
.policy-prose h2::before { content: ""; display: block; position: absolute; top: 0; left: 0; width: 32px; height: 2px; background: var(--g-500); border-radius: 2px; }
.policy-prose h2:first-child { padding-top: 0; }
.policy-prose h2:first-child::before { display: none; }
.policy-prose h2 + h3 { margin-top: 1em; }
.policy-prose h3 { color: var(--g-800); font-size: 1.1rem; font-family: var(--font-sans); font-weight: 500; }
.policy-prose ul li, .policy-prose ol li { margin-bottom: 6px; }
.policy-prose strong { color: var(--ink); }

/* ============================================================ NAV v2 */
.nav-inner { gap: 24px; }
.nav-links { gap: 4px; }
.nav-cta { gap: 10px; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-trigger { background: none; border: 0; cursor: pointer; padding: 8px 14px; border-radius: 999px; font: 400 .94rem/1 var(--font-sans); color: var(--ink-2); display:inline-flex; align-items:center; gap: 6px; transition: all var(--t-fast); }
.nav-dd-trigger:hover, .nav-dd-trigger.active { color: var(--g-800); background: var(--g-100); }
.nav-dd-trigger svg { transition: transform var(--t-fast); }
.nav-dd.open .nav-dd-trigger { color: var(--g-800); background: var(--g-100); }
.nav-dd.open .nav-dd-trigger svg { transform: rotate(180deg); }
.nav-dd-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 16px; min-width: 460px; opacity: 0; visibility: hidden; transform: translateY(-4px); transition: all var(--t); z-index: 60; }
.nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; min-width: 440px; }
.nav-dd-item { display:flex; align-items:flex-start; gap: 12px; padding: 12px 14px; border-radius: 12px; color: var(--ink); transition: all var(--t-fast); }
.nav-dd-item:hover { background: var(--g-50); color: var(--g-800); }
.nav-dd-item strong { display:block; font-size: .94rem; font-weight: 500; color: var(--ink); }
.nav-dd-item small { display:block; font-size: .78rem; color: var(--mute); margin-top: 2px; }
.nav-dd-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--g-100); display:grid; place-items:center; font-size: 1.05rem; flex-shrink: 0; }
@media (max-width: 1100px) { .nav-dd-menu { min-width: 380px; } .nav-dd-grid { grid-template-columns: 1fr; min-width: 360px; } }

/* Single account button */
.account-btn { display:flex; align-items:center; gap: 8px; padding: 9px 18px; border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--g-50); background: var(--g-800); border: 1px solid var(--g-800); transition: all var(--t-fast); }
.account-btn:hover { background: var(--g-700); border-color: var(--g-700); color: var(--g-50); transform: translateY(-1px); }
@media (max-width: 920px) { .account-btn span { display: none; } .account-btn { padding: 9px 12px; } .cart-pill .cart-label { display: none; } }

/* ============================================================ NAV � simple submenu */
.nav-dd-menu-simple { display: block; min-width: 200px; padding: 8px; }
.nav-dd-item-simple { display: block; padding: 9px 14px; color: var(--ink-2); font-size: .94rem; border-radius: 8px; transition: all var(--t-fast); }
.nav-dd-item-simple:hover { background: var(--g-50); color: var(--g-800); }
.nav-dd-item-simple.active { color: var(--g-700); font-weight: 500; background: var(--g-50); }

/* ============================================================ AUTH PAGES (in-layout) */
.auth-section { padding: 40px 0 80px; }
.auth-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; min-height: 640px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .auth-grid { grid-template-columns: 1fr; min-height: 0; } }

.auth-side { position: relative; background: var(--g-800); color: var(--g-50); padding: 48px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
@media (max-width: 900px) { .auth-side { display: none; } }
.auth-side-content { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; height: 100%; gap: 32px; }
.auth-side-back { color: var(--g-200); font-size: .88rem; text-decoration: none; align-self: flex-start; }
.auth-side-back:hover { color: var(--g-50); }
.auth-side-chip { display: inline-block; padding: 6px 12px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: .78rem; color: var(--g-100); margin-bottom: 16px; }
.auth-side h2 { color: var(--g-50); font-size: 2.1rem; line-height: 1.2; margin-bottom: 12px; }
.auth-side p { color: var(--g-200); font-size: 1rem; line-height: 1.55; }
.auth-side-features { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.auth-feature { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; }
.auth-feature span { font-size: 1.2rem; line-height: 1; }
.auth-feature strong { display: block; color: var(--g-50); font-size: .92rem; }
.auth-feature small { color: var(--g-300); font-size: .8rem; }

.auth-panel { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 700px) { .auth-panel { padding: 32px 24px; } }
.auth-panel-head { margin-bottom: 28px; }
.auth-panel h1 { font-size: 2rem; margin-bottom: 6px; }
.auth-panel-head p { color: var(--ink-2); }
.auth-panel-head a { color: var(--g-700); font-weight: 500; }

.auth-form .btn-primary { margin-top: 4px; }

.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--mute); font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin: 24px 0 16px; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.auth-alt { text-align: center; }
.auth-alt p { margin: 0; color: var(--ink-2); font-size: .95rem; }
.auth-alt a { color: var(--g-700); font-weight: 500; }

.auth-terms { text-align: center; margin-top: 24px; font-size: .82rem; }
.auth-terms a { color: var(--g-700); text-decoration: underline; text-underline-offset: 3px; }

/* Autoplay fix: make sure the overlay doesn't block iframe interaction */
.home-overlay { pointer-events: none; }

/* ============================================================ HOME VIDEO (autoplay fix) */
.home-video { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; background: #061206; }
.home-video-iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh; transform: translate(-50%, -50%); border: 0; }

/* ============================================================ Z-INDEX & AUTOPLAY FALLBACK */
.home-shell { z-index: 0; }
.home-video { z-index: 1; }
.home-video-iframe { z-index: 1; }

/* Hide YouTube player overlays (logo, title, progress bar) so the
   background video looks clean. We keep the iframe itself but block
   any "ytp-" overlay elements. */
.home-video-iframe::after { content: ""; }
.home-video { overflow: hidden; }
/* The .home-overlay sits ABOVE the iframe to dim it; this also blocks
   any YouTube UI that might bleed through. */
.home-overlay { z-index: 2; pointer-events: none; }
.home-content { z-index: 3; }
.home-credit { z-index: 4; }

/* Click-to-play fallback button (shown only if autoplay blocked) */
.home-play-btn { position: fixed; bottom: 32px; left: 32px; z-index: 10; padding: 12px 20px; background: rgba(255,255,255,.92); color: var(--g-800); border: 0; border-radius: 999px; font: 500 .9rem/1 var(--font-sans); cursor: pointer; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px; transition: all var(--t-fast); backdrop-filter: blur(8px); }
.home-play-btn:hover { background: var(--paper); transform: translateY(-2px); }
.home-play-btn svg { animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }

/* ============================================================ PRODUCT DETAIL LAYOUT (2-col, sticky image left) */
.product-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.product-hero-sticky { position: sticky; top: 88px; }
.product-main-image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 1/1; background: var(--g-100); box-shadow: 0 12px 40px rgba(15, 25, 18, .12); }
.product-main-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.product-fallback { display: grid; place-items: center; width: 100%; height: 100%; font-size: 6rem; color: var(--g-700); }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.product-thumb { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; background: var(--g-100); border: 2px solid transparent; cursor: pointer; transition: border-color .2s ease, transform .2s ease; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumb:hover { transform: translateY(-2px); }
.product-thumb.active { border-color: var(--g-700); box-shadow: 0 4px 12px rgba(15, 25, 18, .15); }
.product-content-scrolling .prose { max-width: none; }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } .product-hero-sticky { position: static; } .product-thumbs { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================ AMC PLAN — BUY CARD */
.amc-buy-card { margin-top: 32px; padding: 28px; background: linear-gradient(135deg, var(--paper) 0%, var(--g-50) 100%); border: 1px solid var(--g-200); border-radius: var(--radius-xl); box-shadow: 0 12px 32px rgba(15, 25, 18, .08); position: relative; overflow: hidden; }
.amc-buy-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, var(--g-500), var(--g-800)); }
.amc-buy-eyebrow { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--g-700); font-weight: 600; margin-bottom: 6px; }
.amc-buy-card h3 { font-family: var(--font-serif); font-size: 1.5rem; margin: 0 0 8px; color: var(--g-900); }
.amc-buy-card p { color: var(--ink-2); font-size: .95rem; line-height: 1.55; margin: 0 0 18px; }
.amc-buy-actions { margin-bottom: 16px; }
.amc-buy-trust { display: flex; flex-wrap: wrap; gap: 14px 24px; padding-top: 14px; border-top: 1px dashed var(--g-300); font-size: .82rem; color: var(--ink-2); }
.amc-trust-item { display: inline-flex; align-items: center; gap: 4px; }
#razorpayBuyBtn { display: inline-flex; align-items: center; justify-content: center; transition: all .2s ease; }
#razorpayBuyBtn:disabled { opacity: .7; cursor: wait; }

/* ============================================================ GALLERY LIGHTBOX */
.gallery-lightbox { display: block; cursor: zoom-in; position: relative; }
.gallery-lightbox .lbl-zoom { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: rgba(35,79,35,.85); color: #fff; border-radius: 999px; font-size: .72rem; font-weight: 500; letter-spacing: .04em; margin-right: 8px; transition: all .2s ease; }
.gallery-lightbox:hover .lbl-zoom { background: rgba(35,79,35,1); transform: translateY(-1px); }
.gallery-lightbox:hover img { transform: scale(1.03); }
.gallery-lightbox .ba img { transition: transform .5s ease; }

.lightbox { position: fixed; inset: 0; background: rgba(8, 14, 10, .92); backdrop-filter: blur(8px); z-index: 1000; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px 100px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox * { box-sizing: border-box; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.18); cursor: pointer; transition: all .2s ease; backdrop-filter: blur(4px); font-family: var(--font-sans); }
.lb-close { top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; font-size: 28px; line-height: 1; display: grid; place-items: center; padding: 0; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; font-size: 36px; line-height: 1; display: grid; place-items: center; padding: 0; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.05); }
.lb-close:hover { transform: scale(1.05); }

.lb-stage { width: 100%; max-width: 1200px; flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.lb-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; width: 100%; height: 100%; }
.lb-ba-pane { position: relative; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04); border-radius: var(--radius-lg); overflow: hidden; }
.lb-tag { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,.65); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; z-index: 2; }
.lb-tag-after { background: rgba(35,79,35,.85); }
.lb-img { max-width: 100%; max-height: 70vh; object-fit: contain; display: block; border-radius: var(--radius-md); }

.lb-meta { position: absolute; bottom: 0; left: 0; right: 0; text-align: center; padding: 24px 32px 28px; color: #fff; background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 100%); }
.lb-meta h3 { font-family: var(--font-serif); font-size: 1.4rem; margin: 0 0 4px; font-weight: 500; }
.lb-meta p { color: rgba(255,255,255,.75); font-size: .9rem; line-height: 1.5; max-width: 640px; margin: 0 auto 8px; }
.lb-count { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: .1em; }

@media (max-width: 720px) {
    .lb-ba { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
    .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 28px; }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
    .lb-img { max-height: 32vh; }
    .lightbox { padding: 56px 12px 90px; }
}

