/* ---- VARIABLES ---- */
:root {
  --green:        #2D5A1B;
  --green-light:  #4A8C2A;
  --green-pale:   #E8F0E2;
  --cream:        #F6F1E9;
  --terra:        #B85C30;
  --terra-pale:   #F7ECE1;
  --text:         #1C1C1A;
  --muted:        #6B6558;
  --border:       #DDD8CF;
  --white:        #FFFFFF;
  --serif:        'Cormorant Garamond', Georgia, serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: system-ui, sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- LAYOUT ---- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--white); }

/* ---- NAV ---- */
nav { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--green); letter-spacing: 0.01em; display: flex; align-items: center; gap: 9px; }
.nav-logo-icon { width: 13px; height: auto; flex-shrink: 0; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.875rem; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { background: var(--green); color: var(--white) !important; padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 0.875rem !important; }
.nav-cta:hover { background: var(--green-light) !important; color: var(--white) !important; }
.nav-active { color: var(--green) !important; font-weight: 600; }

/* ---- HERO ---- */
.hero { background: var(--green) center/cover no-repeat; color: var(--white); padding: 160px 0 180px; }
.hero h1 { font-family: var(--serif); font-size: 5.5rem; font-weight: 400; font-style: italic; line-height: 1.0; max-width: 780px; margin-bottom: 28px; letter-spacing: -0.01em; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 420px; margin-bottom: 44px; line-height: 1.75; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- IMAGE BREAK ---- */
.image-break { width: 100%; height: 480px; overflow: hidden; }
.image-break img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 14px 28px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; transition: all 0.15s; cursor: pointer; border: none; letter-spacing: 0.02em; }
.btn-white { background: var(--white); color: var(--green); }
.btn-white:hover { background: var(--green-pale); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-light); }

/* ---- SERVICE CARDS ---- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.card-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-body h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; letter-spacing: 0.01em; }
.card-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.card-link { font-size: 0.85rem; font-weight: 600; color: var(--green); letter-spacing: 0.02em; }
.card-link:hover { text-decoration: underline; }

/* ---- ABOUT (HOMEPAGE) ---- */
.about-inner { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: start; }
.about-text p { font-size: 1.05rem; color: var(--muted); line-height: 1.85; }

/* ---- SECTION HEADINGS ---- */
.eyebrow { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--terra); margin-bottom: 14px; }
h1, h2 { font-family: var(--serif); }
h2 { font-size: 2.5rem; font-weight: 400; line-height: 1.15; margin-bottom: 18px; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.75; }

/* ---- CTA BAND ---- */
.cta-band { background: var(--terra-pale); color: var(--text); text-align: center; padding: 100px 0; border-top: 1px solid #e5d2c0; border-bottom: 1px solid #e5d2c0; }
.cta-band h2 { color: var(--text); font-size: 3.2rem; font-style: italic; font-weight: 400; margin-bottom: 14px; }
.cta-band p { color: var(--muted); margin-bottom: 36px; font-size: 1rem; }

/* ---- FOOTER ---- */
footer { background: var(--text); color: rgba(255,255,255,0.55); font-size: 0.875rem; padding-top: 64px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .footer-logo { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--white); font-weight: 600; margin-bottom: 12px; letter-spacing: 0.01em; }
.footer-brand p { line-height: 1.7; max-width: 260px; }
.footer-col-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-col span { color: rgba(255,255,255,0.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ---- HAMBURGER ---- */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }

/* ---- TABLET (768–1024px) ---- */
@media (max-width: 1024px) {
  .hero { padding: 100px 0 120px; }
  .hero h1 { font-size: 3.8rem; }
  .section { padding: 72px 0; }
  .image-break { height: 360px; }
  .cta-band { padding: 72px 0; }
  .cta-band h2 { font-size: 2.6rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MOBILE (<768px) ---- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 8px 32px 48px;
    z-index: 99;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.01em;
    transition: color 0.15s;
    text-align: left;
    width: 100%;
  }
  .nav-links a:hover { color: var(--green); }
  .nav-links .nav-cta {
    background: none;
    color: var(--green) !important;
    font-family: var(--serif);
    font-size: 1.75rem !important;
    font-style: italic;
    font-weight: 400;
    border-bottom: none;
    padding: 20px 0 !important;
    border-radius: 0;
    margin-top: 4px;
    align-self: stretch;
    text-align: left;
    letter-spacing: -0.01em;
  }

  .hero { padding: 72px 0 88px; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }

  .section { padding: 56px 0; }
  .image-break { height: 220px; }

  .cards { grid-template-columns: 1fr; }
  .card:nth-child(2) { margin-top: 0; }
  .about-inner { grid-template-columns: 1fr; gap: 20px; }

  h2 { font-size: 1.9rem; }
  .cta-band { padding: 60px 0; }
  .cta-band h2 { font-size: 2rem; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- FADE-IN ---- */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* ---- TESTIMONIALS ---- */
.testimonials-dark { background: var(--green); }
.tq-eyebrow { color: rgba(255,255,255,0.5); }
.tq-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 0; margin-top: 12px; }
.tq-main { position: relative; padding-right: 56px; padding-top: 24px; }
.tq-mark { font-family: var(--serif); font-size: 11rem; line-height: 0.65; color: rgba(255,255,255,0.1); position: absolute; top: 0; left: -8px; pointer-events: none; user-select: none; }
.tq-main p { font-family: var(--serif); font-size: 1.75rem; font-style: italic; color: var(--cream); line-height: 1.5; margin-bottom: 28px; position: relative; }
.tq-main cite { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); font-style: normal; }
.tq-side { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 48px; display: flex; flex-direction: column; gap: 40px; justify-content: center; }
.tq-small p { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 14px; }
.tq-small cite { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.38); font-style: normal; }

/* ---- PROCESS STEPS ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 48px; border-top: 1px solid var(--border); }
.step { padding: 32px 32px 32px 0; }
.step-num { display: block; font-size: 2.4rem; font-family: var(--serif); font-style: italic; color: var(--terra); line-height: 1; margin-bottom: 14px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin: 0; }

/* ---- BEFORE/AFTER SLIDER ---- */
.before-after-wrap { position: relative; overflow: hidden; border-radius: 8px; cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.ba-label { position: absolute; top: 16px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; padding: 4px 10px; border-radius: 4px; z-index: 3; pointer-events: none; background: rgba(0,0,0,0.55); color: #fff; }
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }
.ba-after-img { width: 100%; height: 440px; object-fit: cover; display: block; }
.ba-before { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.ba-before-img { position: absolute; top: 0; left: 0; height: 440px; object-fit: cover; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 44px; display: flex; align-items: center; justify-content: center; z-index: 4; pointer-events: none; }
.ba-handle-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.9); left: 50%; transform: translateX(-50%); }
.ba-handle-circle { width: 40px; height: 40px; border-radius: 50%; background: white; box-shadow: 0 2px 12px rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: var(--text); position: relative; z-index: 5; letter-spacing: -1px; }
.ba-caption { font-size: 0.8rem; color: var(--muted); text-align: center; padding-top: 10px; margin-bottom: 32px; }

/* ---- PROJECT HEADER ---- */
.project-header .eyebrow {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.project-header .project-meta {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  gap: 0;
}
.project-header .project-meta-item {
  padding: 0 36px;
  border-right: 1px solid var(--border);
}
.project-header .project-meta-item:first-child { padding-left: 0; }
.project-header .project-meta-item:last-child { border-right: none; }
@media (max-width: 600px) {
  .project-header .project-meta { flex-direction: column; }
  .project-header .project-meta-item { padding: 14px 0; border-right: none; border-bottom: 1px solid var(--border); }
  .project-header .project-meta-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ---- GALLERY 3-UP LAYOUT ---- */
.project-gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }

/* ---- LIGHTBOX ---- */
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; cursor: zoom-out; padding: 24px; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 100%; max-height: 90vh; border-radius: 6px; box-shadow: 0 12px 48px rgba(0,0,0,0.5); pointer-events: none; }
.project-gallery img { cursor: zoom-in; transition: opacity 0.15s; }
.project-gallery img:hover { opacity: 0.9; }

/* ---- SEASONAL PLANTING ---- */
.seasonal-section { background: var(--green-pale); }
.seasonal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.seasonal-badge { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; background: var(--green); color: white; padding: 4px 12px; border-radius: 20px; }
.seasonal-plants { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.seasonal-plant { background: var(--white); border-radius: 8px; padding: 20px; border: 1px solid var(--border); }
.seasonal-plant-type { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 6px; }
.seasonal-plant h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.seasonal-plant p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin: 0; }

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .seasonal-plants { grid-template-columns: repeat(2, 1fr); }
  .tq-layout { grid-template-columns: 1fr; }
  .tq-main { padding-right: 0; padding-bottom: 40px; }
  .tq-side { border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-left: 0; padding-top: 40px; flex-direction: row; gap: 32px; }
  .tq-small { flex: 1; }
}
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .step { padding: 24px 0; border-top: 1px solid var(--border); }
  .seasonal-plants { grid-template-columns: 1fr; }
  .ba-after-img, .ba-before-img { height: 260px; }
  .tq-main p { font-size: 1.35rem; }
  .tq-side { flex-direction: column; gap: 28px; }
}
