/**
Theme Name: Landscape
Author: Avant Garde Web
Author URI: https://avantgardeweb.ie
Description: Premium branded Astra child theme for Landscape.ie. Provides a consistent global header, hero, footer, gallery styling, mobile navigation and concierge visual polish.
Version: 1.2.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landscape
Template: astra
*/

/*
 * Landscape.ie Theme Shell v1.2.1
 * Build date: 2026-05-26
 * Author: Avant Garde Web
 * House rules: consistent nav/hero/footer; mobile-first; no hard-coded page-builder dependency; concierge-safe.
 */

:root {
    --landscape-green: #006600;
    --landscape-deep: #013f08;
    --landscape-deeper: #002d05;
    --landscape-gold: #ece608;
    --landscape-warm-gold: #cdb310;
    --landscape-cream: #faf7e8;
    --landscape-cream-2: #fffdf3;
    --landscape-ink: #19351f;
    --landscape-muted: #63705f;
    --landscape-line: rgba(205, 179, 16, 0.32);
    --landscape-shadow: 0 22px 70px rgba(0, 45, 5, 0.18);
    --landscape-radius: 24px;
    --landscape-max: 1180px;
    --landscape-font-title: Georgia, 'Times New Roman', serif;
    --landscape-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.landscape-shell-active {
    background: linear-gradient(180deg, #fffdf3 0%, #f4f0dd 100%);
    color: var(--landscape-ink);
    font-family: var(--landscape-font-body);
    overflow-x: hidden;
}

body.landscape-shell-active .site-header,
body.landscape-shell-active #masthead,
body.landscape-shell-active .main-header-bar,
body.landscape-shell-active .ast-primary-header-bar,
body.landscape-shell-active .ast-above-header-bar,
body.landscape-shell-active .ast-below-header-bar,
body.landscape-shell-active .ast-mobile-header-wrap,
body.landscape-shell-active .ast-breadcrumbs-wrapper,
body.landscape-shell-active .site-footer,
body.landscape-shell-active footer.site-footer,
body.landscape-shell-active .ast-footer-copyright,
body.landscape-shell-active .site-primary-footer-wrap,
body.landscape-shell-active .site-below-footer-wrap,
body.landscape-shell-active .widget_search,
body.landscape-shell-active .search-form,
body.landscape-shell-active .ast-search-menu-icon {
    display: none !important;
}

body.landscape-shell-active .ast-container,
body.landscape-shell-active .site-content .ast-container,
body.landscape-shell-active .entry-content {
    max-width: var(--landscape-max);
}

body.landscape-shell-active .site-content {
    background: transparent;
}

body.landscape-shell-active .site-content .ast-container {
    padding-left: clamp(18px, 4vw, 36px);
    padding-right: clamp(18px, 4vw, 36px);
}

body.landscape-shell-active .entry-header,
body.landscape-shell-active .ast-single-post-order,
body.landscape-shell-active .post-thumb-img-content {
    display: none !important;
}

/* v1.2.1: site-wide no-sidebar/full-width content cleanup */
body.landscape-shell-active #secondary,
body.landscape-shell-active .widget-area,
body.landscape-shell-active .sidebar-main,
body.landscape-shell-active aside.sidebar,
body.landscape-shell-active .ast-sidebar-primary,
body.landscape-shell-active .ast-left-sidebar #secondary,
body.landscape-shell-active .ast-right-sidebar #secondary {
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

body.landscape-shell-active #primary,
body.landscape-shell-active .content-area,
body.landscape-shell-active .site-main,
body.landscape-shell-active.ast-right-sidebar #primary,
body.landscape-shell-active.ast-left-sidebar #primary,
body.landscape-shell-active.ast-separate-container #primary,
body.landscape-shell-active.ast-page-builder-template #primary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border: 0 !important;
}

body.landscape-shell-active.ast-right-sidebar .site-content .ast-container,
body.landscape-shell-active.ast-left-sidebar .site-content .ast-container,
body.landscape-shell-active .site-content .ast-container {
    display: block !important;
    max-width: 100% !important;
}

body.landscape-shell-active.ast-separate-container .ast-article-single,
body.landscape-shell-active.ast-separate-container .ast-article-post,
body.landscape-shell-active .ast-article-single,
body.landscape-shell-active article.page {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

body.landscape-shell-active .entry-content > .landscape-native-page:first-child {
    margin-top: clamp(26px, 4.6vw, 64px) !important;
}


/* ──────────────────────────────────────
   Global Header
   ────────────────────────────────────── */

.landscape-site-header {
    position: sticky;
    top: 0;
    z-index: 9998;
    width: 100%;
    background:
        radial-gradient(circle at 50% -20%, rgba(236, 230, 8, 0.17), transparent 34%),
        linear-gradient(135deg, rgba(0, 88, 0, 0.98), rgba(0, 45, 5, 0.98));
    border-bottom: 1px solid rgba(236, 230, 8, 0.32);
    box-shadow: 0 12px 36px rgba(0, 45, 5, 0.18);
    backdrop-filter: blur(18px);
}

.landscape-site-header.is-scrolled {
    box-shadow: 0 18px 54px rgba(0, 45, 5, 0.28);
}

body.admin-bar .landscape-site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .landscape-site-header {
        top: 46px;
    }
}

.landscape-header-inner {
    width: min(1300px, calc(100% - 40px));
    min-height: 92px;
    padding: 8px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.landscape-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    min-width: 0;
}

.landscape-brand-mark {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.landscape-brand-wordmark {
    width: min(292px, 35vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .22));
}

.landscape-primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.landscape-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 11px;
    border-radius: 999px;
    color: #fffdf2 !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.landscape-nav-link:hover,
.landscape-nav-link:focus-visible,
.landscape-nav-link.is-current {
    background: rgba(236, 230, 8, 0.15);
    color: var(--landscape-gold) !important;
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(236, 230, 8, .28);
}

.landscape-nav-link.landscape-nav-cta {
    margin-left: 4px;
    background: linear-gradient(135deg, var(--landscape-gold), var(--landscape-warm-gold));
    color: var(--landscape-deep) !important;
    box-shadow: 0 12px 28px rgba(236, 230, 8, .22);
}

.landscape-nav-link.landscape-nav-cta:hover,
.landscape-nav-link.landscape-nav-cta:focus-visible {
    background: linear-gradient(135deg, #fff36a, var(--landscape-gold));
    color: var(--landscape-deep) !important;
}

.landscape-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(236, 230, 8, .42);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: var(--landscape-gold);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.landscape-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 3px;
    transition: transform .2s ease, opacity .2s ease;
}

.landscape-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.landscape-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.landscape-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────
   Global Hero
   ────────────────────────────────────── */

.landscape-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(360px, 44vw, 560px);
    display: flex;
    align-items: stretch;
    background-color: var(--landscape-green);
    background-position: center;
    background-size: cover;
    isolation: isolate;
}

.landscape-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 82% 20%, rgba(236, 230, 8, .18), transparent 30%),
        linear-gradient(90deg, rgba(0, 45, 5, .88) 0%, rgba(0, 65, 0, .68) 46%, rgba(0, 45, 5, .34) 100%);
}

.landscape-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 88px;
    background: linear-gradient(180deg, transparent, #fffdf3 86%);
    pointer-events: none;
}

.landscape-hero-inner {
    width: min(var(--landscape-max), calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(42px, 5.5vw, 78px) 0 clamp(58px, 7vw, 98px);
    display: grid;
    grid-template-columns: minmax(0, 720px) minmax(220px, 1fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: center;
}

.landscape-hero-copy {
    position: relative;
    z-index: 2;
    color: #fffdf3;
}

.landscape-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    padding: 9px 15px;
    border: 1px solid rgba(236, 230, 8, .44);
    border-radius: 999px;
    background: rgba(0, 45, 5, .42);
    color: var(--landscape-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.landscape-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landscape-gold);
    box-shadow: 0 0 18px rgba(236, 230, 8, .82);
}

.landscape-hero h1 {
    margin: 0;
    max-width: 780px;
    color: #fffdf3;
    font-family: var(--landscape-font-title);
    font-size: clamp(43px, 6.4vw, 86px);
    line-height: .98;
    letter-spacing: -.035em;
    text-wrap: balance;
    text-shadow: 0 18px 56px rgba(0,0,0,.38);
}

.landscape-hero p {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(255, 253, 243, .9);
    font-size: clamp(17px, 1.8vw, 22px);
    line-height: 1.62;
    text-shadow: 0 10px 34px rgba(0,0,0,.36);
}

.landscape-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.landscape-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    border: 1px solid rgba(236, 230, 8, .42);
    background: rgba(255,255,255,.08);
    color: #fffdf3 !important;
    text-decoration: none !important;
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(0, 45, 5, .24);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.landscape-button:hover,
.landscape-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 26px 50px rgba(0, 45, 5, .34);
}

.landscape-button-primary {
    background: linear-gradient(135deg, var(--landscape-gold), var(--landscape-warm-gold));
    color: var(--landscape-deep) !important;
}

.landscape-button-secondary:hover,
.landscape-button-secondary:focus-visible {
    background: rgba(236, 230, 8, .14);
}

.landscape-hero-card {
    position: relative;
    z-index: 2;
    justify-self: end;
    width: min(310px, 100%);
    padding: 26px;
    border-radius: 30px;
    border: 1px solid rgba(236, 230, 8, .34);
    background: rgba(0, 45, 5, .50);
    box-shadow: 0 28px 80px rgba(0,0,0,.25);
    backdrop-filter: blur(14px);
}

.landscape-hero-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 32px rgba(0,0,0,.28));
}

.landscape-hero-card p {
    margin: 18px 0 0;
    color: rgba(255,253,243,.86);
    font-size: 14px;
    line-height: 1.58;
}

/* ──────────────────────────────────────
   Page Content Polish
   ────────────────────────────────────── */

body.landscape-shell-active .site-main,
body.landscape-shell-active .content-area {
    margin-top: 0;
    padding-top: 0 !important;
}

body.landscape-shell-active .site-content .ast-container,
body.landscape-shell-active #primary,
body.landscape-shell-active .ast-plain-container.ast-no-sidebar #primary,
body.landscape-shell-active .ast-page-builder-template .site-content #primary {
    padding-top: 0 !important;
}

body.landscape-shell-active .entry-content > p:empty,
body.landscape-shell-active .entry-content > .wp-block-spacer:first-child {
    display: none !important;
}

body.landscape-shell-active article.page,
body.landscape-shell-active article.post {
    margin-top: clamp(8px, 2vw, 26px);
}

body.landscape-shell-active .entry-content {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: clamp(42px, 7vw, 80px);
}

body.landscape-shell-active .entry-content > *:first-child {
    margin-top: 0;
}

body.landscape-shell-active .entry-content p,
body.landscape-shell-active .entry-content li {
    color: #263e2b;
    font-size: 17px;
    line-height: 1.78;
}

body.landscape-shell-active .entry-content h1,
body.landscape-shell-active .entry-content h2,
body.landscape-shell-active .entry-content h3,
body.landscape-shell-active .entry-content h4 {
    color: var(--landscape-deep);
    font-family: var(--landscape-font-title);
    letter-spacing: -.025em;
    line-height: 1.08;
}

body.landscape-shell-active .entry-content h2 {
    margin-top: 44px;
    font-size: clamp(32px, 4vw, 52px);
}

body.landscape-shell-active .entry-content h3 {
    margin-top: 32px;
    font-size: clamp(24px, 3vw, 36px);
}

body.landscape-shell-active .entry-content a:not(.wp-block-button__link) {
    color: var(--landscape-green);
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

body.landscape-shell-active .entry-content a:not(.wp-block-button__link):hover {
    color: var(--landscape-warm-gold);
}

body.landscape-shell-active .entry-content hr {
    border: none;
    border-top: 1px solid rgba(0, 102, 0, .16);
    margin: 40px 0;
}

body.landscape-shell-active .entry-content blockquote,
body.landscape-shell-active .entry-content .wp-block-quote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 5px solid var(--landscape-gold);
    border-radius: 18px;
    background: rgba(250, 247, 232, .82);
    box-shadow: 0 14px 44px rgba(0, 45, 5, .08);
}

body.landscape-shell-active .entry-content .wp-block-button__link,
body.landscape-shell-active .entry-content input[type="submit"],
body.landscape-shell-active .entry-content button[type="submit"] {
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--landscape-green), var(--landscape-deep)) !important;
    color: #fffdf3 !important;
    font-weight: 800 !important;
    border: 1px solid rgba(236, 230, 8, .35) !important;
    box-shadow: 0 16px 36px rgba(0, 45, 5, .18) !important;
}

/* ── Gallery polish ── */
body.landscape-shell-active .wp-block-gallery,
body.landscape-shell-active .gallery,
body.landscape-shell-active .blocks-gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
    gap: 16px !important;
    margin: 32px 0 !important;
}

body.landscape-shell-active .wp-block-gallery.has-nested-images figure.wp-block-image,
body.landscape-shell-active .wp-block-gallery figure,
body.landscape-shell-active .gallery-item,
body.landscape-shell-active .blocks-gallery-item {
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden;
    border-radius: 22px;
    background: var(--landscape-cream);
    box-shadow: 0 16px 48px rgba(0, 45, 5, .13);
}

body.landscape-shell-active .entry-content img:not(.emoji):not(.lc-fab-monogram):not(.lc-header-logo) {
    border-radius: 20px;
}

body.landscape-shell-active .wp-block-gallery img,
body.landscape-shell-active .gallery img,
body.landscape-shell-active .blocks-gallery-grid img,
body.landscape-shell-active .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    min-height: 235px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 0 !important;
    border-radius: 22px !important;
    transform: scale(1.001);
    transition: transform .35s ease, filter .35s ease;
}

body.landscape-shell-active .wp-block-gallery figure:hover img,
body.landscape-shell-active .gallery-item:hover img,
body.landscape-shell-active .blocks-gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.04);
}

body.landscape-shell-active .wp-block-gallery figcaption,
body.landscape-shell-active .gallery-caption,
body.landscape-shell-active .blocks-gallery-item figcaption {
    padding: 10px 12px !important;
    background: linear-gradient(180deg, transparent, rgba(0, 45, 5, .78)) !important;
    color: #fffdf3 !important;
    font-size: 13px !important;
}

/* Contact / form polish */
body.landscape-shell-active form,
body.landscape-shell-active .wpcf7 form {
    max-width: 780px;
    margin-top: 24px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(0, 102, 0, .14);
    border-radius: 28px;
    background: rgba(255, 253, 243, .82);
    box-shadow: var(--landscape-shadow);
}

body.landscape-shell-active input[type="text"],
body.landscape-shell-active input[type="email"],
body.landscape-shell-active input[type="tel"],
body.landscape-shell-active input[type="url"],
body.landscape-shell-active textarea,
body.landscape-shell-active select {
    width: 100%;
    border: 1px solid rgba(0, 102, 0, .22) !important;
    border-radius: 14px !important;
    background: #fffdf9 !important;
    color: var(--landscape-ink) !important;
    padding: 13px 14px !important;
    box-shadow: inset 0 1px 0 rgba(0,0,0,.02);
}

body.landscape-shell-active input:focus,
body.landscape-shell-active textarea:focus,
body.landscape-shell-active select:focus {
    outline: 3px solid rgba(236, 230, 8, .24) !important;
    border-color: var(--landscape-green) !important;
}

/* ──────────────────────────────────────
   Concierge Visual Integration
   ────────────────────────────────────── */

#landscape-concierge-widget {
    z-index: 9999 !important;
}

#landscape-concierge-widget .lc-chat-label {
    background: rgba(250, 247, 232, .96) !important;
    color: var(--landscape-deep) !important;
    border: 1px solid rgba(236, 230, 8, .45) !important;
    box-shadow: 0 12px 36px rgba(0, 45, 5, .22) !important;
    font-weight: 800 !important;
}

#landscape-concierge-widget .lc-chat-button,
#landscape-concierge-widget .lc-send-btn,
#landscape-concierge-widget .lc-chat-header,
#landscape-concierge-widget .lc-action-btn,
#landscape-concierge-widget .lc-user-message,
.lc-embedded .lc-send-btn,
.lc-embedded .lc-embedded-header,
.lc-embedded .lc-action-btn,
.lc-embedded .lc-user-message {
    background: linear-gradient(135deg, var(--landscape-green), var(--landscape-deep)) !important;
}

#landscape-concierge-widget .lc-chat-button {
    border-color: var(--landscape-gold) !important;
    box-shadow: 0 18px 42px rgba(0, 45, 5, .32), 0 0 0 6px rgba(236, 230, 8, .10) !important;
}

/* Concierge header contrast fix — keeps shortcode and floating chat readable on dark green */
#landscape-concierge-widget .lc-chat-header,
#landscape-concierge-widget .lc-chat-header *,
.lc-embedded .lc-embedded-header,
.lc-embedded .lc-embedded-header * {
    color: #fffdf3 !important;
}

#landscape-concierge-widget .lc-chat-header h3,
.lc-embedded .lc-embedded-header h3 {
    color: var(--landscape-gold) !important;
    font-family: var(--landscape-font-title) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
}

.lc-embedded .lc-embedded-header h3 {
    font-size: clamp(28px, 3.2vw, 44px) !important;
    line-height: 1.05 !important;
}

#landscape-concierge-widget .lc-chat-header h3 {
    font-size: 17px !important;
    line-height: 1.1 !important;
}

.lc-embedded .lc-header-logo,
#landscape-concierge-widget .lc-header-logo {
    background: rgba(255, 253, 243, .12) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

#landscape-concierge-widget .lc-chat-window,
.lc-embedded {
    border: 1px solid rgba(236, 230, 8, .38) !important;
    border-radius: 24px !important;
    box-shadow: 0 26px 80px rgba(0, 45, 5, .24) !important;
    overflow: hidden;
}

#landscape-concierge-widget .lc-bot-message,
.lc-embedded .lc-bot-message {
    background: var(--landscape-cream) !important;
    color: var(--landscape-ink) !important;
}

#landscape-concierge-widget .lc-chat-footer,
.lc-embedded .lc-chat-footer {
    background: #fffdf7 !important;
}

#landscape-concierge-widget .lc-chat-footer a,
.lc-embedded .lc-chat-footer a {
    color: var(--landscape-green) !important;
    font-weight: 800 !important;
}

/* ──────────────────────────────────────
   Global Footer
   ────────────────────────────────────── */

.landscape-site-footer {
    position: relative;
    overflow: hidden;
    margin-top: clamp(32px, 6vw, 80px);
    background:
        radial-gradient(circle at 20% 0%, rgba(236, 230, 8, .16), transparent 30%),
        linear-gradient(135deg, var(--landscape-deeper), var(--landscape-green));
    color: #fffdf3;
    border-top: 1px solid rgba(236, 230, 8, .32);
}

.landscape-footer-inner {
    width: min(var(--landscape-max), calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(44px, 6vw, 70px) 0 28px;
}

.landscape-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
}

.landscape-footer-logo {
    width: min(360px, 70vw);
    height: auto;
    margin-bottom: 18px;
}

.landscape-site-footer h3,
.landscape-site-footer h4 {
    margin: 0 0 12px;
    color: var(--landscape-gold);
    font-family: var(--landscape-font-title);
    letter-spacing: -.015em;
}

.landscape-site-footer p,
.landscape-site-footer li,
.landscape-site-footer a {
    color: rgba(255, 253, 243, .86);
    line-height: 1.7;
}

.landscape-site-footer a {
    font-weight: 800;
    text-decoration: none;
}

.landscape-site-footer a:hover {
    color: var(--landscape-gold);
}

.landscape-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landscape-footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(236, 230, 8, .22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}

.landscape-author-credit {
    color: rgba(255, 253, 243, .74);
}

.landscape-author-credit a {
    color: var(--landscape-gold) !important;
}

/* ──────────────────────────────────────
   Responsive
   ────────────────────────────────────── */

@media (max-width: 1240px) {
    .landscape-header-inner {
        min-height: 76px;
    }

    .landscape-menu-toggle {
        display: inline-flex;
    }

    .landscape-primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid rgba(236, 230, 8, .3);
        border-radius: 22px;
        background: rgba(0, 55, 4, .97);
        box-shadow: 0 24px 70px rgba(0, 45, 5, .34);
    }

    .landscape-primary-nav.is-open {
        display: flex;
    }

    .landscape-nav-link,
    .landscape-nav-link.landscape-nav-cta {
        width: 100%;
        justify-content: space-between;
        margin: 0;
        padding: 13px 15px;
        border-radius: 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .landscape-hero-inner {
        grid-template-columns: 1fr;
    }

    .landscape-hero-card {
        justify-self: start;
        width: min(330px, 72vw);
    }
}

@media (max-width: 680px) {
    .landscape-header-inner {
        width: calc(100% - 24px);
        min-height: 70px;
        gap: 10px;
    }

    .landscape-brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .landscape-brand-wordmark {
        width: min(226px, 56vw);
    }

    .landscape-hero {
        min-height: 520px;
        background-position: center top;
    }

    .landscape-hero-inner {
        width: calc(100% - 28px);
        padding: 38px 0 76px;
        align-content: center;
    }

    .landscape-hero h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .landscape-hero p {
        font-size: 17px;
    }

    .landscape-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landscape-button {
        width: 100%;
    }

    .landscape-hero-card {
        display: none;
    }

    body.landscape-shell-active .site-content .ast-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    body.landscape-shell-active .wp-block-gallery,
    body.landscape-shell-active .gallery,
    body.landscape-shell-active .blocks-gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    body.landscape-shell-active .wp-block-gallery img,
    body.landscape-shell-active .gallery img,
    body.landscape-shell-active .blocks-gallery-grid img,
    body.landscape-shell-active .gallery-item img {
        min-height: 250px;
    }

    .landscape-footer-grid {
        grid-template-columns: 1fr;
    }

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

    #landscape-concierge-widget .lc-chat-label {
        display: none !important;
    }
}

/* v1.1.1 hotfix: keeps desktop nav on one line and restores the Ponds & Lighting nav route. */

/* v1.1.4 spacing hotfix: tightened hero vertical rhythm and removed Astra/page-builder top padding before content. */


/* ──────────────────────────────────────
   v1.1.9 Concierge Premium Refinement
   ────────────────────────────────────── */

body.landscape-shell-active .entry-content:has(.lc-embedded) {
    max-width: 1120px;
    padding-bottom: clamp(28px, 5vw, 58px);
}

body.landscape-shell-active .entry-content .wp-block-shortcode:has(.lc-embedded),
body.landscape-shell-active .entry-content p:has(.lc-embedded) {
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
}

body.landscape-shell-active .lc-embedded {
    width: min(960px, 100%) !important;
    max-width: 960px !important;
    height: clamp(540px, 62vh, 680px) !important;
    min-height: 540px !important;
    margin: clamp(14px, 3vw, 34px) auto 0 !important;
    border-radius: 30px !important;
    border: 1px solid rgba(236, 230, 8, .34) !important;
    background: #fffdf7 !important;
    box-shadow: 0 30px 90px rgba(0, 45, 5, .18) !important;
    overflow: hidden !important;
}

body.landscape-shell-active .lc-embedded .lc-embedded-header {
    min-height: 92px !important;
    padding: 22px 30px !important;
    background:
        radial-gradient(circle at 18% 0%, rgba(236, 230, 8, .18), transparent 36%),
        linear-gradient(135deg, #006600 0%, #003f08 58%, #002d05 100%) !important;
    border-bottom: 1px solid rgba(236, 230, 8, .30) !important;
    box-shadow: inset 0 -1px 0 rgba(255, 253, 243, .08) !important;
}

body.landscape-shell-active .lc-embedded .lc-chat-header-info {
    align-items: center !important;
    gap: 16px !important;
}

body.landscape-shell-active .lc-embedded .lc-header-logo,
body.landscape-shell-active #landscape-concierge-widget .lc-header-logo {
    width: 44px !important;
    height: 44px !important;
    padding: 4px !important;
    border-radius: 13px !important;
    background: rgba(255, 253, 243, .12) !important;
    border: 1px solid rgba(236, 230, 8, .28) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18) !important;
}

body.landscape-shell-active .lc-embedded .lc-embedded-header h3 {
    color: #fffdf3 !important;
    font-family: var(--landscape-font-title) !important;
    font-size: clamp(28px, 2.6vw, 38px) !important;
    line-height: 1.02 !important;
    font-weight: 700 !important;
    letter-spacing: -.025em !important;
    margin: 0 !important;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .28) !important;
}

body.landscape-shell-active .lc-embedded .lc-embedded-header h3::after {
    content: "";
    display: block;
    width: 132px;
    height: 2px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--landscape-gold), rgba(236, 230, 8, 0));
}

body.landscape-shell-active .lc-embedded .lc-chat-messages {
    padding: 24px 30px 14px !important;
    background:
        radial-gradient(circle at 90% 10%, rgba(236, 230, 8, .08), transparent 34%),
        linear-gradient(180deg, #fffdf9 0%, #faf6e8 100%) !important;
}

body.landscape-shell-active .lc-embedded .lc-message {
    font-size: 16px !important;
    line-height: 1.65 !important;
}

body.landscape-shell-active .lc-embedded .lc-bot-message {
    max-width: min(620px, 88%) !important;
    padding: 17px 21px !important;
    border-radius: 20px 20px 20px 6px !important;
    background: #f6f0dc !important;
    color: var(--landscape-ink) !important;
    border: 1px solid rgba(0, 102, 0, .09) !important;
    box-shadow: 0 12px 36px rgba(0, 45, 5, .08) !important;
}

body.landscape-shell-active .lc-embedded .lc-user-message {
    background: linear-gradient(135deg, var(--landscape-green), var(--landscape-deep)) !important;
    color: #fffdf3 !important;
    border: 1px solid rgba(236, 230, 8, .18) !important;
    box-shadow: 0 12px 32px rgba(0, 45, 5, .16) !important;
}

body.landscape-shell-active .lc-embedded .lc-chat-input-area {
    padding: 16px 20px !important;
    gap: 12px !important;
    background: #fffdf7 !important;
    border-top: 1px solid rgba(0, 102, 0, .12) !important;
}

body.landscape-shell-active .lc-embedded .lc-user-input {
    min-height: 50px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(0, 102, 0, .20) !important;
    background: #fffefa !important;
    color: var(--landscape-ink) !important;
    font-size: 15px !important;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .02) !important;
}

body.landscape-shell-active .lc-embedded .lc-user-input:focus {
    border-color: var(--landscape-green) !important;
    box-shadow: 0 0 0 4px rgba(236, 230, 8, .18) !important;
}

body.landscape-shell-active .lc-embedded .lc-send-btn,
body.landscape-shell-active #landscape-concierge-widget .lc-send-btn {
    background: linear-gradient(135deg, var(--landscape-gold), var(--landscape-warm-gold)) !important;
    color: var(--landscape-deep) !important;
    border-radius: 14px !important;
    box-shadow: 0 14px 30px rgba(0, 45, 5, .14) !important;
}

body.landscape-shell-active .lc-embedded .lc-send-arrow,
body.landscape-shell-active #landscape-concierge-widget .lc-send-arrow {
    color: var(--landscape-deep) !important;
}

body.landscape-shell-active .lc-embedded .lc-chat-footer {
    background: #fffdf7 !important;
    border-top: 1px solid rgba(0, 102, 0, .08) !important;
}

body.landscape-shell-active #landscape-concierge-widget .lc-chat-header h3 {
    color: #fffdf3 !important;
    font-family: var(--landscape-font-title) !important;
    font-size: 18px !important;
    letter-spacing: -.015em !important;
}

body.landscape-shell-active #landscape-concierge-widget .lc-chat-header h3::after {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    margin-top: 4px;
    background: linear-gradient(90deg, var(--landscape-gold), transparent);
}

@media (max-width: 680px) {
    body.landscape-shell-active .lc-embedded {
        width: 100% !important;
        height: 72vh !important;
        min-height: 480px !important;
        margin-top: 8px !important;
        border-radius: 22px !important;
    }

    body.landscape-shell-active .lc-embedded .lc-embedded-header {
        min-height: 80px !important;
        padding: 18px 18px !important;
    }

    body.landscape-shell-active .lc-embedded .lc-header-logo {
        width: 38px !important;
        height: 38px !important;
        border-radius: 11px !important;
    }

    body.landscape-shell-active .lc-embedded .lc-embedded-header h3 {
        font-size: clamp(25px, 8vw, 32px) !important;
    }

    body.landscape-shell-active .lc-embedded .lc-embedded-header h3::after {
        width: 94px;
        margin-top: 8px;
    }

    body.landscape-shell-active .lc-embedded .lc-chat-messages {
        padding: 18px 16px 10px !important;
    }

    body.landscape-shell-active .lc-embedded .lc-chat-input-area {
        padding: 12px 12px !important;
    }
}

/* ──────────────────────────────────────
   v1.1.9 Plugin Reduction / Native Gallery Fallback
   ────────────────────────────────────── */

body.landscape-shell-active .panel-layout,
body.landscape-shell-active .panel-grid,
body.landscape-shell-active .panel-grid-cell,
body.landscape-shell-active .so-panel,
body.landscape-shell-active .so-widget-sow-editor,
body.landscape-shell-active .siteorigin-widget-tinymce {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

body.landscape-shell-active .panel-grid,
body.landscape-shell-active .panel-grid-cell {
    display: block !important;
}

body.landscape-shell-active .siteorigin-widget-tinymce > span:first-child,
body.landscape-shell-active .so-panel.widget_sow-image > span:first-child {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 13px;
    border: 1px solid rgba(205, 179, 16, .38);
    border-radius: 999px;
    background: rgba(0, 102, 0, .06);
    color: var(--landscape-green);
    font-size: 12px !important;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.landscape-shell-active .landscape-service-native {
    width: min(980px, 100%);
    margin: 0 auto;
}

body.landscape-shell-active .landscape-service-native .landscape-service-kicker {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 8px 13px;
    border: 1px solid rgba(205, 179, 16, .38);
    border-radius: 999px;
    background: rgba(0, 102, 0, .06);
    color: var(--landscape-green);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.landscape-shell-active .landscape-service-native h2 {
    margin: 0 0 18px;
    color: var(--landscape-deep);
    font-family: var(--landscape-font-title);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.03em;
}

body.landscape-shell-active .landscape-service-native .landscape-lede {
    max-width: 760px;
    margin: 0 0 28px;
    color: #28472d;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.64;
}

body.landscape-shell-active .landscape-service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(260px, .72fr);
    gap: clamp(24px, 5vw, 54px);
    align-items: start;
    margin: clamp(18px, 3vw, 36px) 0;
}

body.landscape-shell-active .landscape-service-card {
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(205, 179, 16, .28);
    border-radius: 28px;
    background: rgba(255, 253, 243, .72);
    box-shadow: 0 22px 70px rgba(0, 45, 5, .08);
}

body.landscape-shell-active .landscape-service-card h3 {
    margin-top: 0;
    color: var(--landscape-deep);
    font-family: var(--landscape-font-title);
    font-size: clamp(25px, 2.3vw, 34px);
    letter-spacing: -.025em;
}

body.landscape-shell-active .landscape-service-card ul {
    margin: 0;
    padding-left: 1.15rem;
}

body.landscape-shell-active .landscape-service-card li {
    margin: 0 0 10px;
    line-height: 1.55;
}

.landscape-native-gallery,
body.landscape-shell-active .foogallery.landscape-legacy-foogallery-fallback,
body.landscape-shell-active .foogallery {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)) !important;
    gap: 12px !important;
    width: min(1120px, 100%) !important;
    margin: clamp(30px, 5vw, 54px) auto 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.landscape-native-gallery-item,
body.landscape-shell-active .foogallery .fg-item {
    position: relative !important;
    display: block !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    background: #e7e0c7 !important;
    box-shadow: 0 16px 42px rgba(0, 45, 5, .13) !important;
}

.landscape-native-gallery-item a,
body.landscape-shell-active .foogallery .fg-thumb {
    display: block !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}

.landscape-native-gallery-img,
body.landscape-shell-active .foogallery .fg-image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .32s ease, filter .32s ease !important;
}

.landscape-native-gallery-item:hover img,
body.landscape-shell-active .foogallery .fg-item:hover .fg-image {
    transform: scale(1.045) !important;
    filter: saturate(1.04) contrast(1.02) !important;
}

.landscape-native-gallery-item figcaption,
body.landscape-shell-active .foogallery .fg-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 14px 12px;
    background: linear-gradient(180deg, transparent, rgba(0, 45, 5, .74));
    color: #fffdf3;
    font-size: 12px;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.landscape-native-gallery-item:hover figcaption,
body.landscape-shell-active .foogallery .fg-item:hover .fg-caption {
    opacity: 1;
    transform: translateY(0);
}

.landscape-native-gallery-more {
    margin: 28px 0 0 !important;
    text-align: center;
}

body.landscape-shell-active .foogallery .fg-loader,
body.landscape-shell-active .foogallery .fg-image-wrap::before,
body.landscape-shell-active .foogallery .fg-image-wrap::after {
    display: none !important;
}

@media (max-width: 760px) {
    body.landscape-shell-active .landscape-service-grid {
        grid-template-columns: 1fr;
    }

    .landscape-native-gallery,
    body.landscape-shell-active .foogallery {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }
}

/* v1.1.9: legacy FooGallery image fallback after plugin/page-builder cleanup */
body.landscape-shell-active .foogallery .fg-image-wrap {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

body.landscape-shell-active .foogallery .fg-thumb.landscape-gallery-bg-fallback {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

body.landscape-shell-active .foogallery .fg-thumb.landscape-gallery-bg-fallback img.landscape-gallery-image-error {
    opacity: 0 !important;
}

body.landscape-shell-active .foogallery img.landscape-gallery-image-hydrated,
body.landscape-shell-active .landscape-native-gallery img.landscape-gallery-image-hydrated,
body.landscape-shell-active .foogallery img.landscape-gallery-hydrated-server {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


/* v1.2.1 native gallery/page-builder retirement polish */
body.landscape-shell-active .landscape-native-page {
    width: min(1120px, calc(100% - 32px));
    margin: clamp(28px, 5vw, 68px) auto clamp(72px, 8vw, 118px);
}

body.landscape-shell-active .landscape-copy-card {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(205, 179, 16, .22);
    border-radius: 34px;
    background: rgba(255, 253, 243, .86);
    box-shadow: 0 28px 90px rgba(0, 45, 5, .08);
}

body.landscape-shell-active .landscape-copy-card h2 {
    margin: 0 0 16px;
    color: var(--landscape-deep);
    font-family: var(--landscape-font-title);
    font-size: clamp(36px, 4.2vw, 62px);
    letter-spacing: -.035em;
}

body.landscape-shell-active .landscape-copy-card p {
    max-width: 860px;
    font-size: clamp(17px, 1.2vw, 20px);
    line-height: 1.72;
}

body.landscape-shell-active .landscape-standard-copy > *:first-child,
body.landscape-shell-active .landscape-copy-card > *:first-child {
    margin-top: 0 !important;
}

body.landscape-shell-active .landscape-standard-copy h1,
body.landscape-shell-active .landscape-standard-copy h2,
body.landscape-shell-active .landscape-standard-copy h3 {
    color: var(--landscape-deep) !important;
    font-family: var(--landscape-font-title) !important;
    letter-spacing: -.03em;
}

body.landscape-shell-active .landscape-standard-copy h2 {
    font-size: clamp(32px, 3.8vw, 56px);
}

body.landscape-shell-active .landscape-standard-copy a:not(.landscape-button) {
    color: var(--landscape-green) !important;
    font-weight: 800;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

body.landscape-shell-active .landscape-native-cta {
    margin-top: 28px !important;
}

body.landscape-shell-active .landscape-native-page-contact .landscape-copy-card,
body.landscape-shell-active .landscape-native-page-standard .landscape-copy-card {
    width: min(980px, 100%);
    margin-left: auto;
    margin-right: auto;
}

body.landscape-shell-active .landscape-copy-card input,
body.landscape-shell-active .landscape-copy-card textarea,
body.landscape-shell-active .landscape-copy-card select {
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(0, 102, 0, .22) !important;
    border-radius: 14px !important;
    background: #fffefa !important;
    color: var(--landscape-ink) !important;
    padding: 13px 15px !important;
}

body.landscape-shell-active .landscape-copy-card input[type=submit],
body.landscape-shell-active .landscape-copy-card button[type=submit] {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, var(--landscape-gold), var(--landscape-warm-gold)) !important;
    color: var(--landscape-deep) !important;
    font-weight: 900 !important;
    box-shadow: 0 16px 32px rgba(0, 45, 5, .13) !important;
}


body.landscape-shell-active .landscape-section-kicker {
    margin: 0 0 12px !important;
    color: var(--landscape-deep);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 12px !important;
}

body.landscape-shell-active .landscape-service-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

body.landscape-shell-active .landscape-service-grid-compact .landscape-service-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.58);
}

body.landscape-shell-active .landscape-service-grid-compact .landscape-service-card h3 {
    font-size: clamp(21px, 2vw, 28px);
    margin-bottom: 8px;
}

body.landscape-shell-active .landscape-service-grid-compact .landscape-service-card p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

body.landscape-shell-active .landscape-native-page-gallery .landscape-native-gallery {
    margin-top: 28px !important;
}

body.landscape-shell-active .landscape-native-gallery-item a[data-landscape-lightbox] {
    cursor: zoom-in;
}

.landscape-lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(18px, 4vw, 48px);
    background: rgba(0, 28, 4, .92);
    backdrop-filter: blur(8px);
}

.landscape-lightbox-overlay.is-open {
    display: flex;
}

.landscape-lightbox-overlay img {
    display: block;
    max-width: min(1120px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 36px 120px rgba(0,0,0,.52);
}

.landscape-lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(236, 230, 8, .35);
    border-radius: 999px;
    background: rgba(0, 102, 0, .82);
    color: #fffdf3;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 760px) {
    body.landscape-shell-active .landscape-service-grid-compact {
        grid-template-columns: 1fr;
    }

    body.landscape-shell-active .landscape-copy-card {
        padding: 24px 20px;
        border-radius: 24px;
    }
}
