/* =========================================================
   Wildcat Hollow Landscape Studio — Stylesheet
   ========================================================= */

:root {
  --forest:        #1F3A2E;
  --forest-dark:   #14271F;
  --cream:         #F5EFE6;
  --cream-dark:    #EBE3D4;
  --terracotta:    #C97B5F;
  --sage:          #A8B89A;
  --ink:           #1A1A1A;
  --muted:         #5C5A55;
  --line:          #DCD4C2;
  --shadow-sm:     0 1px 2px rgba(20, 39, 31, .06), 0 2px 4px rgba(20, 39, 31, .04);
  --shadow-md:     0 6px 18px rgba(20, 39, 31, .08), 0 2px 6px rgba(20, 39, 31, .05);
  --shadow-lg:     0 24px 60px rgba(20, 39, 31, .14), 0 8px 18px rgba(20, 39, 31, .08);
  --radius-sm:     6px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --container:     1240px;
  --ease:          cubic-bezier(.22, .61, .36, 1);
  --font-display:  'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--forest); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--terracotta); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.6rem); font-weight: 400; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3vw + .8rem, 3rem); }
h3 { font-size: clamp(1.3rem, 1.5vw + .8rem, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1em; color: var(--ink); }
.lead { font-size: 1.18rem; color: var(--muted); line-height: 1.6; }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 239, 230, .85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 44px; width: auto; }
.brand-text { font-family: var(--font-display); font-size: 1.25rem; color: var(--forest); font-weight: 600; line-height: 1; }
.brand-sub  { font-family: var(--font-body); font-size: .68rem; color: var(--muted); letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; }
.nav-links { display: flex; gap: 28px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--forest); font-weight: 500; font-size: .95rem;
  position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--terracotta);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  background: var(--forest); color: var(--cream) !important;
  padding: 11px 22px !important; border-radius: 999px;
  font-weight: 500; transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terracotta); transform: translateY(-1px); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle svg { width: 28px; height: 28px; stroke: var(--forest); }
@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--cream); padding: 24px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; border-bottom: 0 !important; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-weight: 500; font-size: .98rem;
  border: 1.5px solid var(--forest);
  transition: all .25s var(--ease);
  text-decoration: none; cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--cream); }
.btn-primary:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.btn-arrow::after { content: '→'; transition: transform .25s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Hero */
.hero {
  position: relative; padding: clamp(64px, 10vw, 140px) 0 clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform 8s var(--ease); }
.hero:hover .hero-image img { transform: scale(1.06); }
.hero-meta { display: flex; gap: 32px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.hero-meta div strong { display: block; font-family: var(--font-display); color: var(--forest); font-size: 1.6rem; }
.hero-meta div span { font-size: .85rem; color: var(--muted); }

/* Cards */
.card {
  background: #fff; border-radius: var(--radius-md);
  padding: 32px; border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--forest); font-size: 1.4rem;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card .card-link { margin-top: auto; font-weight: 600; color: var(--terracotta); padding-top: 16px; }

/* Portfolio gallery */
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.portfolio-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
}
.portfolio-item.tall { aspect-ratio: 3/4; }
.portfolio-item.wide { aspect-ratio: 16/9; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item .overlay {
  position: absolute; inset: 0; padding: 22px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(20,39,31,.85) 0%, rgba(20,39,31,0) 55%);
  color: var(--cream);
  opacity: 0; transition: opacity .35s var(--ease);
}
.portfolio-item:hover .overlay { opacity: 1; }
.portfolio-item .overlay h4 { color: var(--cream); margin: 0 0 4px; font-size: 1.15rem; }
.portfolio-item .overlay span { font-size: .82rem; opacity: .85; }
/* Spans */
.span-6 { grid-column: span 6; }
.span-4 { grid-column: span 4; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }
@media (max-width: 800px) { .portfolio-grid > * { grid-column: span 12; } }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 24px; }
.step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; padding: 32px; background: #fff;
  border-radius: var(--radius-md); border: 1px solid var(--line);
  align-items: start;
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  font-family: var(--font-display); font-size: 2.4rem; color: var(--terracotta); font-weight: 500;
  line-height: 1;
}
.step h3 { margin-bottom: 8px; }

/* Testimonials */
.testimonial {
  background: #fff; padding: 36px; border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial blockquote { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--forest); }
.testimonial blockquote::before { content: '“'; font-size: 3rem; line-height: 0; vertical-align: -.5rem; color: var(--terracotta); margin-right: 4px; }
.testimonial-author { font-size: .9rem; color: var(--muted); }
.testimonial-author strong { display: block; color: var(--ink); font-weight: 600; }

/* CTA band */
.cta-band {
  background: var(--forest); color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(245, 239, 230, .85); max-width: 640px; margin: 0 auto 32px; }
.cta-band .btn-primary { background: var(--terracotta); border-color: var(--terracotta); }
.cta-band .btn-primary:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.cta-band .btn-outline { color: var(--cream); border-color: var(--cream); }
.cta-band .btn-outline:hover { background: var(--cream); color: var(--forest); }

/* Footer */
.site-footer {
  background: var(--forest-dark); color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--cream); font-family: var(--font-body); font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; opacity: .7; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(245, 239, 230, .85); font-size: .95rem; }
.footer-grid a:hover { color: var(--terracotta); }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--cream); margin-bottom: 12px; }
.footer-blurb { color: rgba(245, 239, 230, .7); font-size: .95rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(245, 239, 230, .12);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: .85rem; color: rgba(245, 239, 230, .6);
}
.footer-bottom a { color: rgba(245, 239, 230, .8); margin-left: 18px; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 540px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px 28px; box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(180%); transition: transform .5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { margin-bottom: 8px; font-size: 1.05rem; }
.cookie-banner p { font-size: .9rem; color: var(--muted); margin-bottom: 16px; }
.cookie-banner .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 18px; font-size: .88rem; }
.cookie-banner .link-btn { background: none; border: 0; color: var(--muted); font-size: .85rem; text-decoration: underline; padding: 8px 4px; }

/* Cookie modal */
.cookie-modal {
  position: fixed; inset: 0; background: rgba(20, 39, 31, .55);
  display: none; align-items: center; justify-content: center;
  padding: 20px; z-index: 300;
}
.cookie-modal.show { display: flex; }
.cookie-modal-inner {
  background: #fff; border-radius: var(--radius-md);
  max-width: 540px; width: 100%; padding: 32px;
  max-height: 85vh; overflow-y: auto;
}
.cookie-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cookie-row:last-of-type { border-bottom: 0; }
.cookie-row strong { display: block; margin-bottom: 4px; }
.cookie-row p { font-size: .85rem; color: var(--muted); margin: 0; }
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; inset: 0;
  background: #ccc; border-radius: 24px; transition: .25s;
}
.slider::before {
  content: ''; position: absolute; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .25s;
}
input:checked + .slider { background: var(--forest); }
input:checked + .slider::before { transform: translateX(20px); }
input:disabled + .slider { background: var(--sage); cursor: not-allowed; }

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-q {
  width: 100%; background: none; border: 0;
  padding: 22px 0; text-align: left;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); font-weight: 500;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
}
.faq-q .icon { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
  color: var(--muted);
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 22px; }

/* Page hero */
.page-hero {
  padding: clamp(70px, 10vw, 130px) 0 clamp(50px, 6vw, 80px);
  text-align: center; max-width: 820px; margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 18px; }
.breadcrumbs { font-size: .82rem; color: var(--muted); padding: 16px 0 0; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--terracotta); }

/* Article / Long-form */
.article {
  max-width: 760px; margin: 0 auto;
}
.article p, .article ul, .article ol { font-size: 1.06rem; color: var(--ink); line-height: 1.75; }
.article h2 { margin-top: 2em; }
.article h3 { margin-top: 1.5em; color: var(--forest); }
.article ul, .article ol { padding-left: 1.4em; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 8px 0 8px 24px; margin: 24px 0;
  font-family: var(--font-display); font-size: 1.25rem; color: var(--forest);
}
.article img { border-radius: var(--radius-md); margin: 32px 0; }

/* Plant cards */
.plant-card {
  background: #fff; border-radius: var(--radius-md);
  overflow: hidden; border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.plant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plant-card .img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-dark); }
.plant-card .img img { width: 100%; height: 100%; object-fit: cover; }
.plant-card .body { padding: 22px; }
.plant-card h4 { margin: 0 0 4px; font-size: 1.15rem; }
.plant-card .latin { font-style: italic; color: var(--muted); font-size: .85rem; margin-bottom: 10px; }
.plant-card .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.plant-card .tag { background: var(--cream); color: var(--forest); padding: 4px 10px; border-radius: 999px; font-size: .72rem; font-weight: 500; letter-spacing: .04em; }

/* Form */
.form-grid { display: grid; gap: 20px; max-width: 620px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; letter-spacing: .04em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(31, 58, 46, .12);
}
.form-note { font-size: .82rem; color: var(--muted); }
.form-success {
  padding: 18px 22px; background: #E8F0E5;
  border-left: 4px solid var(--forest); border-radius: var(--radius-sm);
  display: none; margin-top: 20px;
}
.form-success.show { display: block; }

/* Service Areas list */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.area-card { background: #fff; padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--line); transition: all .3s var(--ease); }
.area-card:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.area-card h3 { margin-bottom: 6px; font-size: 1.3rem; }
.area-card .zip { color: var(--terracotta); font-size: .85rem; font-weight: 600; letter-spacing: .08em; margin-bottom: 12px; }
.area-card p { color: var(--muted); font-size: .92rem; margin-bottom: 0; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item::before {
  content: ''; position: absolute; left: -29px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--terracotta); border: 3px solid var(--cream);
}
.tl-year { font-family: var(--font-display); color: var(--terracotta); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.tl-item h4 { margin-bottom: 6px; }
.tl-item p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Related articles */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.related-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); transition: all .3s var(--ease); }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card .img { aspect-ratio: 16/10; overflow: hidden; }
.related-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.related-card:hover .img img { transform: scale(1.05); }
.related-card .body { padding: 22px; }
.related-card h4 { margin: 0 0 8px; font-size: 1.1rem; }
.related-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-3 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.muted { color: var(--muted); }
.divider { height: 1px; background: var(--line); border: 0; margin: 48px 0; }
.tag-pill { display: inline-block; background: var(--cream-dark); padding: 6px 14px; border-radius: 999px; font-size: .8rem; color: var(--forest); font-weight: 500; }

/* 404 */
.not-found { text-align: center; padding: 120px 24px; }
.not-found .num { font-family: var(--font-display); font-size: clamp(6rem, 18vw, 12rem); color: var(--forest); line-height: 1; margin: 0; }

/* Image rounded */
.rounded { border-radius: var(--radius-md); overflow: hidden; }
.rounded-lg { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* Print */
@media print {
  .site-header, .cookie-banner, .nav-cta, .cta-band { display: none !important; }
}
/* =================== INNER PAGES =================== */
.page-hero { padding: 80px 0 56px; background: var(--cream); }
.page-hero .eyebrow { color: var(--terracotta); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; color: var(--forest); margin-bottom: 22px; max-width: 880px; font-weight: 500; }
.page-hero .lede { font-size: 1.18rem; line-height: 1.65; color: var(--ink); max-width: 720px; }

.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--forest); margin-bottom: 24px; font-weight: 500; line-height: 1.2; }
.section h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--forest); margin-bottom: 12px; font-weight: 500; }
.section p { line-height: 1.75; margin-bottom: 16px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } }

.recognition-list { list-style: none; padding: 0; max-width: 720px; margin: 0 auto; }
.recognition-list li { padding: 18px 0; border-bottom: 1px solid var(--line); line-height: 1.6; }
.recognition-list li:last-child { border-bottom: 0; }
.recognition-list strong { color: var(--terracotta); font-family: var(--font-display); margin-right: 14px; }

/* Services */
.service-block { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; margin-bottom: 96px; }
.service-block.reverse { grid-template-columns: 1.2fr 1fr; }
.service-block.reverse > img { order: 2; }
.service-block img { width: 100%; height: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.service-block ul { padding-left: 18px; line-height: 1.85; margin: 16px 0; }
.service-block ul li { margin-bottom: 4px; }
@media (max-width: 860px) {
  .service-block, .service-block.reverse { grid-template-columns: 1fr; gap: 32px; margin-bottom: 64px; }
  .service-block.reverse > img { order: 0; }
}

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
@media (max-width: 760px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.portfolio-meta h3 { margin-bottom: 4px; font-size: 1.3rem; }

/* Process steps */
.process-steps { list-style: none; padding: 0; counter-reset: step; max-width: 880px; margin: 0 auto; }
.process-steps > li { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 28px 0; border-top: 1px solid var(--line); }
.process-steps > li:first-child { border-top: 0; padding-top: 0; }
.step-num { font-family: var(--font-display); font-size: 2rem; color: var(--terracotta); font-weight: 500; line-height: 1; }
.process-steps h3 { margin-bottom: 8px; }

/* Plants */
.plant-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .plant-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plant-grid { grid-template-columns: 1fr; } }
.plant-card { background: var(--cream); padding: 28px 24px; border-radius: var(--radius-md); border-left: 3px solid var(--sage); }
.plant-card h3 { margin-bottom: 4px; font-size: 1.18rem; }
.plant-card .latin { color: var(--muted); font-size: .92rem; margin-bottom: 12px; }
.plant-card p { margin: 0; font-size: .95rem; line-height: 1.65; }

/* Service Areas */
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 700px) { .area-grid { grid-template-columns: 1fr; } }
.area-card { background: var(--cream); padding: 28px; border-radius: var(--radius-md); border-top: 3px solid var(--terracotta); }
.area-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.area-card p { margin: 0; line-height: 1.65; font-size: .95rem; }

/* Journal */
.journal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
@media (max-width: 760px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 18px; }
.journal-card h3 { font-size: 1.32rem; margin-bottom: 10px; line-height: 1.25; }
.journal-card p { margin: 0; line-height: 1.65; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { font-family: var(--font-display); font-size: 1.18rem; color: var(--forest); font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--terracotta); font-size: 1.6rem; line-height: 1; transition: transform .25s; }
.faq-item[open] summary::after { content: "−"; }
.faq-body { padding-top: 14px; line-height: 1.75; color: var(--ink); }
.faq-body p { margin: 0; }

/* Contact */
.contact-list { list-style: none; padding: 0; }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--line); line-height: 1.65; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list a { color: var(--forest); font-weight: 500; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: .92rem; color: var(--ink); font-weight: 500; }
.contact-form input, .contact-form textarea { padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font: inherit; background: var(--cream); color: var(--ink); transition: border-color .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--forest); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form label.check { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; font-size: .88rem; line-height: 1.5; }
.contact-form button[type=submit] { align-self: flex-start; margin-top: 10px; }

/* Legal pages */
.legal h2 { font-size: 1.35rem; margin-top: 36px; margin-bottom: 12px; }
.legal h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 10px; }
.legal p, .legal li { line-height: 1.75; }
.legal ul { padding-left: 22px; margin-bottom: 16px; }
.legal ul li { margin-bottom: 6px; }

.cookie-table { width: 100%; border-collapse: collapse; margin: 14px 0 28px; font-size: .92rem; }
.cookie-table th, .cookie-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cookie-table th { background: var(--cream); font-weight: 600; color: var(--forest); }
