:root {
  --forest-950: #0b261c;
  --forest-900: #102f22;
  --forest-800: #153b2b;
  --forest-700: #1e5039;
  --forest-600: #2c694b;
  --sage-500: #6e9279;
  --sage-300: #b8c9b7;
  --sage-100: #e7eee4;
  --cream-50: #fbfaf5;
  --cream-100: #f5f2e8;
  --cream-200: #e9e4d6;
  --ink: #1a241e;
  --muted: #5e6861;
  --white: #fff;
  --amber: #eda943;
  --amber-deep: #d78b24;
  --cta-orange: #ff7a1a;
  --cta-orange-deep: #e65100;
  --cta-orange-hot: #ff9a32;
  --cta-ink: #241208;
  --red: #aa5849;
  --line: rgba(20, 52, 38, 0.14);
  --shadow-sm: 0 6px 20px rgba(13, 43, 30, 0.08);
  --shadow-lg: 0 28px 80px rgba(7, 29, 19, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { max-width: 100%; overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 110px; }
body { max-width: 100%; margin: 0; overflow-x: clip; color: var(--ink); background: var(--cream-50); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
small { font-size: 13px; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
button { color: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0, 0, 0, 0); overflow: hidden; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 16px; color: var(--white); background: var(--forest-950); transform: translateY(-150%); border-radius: 6px; }
.skip-link:focus { transform: none; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.038em; line-height: 1.08; text-wrap: balance; }
h2 { margin-bottom: 20px; color: var(--forest-900); font-size: clamp(2.3rem, 4.2vw, 4rem); }
h3 { line-height: 1.25; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--forest-600); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.eyebrow-light { color: #b9d3be; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid transparent; border-radius: 7px; font-size: 0.94rem; font-weight: 700; cursor: pointer; transition: transform 220ms cubic-bezier(.2,.8,.2,1), background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-small { min-height: 44px; padding: 0 18px; font-size: 0.88rem; }
.button-primary, .button-accent { position: relative; overflow: hidden; color: var(--cta-ink); background: linear-gradient(135deg,var(--cta-orange-hot),var(--cta-orange) 48%,var(--cta-orange-deep)); box-shadow: 0 12px 28px rgba(230,81,0,.3), inset 0 1px rgba(255,255,255,.42); isolation: isolate; }
.button-primary::after, .button-accent::after { position: absolute; top: -55%; bottom: -55%; left: -42%; width: 24%; background: linear-gradient(90deg,transparent,rgba(255,255,255,.62),transparent); content: ""; pointer-events: none; transform: skewX(-20deg); transition: left 520ms cubic-bezier(.2,.8,.2,1); }
.button-primary:hover, .button-accent:hover { color: var(--cta-ink); background: linear-gradient(135deg,#ffad4f,var(--cta-orange-hot) 42%,#f45f05); box-shadow: 0 20px 42px rgba(230,81,0,.4), 0 0 0 4px rgba(255,122,26,.15), inset 0 1px rgba(255,255,255,.55); filter: saturate(1.08); transform: translateY(-4px) scale(1.025); }
.button-primary:hover::after, .button-accent:hover::after { left: 122%; }
.button-primary:hover svg, .button-accent:hover svg { animation: cta-arrow-nudge 650ms ease-in-out infinite alternate; }
.button-primary:active, .button-accent:active { box-shadow: 0 8px 18px rgba(230,81,0,.28); transform: translateY(-1px) scale(.985); }
.button-primary:focus-visible, .button-accent:focus-visible { outline: 3px solid rgba(255,122,26,.34); outline-offset: 3px; }
.button-primary:disabled, .button-accent:disabled { color: #6f746f; background: #dfe4df; box-shadow: none; cursor: not-allowed; filter: none; transform: none; }
.button-primary:disabled::after, .button-accent:disabled::after { display: none; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.button-light { color: var(--forest-900); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-700); font-weight: 700; }
.text-link svg { transition: transform 180ms ease; }
.text-link:hover svg { transform: translateX(4px); }

@keyframes cta-arrow-nudge { to { transform: translateX(6px); } }

.utility-bar { color: #dce8df; background: var(--forest-950); font-size: 13px; }
.utility-inner { display: flex; min-height: 36px; align-items: center; justify-content: center; gap: 30px; }
.season-link, .trust-mini, .trust-mini span { display: flex; align-items: center; }
.season-link { gap: 8px; }
.season-link svg { width: 15px; height: 15px; fill: none; stroke: var(--amber); stroke-width: 1.6; }
.season-link svg:last-child { width: 16px; stroke: currentColor; }
.trust-mini { gap: 22px; color: #b8c9bd; }
.trust-mini span { gap: 6px; }
.trust-mini svg { width: 13px; height: 13px; fill: none; stroke: var(--amber); stroke-width: 2; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(15, 45, 32, .08); background: rgba(251, 250, 245, .96); backdrop-filter: blur(15px); }
.header-main { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 11px; color: var(--forest-900); }
.brand-mark { display: grid; width: 42px; height: 48px; place-items: center; }
.brand-mark svg { width: 38px; height: 44px; fill: none; stroke: var(--forest-700); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-family: var(--serif); font-size: 1.35rem; letter-spacing: -0.03em; line-height: 1.05; }
.brand-copy small { margin-top: 3px; color: var(--sage-500); font-size: 13px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.icon-button:hover { background: var(--sage-100); }
.icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.menu-trigger { display: none; }
.menu-close-icon { display: none !important; }
.menu-trigger[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-trigger[aria-expanded="true"] .menu-close-icon { display: block !important; }
.category-nav-wrap { border-top: 1px solid var(--line); background: rgba(255,255,255,.34); }
.category-nav.container { width: min(calc(100% - 20px), 1420px); }
.category-nav { display: flex; min-height: 45px; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.category-nav::-webkit-scrollbar { display: none; }
.category-trigger { position: relative; display: flex; min-width: max-content; flex: 1 0 auto; align-items: center; justify-content: center; gap: 3px; padding: 0 4px; border: 0; background: transparent; color: #39463f; font-size: 13px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: color 180ms ease, background 180ms ease; }
.category-trigger::after { position: absolute; right: 8px; bottom: -1px; left: 8px; height: 2px; border-radius: 2px; background: var(--forest-700); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
.category-trigger:hover, .category-trigger[aria-expanded="true"] { color: var(--forest-700); background: var(--sage-100); }
.category-trigger[aria-expanded="true"]::after { transform: scaleX(1); }
.category-trigger > svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform 180ms ease; }
.category-trigger[aria-expanded="true"] > svg { transform: rotate(180deg); }
.category-trigger-icon { display: none; }
.mega-menu { position: absolute; z-index: 3; top: 100%; left: 0; width: 100%; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream-50); box-shadow: var(--shadow-lg); }
.mega-grid { display: grid; grid-template-columns: 1.1fr 2fr .8fr; gap: 48px; padding-block: 38px; }
.mega-intro h2 { margin-bottom: 12px; font-size: 2rem; }
.mega-intro p { max-width: 330px; color: var(--muted); }
.mega-category-icon { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: var(--sage-100); font-style: normal; letter-spacing: 0; }
.mega-link-grid { display: grid; align-content: start; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; }
.mega-link-grid a { display: flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); color: #415047; font-size: .86rem; font-weight: 600; }
.mega-link-grid a:hover { color: var(--forest-700); }
.mega-link-grid a svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; opacity: .55; transition: transform 180ms ease; }
.mega-link-grid a:hover svg { transform: translateX(3px); }
.mega-feature { align-self: stretch; padding: 24px; border-radius: var(--radius-md); background: var(--sage-100); }
.mega-feature-icon { display: grid; width: 42px; height: 42px; margin-bottom: 16px; place-items: center; border-radius: 50%; color: var(--forest-700); background: var(--white); }
.mega-feature-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.mega-feature strong, .mega-feature p, .mega-feature a { display: block; }
.mega-feature p { margin: 7px 0 12px; color: var(--muted); font-size: .86rem; }
.mega-feature a { color: var(--forest-700); font-size: .86rem; font-weight: 700; }
.mobile-menu { max-height: calc(100vh - 100px); max-height: calc(100dvh - 100px); padding: 8px 20px 20px; overflow-y: auto; overscroll-behavior: contain; border-top: 1px solid var(--line); background: var(--cream-50); }
.mobile-menu nav { display: flex; flex-direction: column; margin-bottom: 18px; }
.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-group summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 0; color: var(--forest-900); font-size: .86rem; font-weight: 700; list-style: none; cursor: pointer; }
.mobile-nav-group summary::-webkit-details-marker { display: none; }
.mobile-nav-group summary > span { display: flex; align-items: center; gap: 10px; }
.mobile-nav-group summary i { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--forest-700); background: var(--sage-100); font-family: var(--serif); font-size: 13px; font-style: normal; }
.mobile-nav-group summary svg { width: 17px; height: 17px; fill: none; stroke: var(--forest-600); stroke-width: 1.6; transition: transform 180ms ease; }
.mobile-nav-group[open] summary svg { transform: rotate(45deg); }
.mobile-subnav { display: grid; padding: 0 0 14px 37px; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.mobile-subnav a { display: flex; min-height: 44px; align-items: center; padding: 8px 0; color: var(--muted); font-size: 13px; }
.mobile-subnav .mobile-all-link { color: var(--forest-700); font-weight: 700; grid-column: 1 / -1; }
.mobile-menu > .button { width: 100%; }

.search-dialog { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(8, 30, 21, .88); }
.search-dialog::backdrop { background: rgba(8, 30, 21, .88); }
.search-panel { width: min(900px, calc(100% - 40px)); margin: 12vh auto 0; padding: 38px; border-radius: var(--radius-lg); background: var(--cream-50); box-shadow: var(--shadow-lg); }
.search-top { display: flex; align-items: center; justify-content: space-between; }
.search-panel label { display: block; margin: 18px 0 15px; font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.4rem); font-weight: 600; line-height: 1.1; }
.search-field { display: flex; align-items: center; gap: 12px; padding: 8px 8px 8px 18px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); }
.search-field > svg { width: 22px; height: 22px; fill: none; stroke: var(--sage-500); stroke-width: 1.6; }
.search-field input { min-width: 0; flex: 1; padding: 12px 0; border: 0; outline: 0; background: transparent; font-size: 1rem; }
.popular-searches { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 22px; color: var(--muted); font-size: .82rem; }
.popular-searches button { padding: 7px 11px; border: 1px solid var(--line); border-radius: 30px; background: transparent; cursor: pointer; }

.hero { position: relative; display: flex; min-height: 760px; align-items: stretch; overflow: hidden; color: var(--white); background: var(--forest-900); }
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { z-index: 1; background: linear-gradient(90deg, rgba(7, 29, 19, .96) 0%, rgba(8, 33, 22, .83) 37%, rgba(8, 29, 20, .25) 67%, rgba(8, 29, 20, .16) 100%), linear-gradient(0deg, rgba(7,27,18,.5), transparent 45%); }
.hero-inner { position: relative; z-index: 2; display: grid; align-items: center; grid-template-columns: minmax(0, 1.4fr) minmax(310px, .6fr); gap: clamp(40px, 8vw, 120px); padding-block: 82px 105px; }
.hero-content { max-width: 760px; }
.hero h1 { max-width: 780px; margin-bottom: 24px; color: var(--white); font-size: clamp(2.25rem, 3.2vw, 3.15rem); }
.hero-content > p { max-width: 680px; margin-bottom: 34px; color: #d8e2db; font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.7; }
.hero-actions, .hero-trust-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.hero-trust-row { gap: 24px; margin-top: 22px; color: #bdccc2; font-size: 13px; }
.hero-trust-row span { display: flex; align-items: center; gap: 6px; }
.hero-trust-row svg { width: 14px; height: 14px; fill: none; stroke: var(--amber); stroke-width: 2.3; }
.hero-now-card { align-self: end; width: min(100%, 380px); margin-bottom: 12px; padding: 28px; border: 1px solid rgba(255,255,255,.17); border-radius: var(--radius-md); background: rgba(9, 38, 26, .8); box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
.now-label { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 13px; color: #cbd8cf; font-size: 13px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.now-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(237,169,67,.12); }
.hero-now-card > strong { display: block; font-family: var(--serif); font-size: 1.75rem; }
.hero-now-card ul { margin: 22px 0; padding: 0; list-style: none; }
.hero-now-card li { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.11); }
.hero-now-card li > span { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--amber); background: rgba(255,255,255,.08); }
.hero-now-card li svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.hero-now-card li div { display: flex; flex-direction: column; }
.hero-now-card li b { font-size: .86rem; }
.hero-now-card li small { color: #afc0b4; font-size: 13px; }
.hero-now-card > a { display: flex; align-items: center; justify-content: space-between; color: var(--amber); font-size: 13px; font-weight: 700; }
.hero-now-card > a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.scroll-cue { position: absolute; z-index: 3; bottom: 25px; left: 50%; display: flex; align-items: center; gap: 12px; transform: translateX(-50%); color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue i { position: relative; width: 1px; height: 34px; overflow: hidden; background: rgba(255,255,255,.25); }
.scroll-cue i::after { position: absolute; top: -20px; left: 0; width: 1px; height: 18px; background: var(--white); animation: scroll-line 1.8s ease-in-out infinite; content: ""; }
@keyframes scroll-line { 100% { transform: translateY(54px); } }

.topic-strip { position: relative; z-index: 4; border-bottom: 1px solid var(--line); background: var(--cream-50); box-shadow: 0 8px 25px rgba(10, 35, 24, .06); }
.topic-list { display: grid; grid-template-columns: repeat(9, 1fr); }
.topic-list a { position: relative; display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 8px; padding: 23px 6px 18px; color: var(--forest-900); font-size: 13px; font-weight: 700; }
.topic-list a::after { position: absolute; right: 0; top: 30%; width: 1px; height: 38%; background: var(--line); content: ""; }
.topic-list a:last-child::after { display: none; }
.topic-list a:hover .topic-icon { color: var(--white); background: var(--forest-700); transform: translateY(-3px); }
.topic-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--forest-700); background: var(--sage-100); font-family: var(--serif); font-size: 1.2rem; transition: 180ms ease; }
.topic-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.mower-icon, .pool-icon, .terrace-icon { font-weight: 700; }
.all-topics .topic-icon { border: 1px solid var(--line); background: transparent; }

.advisor-section { position: relative; overflow: hidden; padding: 120px 0 125px; color: var(--white); background: var(--forest-900); }
.advisor-section::before { position: absolute; inset: 0; opacity: .65; background: radial-gradient(circle at 7% 15%, rgba(85,137,100,.3), transparent 30%), radial-gradient(circle at 92% 78%, rgba(63,107,76,.26), transparent 30%); content: ""; }
.advisor-pattern { position: absolute; top: -80px; right: -90px; width: 480px; height: 480px; opacity: .07; border: 1px solid white; border-radius: 50%; }
.advisor-pattern::before, .advisor-pattern::after { position: absolute; inset: 55px; border: 1px solid white; border-radius: inherit; content: ""; }
.advisor-pattern::after { inset: 120px; }
.advisor-heading { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.advisor-heading h2 { max-width: 760px; margin-bottom: 18px; color: var(--white); }
.advisor-heading p { max-width: 680px; color: #bdd0c2; font-size: 1.05rem; }
.advisor-assurance { display: flex; flex: 0 0 auto; align-items: center; gap: 12px; margin-bottom: 16px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 8px; background: rgba(255,255,255,.05); }
.advisor-assurance > svg { width: 25px; height: 25px; fill: none; stroke: var(--amber); stroke-width: 1.5; }
.advisor-assurance span { display: flex; flex-direction: column; line-height: 1.35; }
.advisor-assurance strong { font-size: 13px; }
.advisor-assurance small { color: #aac0b0; font-size: 13px; }
.advisor-shell { position: relative; z-index: 1; margin-top: 45px; overflow: hidden; border-radius: var(--radius-lg); color: var(--ink); background: var(--cream-50); box-shadow: 0 35px 100px rgba(3, 18, 11, .28); }
.advisor-progress { display: flex; align-items: center; gap: 16px; padding: 18px 34px; border-bottom: 1px solid var(--line); background: var(--cream-100); }
.progress-label { flex: 0 0 auto; color: var(--muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.progress-track { height: 4px; flex: 1; overflow: hidden; border-radius: 5px; background: #dce3d9; }
.progress-track i { display: block; width: 33.33%; height: 100%; border-radius: inherit; background: var(--amber); transition: width 350ms ease; }
.advisor-reset { padding: 0; border: 0; color: var(--forest-700); background: transparent; font-size: 13px; font-weight: 700; cursor: pointer; }
.advisor-stage { min-height: 505px; padding: 42px 44px 48px; }
.advisor-question { animation: reveal 300ms ease both; }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } }
.advisor-question > h3, .result-intro h3 { margin-bottom: 8px; color: var(--forest-900); font-family: var(--serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
.advisor-question > p { color: var(--muted); }
.task-grid { display: grid; margin-top: 28px; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.task-card { display: flex; min-height: 150px; flex-direction: column; align-items: flex-start; padding: 20px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); cursor: pointer; text-align: left; transition: border 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.task-card:hover, .task-card:focus-visible { border-color: var(--forest-600); outline: 0; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.task-card > span { display: grid; width: 40px; height: 40px; margin-bottom: 18px; place-items: center; border-radius: 50%; color: var(--forest-700); background: var(--sage-100); }
.task-card svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.task-card .letter-icon { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; }
.task-card b { color: var(--forest-900); font-size: .95rem; }
.task-card small { margin-top: 4px; color: #788078; font-size: 13px; line-height: 1.35; }
.back-button { display: inline-flex; align-items: center; gap: 6px; margin-bottom: 20px; padding: 0; border: 0; color: var(--muted); background: transparent; font-size: 13px; font-weight: 600; cursor: pointer; }
.back-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; transform: rotate(180deg); }
.selection-tag, .result-kicker { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 13px; padding: 6px 11px; border-radius: 30px; color: var(--forest-700); background: var(--sage-100); font-size: 13px; font-weight: 700; }
.choice-grid { display: grid; max-width: 860px; margin-top: 28px; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.choice-card { display: flex; min-height: 120px; align-items: center; gap: 17px; padding: 22px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); cursor: pointer; text-align: left; transition: 180ms ease; }
.choice-card:hover, .choice-card:focus-visible { border-color: var(--forest-600); outline: 0; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.choice-card > svg { width: 28px; height: 28px; flex: 0 0 auto; fill: none; stroke: var(--forest-600); stroke-width: 1.5; }
.choice-card span { display: flex; flex-direction: column; }
.choice-card b { color: var(--forest-900); font-size: .9rem; }
.choice-card small { margin-top: 4px; color: var(--muted); font-size: 13px; line-height: 1.35; }
.advisor-results { animation: reveal 350ms ease both; }
.result-kicker svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.result-intro { padding-bottom: 28px; text-align: center; }
.result-intro p { color: var(--muted); }
.recommendation-layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(270px, .75fr); gap: 18px; }
.top-pick, .alternatives { border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.top-pick { position: relative; display: grid; overflow: hidden; grid-template-columns: 220px 1fr; }
.pick-badge { position: absolute; z-index: 2; top: 0; left: 0; padding: 8px 15px; border-radius: 0 0 8px 0; color: var(--forest-950); background: var(--amber); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-visual { position: relative; display: grid; min-height: 260px; place-items: center; overflow: hidden; background: linear-gradient(135deg, #e8efe6, #cadacb); }
.product-visual svg { position: relative; z-index: 1; width: 85%; fill: var(--forest-700); stroke: #9eb2a1; stroke-width: 2; }
.product-orbit { position: absolute; width: 230px; height: 230px; border: 1px solid rgba(21,59,43,.14); border-radius: 50%; }
.product-orbit::after { position: absolute; inset: 25px; border: 1px dashed rgba(21,59,43,.16); border-radius: inherit; content: ""; }
.pick-copy { padding: 30px 30px 25px; }
.rating { display: inline-flex; align-items: center; gap: 5px; color: var(--forest-700); font-size: .82rem; font-weight: 800; }
.rating svg { width: 15px; height: 15px; fill: var(--amber); stroke: var(--amber-deep); stroke-width: 1; }
.rating small { color: var(--muted); font-weight: 500; }
.pick-copy h4 { margin: 9px 0 9px; color: var(--forest-900); font-family: var(--serif); font-size: 1.55rem; }
.pick-copy p { color: var(--muted); font-size: .84rem; }
.product-facts { display: grid; margin: 18px 0 0; grid-template-columns: max-content 1fr; gap: 2px 24px; }
.product-facts dt { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.product-facts dd { margin: 0 0 7px; color: var(--forest-900); font-size: 13px; font-weight: 700; }
.pick-reasons { display: grid; padding: 25px 30px; border-top: 1px solid var(--line); grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 30px; }
.pick-reasons strong { color: var(--forest-900); font-size: 13px; }
.pick-reasons ul { display: grid; margin: 10px 0 0; padding: 0; list-style: none; gap: 5px; }
.pick-reasons li { position: relative; padding-left: 19px; color: var(--muted); font-size: 13px; }
.pros li::before { position: absolute; left: 0; color: var(--forest-600); content: "✓"; font-weight: 800; }
.cons li::before { position: absolute; left: 2px; color: var(--red); content: "–"; font-weight: 800; }
.offer-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 30px; border-top: 1px solid var(--line); background: var(--cream-100); grid-column: 1 / -1; }
.offer-row > div { display: grid; }
.offer-row small { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.offer-row strong { color: var(--forest-900); font-family: var(--serif); font-size: 1.25rem; }
.offer-row span { color: #848a84; font-size: 13px; }
.affiliate-note { margin: 0 !important; padding: 10px 30px; color: #8a8e89 !important; background: #f9f8f3; font-size: 13px !important; grid-column: 1 / -1; }
.alternatives { padding: 24px; }
.alternatives h4 { margin: 0 0 17px; font-family: var(--serif); font-size: 1.25rem; }
.alternatives article { padding: 18px 0; border-top: 1px solid var(--line); }
.alternatives article > strong { display: block; margin-top: 6px; color: var(--forest-900); font-size: .87rem; }
.alternatives article > p { margin: 4px 0 12px; color: var(--muted); font-size: 13px; }
.alternative-tag { color: var(--forest-600); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.alternatives article > div { display: flex; align-items: center; justify-content: space-between; }
.alternatives article > div b { font-family: var(--serif); font-size: .95rem; }
.alternatives article button, .result-restart { border: 0; color: var(--forest-700); background: transparent; font-size: 13px; font-weight: 700; cursor: pointer; }
.alternatives article button { display: flex; align-items: center; gap: 3px; }
.alternatives article button svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; }
.result-restart { width: 100%; padding: 13px; border: 1px solid var(--line); border-radius: 6px; }

.editorial-section, .season-section, .trust-section, .faq-section { padding: 120px 0; }
.section-heading { margin-bottom: 48px; }
.section-heading p { max-width: 620px; color: var(--muted); font-size: 1rem; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.split-heading > .text-link { flex: 0 0 auto; margin-bottom: 10px; }
.editorial-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 50px; }
.featured-story, .compact-story { background: var(--white); }
.featured-story { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.story-image { position: relative; display: block; min-height: 395px; overflow: hidden; background: linear-gradient(145deg, #9fbd93, #284a32); }
.story-image::after { position: absolute; inset: 0; opacity: .7; background: radial-gradient(circle at 70% 20%, rgba(251,239,170,.8), transparent 25%), linear-gradient(25deg, rgba(10,45,28,.45), transparent 55%); content: ""; }
.story-label { position: absolute; z-index: 3; top: 20px; left: 20px; padding: 6px 10px; border-radius: 3px; color: var(--forest-900); background: var(--cream-50); font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.illustrated-sprinkler { position: absolute; z-index: 2; right: 19%; bottom: 22%; width: 95px; height: 45px; border-bottom: 9px solid #1f3128; }
.illustrated-sprinkler::before { position: absolute; right: 8px; bottom: 0; width: 14px; height: 90px; border-radius: 8px 8px 0 0; background: #313c36; content: ""; }
.illustrated-sprinkler::after { position: absolute; right: -38px; bottom: 75px; width: 95px; height: 42px; border-top: 3px solid rgba(221,245,250,.75); border-radius: 50%; content: ""; transform: rotate(-24deg); }
.illustrated-sprinkler i { position: absolute; right: -26px; bottom: 62px; width: 4px; height: 4px; border-radius: 50%; background: #e8f5f5; box-shadow: 16px -8px #e8f5f5, 31px -11px #e8f5f5, 47px -7px #e8f5f5, 64px 2px #e8f5f5, 80px 13px #e8f5f5; }
.story-content { padding: 30px 34px 34px; }
.story-meta { display: flex; flex-wrap: wrap; gap: 16px; color: #7a817b; font-size: 13px; }
.story-meta span + span::before { margin-right: 16px; color: var(--sage-300); content: "•"; }
.story-content h3 { margin: 13px 0 12px; font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.15rem); }
.story-content h3 a:hover, .compact-story h3 a:hover { color: var(--forest-600); }
.story-content p { color: var(--muted); font-size: .86rem; }
.story-stack { display: flex; flex-direction: column; gap: 18px; }
.compact-story { display: grid; min-height: 174px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); grid-template-columns: 185px 1fr; }
.compact-image { position: relative; overflow: hidden; }
.compact-image::after { position: absolute; inset: 0; background: linear-gradient(20deg, rgba(6,31,18,.28), transparent 60%); content: ""; }
.tomato-story { background: radial-gradient(circle at 62% 58%, #e86d42 0 13%, transparent 14%), radial-gradient(circle at 38% 70%, #d95739 0 12%, transparent 13%), radial-gradient(circle at 56% 85%, #f17b49 0 12%, transparent 13%), linear-gradient(135deg, #386640, #96b76d); }
.tomato-story span::before, .tomato-story span::after { position: absolute; z-index: 2; width: 55px; height: 28px; border: 5px solid #355d32; border-color: #355d32 transparent transparent; border-radius: 50%; content: ""; }
.tomato-story span::before { top: 42%; left: 48%; transform: rotate(-20deg); }
.tomato-story span::after { top: 56%; left: 24%; transform: rotate(20deg); }
.lavender-story { background: radial-gradient(ellipse at 30% 35%, #74699b 0 4%, transparent 5%), radial-gradient(ellipse at 60% 28%, #9282af 0 5%, transparent 6%), radial-gradient(ellipse at 75% 48%, #655a8d 0 5%, transparent 6%), linear-gradient(145deg, #9bae7c, #475e3f); }
.pest-story { background: radial-gradient(ellipse at 52% 53%, #8d6445 0 15%, transparent 16%), radial-gradient(ellipse at 55% 58%, #b08865 0 11%, transparent 12%), linear-gradient(140deg, #516c35, #b0bd71); }
.pest-story span { position: absolute; z-index: 2; top: 42%; left: 48%; width: 45px; height: 25px; border-radius: 50% 50% 40% 40%; background: #7a583f; transform: rotate(-10deg); }
.pest-story span::after { position: absolute; top: -17px; right: -13px; width: 25px; height: 25px; border: 3px solid #554334; border-left: 0; border-bottom: 0; border-radius: 50%; content: ""; }
.compact-story > div { display: flex; flex-direction: column; justify-content: center; padding: 22px; }
.text-label { position: static; align-self: flex-start; margin-bottom: 9px; padding: 0; color: var(--forest-600); background: none; }
.compact-story h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 1.08rem; }

.comparison-section { padding: 125px 0; color: var(--white); background: var(--forest-950); }
.comparison-grid { display: grid; align-items: center; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 110px); }
.comparison-copy h2 { color: var(--white); }
.comparison-copy > p { max-width: 530px; color: #b8c9bd; }
.method-list { display: grid; margin: 35px 0; padding: 0; list-style: none; gap: 20px; }
.method-list li { display: flex; gap: 17px; }
.method-list li > span { display: grid; width: 36px; height: 36px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--amber); font-family: var(--serif); font-size: 13px; }
.method-list strong { font-size: .9rem; }
.method-list p { margin: 3px 0 0; color: #91a698; font-size: 13px; }
.comparison-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.comparison-card { overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md); color: var(--ink); background: #e8eee5; }
.card-main { display: flex; min-height: 540px; flex-direction: column; padding: 28px; grid-row: 1 / 3; }
.comparison-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.comparison-category { color: var(--forest-600); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.score { display: flex; align-items: baseline; color: var(--forest-900); }
.score b { font-family: var(--serif); font-size: 1.4rem; }
.score small { color: var(--muted); font-size: 13px; }
.robot-illustration { position: relative; display: grid; min-height: 260px; flex: 1; place-items: center; }
.grass-line { position: absolute; right: -30px; bottom: 25px; left: -30px; height: 55px; opacity: .4; background: repeating-linear-gradient(83deg, transparent 0 8px, #537a52 9px 11px); }
.robot { position: relative; z-index: 1; width: 190px; height: 130px; border: 4px solid #cbd3cb; border-radius: 50% 50% 35% 35%; background: var(--forest-800); box-shadow: 0 24px 30px rgba(10,45,29,.23); transform: perspective(400px) rotateX(17deg); }
.robot::before { position: absolute; top: 25px; left: 50%; width: 70px; height: 50px; border: 1px solid #668477; border-radius: 50%; background: #1b4735; content: ""; transform: translateX(-50%); }
.robot::after { position: absolute; top: 40px; left: 50%; width: 15px; height: 15px; border-radius: 50%; background: var(--amber); content: ""; transform: translateX(-50%); box-shadow: 0 0 0 7px rgba(237,169,67,.12); }
.robot i { position: absolute; right: 20px; bottom: 16px; left: 20px; height: 5px; border-radius: 50%; background: #0b251c; }
.comparison-card h3 { margin: 0 0 8px; color: var(--forest-900); font-family: var(--serif); font-size: 1.55rem; }
.comparison-card p { margin-bottom: 20px; color: var(--muted); font-size: 13px; }
.comparison-card a { display: flex; align-items: center; justify-content: space-between; padding-top: 15px; border-top: 1px solid rgba(21,59,43,.15); color: var(--forest-700); font-size: 13px; font-weight: 700; }
.comparison-card a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.card-side { display: grid; min-height: 262px; padding: 23px; grid-template-columns: 1fr 90px; }
.card-side .comparison-category, .card-side h3, .card-side p, .card-side a { grid-column: 1; }
.card-side h3 { align-self: end; font-size: 1.15rem; }
.card-side p { margin-bottom: 10px; }
.card-side a { padding-top: 10px; }
.hose-illustration, .shear-illustration { grid-row: 1 / 4; grid-column: 2; }
.hose-illustration { align-self: center; width: 82px; height: 82px; border: 12px solid #4c775b; border-radius: 50%; box-shadow: inset 0 0 0 2px #274b37; }
.hose-illustration i { display: block; width: 24px; height: 55px; margin: 38px 0 0 48px; border-radius: 8px; background: var(--amber); transform: rotate(-35deg); }
.card-warm { background: #e9dfc9; }
.shear-illustration { align-self: center; }
.shear-illustration svg { width: 85px; height: 85px; fill: none; stroke: var(--forest-700); stroke-width: 1.3; transform: rotate(-20deg); }

.season-section { background: var(--cream-100); }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.season-card { position: relative; min-height: 330px; padding: 30px; border-right: 1px solid var(--line); }
.season-card:last-child { border: 0; }
.season-number { position: absolute; top: 20px; right: 22px; color: #e5e7df; font-family: var(--serif); font-size: 2.7rem; }
.season-icon { display: grid; width: 50px; height: 50px; margin-bottom: 50px; place-items: center; border-radius: 50%; }
.season-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.season-icon.water { color: #416e7a; background: #e1eef0; }
.season-icon.prune { color: #7f6341; background: #f1e8d8; }
.season-icon.harvest { color: #497044; background: #e4eee0; }
.season-icon.protect { color: #85564a; background: #f3e2dd; }
.season-card h3 { margin-bottom: 10px; color: var(--forest-900); font-family: var(--serif); font-size: 1.25rem; }
.season-card p { color: var(--muted); font-size: 13px; }
.season-card a { position: absolute; right: 30px; bottom: 28px; left: 30px; display: flex; align-items: center; justify-content: space-between; color: var(--forest-700); font-size: 13px; font-weight: 700; }
.season-card a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.calendar-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 20px; padding: 28px 32px; border-radius: var(--radius-md); color: var(--white); background: var(--forest-800); }
.calendar-cta > div { display: flex; align-items: center; gap: 15px; }
.calendar-cta > div > svg { width: 32px; height: 32px; fill: none; stroke: var(--amber); stroke-width: 1.4; }
.calendar-cta span { display: flex; flex-direction: column; }
.calendar-cta strong { font-family: var(--serif); font-size: 1.1rem; }
.calendar-cta small { color: #bbcdc0; font-size: 13px; }
.email-form { display: grid; min-width: 440px; gap: 8px; }
.email-form-main { display: flex; padding: 5px; border-radius: 8px; background: var(--white); }
.email-form input[type="email"] { min-width: 0; flex: 1; padding: 0 14px; border: 0; outline: 0; font-size: 13px; }
.email-form .button { min-height: 44px; }
.email-consent { display: grid; align-items: start; grid-template-columns: 17px 1fr; gap: 8px; max-width: 520px; color: #17251f; font-size: 13px; line-height: 1.45; cursor: pointer; }
.email-consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: #f17b18; }
.email-consent span { display: block; }
.email-consent a { color: #215e43; font-weight: 750; text-underline-offset: 2px; }
.email-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.email-form-message { min-height: 19px; color: #9a2f2b; font-size: 13px; font-weight: 700; }

.trust-section { background: var(--cream-50); }
.trust-layout { display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); }
.trust-visual { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; border-radius: 50% 50% 16px 16px; background: radial-gradient(circle at 40% 25%, #d8dfca, transparent 30%), linear-gradient(145deg, #839c71, #274d37); }
.trust-visual::before { position: absolute; right: -15%; bottom: -10%; width: 110%; height: 60%; opacity: .6; background: repeating-linear-gradient(74deg, transparent 0 26px, #1d412f 27px 32px, transparent 33px 52px); content: ""; }
.trust-seal { position: relative; z-index: 2; display: grid; width: 185px; height: 185px; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: var(--white); background: rgba(17,57,39,.78); box-shadow: 0 0 0 9px rgba(255,255,255,.11); backdrop-filter: blur(8px); }
.trust-seal svg { width: 34px; height: 34px; margin-bottom: 8px; fill: none; stroke: var(--amber); stroke-width: 1.5; }
.trust-seal strong { font-family: var(--serif); font-size: 1.25rem; }
.trust-seal span { color: #bfd1c3; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.trust-visual blockquote { position: absolute; z-index: 3; right: 22px; bottom: 20px; left: 22px; margin: 0; padding: 20px 23px; border-radius: 9px; color: var(--white); background: rgba(7,32,21,.85); backdrop-filter: blur(8px); }
.trust-visual blockquote svg { width: 20px; height: 20px; fill: none; stroke: var(--amber); stroke-width: 1.3; }
.trust-visual blockquote p { margin: 6px 0 0; font-family: var(--serif); font-size: 1.1rem; line-height: 1.4; }
.trust-copy > p { max-width: 600px; color: var(--muted); font-size: 1rem; }
.trust-points { display: grid; margin: 35px 0; gap: 23px; }
.trust-points article { display: flex; gap: 18px; }
.trust-points article > span { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--forest-700); background: var(--sage-100); }
.trust-points svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.trust-points h3 { margin: 0 0 4px; color: var(--forest-900); font-size: .92rem; }
.trust-points p { margin: 0; color: var(--muted); font-size: 13px; }

.faq-section { padding-top: 105px; border-top: 1px solid var(--line); background: var(--cream-100); }
.faq-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.faq-layout > div:first-child p { color: var(--muted); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; color: var(--forest-900); font-family: var(--serif); font-size: 1.25rem; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 20px; height: 20px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform 180ms ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 35px 23px 0; color: var(--muted); font-size: .85rem; }

.closing-cta-section { padding: 78px 0; color: var(--white); background: linear-gradient(120deg, var(--forest-900), #071f16); }
.closing-cta-inner { display: grid; align-items: end; grid-template-columns: 1fr auto; gap: 28px 55px; }
.closing-cta-inner .eyebrow { color: var(--amber); }
.closing-cta-inner h2 { max-width: 760px; margin: 10px 0 14px; color: var(--white); font-size: clamp(2.5rem, 4.8vw, 4.5rem); }
.closing-cta-inner p { max-width: 700px; margin: 0; color: #b7c9bd; }
.closing-cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.closing-cta-actions .button-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.closing-cta-inner ul { display: flex; margin: 0; padding: 0; grid-column: 1 / -1; list-style: none; gap: 24px; }
.closing-cta-inner li { display: flex; align-items: center; gap: 7px; color: #a9bcae; font-size: 13px; }
.closing-cta-inner li svg { width: 16px; height: 16px; fill: none; stroke: var(--amber); stroke-width: 2; }

.site-footer { color: #c2d0c6; background: #081f17; }
.footer-top { display: grid; padding-block: 80px 65px; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; }
.brand-light { color: var(--white); }
.brand-light .brand-mark svg { stroke: var(--amber); }
.footer-brand p { max-width: 300px; margin: 25px 0 0; color: #88a092; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: var(--white); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a, .footer-links .footer-placeholder { color: #93a69a; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-placeholder { cursor: default; }
.footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); color: #6f8879; font-size: 13px; }
.footer-bottom > div { display: flex; gap: 20px; }
.footer-bottom button { padding: 0; border: 0; color: inherit; background: transparent; font: inherit; cursor: pointer; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom button:hover { color: var(--white); }
.footer-motto { display: flex; align-items: center; gap: 7px; }
.footer-motto svg { width: 15px; height: 15px; fill: none; stroke: var(--amber); stroke-width: 1.6; }

.floating-advisor { position: fixed; z-index: 40; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 9px 14px 9px 9px; border: 0; border-radius: 50px; color: var(--white); background: var(--forest-800); box-shadow: 0 12px 35px rgba(6,34,22,.3); cursor: pointer; transition: transform 180ms ease, opacity 180ms ease; }
.floating-advisor:hover { transform: translateY(-3px); }
.floating-advisor > span:first-child { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: var(--forest-950); background: var(--amber); }
.floating-advisor svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.floating-advisor > span:last-child { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.25; }
.floating-advisor strong { font-size: 13px; }
.floating-advisor small { color: #b8c9bd; font-size: 13px; }
.toast { position: fixed; z-index: 100; right: 24px; bottom: 24px; display: flex; max-width: 390px; align-items: center; gap: 11px; padding: 14px 18px; border-radius: 9px; color: var(--white); background: var(--forest-800); box-shadow: var(--shadow-lg); font-size: 13px; }
.toast svg { width: 18px; height: 18px; fill: none; stroke: var(--amber); stroke-width: 2; }

/* Premium section system: stronger hierarchy, depth and purposeful interaction. */
.editorial-section,
.season-section,
.trust-section,
.faq-section { position: relative; overflow: hidden; }
.editorial-section::before,
.season-section::before,
.trust-section::before,
.faq-section::before { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(30,80,57,.08); border-radius: 50%; content: ""; pointer-events: none; }
.editorial-section::before { top: 70px; right: -230px; box-shadow: 0 0 0 70px rgba(30,80,57,.025); }
.editorial-section .container,
.season-section .container,
.trust-section .container,
.faq-section .container { position: relative; z-index: 1; }
.section-heading h2 { max-width: 820px; }
.section-heading > div > p { max-width: 680px; font-size: 1.04rem; line-height: 1.75; }

.featured-story,
.compact-story { border: 1px solid rgba(20,52,38,.11); box-shadow: 0 18px 50px rgba(11,38,28,.08); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.featured-story:hover,
.compact-story:hover { border-color: rgba(30,80,57,.25); box-shadow: 0 26px 65px rgba(11,38,28,.13); transform: translateY(-5px); }
.featured-story { border-radius: 24px; }
.story-image { min-height: 430px; }
.story-content { position: relative; padding: 34px 38px 38px; }
.story-content::before { position: absolute; top: 0; left: 38px; width: 54px; height: 3px; border-radius: 4px; background: var(--amber); content: ""; }
.compact-story { min-height: 185px; border-radius: 18px; }
.compact-story > div { padding: 25px; }
.compact-story h3 { font-size: 1.14rem; }

.comparison-section { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 12%, rgba(76,128,91,.22), transparent 26%), radial-gradient(circle at 94% 86%, rgba(237,169,67,.1), transparent 24%), var(--forest-950); }
.comparison-section::after { position: absolute; top: -170px; right: -110px; width: 480px; height: 480px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 72px rgba(255,255,255,.018), 0 0 0 144px rgba(255,255,255,.012); content: ""; pointer-events: none; }
.comparison-grid { position: relative; z-index: 1; }
.method-list li { padding: 15px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.045); transition: background 180ms ease, transform 180ms ease; }
.method-list li:hover { background: rgba(255,255,255,.075); transform: translateX(4px); }
.comparison-card { border-radius: 22px; box-shadow: 0 24px 55px rgba(0,0,0,.17); transition: transform 220ms ease, box-shadow 220ms ease; }
.comparison-card:hover { box-shadow: 0 32px 72px rgba(0,0,0,.25); transform: translateY(-5px); }

.season-section { background: radial-gradient(circle at 8% 18%, rgba(234,166,66,.12), transparent 24%), radial-gradient(circle at 92% 80%, rgba(69,120,80,.12), transparent 28%), linear-gradient(150deg, #f7f3e7, #eef3e9); }
.season-section::before { right: -175px; bottom: -210px; width: 520px; height: 520px; border-color: rgba(30,80,57,.1); box-shadow: 0 0 0 78px rgba(30,80,57,.025), 0 0 0 156px rgba(30,80,57,.015); }
.season-grid { border: 0; border-radius: 0; background: transparent; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.season-card { position: relative; display: flex; min-width: 0; min-height: 425px; flex-direction: column; padding: 170px 28px 26px; overflow: hidden; border: 1px solid rgba(20,52,38,.1) !important; border-radius: 22px; background: #fff; box-shadow: 0 18px 48px rgba(13,43,30,.08); isolation: isolate; transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.season-card::before { position: absolute; z-index: -2; top: 0; right: 0; left: 0; height: 136px; background: linear-gradient(135deg, #4e7b79, #b9d2cf); content: ""; }
.season-card::after { position: absolute; z-index: -1; top: -44px; right: -34px; width: 168px; height: 168px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255,255,255,.08), 0 0 0 60px rgba(255,255,255,.04); content: ""; }
.season-card:nth-child(2)::before { background: linear-gradient(135deg, #8a6944, #d8c39b); }
.season-card:nth-child(3)::before { background: linear-gradient(135deg, #39633d, #a8c39b); }
.season-card:nth-child(4)::before { background: linear-gradient(135deg, #8b554a, #d6aaa0); }
.season-card:hover { border-color: rgba(30,80,57,.25) !important; box-shadow: 0 28px 65px rgba(13,43,30,.14); transform: translateY(-7px); }
.season-number { z-index: 1; top: 21px; right: 23px; color: rgba(255,255,255,.64); font-size: 3.25rem; line-height: 1; }
.season-icon { position: absolute; z-index: 1; top: 31px; left: 28px; width: 58px; height: 58px; margin: 0; border: 1px solid rgba(255,255,255,.38); color: #fff !important; background: rgba(255,255,255,.17) !important; box-shadow: 0 12px 28px rgba(6,31,20,.13); backdrop-filter: blur(9px); }
.season-icon svg { width: 27px; height: 27px; }
.season-card h3 { margin-bottom: 10px; font-size: 1.42rem; line-height: 1.2; }
.season-card p { margin-bottom: 22px; font-size: .86rem; line-height: 1.65; }
.season-card a { position: static; min-height: 48px; margin-top: auto; padding: 12px 14px; border: 1px solid rgba(20,52,38,.09); border-radius: 11px; background: var(--cream-100); transition: color 180ms ease, background 180ms ease; }
.season-card a:hover { color: #fff; background: var(--forest-700); }
.calendar-cta { position: relative; padding: 31px 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: radial-gradient(circle at 8% 20%, rgba(237,169,67,.17), transparent 24%), linear-gradient(120deg, var(--forest-950), var(--forest-700)); box-shadow: 0 24px 58px rgba(8,36,23,.18); }
.calendar-cta::after { position: absolute; right: 38%; bottom: -90px; width: 200px; height: 200px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; content: ""; pointer-events: none; }
.calendar-cta > div,
.calendar-cta form { position: relative; z-index: 1; }
.calendar-cta > div > svg { width: 48px; height: 48px; padding: 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.06); }
.calendar-cta strong { font-size: 1.35rem; }
.email-form-main { padding: 6px; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; box-shadow: 0 12px 28px rgba(2,20,12,.16); }
.email-form input[type="email"] { font-size: .86rem; }

.trust-section { background: radial-gradient(circle at 90% 12%, rgba(234,166,66,.1), transparent 24%), linear-gradient(155deg, #fbfaf5, #f0f4eb); }
.trust-section::before { top: -240px; left: -210px; width: 560px; height: 560px; border-color: rgba(30,80,57,.09); box-shadow: 0 0 0 76px rgba(30,80,57,.02); }
.trust-layout { padding: clamp(22px,4vw,54px); border: 1px solid rgba(20,52,38,.11); border-radius: 32px; background: rgba(255,255,255,.78); box-shadow: 0 30px 80px rgba(11,38,28,.1); grid-template-columns: .92fr 1.08fr; gap: clamp(45px,7vw,95px); backdrop-filter: blur(10px); }
.trust-visual { min-height: 575px; border-radius: 48% 48% 24px 24px; background: radial-gradient(circle at 38% 23%, rgba(241,230,178,.78), transparent 24%), linear-gradient(145deg, #8ea97d, #294f39); box-shadow: 0 24px 55px rgba(12,45,29,.2); }
.trust-visual::before { right: -20%; bottom: -6%; height: 56%; opacity: .76; background: repeating-linear-gradient(74deg, transparent 0 26px, rgba(18,62,43,.8) 27px 33px, transparent 34px 53px); }
.trust-visual::after { position: absolute; top: 48px; right: 48px; width: 94px; height: 94px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255,255,255,.055), 0 0 0 44px rgba(255,255,255,.025); content: ""; }
.trust-seal { width: 172px; height: 172px; border-color: rgba(255,255,255,.58); box-shadow: 0 0 0 10px rgba(255,255,255,.12), 0 22px 45px rgba(4,27,16,.2); }
.trust-visual blockquote { right: 24px; bottom: 22px; left: 24px; padding: 24px 25px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(5,29,19,.9); box-shadow: 0 18px 42px rgba(0,0,0,.22); }
.trust-visual blockquote p { font-size: 1.22rem; }
.trust-copy { padding-block: 18px; }
.trust-copy > p { font-size: 1.02rem; line-height: 1.78; }
.trust-points { margin: 31px 0; gap: 11px; }
.trust-points article { align-items: flex-start; padding: 16px 17px; border: 1px solid rgba(20,52,38,.1); border-radius: 15px; background: linear-gradient(145deg, #fff, #f7f6ef); transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.trust-points article:hover { border-color: rgba(30,80,57,.24); box-shadow: 0 14px 32px rgba(11,38,28,.08); transform: translateX(4px); }
.trust-points article > span { width: 47px; height: 47px; border: 1px solid rgba(30,80,57,.1); box-shadow: inset 0 0 0 5px rgba(255,255,255,.55); }
.trust-points h3 { font-size: .96rem; }
.trust-points p { line-height: 1.55; }
.trust-copy > .text-link { min-height: 46px; padding: 0 16px; border: 1px solid rgba(20,52,38,.13); border-radius: 10px; background: var(--sage-100); }

.faq-section { border-top: 0; background: radial-gradient(circle at 85% 15%, rgba(84,128,91,.11), transparent 25%), var(--cream-100); }
.faq-section::before { right: -210px; bottom: -230px; width: 510px; height: 510px; border-color: rgba(30,80,57,.08); }
.faq-layout { align-items: start; grid-template-columns: .72fr 1.28fr; gap: clamp(38px,7vw,88px); }
.faq-layout > div:first-child { position: sticky; top: 125px; padding: 36px; overflow: hidden; border-radius: 24px; color: #fff; background: radial-gradient(circle at 88% 12%, rgba(237,169,67,.2), transparent 26%), linear-gradient(140deg, var(--forest-950), var(--forest-700)); box-shadow: 0 24px 55px rgba(9,40,26,.17); }
.faq-layout > div:first-child::after { position: absolute; right: -70px; bottom: -80px; width: 190px; height: 190px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 35px rgba(255,255,255,.035); content: ""; }
.faq-layout > div:first-child .eyebrow { color: var(--amber); }
.faq-layout > div:first-child h2 { color: #fff; }
.faq-layout > div:first-child p { position: relative; z-index: 1; color: #c3d3c9; }
.faq-list { display: grid; gap: 11px; }
.faq-list details { overflow: hidden; border: 1px solid rgba(20,52,38,.11); border-radius: 15px; background: rgba(255,255,255,.84); box-shadow: 0 12px 32px rgba(13,43,30,.055); transition: border-color 180ms ease, box-shadow 180ms ease; }
.faq-list details[open] { border-color: rgba(30,80,57,.25); box-shadow: 0 18px 40px rgba(13,43,30,.09); }
.faq-list summary { padding: 21px 23px; }
.faq-list details p { max-width: none; padding: 0 55px 23px 23px; }

.closing-cta-section { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 18%, rgba(91,145,105,.22), transparent 26%), radial-gradient(circle at 92% 82%, rgba(237,169,67,.13), transparent 24%), linear-gradient(120deg, var(--forest-900), #061c14); }
.closing-cta-section::after { position: absolute; top: -185px; right: -90px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.09); border-radius: 50%; box-shadow: 0 0 0 64px rgba(255,255,255,.02), 0 0 0 128px rgba(255,255,255,.014); content: ""; }
.closing-cta-inner { position: relative; z-index: 1; }
.closing-cta-inner ul { padding: 14px 0 0; border-top: 1px solid rgba(255,255,255,.11); }

@media (max-width: 1250px) {
  .category-nav-wrap { display: none; }
  .menu-trigger { display: grid; }
  .mega-menu { display: none !important; }
}

@media (max-width: 1100px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 75px 110px; }
  .hero-now-card { display: none; }
  .topic-list { overflow-x: auto; grid-template-columns: repeat(9, 110px); scrollbar-width: none; }
  .topic-list::-webkit-scrollbar { display: none; }
  .advisor-heading { align-items: flex-start; }
  .task-grid { grid-template-columns: repeat(4, 1fr); }
  .recommendation-layout { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-copy { max-width: 780px; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .season-card:nth-child(2) { border-right: 0; }
  .season-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .calendar-cta { align-items: flex-start; flex-direction: column; }
  .email-form { width: 100%; }
  .footer-top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 820px) {
  .utility-inner { justify-content: center; }
  .trust-mini { display: none; }
  .header-main { min-height: 68px; }
  .header-advisor.garden-survey-trigger { display: none !important; }
  .menu-trigger { width: 44px; flex: 0 0 44px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(7,29,19,.93), rgba(7,29,19,.55)), linear-gradient(0deg, rgba(7,27,18,.65), transparent 60%); }
  .hero-image { object-position: 61% center; }
  .hero h1 { font-size: clamp(2.2rem, 6.4vw, 2.9rem); }
  .advisor-section, .editorial-section, .comparison-section, .season-section, .trust-section, .faq-section { padding: 90px 0; }
  .advisor-heading { display: block; }
  .advisor-assurance { display: inline-flex; margin-top: 15px; }
  .advisor-stage { padding: 32px 25px 35px; }
  .task-grid { grid-template-columns: repeat(2, 1fr); }
  .choice-grid { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: 1fr; }
  .story-stack { display: grid; grid-template-columns: 1fr 1fr; }
  .compact-story { grid-template-columns: 140px 1fr; }
  .compact-story:last-child { grid-column: 1 / -1; }
  .trust-layout { grid-template-columns: 1fr; }
  .trust-layout { padding: 28px; border-radius: 24px; }
  .trust-visual { min-height: 460px; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-layout > div:first-child { position: relative; top: auto; }
  .closing-cta-inner { align-items: start; grid-template-columns: 1fr; }
  .closing-cta-actions { justify-content: flex-start; }
  .closing-cta-inner ul { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  h2 { font-size: 2.4rem; }
  .utility-bar { font-size: 13px; }
  .utility-inner { min-height: 32px; }
  .season-link { width: 100%; min-width: 0; justify-content: center; overflow: hidden; }
  .season-link span { min-width: 0; max-width: calc(100% - 47px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-mark { width: 35px; height: 40px; }
  .brand-mark svg { width: 33px; height: 39px; }
  .brand-copy strong { font-size: 1.12rem; }
  .brand-copy small { display: none; }
  .header-main { gap: 10px; }
  .header-actions { gap: 0; }
  .search-trigger { display: none; }
  .hero-inner { padding-block: 62px 92px; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(2rem, 8.3vw, 2.45rem); }
  .hero-content > p { font-size: .96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust-row { align-items: flex-start; flex-direction: column; gap: 7px; }
  .scroll-cue { display: none; }
  .topic-list { grid-template-columns: repeat(9, 94px); }
  .topic-list a { padding-block: 18px 15px; }
  .advisor-section { padding-block: 78px; }
  .advisor-heading h2 { font-size: 2.5rem; }
  .advisor-assurance { width: 100%; }
  .advisor-shell { width: calc(100% - 20px); margin-top: 30px; border-radius: 18px; }
  .advisor-progress { padding: 15px 20px; }
  .advisor-stage { min-height: 600px; padding: 27px 17px 28px; }
  .advisor-question > h3, .result-intro h3 { font-size: 1.75rem; }
  .task-grid { gap: 9px; }
  .task-card { min-height: 133px; padding: 15px; }
  .task-card > span { margin-bottom: 12px; }
  .task-card small { font-size: 13px; }
  .choice-card { min-height: 98px; padding: 17px; }
  .top-pick { display: block; }
  .product-visual { min-height: 210px; }
  .pick-copy { padding: 24px 20px; }
  .pick-reasons { padding: 22px 20px; grid-template-columns: 1fr; gap: 20px; }
  .offer-row { align-items: stretch; flex-direction: column; padding: 20px; }
  .affiliate-note { padding-inline: 20px; }
  .section-heading { margin-bottom: 32px; }
  .split-heading { display: block; }
  .split-heading > .text-link { margin-top: 12px; }
  .story-image { min-height: 300px; }
  .story-content { padding: 24px 22px 28px; }
  .story-stack { display: flex; }
  .compact-story { min-height: 150px; grid-template-columns: 120px 1fr; }
  .compact-story > div { padding: 17px; }
  .compact-story h3 { font-size: .95rem; }
  .comparison-cards { display: flex; overflow-x: auto; margin-right: -14px; padding-right: 14px; scrollbar-width: none; }
  .comparison-cards::-webkit-scrollbar { display: none; }
  .comparison-card { min-width: 82vw; }
  .card-main { min-height: 500px; }
  .card-side { min-height: 500px; grid-template-columns: 1fr; }
  .card-side .comparison-category, .card-side h3, .card-side p, .card-side a, .hose-illustration, .shear-illustration { grid-column: 1; }
  .hose-illustration, .shear-illustration { align-self: center; justify-self: center; grid-row: auto; }
  .card-side h3 { align-self: auto; }
  .season-grid { grid-template-columns: 1fr; }
  .season-card { min-height: 390px; padding: 153px 22px 22px; border: 1px solid rgba(20,52,38,.1) !important; }
  .season-card::before { height: 122px; }
  .season-card:last-child { border: 1px solid rgba(20,52,38,.1) !important; }
  .season-icon { top: 27px; left: 22px; width: 53px; height: 53px; }
  .season-number { top: 22px; right: 20px; }
  .calendar-cta { padding: 25px 20px; }
  .email-form { min-width: 0; }
  .email-form-main { flex-direction: column; gap: 6px; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .email-form input[type="email"] { min-height: 50px; border-radius: 7px; background: var(--white); }
  .trust-layout { padding: 14px; border-radius: 19px; }
  .trust-copy { padding: 16px 7px 9px; }
  .trust-visual { min-height: 420px; }
  .trust-visual blockquote { right: 14px; bottom: 14px; left: 14px; padding: 19px; }
  .trust-visual blockquote p { font-size: 1.08rem; }
  .trust-points article:hover { transform: none; }
  .faq-layout > div:first-child { padding: 28px 24px; border-radius: 18px; }
  .faq-list summary { font-size: 1.08rem; }
  .closing-cta-section { padding-block: 62px; }
  .closing-cta-actions { align-items: stretch; flex-direction: column; }
  .closing-cta-actions .button { width: 100%; }
  .closing-cta-inner ul { flex-wrap: wrap; gap: 10px 18px; }
  .footer-top { grid-template-columns: 1fr 1fr; padding-block: 60px 45px; gap: 35px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 25px; }
  .footer-motto { display: none; }
  .floating-advisor { right: 14px; bottom: 14px; }
  .search-panel { width: calc(100% - 20px); margin-top: 4vh; padding: 22px; }
  .search-field { align-items: stretch; flex-direction: column; padding: 12px; }
  .search-field > svg { display: none; }
  .search-field input { padding: 11px; }
}

/* Garden Bloom 2026: farbenfrohes Premium-Design für jede öffentliche Startseiten-Section. */
:root {
  --blossom-rose: #c95f7b;
  --blossom-soft: #f8e8ed;
  --lavender: #8068a8;
  --lavender-soft: #eee8f6;
  --sky: #5d92a8;
  --sky-soft: #e6f2f5;
  --sunflower: #efb84b;
  --terracotta: #bd6d4e;
}

body { background: linear-gradient(180deg, #fffdf8, var(--cream-50)); }
.hero { border-bottom: 6px solid transparent; border-image: linear-gradient(90deg, var(--sunflower), var(--blossom-rose), var(--lavender), var(--sky), var(--forest-600)) 1; }
.hero::before { position: absolute; z-index: 1; inset: 0; opacity: .2; background: radial-gradient(ellipse at 4% 22%, rgba(255,255,255,.18) 0 2%, transparent 2.4%), radial-gradient(ellipse at 7% 27%, rgba(238,184,75,.34) 0 1.4%, transparent 1.8%), radial-gradient(ellipse at 95% 14%, rgba(201,95,123,.23) 0 1.8%, transparent 2.2%); content: ""; pointer-events: none; }
.hero-inner { min-height: 640px; }
.hero-actions .button-accent { box-shadow: 0 14px 36px rgba(239,184,75,.24); }

.topic-strip { background: linear-gradient(90deg, #fffdf8, #f8f2f5 42%, #f0f6ed); }
.topic-list a { margin-block: 10px; border: 1px solid rgba(20,52,38,.08); border-radius: 15px; background: rgba(255,255,255,.78); box-shadow: 0 10px 24px rgba(17,51,35,.045); }
.topic-list a:nth-child(4n+1) .topic-icon { color: #79364b; background: var(--blossom-soft); }
.topic-list a:nth-child(4n+2) .topic-icon { color: #514176; background: var(--lavender-soft); }
.topic-list a:nth-child(4n+3) .topic-icon { color: #28677e; background: var(--sky-soft); }
.topic-list a:nth-child(4n) .topic-icon { color: #7a5312; background: #fff2cf; }
.topic-list a:hover { border-color: rgba(201,95,123,.24); box-shadow: 0 16px 34px rgba(17,51,35,.08); }

.advisor-section { background: radial-gradient(circle at 8% 13%, rgba(201,95,123,.2), transparent 24%), radial-gradient(circle at 92% 85%, rgba(128,104,168,.21), transparent 26%), linear-gradient(135deg,#09281d,#174c36 56%,#123728); }
.advisor-section::after { position: absolute; right: -120px; top: -145px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.08); border-radius: 46% 54% 43% 57%; box-shadow: 0 0 0 58px rgba(255,255,255,.018); content: ""; transform: rotate(28deg); }
.advisor-shell { position: relative; border-radius: 28px; box-shadow: 0 34px 85px rgba(3,20,12,.3); }
.task-card:nth-child(4n+1) { border-top: 4px solid var(--blossom-rose); }
.task-card:nth-child(4n+2) { border-top: 4px solid var(--lavender); }
.task-card:nth-child(4n+3) { border-top: 4px solid var(--sky); }
.task-card:nth-child(4n) { border-top: 4px solid var(--sunflower); }

.editorial-section { background: radial-gradient(circle at 5% 10%, rgba(239,184,75,.14), transparent 22%), radial-gradient(circle at 96% 88%, rgba(201,95,123,.11), transparent 25%), linear-gradient(145deg,#fffdf9,#f8f2f5 48%,#eef5ed); }
.featured-story, .compact-story { overflow: hidden; border-color: rgba(20,52,38,.1); box-shadow: 0 22px 56px rgba(13,43,30,.09); }
.featured-story { border-radius: 25px; }
.story-image, .compact-image { position: relative; overflow: hidden; background: var(--forest-900); }
.story-image img, .compact-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
.story-image:hover img, .compact-image:hover img { transform: scale(1.035); }
.story-image::after, .compact-image::after { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(5,29,19,.3)); content: ""; pointer-events: none; }
.story-image .story-label { z-index: 2; }
.compact-story:nth-child(1) { border-left: 4px solid var(--terracotta); }
.compact-story:nth-child(2) { border-left: 4px solid var(--lavender); }
.compact-story:nth-child(3) { border-left: 4px solid var(--blossom-rose); }

.comparison-section { background: radial-gradient(circle at 8% 9%, rgba(201,95,123,.2), transparent 24%), radial-gradient(circle at 94% 88%, rgba(93,146,168,.2), transparent 25%), linear-gradient(135deg,#071f17,#102f28 58%,#152b32); }
.comparison-card { border-color: rgba(255,255,255,.13); border-radius: 22px; box-shadow: 0 24px 58px rgba(0,0,0,.2); }
.comparison-card:nth-child(1) { border-top: 5px solid var(--sunflower); }
.comparison-card:nth-child(2) { border-top: 5px solid var(--sky); }
.comparison-card:nth-child(3) { border-top: 5px solid var(--blossom-rose); }

.season-section { background: radial-gradient(circle at 8% 16%, rgba(239,184,75,.16), transparent 23%), radial-gradient(circle at 94% 84%, rgba(128,104,168,.12), transparent 27%), linear-gradient(145deg,#fff9e9,#f7f0f3 47%,#edf5eb); }
.season-grid { gap: 12px; background: transparent; }
.season-card { overflow: hidden; border: 1px solid rgba(20,52,38,.1) !important; border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: 0 18px 44px rgba(13,43,30,.075); }
.season-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: var(--sunflower); }
.season-card:nth-child(2)::before { background: var(--blossom-rose); }
.season-card:nth-child(3)::before { background: var(--forest-600); }
.season-card:nth-child(4)::before { background: var(--lavender); }
.season-icon { border: 1px solid currentColor; background: #eef5f7 !important; box-shadow: 0 12px 28px rgba(6,31,20,.11); backdrop-filter: none; }
.season-icon.water { color: #216279 !important; background: #e3f1f5 !important; }
.season-icon.prune { color: #7a5124 !important; background: #f7ead7 !important; }
.season-icon.harvest { color: #35613d !important; background: #e5f0df !important; }
.season-icon.protect { color: #884b43 !important; background: #f6e3df !important; }
.season-icon svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.season-card:hover { box-shadow: 0 25px 55px rgba(13,43,30,.12); transform: translateY(-5px); }
.calendar-cta { color: #000; border: 1px solid rgba(128,104,168,.16); background: linear-gradient(120deg,#fff,#f1ebf7); box-shadow: 0 20px 50px rgba(51,38,75,.08); }
.calendar-cta small { color: #000; }

.trust-section { background: radial-gradient(circle at 9% 88%, rgba(201,95,123,.12), transparent 24%), radial-gradient(circle at 92% 12%, rgba(93,146,168,.13), transparent 25%), linear-gradient(145deg,#fffdf9,#eef5f2); }
.trust-layout { border: 1px solid rgba(20,52,38,.1); background: rgba(255,255,255,.74); box-shadow: 0 28px 70px rgba(13,43,30,.1); }
.trust-visual { background: radial-gradient(circle at 35% 26%,rgba(239,184,75,.26),transparent 18%), linear-gradient(145deg,#294e32,#496f4b 55%,#2b563d); }
.trust-points article:nth-child(1) > span { color: #7a5312; background: #fff2cf; }
.trust-points article:nth-child(2) > span { color: #514176; background: var(--lavender-soft); }
.trust-points article:nth-child(3) > span { color: #79364b; background: var(--blossom-soft); }

.faq-section { background: radial-gradient(circle at 8% 14%,rgba(128,104,168,.12),transparent 24%),radial-gradient(circle at 94% 84%,rgba(93,146,168,.11),transparent 24%),linear-gradient(145deg,#f5eff9,#eef6f3); }
.faq-list details { border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(31,45,39,.055); }
.faq-list details[open] { border-color: rgba(128,104,168,.25); box-shadow: 0 18px 42px rgba(51,38,75,.09); }
.closing-cta-section { background: linear-gradient(120deg,#071f17,#143c2c 56%,#233747); }
.closing-cta-section::before { background: radial-gradient(circle at 15% 20%,rgba(201,95,123,.22),transparent 25%),radial-gradient(circle at 86% 78%,rgba(128,104,168,.2),transparent 26%); }
.site-footer { border-top: 5px solid transparent; border-image: linear-gradient(90deg,var(--sunflower),var(--blossom-rose),var(--lavender),var(--sky),var(--forest-600)) 1; }

@media (max-width: 820px) {
  .hero-inner { min-height: auto; }
  .topic-list a { margin-block: 6px; }
}

@media (max-width: 600px) {
  .featured-story { border-radius: 19px; }
  .story-image img { min-height: 300px; }
  .compact-image img { min-height: 150px; }
  .season-card:hover { transform: none; }
}

/* Monatsplan-Danke-Seite */
.thanks-body { min-height: 100vh; color: #11271e; background: radial-gradient(circle at 8% 6%, rgba(239,184,75,.16), transparent 25%), radial-gradient(circle at 95% 90%, rgba(128,104,168,.14), transparent 28%), linear-gradient(145deg,#fbfaf5,#eef4ed); }
.thanks-header { border-bottom: 1px solid rgba(17,39,30,.1); background: rgba(255,255,255,.84); backdrop-filter: blur(12px); }
.thanks-header .container { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }
.thanks-header>a,.thanks-header .container>a:last-child { color: #245b41; font-size: 13px; font-weight: 800; text-decoration: none; }
.thanks-brand { display: flex; align-items: center; gap: 12px; color: #11271e !important; text-decoration: none; }
.thanks-brand>span { display: grid; width: 44px; height: 44px; place-items: center; border-radius: 14px; color: #133526; background: #b9da72; }
.thanks-brand svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.thanks-brand strong { display: grid; font-size: 16px; }
.thanks-brand small { margin-top: 2px; color: #6c7a72; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.thanks-main { display: grid; min-height: calc(100vh - 83px); padding: clamp(30px,6vw,80px) 20px; place-items: center; }
.thanks-card { width: min(920px,100%); padding: clamp(28px,6vw,70px); border: 1px solid rgba(17,39,30,.1); border-radius: 34px; text-align: center; background: rgba(255,255,255,.92); box-shadow: 0 35px 100px rgba(20,53,38,.13); }
.thanks-check { display: grid; width: 72px; height: 72px; margin: 0 auto 21px; place-items: center; border-radius: 50%; color: #163b2a; background: linear-gradient(145deg,#ffd16d,#f29a16); box-shadow: 0 15px 34px rgba(242,154,22,.25); font-size: 30px; font-weight: 900; }
.thanks-eyebrow { color: #277451; font-size: 13px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.thanks-card h1 { max-width: 690px; margin: 12px auto 15px; color: #0f251c; font-size: clamp(38px,6vw,68px); line-height: 1.02; letter-spacing: -.055em; }
.thanks-lead { max-width: 690px; margin: 0 auto; color: #5e6f65; font-size: clamp(15px,2vw,18px); line-height: 1.65; }
.thanks-next { max-width: 680px; margin: 28px auto; padding: 22px; border: 1px solid #dce7de; border-radius: 18px; background: #f3f7f1; }
.thanks-next span { display: block; color: #277451; font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.thanks-next strong { display: block; margin: 7px 0; font-size: 19px; }
.thanks-next p { margin: 0; color: #627067; font-size: 13px; line-height: 1.55; }
.thanks-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; text-align: left; }
.thanks-benefits article { padding: 18px; border: 1px solid #e3e9e4; border-radius: 16px; background: #fff; }
.thanks-benefits i { color: #e88c0d; font-size: 13px; font-style: normal; font-weight: 900; }
.thanks-benefits strong { display: block; margin: 8px 0 5px; font-size: 14px; }
.thanks-benefits p { margin: 0; color: #6b776f; font-size: 13px; line-height: 1.5; }
.thanks-actions { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.thanks-actions .button { min-height: 52px; }
.thanks-privacy { margin: 20px 0 0; color: #718078; font-size: 13px; }
.thanks-privacy a { color: #245b41; font-weight: 750; }
@media (max-width: 700px) { .thanks-header .container { min-height: 70px; } .thanks-header .container>a:last-child { display: none; } .thanks-main { min-height: calc(100vh - 71px); padding: 18px 12px; } .thanks-card { padding: 30px 18px; border-radius: 23px; } .thanks-benefits { grid-template-columns: 1fr; } .thanks-actions { flex-direction: column; } .thanks-actions .button { width: 100%; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  .utility-bar, .site-header, .floating-advisor, .hero-actions, .search-dialog { display: none !important; }
  .hero { min-height: auto; color: #000; background: white; }
  .hero-image, .hero-overlay { display: none; }
  .hero-inner { display: block; padding: 40px 0; }
  .hero h1, .hero-content > p { color: #000; }
}
