/* ===================================================
   Fortis Ecology — Brand Stylesheet
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* --- Custom Properties --- */
:root {
  --forest: #1B3A2D;
  --moss: #2D6A4F;
  --fern: #40916C;
  --gold: #B5935A;
  --gold-light: #C9A96A;
  --off-white: #FAFAF8;
  --charcoal: #1A1A1A;
  --white: #FFFFFF;

  --font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(27, 58, 45, 0.08);
  --shadow-lg: 0 8px 32px rgba(27, 58, 45, 0.12);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-height);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--moss);
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--forest);
  line-height: 1.2;
}

h1 {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: -0.5px;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: -0.3px;
}

h3 {
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

h4 {
  font-weight: 600;
  font-size: 1.1rem;
}

.subtitle {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--moss);
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  max-width: 800px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--white);
}

.section--dark {
  background: var(--forest);
  color: var(--off-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--off-white);
}

/* Support both .section-header and .section__header */
.section-header,
.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-header p,
.section__header p {
  margin-top: 12px;
  color: #555;
}

.section--dark .section-header p,
.section--dark .section__header p {
  color: rgba(250, 250, 248, 0.7);
}

/* Section title & subtitle used in HTML */
.section__title {
  text-align: center;
  margin-bottom: 16px;
}

.section__subtitle {
  color: #555;
  font-size: 1.05rem;
}

/* --- Grid Utilities --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Contact page grid */
.grid--contact {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: #a3823e;
  border-color: #a3823e;
  color: var(--white);
}

.btn--secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--secondary:hover {
  background: var(--forest);
  color: var(--off-white);
}

.btn--white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--forest);
}

.btn--outline-white {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}

.btn--outline-white:hover {
  background: var(--off-white);
  color: var(--forest);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--white);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav--scrolled {
  box-shadow: var(--shadow);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img,
.nav__logo svg {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links a.active {
  color: var(--forest);
}

/* Don't apply underline to CTA button in nav */
.nav__links .btn::after {
  display: none;
}

.nav__links .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links a {
    font-size: 1rem;
    padding: 8px 0;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--home {
  min-height: 80vh;
  background: linear-gradient(160deg, #0d1f17 0%, var(--forest) 25%, var(--moss) 55%, var(--fern) 85%, #2a7a55 100%);
}

/* --- Knotweed cross-section animation --- */
.hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Soil fades in */
.hero__soil {
  animation: heroFadeIn .6s ease-out .1s both;
}

.hero__ground {
  animation: heroFadeIn .8s ease-out .2s both;
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Stems grow upward from soil line — slow, organic */
.hero__stem {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: heroStemGrow 3.5s cubic-bezier(.25,0,.3,1) forwards;
}

.hero__stem--1 { animation-delay: .4s; }
.hero__stem--2 { animation-delay: .7s; }
.hero__stem--3 { animation-delay: .5s; }
.hero__stem--4 { animation-delay: .8s; }
.hero__stem--5 { animation-delay: 1.0s; }
.hero__stem--6 { animation-delay: .9s; }
.hero__stem--7 { animation-delay: .65s; }

@keyframes heroStemGrow {
  to { stroke-dashoffset: 0; }
}

/* Horizontal rhizomes crawl through soil */
.hero__rhizome {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: heroRhizomeSpread 3.5s cubic-bezier(.3,0,.2,1) forwards;
}

.hero__rhizome--h1 { animation-delay: .3s; }
.hero__rhizome--h2 { animation-delay: .6s; }
.hero__rhizome--h3 { animation-delay: .9s; }
.hero__rhizome--h4 { animation-delay: 1.3s; }
.hero__rhizome--h5 { animation-delay: 1.6s; }

@keyframes heroRhizomeSpread {
  to { stroke-dashoffset: 0; }
}

/* Roots grow downward — aggressive, staggered */
.hero__root {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: heroRootDig ease-out forwards;
}

/* Stem 1 roots */
.hero__root--r1  { animation-duration: 2.8s; animation-delay: .8s; }
.hero__root--r2  { animation-duration: 2.6s; animation-delay: 1.0s; }
.hero__root--r3  { animation-duration: 1.8s; animation-delay: 2.2s; }
.hero__root--r4  { animation-duration: 1.8s; animation-delay: 2.4s; }
.hero__root--r5  { animation-duration: 1.4s; animation-delay: 3.2s; }
.hero__root--r6  { animation-duration: 1.2s; animation-delay: 3.5s; }

/* Stem 2 roots */
.hero__root--r7  { animation-duration: 2.8s; animation-delay: 1.0s; }
.hero__root--r8  { animation-duration: 2.6s; animation-delay: 1.2s; }
.hero__root--r9  { animation-duration: 1.8s; animation-delay: 2.5s; }
.hero__root--r10 { animation-duration: 1.8s; animation-delay: 2.7s; }
.hero__root--r11 { animation-duration: 1.2s; animation-delay: 3.6s; }

/* Stem 3 roots */
.hero__root--r12 { animation-duration: 2.8s; animation-delay: .9s; }
.hero__root--r13 { animation-duration: 2.6s; animation-delay: 1.1s; }
.hero__root--r14 { animation-duration: 1.8s; animation-delay: 2.3s; }
.hero__root--r15 { animation-duration: 1.8s; animation-delay: 2.5s; }
.hero__root--r16 { animation-duration: 1.2s; animation-delay: 3.3s; }
.hero__root--r17 { animation-duration: 1.2s; animation-delay: 3.4s; }

/* Stem 4 roots */
.hero__root--r18 { animation-duration: 2.8s; animation-delay: 1.2s; }
.hero__root--r19 { animation-duration: 2.6s; animation-delay: 1.4s; }
.hero__root--r20 { animation-duration: 1.8s; animation-delay: 2.8s; }
.hero__root--r21 { animation-duration: 1.8s; animation-delay: 3.0s; }
.hero__root--r22 { animation-duration: 1.2s; animation-delay: 3.8s; }

/* Stem 5 roots */
.hero__root--r23 { animation-duration: 2.8s; animation-delay: 1.4s; }
.hero__root--r24 { animation-duration: 2.6s; animation-delay: 1.6s; }
.hero__root--r25 { animation-duration: 1.8s; animation-delay: 3.0s; }
.hero__root--r26 { animation-duration: 1.8s; animation-delay: 3.2s; }

/* Far edge roots */
.hero__root--r27 { animation-duration: 2.4s; animation-delay: 1.2s; }
.hero__root--r28 { animation-duration: 1.4s; animation-delay: 2.8s; }
.hero__root--r29 { animation-duration: 2.4s; animation-delay: 1.4s; }
.hero__root--r30 { animation-duration: 1.4s; animation-delay: 3.0s; }

/* Cross-connecting tangled roots — latest wave */
.hero__root--r31 { animation-duration: 2.0s; animation-delay: 3.5s; }
.hero__root--r32 { animation-duration: 2.0s; animation-delay: 3.7s; }
.hero__root--r33 { animation-duration: 1.6s; animation-delay: 4.0s; }
.hero__root--r34 { animation-duration: 1.6s; animation-delay: 4.2s; }
.hero__root--r35 { animation-duration: 1.6s; animation-delay: 4.4s; }

/* Extra sprawling roots — lateral spread */
.hero__root--r36 { animation-duration: 2.2s; animation-delay: 1.0s; }
.hero__root--r37 { animation-duration: 1.8s; animation-delay: 2.0s; }
.hero__root--r38 { animation-duration: 1.4s; animation-delay: 1.8s; }
.hero__root--r39 { animation-duration: 2.4s; animation-delay: 1.2s; }
.hero__root--r40 { animation-duration: 1.6s; animation-delay: 1.6s; }
.hero__root--r41 { animation-duration: 1.8s; animation-delay: 2.8s; }
.hero__root--r42 { animation-duration: 1.4s; animation-delay: 2.6s; }
.hero__root--r43 { animation-duration: 2.4s; animation-delay: 1.1s; }
.hero__root--r44 { animation-duration: 2.2s; animation-delay: 1.3s; }
.hero__root--r45 { animation-duration: 1.8s; animation-delay: 2.5s; }
.hero__root--r46 { animation-duration: 1.8s; animation-delay: 2.7s; }
.hero__root--r47 { animation-duration: 2.2s; animation-delay: 1.5s; }
.hero__root--r48 { animation-duration: 2.4s; animation-delay: 1.4s; }
.hero__root--r49 { animation-duration: 1.8s; animation-delay: 3.0s; }
.hero__root--r50 { animation-duration: 1.8s; animation-delay: 3.2s; }
.hero__root--r51 { animation-duration: 2.2s; animation-delay: 1.6s; }
.hero__root--r52 { animation-duration: 1.8s; animation-delay: 3.4s; }
.hero__root--r53 { animation-duration: 2.0s; animation-delay: 1.8s; }
.hero__root--r54 { animation-duration: 1.6s; animation-delay: 3.2s; }

/* Deep diagonal sprawlers */
.hero__root--r55 { animation-duration: 3.0s; animation-delay: .9s; }
.hero__root--r56 { animation-duration: 3.0s; animation-delay: 1.1s; }
.hero__root--r57 { animation-duration: 2.8s; animation-delay: 1.2s; }
.hero__root--r58 { animation-duration: 2.8s; animation-delay: 1.4s; }

/* Thin tendrils — late wave */
.hero__root--r59 { animation-duration: 1.2s; animation-delay: 3.8s; }
.hero__root--r60 { animation-duration: 1.2s; animation-delay: 3.6s; }
.hero__root--r61 { animation-duration: 1.2s; animation-delay: 3.9s; }
.hero__root--r62 { animation-duration: 1.0s; animation-delay: 4.0s; }
.hero__root--r63 { animation-duration: 1.0s; animation-delay: 4.2s; }
.hero__root--r64 { animation-duration: 1.4s; animation-delay: 4.4s; }
.hero__root--r65 { animation-duration: 1.2s; animation-delay: 4.3s; }

/* Extra cross-connecting dense tangle */
.hero__root--r66 { animation-duration: 2.0s; animation-delay: 2.5s; }
.hero__root--r67 { animation-duration: 2.0s; animation-delay: 2.7s; }
.hero__root--r68 { animation-duration: 1.8s; animation-delay: 3.4s; }
.hero__root--r69 { animation-duration: 1.8s; animation-delay: 3.6s; }
.hero__root--r70 { animation-duration: 2.4s; animation-delay: 4.0s; }

/* Upward-curving roots */
.hero__root--r71 { animation-duration: 1.4s; animation-delay: 3.8s; }
.hero__root--r72 { animation-duration: 1.4s; animation-delay: 4.0s; }
.hero__root--r73 { animation-duration: 1.4s; animation-delay: 4.2s; }

@keyframes heroRootDig {
  to { stroke-dashoffset: 0; }
}

/* === Knotweed leaves — unfurl naturally as stem passes each node === */
.hero__leaf {
  opacity: 0;
  transform-origin: center bottom;
  animation: heroLeafGrow 1.2s cubic-bezier(.25,.46,.45,.94) forwards;
}

@keyframes heroLeafGrow {
  0%   { opacity: 0; transform: scale(0) rotate(-20deg); }
  40%  { opacity: .7; transform: scale(.6) rotate(-5deg); }
  70%  { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Stem 1 leaves — stem starts at .4s, grows 3.5s (reaches top ~3.9s)
   y=380(near soil) → y=80(near top). Leaf appears when stem reaches its y. */
.hero__leaf--a1 { animation-delay: 1.0s; }  /* y=380, low */
.hero__leaf--a2 { animation-delay: 1.4s; }  /* y=340 */
.hero__leaf--a3 { animation-delay: 1.9s; }  /* y=290 */
.hero__leaf--a4 { animation-delay: 2.4s; }  /* y=240 */
.hero__leaf--a5 { animation-delay: 2.8s; }  /* y=185 */
.hero__leaf--a6 { animation-delay: 3.2s; }  /* y=130 */
.hero__leaf--a7 { animation-delay: 3.6s; }  /* y=80, top */

/* Stem 2 — starts .7s */
.hero__leaf--b1 { animation-delay: 1.3s; }
.hero__leaf--b2 { animation-delay: 1.7s; }
.hero__leaf--b3 { animation-delay: 2.2s; }
.hero__leaf--b4 { animation-delay: 2.7s; }
.hero__leaf--b5 { animation-delay: 3.1s; }
.hero__leaf--b6 { animation-delay: 3.5s; }
.hero__leaf--b7 { animation-delay: 3.9s; }

/* Stem 3 — starts .5s */
.hero__leaf--c1 { animation-delay: 1.1s; }
.hero__leaf--c2 { animation-delay: 1.6s; }
.hero__leaf--c3 { animation-delay: 2.1s; }
.hero__leaf--c4 { animation-delay: 2.6s; }
.hero__leaf--c5 { animation-delay: 3.0s; }
.hero__leaf--c6 { animation-delay: 3.4s; }

/* Stem 4 — starts .8s */
.hero__leaf--d1 { animation-delay: 1.5s; }
.hero__leaf--d2 { animation-delay: 2.0s; }
.hero__leaf--d3 { animation-delay: 2.5s; }
.hero__leaf--d4 { animation-delay: 3.0s; }
.hero__leaf--d5 { animation-delay: 3.4s; }
.hero__leaf--d6 { animation-delay: 3.8s; }

/* Stem 5 — starts 1.0s */
.hero__leaf--e1 { animation-delay: 1.7s; }
.hero__leaf--e2 { animation-delay: 2.2s; }
.hero__leaf--e3 { animation-delay: 2.7s; }
.hero__leaf--e4 { animation-delay: 3.2s; }
.hero__leaf--e5 { animation-delay: 3.6s; }

/* Stem 6 — starts .9s */
.hero__leaf--f1 { animation-delay: 1.6s; }
.hero__leaf--f2 { animation-delay: 2.1s; }
.hero__leaf--f3 { animation-delay: 2.6s; }
.hero__leaf--f4 { animation-delay: 3.1s; }

/* Stem 7 — starts .65s */
.hero__leaf--g1 { animation-delay: 1.4s; }
.hero__leaf--g2 { animation-delay: 1.9s; }
.hero__leaf--g3 { animation-delay: 2.5s; }
.hero__leaf--g4 { animation-delay: 3.0s; }

/* Gentle sway after all leaves have bloomed */
.hero__leaf use {
  animation: heroLeafSway 6s ease-in-out 5s infinite alternate;
}

@keyframes heroLeafSway {
  0%   { transform: rotate(0deg) translateX(0); }
  100% { transform: rotate(3deg) translateX(2px); }
}

/* Hero text entrance animations */
.hero__title--animated {
  animation: heroTextSlideUp .8s cubic-bezier(.4,0,.2,1) both;
  animation-delay: .2s;
}

.hero__subtitle--animated {
  animation: heroTextSlideUp .8s cubic-bezier(.4,0,.2,1) both;
  animation-delay: .5s;
}

.hero__buttons--animated {
  animation: heroTextSlideUp .8s cubic-bezier(.4,0,.2,1) both;
  animation-delay: .8s;
}

@keyframes heroTextSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero--page {
  min-height: 300px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Page banner animated scene */
.hero__scene--page {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero--page .container { position: relative; z-index: 1; }

.hero__scene--page svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Page banner rhizomes */
.hero__pg-rhizome {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: heroRhizomeSpread 3.5s ease-out forwards;
}
.hero__pg-rhizome--1 { animation-delay: .2s; }
.hero__pg-rhizome--2 { animation-delay: .5s; }
.hero__pg-rhizome--3 { animation-delay: .8s; }
.hero__pg-rhizome--4 { animation-delay: 1.1s; }
.hero__pg-rhizome--5 { animation-delay: .4s; }
.hero__pg-rhizome--6 { animation-delay: .7s; }

/* Page banner roots */
.hero__pg-root {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: heroRootDig 2.2s ease-out forwards;
}
.hero__pg-root--1  { animation-delay: .8s; }
.hero__pg-root--2  { animation-delay: 1.0s; }
.hero__pg-root--3  { animation-delay: 1.3s; }
.hero__pg-root--4  { animation-delay: .9s; }
.hero__pg-root--5  { animation-delay: 1.5s; }
.hero__pg-root--6  { animation-delay: 1.2s; }
.hero__pg-root--7  { animation-delay: 1.6s; }
.hero__pg-root--8  { animation-delay: 1.1s; }
.hero__pg-root--9  { animation-delay: 1.8s; }
.hero__pg-root--10 { animation-delay: 1.4s; }
.hero__pg-root--11 { animation-delay: 2.0s; }
.hero__pg-root--12 { animation-delay: 1.7s; }
.hero__pg-root--13 { animation-delay: 2.2s; }
.hero__pg-root--14 { animation-delay: 1.9s; }
.hero__pg-root--15 { animation-delay: 2.4s; }
.hero__pg-root--16 { animation-delay: 2.1s; }
.hero__pg-root--17 { animation-delay: 2.6s; }
.hero__pg-root--18 { animation-delay: 2.3s; }
.hero__pg-root--19 { animation-delay: 2.8s; }
.hero__pg-root--20 { animation-delay: 1.6s; }

/* Page banner leaves */
.hero__pg-leaf {
  opacity: 0;
  transform-origin: center bottom;
  animation: heroLeafGrow 1.2s cubic-bezier(.25,.46,.45,.94) forwards;
}
.hero__pg-leaf--1 { animation-delay: 1.4s; }
.hero__pg-leaf--2 { animation-delay: 1.8s; }
.hero__pg-leaf--3 { animation-delay: 2.2s; }
.hero__pg-leaf--4 { animation-delay: 1.6s; }
.hero__pg-leaf--5 { animation-delay: 2.0s; }
.hero__pg-leaf--6 { animation-delay: 2.5s; }
.hero__pg-leaf--7 { animation-delay: 1.9s; }
.hero__pg-leaf--8 { animation-delay: 2.3s; }

/* Page banner stems — short, peeking from edges/bottom */
.hero__pg-stem {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: heroStemGrow 3s ease-out forwards;
}
.hero__pg-stem--1 { animation-delay: .3s; }
.hero__pg-stem--2 { animation-delay: .6s; }
.hero__pg-stem--3 { animation-delay: .5s; }
.hero__pg-stem--4 { animation-delay: .9s; }

.hero__pg-leaf use {
  animation: heroLeafSway 6s ease-in-out 4s infinite alternate;
}

.hero--page h1 {
  color: var(--off-white);
  margin-bottom: 8px;
}

.hero--page p,
.hero--page .hero__subtitle {
  color: rgba(250, 250, 248, 0.85);
  font-size: 1.1rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 60px 0;
}

.hero__content h1,
.hero h1 {
  color: var(--off-white);
  margin-bottom: 16px;
}

.hero__content p {
  color: rgba(250, 250, 248, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__subtitle {
  color: rgba(250, 250, 248, 0.85);
  font-size: 1.1rem;
}

/* Support both hero__buttons and hero__ctas */
.hero__buttons,
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* hero__pattern — replaced by hero__knotweed animation */

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(27, 58, 45, 0.08);
  padding: 24px 0;
}

/* Support both class names */
.trust-bar__inner,
.trust-bar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.trust-bar__icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-bar__inner,
  .trust-bar__items {
    gap: 20px;
  }
  .trust-bar__item {
    font-size: 0.78rem;
  }
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(27, 58, 45, 0.06);
  text-decoration: none;
  color: var(--charcoal);
  display: block;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  color: var(--charcoal);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.5rem;
}

/* Hide broken icon-placeholder images gracefully */
.card__icon img {
  display: none;
}

.card__title {
  margin-bottom: 12px;
}

.card__text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.card__link:hover {
  gap: 10px;
  color: var(--gold);
}

/* Price shown on service cards */
.card__price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Service cards (homepage) — centered layout */
.card--service {
  text-align: center;
}

.card--service .card__icon {
  margin: 0 auto 20px;
}

/* Feature cards (why choose us, values) */
.card--feature {
  text-align: center;
}

.card--feature .card__icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.6rem;
}

/* Species cards */
.card--species {
  padding: 0;
  overflow: hidden;
}

.card__image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.3);
  font-family: var(--font-heading);
  font-size: 0.85rem;
}

.card__image--knotweed { background: linear-gradient(135deg, #2E7D32, #43A047); }
.card__image--hogweed { background: linear-gradient(135deg, #8B4513, #A0522D); }
.card__image--balsam { background: linear-gradient(135deg, #7B1FA2, #AB47BC); }
.card__image--rhododendron { background: linear-gradient(135deg, #C62828, #EF5350); }

.card__body {
  padding: 24px;
}

.card__body h3 {
  margin-bottom: 8px;
}

.card__body p {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 12px;
}

/* --- Testimonials --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

/* Support both class names */
.testimonial__quote,
.testimonial__text {
  font-style: italic;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest);
  font-size: 0.9rem;
}

.testimonial__author cite {
  font-style: normal;
}

.testimonial__role {
  font-size: 0.82rem;
  color: #888;
  margin-top: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 100%);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2,
.cta-banner__title {
  color: var(--off-white);
  margin-bottom: 16px;
}

.cta-banner p,
.cta-banner__text {
  color: rgba(250, 250, 248, 0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner__buttons,
.cta-banner .hero__buttons,
.cta-banner .hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Ensure CTA button is visible on dark bg */
.cta-banner .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
}

/* --- Process Steps --- */
.process {
  counter-reset: step;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(27, 58, 45, 0.08);
}

.process__step:last-child {
  border-bottom: none;
}

.process__number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.process__content h3 {
  margin-bottom: 6px;
}

.process__content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Process - horizontal layout */
.process--horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process--horizontal .process__step {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
  padding: 0;
}

@media (max-width: 768px) {
  .process--horizontal {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .process--horizontal {
    grid-template-columns: 1fr;
  }
}

/* --- Pricing Sidebar --- */
.pricing-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.pricing-sidebar__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.pricing-sidebar__note {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 24px;
}

.pricing-sidebar__list {
  margin-bottom: 24px;
}

.pricing-sidebar__list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(27, 58, 45, 0.06);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-sidebar__list li::before,
.pricing-sidebar__checklist li::before {
  content: '\2713';
  color: var(--fern);
  font-weight: 700;
}

/* Support both list class names */
.pricing-sidebar__checklist {
  margin-bottom: 24px;
}

.pricing-sidebar__checklist li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(27, 58, 45, 0.06);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Card wrapper inside sidebar */
.pricing-sidebar__card {
  /* content flows naturally */
}

/* --- Service Detail Layout --- */
/* Pattern A: section.service-detail > container > __grid */
/* Pattern B: section.section > container > .service-detail */
.service-detail__grid,
.container > .service-detail,
section.service-detail > .container {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* When service-detail is the section wrapper, add padding */
section.service-detail {
  padding: 80px 0;
}

@media (max-width: 1024px) {
  .service-detail__grid,
  .container > .service-detail,
  section.service-detail > .container {
    grid-template-columns: 1fr;
  }
}

/* Support both class patterns */
.service-detail__main h2,
.service-detail__content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

.service-detail__main h2:first-child,
.service-detail__content h2:first-child {
  margin-top: 0;
}

.service-detail__main p,
.service-detail__content p {
  color: #444;
  font-size: 0.95rem;
}

.service-detail__main ul,
.service-detail__content ul {
  margin: 16px 0 24px;
}

.service-detail__main ul li,
.service-detail__content ul li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  color: #444;
  font-size: 0.95rem;
}

.service-detail__main ul li::before,
.service-detail__content ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--fern);
  font-weight: 700;
}

/* Service detail sub-sections */
.service-detail__species ul li {
  margin-bottom: 6px;
}

.service-detail__process {
  counter-reset: none;
}

.service-detail__process li {
  padding-left: 0;
  margin-bottom: 24px;
}

.service-detail__process li::before {
  display: none;
}

.service-detail__process h3 {
  margin-bottom: 8px;
  color: var(--forest);
}

/* FAQ details/summary styling */
.service-detail__faqs details {
  border-bottom: 1px solid rgba(27, 58, 45, 0.1);
  padding: 16px 0;
}

.service-detail__faqs summary {
  cursor: pointer;
  list-style: none;
}

.service-detail__faqs summary::-webkit-details-marker {
  display: none;
}

.service-detail__faqs summary h3 {
  display: inline;
  font-size: 1rem;
  color: var(--forest);
}

.service-detail__faqs summary:hover h3 {
  color: var(--gold);
}

.service-detail__faqs details[open] summary {
  margin-bottom: 8px;
}

.service-detail__faqs details p {
  color: #555;
  line-height: 1.7;
}

/* --- FAQ --- */
.faq__item {
  border-bottom: 1px solid rgba(27, 58, 45, 0.1);
  padding: 20px 0;
}

.faq__question {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
  font-size: 1rem;
}

.faq__answer {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__answer p {
  margin-bottom: 0;
}

/* --- Case Studies --- */
.case-study {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.case-study:hover {
  box-shadow: var(--shadow-lg);
}

.case-study__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.case-study__img {
  height: 220px;
  position: relative;
}

.case-study__img--before {
  background: linear-gradient(135deg, #8B4513, #A0522D);
}

.case-study__img--after {
  background: linear-gradient(135deg, var(--fern), var(--moss));
}

.case-study__image-wrapper {
  position: relative;
}

.case-study__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--off-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.case-study__body {
  padding: 28px;
}

.case-study__body h3 {
  margin-bottom: 6px;
}

.case-study__meta {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 12px;
}

.case-study__body p {
  color: #555;
  font-size: 0.92rem;
}

.case-study__stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(27, 58, 45, 0.08);
  flex-wrap: wrap;
}

.case-study__stat {
  text-align: center;
}

.case-study__stat-value {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--forest);
  font-size: 1.2rem;
}

.case-study__stat-label {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Blog / Resources --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Support both class names */
.blog-card__img,
.blog-card__image {
  height: 180px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  position: relative;
}

.blog-card__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card__body,
.blog-card__content {
  padding: 24px;
}

.blog-card__body h3,
.blog-card__content h2,
.blog-card__content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.blog-card__content h2 a,
.blog-card__content h3 a {
  color: var(--forest);
  text-decoration: none;
}

.blog-card__content h2 a:hover,
.blog-card__content h3 a:hover {
  color: var(--gold);
}

.blog-card__body p,
.blog-card__content p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* When tag is inside content area instead of image */
.blog-card__content .blog-card__tag {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

.blog-card__link:hover {
  color: #a3823e;
}

/* --- Contact Form --- */
.contact-form h2 {
  margin-bottom: 8px;
}

.contact-form > p {
  color: #555;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--forest);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(27, 58, 45, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 147, 90, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- Photo upload --- */
.photo-upload {
  position: relative;
  border: 2px dashed var(--grey-mid, #D4D4CE);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.photo-upload:hover,
.photo-upload.dragover {
  border-color: var(--fern);
  background: rgba(64, 145, 108, .04);
}

.photo-upload__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.photo-upload__prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #888;
  pointer-events: none;
}

.photo-upload__prompt svg {
  color: var(--fern);
}

.photo-upload__prompt small {
  font-size: .75rem;
  color: #aaa;
}

.form-hint {
  font-weight: 400;
  font-size: .85rem;
  color: #888;
}

.photo-upload__preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.photo-upload__preview:empty {
  display: none;
}

.photo-upload__thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--grey-mid, #D4D4CE);
}

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

.photo-upload__thumb-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success {
  display: none;
  background: rgba(64, 145, 108, 0.1);
  border: 1px solid var(--fern);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--forest);
  font-weight: 500;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* --- Contact Sidebar --- */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-info h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.contact-info__item {
  margin-bottom: 20px;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__item h3 {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--forest);
}

.contact-info__item p {
  color: #555;
  margin-bottom: 0;
}

.contact-info__cta {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-info__cta h3 {
  margin-bottom: 8px;
}

/* --- Emergency Section --- */
.emergency {
  background: linear-gradient(135deg, #8B0000, #B22222);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--off-white);
  text-align: center;
}

.emergency h2,
.emergency h3 {
  color: var(--off-white);
  margin-bottom: 8px;
}

.emergency p {
  opacity: 0.9;
  margin-bottom: 16px;
}

.emergency__phone {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
}

.emergency__phone a {
  color: var(--off-white);
}

.emergency__phone a:hover {
  color: var(--gold);
}

/* --- Values --- */
.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card .card__icon {
  margin: 0 auto 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.6rem;
}

/* --- Accreditation Badges --- */
.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: all var(--transition);
  text-align: center;
}

.badge:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.badge__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--forest), var(--moss));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin: 0 auto 12px;
}

.badge__label,
.badge__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.badge__text {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

/* --- Breadcrumbs (support both class names) --- */
.breadcrumbs,
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.breadcrumbs ol,
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.breadcrumbs li,
.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumbs li + li::before,
.breadcrumb li + li::before {
  content: '\203A';
  margin: 0 10px;
  color: rgba(250, 250, 248, 0.4);
}

.breadcrumbs a,
.breadcrumb a {
  color: rgba(250, 250, 248, 0.6);
}

.breadcrumbs a:hover,
.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumbs [aria-current="page"],
.breadcrumb [aria-current="page"] {
  color: rgba(250, 250, 248, 0.9);
}

/* --- Footer --- */
.footer {
  background: var(--forest);
  color: rgba(250, 250, 248, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 250, 248, 0.1);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
}

.footer__brand img,
.footer__brand svg {
  height: 44px;
  width: auto;
}

.footer h4 {
  color: var(--off-white);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  color: rgba(250, 250, 248, 0.6);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--forest);
  color: var(--off-white);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.88rem;
  flex: 1;
  margin-bottom: 0;
  min-width: 280px;
}

.cookie-banner__buttons {
  display: flex;
  gap: 12px;
}

/* --- Newsletter Section --- */
.newsletter {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter h2 {
  margin-bottom: 8px;
}

.newsletter p {
  color: #555;
  margin-bottom: 24px;
}

.newsletter form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(27, 58, 45, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 147, 90, 0.15);
}

@media (max-width: 480px) {
  .newsletter form {
    flex-direction: column;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Placeholder Images --- */
.placeholder-img {
  background: linear-gradient(135deg, var(--forest), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 250, 248, 0.3);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-fern { color: var(--fern); }
.text-forest { color: var(--forest); }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.pt-0 { padding-top: 0; }

/* --- About Story Layout --- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-story__content .section__title {
  text-align: left;
}

.about-story__content .section__title::after {
  margin-left: 0;
}

.about-story__image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-story__image {
    order: -1;
  }
}

/* --- Service Detail Hero Image --- */
.service-detail__hero-image {
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-detail__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  max-height: 400px;
}

/* --- Article Content --- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--forest);
  margin: 48px 0 16px;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--moss);
  margin: 32px 0 12px;
}

.article-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.article-content .article-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
  object-fit: cover;
  max-height: 400px;
}

.article-content .article-cta {
  background: var(--off-white);
  border: 2px solid var(--fern);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 48px 0;
  text-align: center;
}

.article-content .article-cta h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.article-content .checklist {
  list-style: none;
  padding-left: 0;
}

.article-content .checklist li {
  padding-left: 28px;
  position: relative;
}

.article-content .checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--fern);
  font-weight: 700;
}

.article-content .info-box {
  background: #EDF7ED;
  border-left: 4px solid var(--fern);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.article-content .warning-box {
  background: #FFF3E0;
  border-left: 4px solid #E65100;
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}

.article-content th,
.article-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #E0E0E0;
}

.article-content th {
  background: var(--forest);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.article-content tr:nth-child(even) {
  background: #F5F5F5;
}

.article-content .season-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.article-content .season-card h3 {
  margin-top: 0;
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero__stem,
  .hero__rhizome,
  .hero__root,
  .hero__leaf,
  .hero__leaf use,
  .hero__soil,
  .hero__ground,
  .hero__title--animated,
  .hero__subtitle--animated,
  .hero__buttons--animated {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
}

/* --- Print --- */
@media print {
  .nav, .cookie-banner, .footer { display: none; }
  .hero { min-height: auto; padding: 24px 0; }
  body { padding-top: 0; font-family: Arial, Helvetica, sans-serif; }
}
