/*
Theme Name: Nectar Notes
Theme URI: https://www.thehoneytrails.com
Author: Elena Torres
Author URI: https://www.thehoneytrails.com
Description: A warm watercolor-inspired editorial theme for food, nature, and slow-living journals, pairing honeyed tones and lavender washes with sketched borders, a magazine card hub, and quiet single-column reading pages.
Version: 2.3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nectar-notes
Tags: blog, magazine, custom-logo, featured-images, threaded-comments
*/

/* ============================================================
   1. Foundations — watercolor journal palette
   ============================================================ */
:root {
    --honey: #f2b23e;
    --amber: #cf8a1f;
    --amber-deep: #a4690f;
    --bark: #33220f;
    --bark-deep: #241708;
    --cocoa: #6e4f2c;
    --lavender: #8672b4;
    --lavender-deep: #6a589a;
    --lavender-mist: #f1ecf9;
    --cream: #fdf8ec;
    --paper: #fffdf7;
    --ink: #2e2113;
    --muted: #857052;
    --line: #e6d7b8;
    --feat-ratio: 1600 / 1000;
    --frame: 72rem;
    --prose: 44rem;
    --font-head: "Iowan Old Style", Georgia, "Times New Roman", serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--ink);
    overflow-wrap: break-word;
    background-color: var(--cream);
    background-image:
        radial-gradient(38rem 26rem at 88% -6%, rgba(242, 178, 62, 0.20), rgba(242, 178, 62, 0) 60%),
        radial-gradient(34rem 24rem at -8% 22%, rgba(134, 114, 180, 0.16), rgba(134, 114, 180, 0) 60%),
        radial-gradient(30rem 22rem at 96% 62%, rgba(207, 138, 31, 0.12), rgba(207, 138, 31, 0) 60%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--bark);
}

a {
    color: var(--amber-deep);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--bark);
}

img {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--lavender);
    outline-offset: 2px;
}

/* Accessibility helpers */
.nectar-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nectar-skip {
    position: absolute;
    top: -4rem;
    left: 1rem;
    z-index: 200;
    background: var(--bark);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    transition: top 0.2s ease;
}

.nectar-skip:focus {
    top: 1rem;
    color: #fff;
}

/* Shared frame */
.hiveframe {
    width: min(var(--frame), 100% - 2.5rem);
    margin-inline: auto;
}

/* Pill button used by hero CTA and misc actions */
.nectar-btn {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    border: 1px solid var(--amber);
    border-radius: 999px;
    padding: 0.75rem 1.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nectar-btn:hover {
    background: var(--amber-deep);
    border-color: var(--amber-deep);
    color: #fff;
}

/* ============================================================
   2. Header — transparent, amber baseline, two rows
   ============================================================ */
.combline {
    position: relative;
    background: transparent;
    border-bottom: 3px solid var(--amber);
}

.combline__row--brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0 0.85rem;
}

.combline__sitename {
    font-family: var(--font-head);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--bark);
    text-decoration: none;
    letter-spacing: 0.01em;
}

.combline__sitename:hover {
    color: var(--amber-deep);
}

.combline__brand .custom-logo-link img {
    display: block;
    max-height: 3.2rem;
    width: auto;
}

.combline__tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.combline__tool {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--bark);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.combline__tool:hover {
    border-color: var(--amber);
    background: var(--lavender-mist);
}

.combline__tool svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Inline search dropdown (dimension 10-C) */
.combline__seekdrop {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1.2rem 2rem rgba(36, 23, 8, 0.10);
    padding: 1.4rem 0 1.6rem;
}

.combline__seekdrop .seekform {
    width: min(40rem, 100% - 2.5rem);
    margin-inline: auto;
}

/* ============================================================
   3. Primary navigation — second row, dropdown support
   ============================================================ */
.trailnav {
    border-top: 1px solid var(--line);
}

.trailnav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trailnav__list li {
    position: relative;
}

.trailnav__list a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bark);
    text-decoration: none;
}

.trailnav__list a:hover {
    color: var(--amber-deep);
}

.trailnav .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 0.45rem;
    border: 0.28em solid transparent;
    border-top-color: var(--amber);
    transform: translateY(0.18em);
}

.trailnav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 15rem;
    list-style: none;
    margin: 0;
    padding: 0.55rem;
    background: var(--paper);
    border: 1px solid var(--line);
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.4rem);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.trailnav__list li:hover > .sub-menu,
.trailnav__list li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.trailnav .sub-menu a {
    padding: 0.5rem 0.7rem;
    font-weight: 500;
    font-size: 0.92rem;
}

.trailnav .sub-menu a:hover {
    background: var(--lavender-mist);
}

/* Mobile nav behaviour */
.combline__tool--menu {
    display: none;
}

@media (max-width: 900px) {
    .combline__tool--menu {
        display: inline-flex;
    }

    .trailnav {
        display: none;
    }

    .trailnav--open {
        display: block;
    }

    .trailnav__list {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 0.9rem;
    }

    .trailnav__list a {
        padding: 0.65rem 0;
    }

    .trailnav .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 0;
        border-left: 2px solid var(--line);
        background: transparent;
        margin: 0 0 0.4rem 0.5rem;
        padding: 0 0 0 0.9rem;
        min-width: 0;
        display: none;
    }

    .trailnav__item--open > .sub-menu {
        display: block;
    }
}

/* ============================================================
   4. Breadcrumbs
   ============================================================ */
.trailcrumbs {
    margin: 1.75rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}

.trailcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trailcrumbs__item + .trailcrumbs__item::before {
    content: "/";
    margin-right: 0.6rem;
    color: var(--amber);
}

.trailcrumbs__item a {
    color: var(--cocoa);
    text-decoration: none;
}

.trailcrumbs__item a:hover {
    color: var(--amber-deep);
}

.trailcrumbs__current {
    color: var(--bark);
}

/* ============================================================
   5. Homepage hero (text only)
   ============================================================ */
.meadow-hero {
    text-align: center;
    padding: 4.5rem 0 3.25rem;
}

.meadow-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 0;
}

.meadow-hero__title::after {
    content: "";
    display: block;
    width: 5.5rem;
    height: 0.4rem;
    margin: 1.3rem auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--honey), var(--lavender));
}

.meadow-hero__lede {
    max-width: 40rem;
    margin: 1.4rem auto 2.1rem;
    font-size: 1.13rem;
    color: var(--cocoa);
}

/* ============================================================
   6. Card grid (home + archives + search results)
   ============================================================ */
.hivegrid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
    margin: 2.5rem 0 1rem;
}

.nectar-card {
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.nectar-card:hover {
    border-color: var(--amber);
    transform: translateY(-3px);
}

.nectar-card__media {
    display: block;
}

.nectar-card__image {
    display: block;
    width: 100%;
    aspect-ratio: var(--feat-ratio);
    object-fit: cover;
}

.nectar-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.2rem 1.35rem 1.45rem;
    flex: 1;
}

.nectar-card__title {
    font-size: 1.28rem;
    margin: 0;
}

.nectar-card__title a {
    color: var(--bark);
    text-decoration: none;
}

.nectar-card__title a:hover {
    color: var(--amber-deep);
}

.nectar-card__meta {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nectar-card__excerpt {
    color: var(--cocoa);
    font-size: 0.95rem;
}

.nectar-card__excerpt p {
    margin: 0;
}

.nectar-card__more {
    margin-top: auto;
    padding-top: 0.4rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: var(--lavender-deep);
}

.nectar-card__more:hover {
    color: var(--bark);
}

/* ============================================================
   7. Single post — centered prose column
   ============================================================ */
.hivepost-wrap {
    padding-bottom: 1rem;
}

.hivepost {
    max-width: var(--prose);
    margin: 0 auto;
}

.hivepost__head {
    text-align: center;
    margin: 2.25rem 0 1.75rem;
}

.hivepost__title {
    font-size: clamp(1.9rem, 4.5vw, 2.85rem);
    margin: 0.4rem 0 0.9rem;
}

.hivepost__meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.hivepost__meta a {
    color: var(--cocoa);
    font-weight: 600;
    text-decoration: none;
}

.hivepost__cats {
    margin-top: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
}

.pollen-pill {
    display: inline-block;
    border: 1px solid var(--lavender);
    color: var(--lavender-deep);
    border-radius: 999px;
    padding: 0.12rem 0.8rem;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.pollen-pill:hover {
    background: var(--lavender-mist);
    color: var(--bark);
}

.hivepost__feature {
    margin: 0 0 2.25rem;
}

.hivepost__image {
    display: block;
    width: 100%;
    aspect-ratio: var(--feat-ratio);
    object-fit: cover;
    border: 1px solid var(--line);
}

/* Auto-generated table of contents */
.jar-toc {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 1.35rem 1.6rem;
    margin: 0 0 2.2rem;
}

.jar-toc__heading {
    margin: 0 0 0.75rem;
    font-family: var(--font-head);
    font-size: 1.12rem;
    color: var(--bark);
}

.jar-toc__list {
    margin: 0;
    padding-left: 1.25rem;
    display: grid;
    gap: 0.35rem;
}

.jar-toc__item--sub {
    margin-left: 1.2rem;
}

.jar-toc__link {
    text-decoration: none;
    color: var(--amber-deep);
    font-size: 0.95rem;
}

.jar-toc__link:hover {
    color: var(--bark);
}

/* Prose body */
.hivepost__body,
.hivesheet__body {
    font-size: 1.07rem;
    line-height: 1.8;
}

.hivepost__body h2,
.hivesheet__body h2 {
    font-size: 1.65rem;
    margin: 2.4rem 0 1rem;
    scroll-margin-top: 5rem;
}

.hivepost__body h3,
.hivesheet__body h3 {
    font-size: 1.28rem;
    margin: 2rem 0 0.8rem;
    scroll-margin-top: 5rem;
}

.hivepost__body blockquote,
.hivesheet__body blockquote {
    margin: 1.8rem 0;
    padding: 0.2rem 0 0.2rem 1.4rem;
    border-left: 3px solid var(--honey);
    color: var(--cocoa);
    font-family: var(--font-head);
    font-size: 1.14rem;
}

.hivepost__body img,
.hivesheet__body img {
    border: 1px solid var(--line);
}

/* Quiet per-article note (wpc_article_note option) */
.hivepost__note {
    font-size: 0.92rem;
    color: var(--muted);
    border-left: 3px solid var(--honey);
    padding-left: 0.9rem;
    margin: 2rem 0 0;
}

.hivepost__tags {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hivepost__pages {
    margin-top: 2rem;
}

/* Author bio block (rendered only when enabled and filled) */
.beekeeper {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-top: 2.6rem;
    padding: 1.5rem 1.6rem;
    border: 1px solid var(--line);
    background: var(--paper);
}

.beekeeper__avatar {
    flex: none;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: 2px solid var(--honey);
}

.beekeeper__label {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--lavender-deep);
    font-weight: 700;
}

.beekeeper__name {
    margin: 0.15rem 0 0.5rem;
    font-size: 1.25rem;
}

.beekeeper__name a {
    color: var(--bark);
    text-decoration: none;
}

.beekeeper__name a:hover {
    color: var(--amber-deep);
}

.beekeeper__bio {
    margin: 0;
    color: var(--cocoa);
    font-size: 0.95rem;
}

/* Related posts */
.swarm {
    max-width: var(--frame);
    margin: 3.25rem auto 0;
}

.swarm__title {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 0 1.6rem;
}

.swarm__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.swarm__card {
    border: 1px solid var(--line);
    background: var(--paper);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

.swarm__card:hover {
    border-color: var(--amber);
}

.swarm__image {
    display: block;
    width: 100%;
    aspect-ratio: var(--feat-ratio);
    object-fit: cover;
}

.swarm__body {
    padding: 1rem 1.15rem 1.2rem;
    display: grid;
    gap: 0.4rem;
}

.swarm__name {
    margin: 0;
    font-size: 1.05rem;
}

.swarm__name a {
    color: var(--bark);
    text-decoration: none;
}

.swarm__name a:hover {
    color: var(--amber-deep);
}

.swarm__date {
    margin: 0;
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   8. Static pages
   ============================================================ */
.hivesheet {
    max-width: var(--prose);
    margin: 0 auto;
}

.hivesheet__head {
    text-align: center;
    margin: 2.25rem 0 1.75rem;
}

.hivesheet__title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin: 0;
}

.hivesheet__feature {
    margin: 0 0 2rem;
}

.hivesheet__feature img {
    display: block;
    width: 100%;
    aspect-ratio: var(--feat-ratio);
    object-fit: cover;
    border: 1px solid var(--line);
}

/* ============================================================
   9. Archives, search, 404, empty states
   ============================================================ */
.nectar-archive__head {
    text-align: center;
    margin: 2.4rem 0 0;
}

.nectar-archive__title {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    margin: 0 0 0.8rem;
}

.nectar-archive__desc {
    max-width: 42rem;
    margin: 0 auto;
    color: var(--cocoa);
}

.nectar-archive__desc p {
    margin: 0;
}

.nectar-searchform-wrap {
    max-width: 34rem;
    margin: 1.6rem auto 0;
}

.nectar-empty {
    text-align: center;
    padding: 3rem 0 1.5rem;
}

.nectar-empty__title {
    font-size: 1.5rem;
    margin: 0 0 0.7rem;
}

.nectar-empty__text {
    color: var(--cocoa);
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.nectar-lost {
    text-align: center;
    padding: 3.5rem 0 2rem;
}

.nectar-lost__code {
    font-family: var(--font-head);
    font-size: clamp(3.4rem, 9vw, 5.5rem);
    color: var(--honey);
    margin: 0;
    line-height: 1;
}

.nectar-lost__title {
    font-size: 1.6rem;
    margin: 0.8rem 0 0.9rem;
}

.nectar-lost__text {
    color: var(--cocoa);
    max-width: 30rem;
    margin: 0 auto 1.8rem;
}

.nectar-lost__home {
    margin: 1.8rem 0 0;
}

/* ============================================================
   10. Search form
   ============================================================ */
.seekform__label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--bark);
}

.seekform__row {
    display: flex;
    gap: 0.55rem;
}

.seekform__field {
    flex: 1;
    min-width: 0;
    padding: 0.7rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font: inherit;
    color: inherit;
}

.seekform__field:focus {
    border-color: var(--lavender);
    outline: none;
    box-shadow: 0 0 0 2px var(--lavender-mist);
}

.seekform__button {
    flex: none;
    background: var(--amber);
    color: #fff;
    border: 1px solid var(--amber);
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.seekform__button:hover {
    background: var(--amber-deep);
    border-color: var(--amber-deep);
}

/* ============================================================
   11. Pagination
   ============================================================ */
.nectar-pages {
    margin: 2.75rem 0 3.5rem;
    text-align: center;
}

.nectar-pages .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.6rem;
    height: 2.6rem;
    padding: 0 0.85rem;
    margin: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--bark);
    font-weight: 600;
    text-decoration: none;
}

.nectar-pages .page-numbers:hover {
    border-color: var(--amber);
}

.nectar-pages .page-numbers.current {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
}

/* ============================================================
   12. Comments — buzzhive
   ============================================================ */
.buzzhive {
    max-width: var(--prose);
    margin: 3.25rem auto 0;
}

.buzzhive__title {
    font-size: 1.4rem;
    margin: 0 0 1.4rem;
}

.buzzhive__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.buzz-reply__card {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 1.25rem 1.35rem;
}

.buzz-reply .children {
    list-style: none;
    margin: 1.1rem 0 0;
    padding-left: 1.2rem;
    border-left: 2px solid var(--line);
    display: grid;
    gap: 1.1rem;
}

.buzz-reply__head {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    margin-bottom: 0.65rem;
}

.buzz-reply__avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--honey);
    flex: none;
}

.buzz-reply__name {
    display: block;
    font-weight: 700;
    color: var(--bark);
}

.buzz-reply__name a,
.buzz-reply__name .url {
    color: inherit;
    text-decoration: none;
}

.buzz-reply__name a:hover {
    color: var(--amber-deep);
}

.buzz-reply__when {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
}

.buzz-reply__pending {
    font-size: 0.85rem;
    color: var(--lavender-deep);
    margin: 0 0 0.5rem;
}

.buzz-reply__text p {
    margin: 0.45rem 0;
}

.buzz-reply__foot {
    margin-top: 0.8rem;
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.buzz-reply__foot a {
    color: var(--amber-deep);
    font-weight: 600;
    text-decoration: none;
}

.buzzhive__closed {
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.buzzhive__pages {
    margin: 1.75rem 0 0;
    text-align: center;
}

.buzzhive__pages .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    height: 2.4rem;
    padding: 0 0.7rem;
    margin: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--bark);
    font-weight: 600;
    text-decoration: none;
}

.buzzhive__pages .page-numbers.current {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
}

/* Comment form */
.nectar-respond {
    margin-top: 2.5rem;
}

.nectar-respond__title {
    font-size: 1.3rem;
    margin: 0 0 0.5rem;
}

.nectar-respond__title a {
    color: var(--amber-deep);
}

.nectar-respond__title small a {
    display: inline-block;
    margin-left: 0.75rem;
    font-size: 0.8rem;
    color: var(--lavender-deep);
}

.nectar-respond__hint {
    color: var(--muted);
    font-size: 0.88rem;
    margin: 0 0 0.5rem;
}

.nectar-respond__row {
    display: grid;
    gap: 0.35rem;
    margin: 1rem 0;
}

.nectar-respond__label {
    font-weight: 600;
    font-size: 0.9rem;
}

.nectar-respond__req {
    color: var(--amber-deep);
}

.nectar-respond__field {
    width: 100%;
    padding: 0.7rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font: inherit;
    color: inherit;
}

.nectar-respond__area {
    width: 100%;
    padding: 0.9rem 1.15rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    font: inherit;
    color: inherit;
    resize: vertical;
}

.nectar-respond__field:focus,
.nectar-respond__area:focus {
    border-color: var(--lavender);
    outline: none;
    box-shadow: 0 0 0 2px var(--lavender-mist);
}

.nectar-respond__row--check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.nectar-respond__actions {
    margin: 1.25rem 0 0;
}

.nectar-respond__submit {
    background: var(--amber);
    color: #fff;
    border: 1px solid var(--amber);
    border-radius: 999px;
    padding: 0.7rem 2rem;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.nectar-respond__submit:hover {
    background: var(--amber-deep);
    border-color: var(--amber-deep);
}

/* ============================================================
   13. Footer — dark honeycomb, brand + grouped columns
   ============================================================ */
.hivefoot {
    background: var(--bark-deep);
    color: #ecdfc8;
    margin-top: 4.5rem;
}

.hivefoot__inner {
    padding: 3.25rem 0 0;
}

.hivefoot__grid {
    display: grid;
    gap: 2.25rem;
}

@media (min-width: 40em) {
    .hivefoot__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 64em) {
    .hivefoot__grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 2.5rem;
    }

    .hivefoot__brand {
        flex: 1.35 1 0;
        min-width: 0;
    }

    .hivefoot__col {
        flex: 1 1 0;
        min-width: 0;
    }
}

.hivefoot__brand-name {
    font-family: var(--font-head);
    font-size: 1.45rem;
    color: var(--honey);
    text-decoration: none;
}

.hivefoot__brand-name:hover {
    color: #fff;
}

.hivefoot__brand .custom-logo-link img {
    display: block;
    max-height: 2.8rem;
    width: auto;
}

.hivefoot__hexes {
    margin-top: 1.1rem;
    display: block;
}

.hivefoot__heading {
    margin: 0 0 1rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--honey);
}

.hivefoot__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.hivefoot__list a {
    color: #d9c8ab;
    text-decoration: none;
    font-size: 0.95rem;
}

.hivefoot__list a:hover {
    color: #fff;
}

.hivefoot__base {
    margin-top: 2.75rem;
    border-top: 1px solid rgba(242, 178, 62, 0.22);
    padding: 1.35rem 0 1.6rem;
    font-size: 0.85rem;
    color: #b8a37f;
    display: grid;
    gap: 0.35rem;
}

.hivefoot__copy,
.hivefoot__note {
    margin: 0;
}

/* ============================================================
   14. Sidebar widgets (registered but unused in this layout)
   ============================================================ */
.nectar-widget {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 1.25rem 1.35rem;
    margin-bottom: 1.5rem;
}

.nectar-widget__title {
    font-size: 1.1rem;
    margin: 0 0 0.9rem;
}

.nectar-widget ul {
    margin: 0;
    padding-left: 1.1rem;
}

/* ============================================================
   15. Small screens polish
   ============================================================ */
@media (max-width: 640px) {
    .meadow-hero {
        padding: 3rem 0 2.5rem;
    }

    .beekeeper {
        flex-direction: column;
    }

    .seekform__row {
        flex-wrap: wrap;
    }

    .seekform__field {
        flex: 1 1 100%;
    }
}
