/* =========================================================
   Jake's Landscaping & Tree Services — production stylesheet
   ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1a2e16;
  --green-mid: #2d4a1e;
  --green-light: #4a7a32;
  --green-bright: #6db33f;
  --red-truck: #a33b2a;
  --red-truck-hover: #bf4532;
  --bark: #5c3d1e;
  --bark-light: #8a6240;
  --cream: #f5f0e8;
  --logo-bg: #eee9df;
  --tan: #e8dcc8;
  --white: #fff;
  --text-dark: #1a1a14;

  --nav-height: 72px;
  --focus-ring: 0 0 0 3px rgba(109, 179, 63, .55);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; outline: none; }
img { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 2px; }

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  left: 0; top: 0;
  background: var(--green-dark);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.2rem;
  text-decoration: none;
  transform: translateY(-110%);
  transition: transform .2s;
  z-index: 200;
}
.skip-link:focus { transform: translateY(0); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4%;
  height: var(--nav-height);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}
.nav-brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.nav-logo-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--logo-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-circle img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand-text { line-height: 1.15; display: flex; flex-direction: column; }
.nav-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--green-bright);
  letter-spacing: .04em; text-transform: uppercase;
}
.nav-brand-sub {
  font-family: 'Oswald', sans-serif;
  font-size: .65rem; letter-spacing: .1em;
  color: rgba(232, 220, 200, .7);
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links ul { list-style: none; display: flex; gap: 1.8rem; align-items: center; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: .88rem; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--green-bright); }
.nav-links a[aria-current="page"]:not(.nav-cta) { border-bottom: 1px solid var(--green-bright); }

.nav-phone {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--white) !important;
  text-decoration: none; letter-spacing: .04em;
  border-left: 1px solid rgba(255, 255, 255, .15);
  padding-left: 1.5rem;
}
.nav-phone:hover { color: var(--green-bright) !important; }

.nav-cta {
  background: var(--red-truck);
  color: var(--white) !important;
  padding: .45rem 1.1rem; border-radius: 2px;
  font-weight: 700 !important; letter-spacing: .06em !important;
}
.nav-cta:hover { background: var(--red-truck-hover) !important; color: var(--white) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0; cursor: pointer;
  width: 44px; height: 44px;
  padding: 10px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: transform .25s, opacity .15s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--green-dark);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: calc(var(--nav-height) + 28px) 5% 60px;
  gap: 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(74, 122, 50, .18) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1.1rem;
  animation: fadeUp .8s ease both;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 700; line-height: .95;
  color: var(--white);
  text-transform: uppercase; letter-spacing: -.01em;
  animation: fadeUp .8s .1s ease both;
}
.hero h1 .accent { color: var(--green-bright); display: block; }
.hero h1 .accent2 {
  color: var(--tan); display: block;
  font-size: .62em; margin-top: .25em;
  font-weight: 400; letter-spacing: .04em;
}
.hero-sub {
  margin-top: 1.6rem;
  font-size: 1rem;
  color: rgba(232, 220, 200, .85);
  line-height: 1.85;
  max-width: 480px;
  animation: fadeUp .8s .2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-top: 2.2rem;
  animation: fadeUp .8s .4s ease both;
}
.h-stat { border-top: 1px solid rgba(74, 122, 50, .5); padding-top: .9rem; }
.h-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--green-bright); line-height: 1;
}
.h-stat-label {
  font-size: .78rem;
  color: rgba(232, 220, 200, .7);
  margin-top: .25rem; font-style: italic;
}

.hero-logo-side {
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem;
  animation: fadeUp .9s .15s ease both;
  position: relative; z-index: 1;
}
.hero-logo-frame {
  width: 300px; height: 300px;
  background: var(--logo-bg);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .45), 0 0 0 1px rgba(255, 255, 255, .06);
}
.hero-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.hero-cta-block { text-align: center; }
.hero-cta-label {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, .55);
  margin-bottom: .6rem;
}
.hero-phone-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--white); text-decoration: none; letter-spacing: .04em;
  background: var(--red-truck);
  padding: .65rem 1.6rem; border-radius: 3px;
  transition: background .2s, transform .15s;
  box-shadow: 0 8px 24px rgba(163, 59, 42, .35);
}
.hero-phone-btn:hover { background: var(--red-truck-hover); transform: translateY(-2px); }

.btn-primary,
.btn-outline {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 1.8rem;
  text-decoration: none; display: inline-block;
  border-radius: 2px; border: none;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.btn-primary { background: var(--green-bright); color: var(--green-dark); }
.btn-primary:hover { background: #7fcf4a; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245, 240, 232, .3);
}
.btn-outline:hover { border-color: var(--green-bright); color: var(--green-bright); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bark);
  padding: 1rem 5%;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.trust-item {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tan);
  display: flex; align-items: center; gap: .6rem;
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-bright); flex-shrink: 0; }

/* ===== Section helpers ===== */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: .9rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--green-dark);
  line-height: 1.02;
  margin-bottom: 3rem;
}

/* Views: only the active one is mounted */
.view { display: none; }
.view.is-active { display: block; animation: viewIn .25s ease both; }

/* Push the first section of every non-home view below the fixed nav */
.view:not(.view-home) > section:first-child { padding-top: calc(var(--nav-height) + 60px); }

@keyframes viewIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Section reveal-on-scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Per-view CTA strip */
.view-cta {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.view-cta--inline { justify-content: flex-start; margin-top: 1.5rem; }
.btn-outline.btn-outline--dark { color: var(--green-dark); border-color: rgba(26, 46, 22, .35); }
.btn-outline.btn-outline--dark:hover { color: var(--green-bright); border-color: var(--green-bright); }

/* Home quicklinks */
.home-quicklinks {
  background: var(--cream);
  padding: 80px 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.ql-card {
  position: relative;
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.8rem 1.6rem;
  background: var(--white);
  border: 1px solid rgba(26, 46, 22, .08);
  border-radius: 4px;
  text-decoration: none;
  color: var(--green-dark);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.ql-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26, 46, 22, .12);
  border-color: var(--green-bright);
}
.ql-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-light);
}
.ql-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  color: var(--green-dark);
}
.ql-arrow {
  position: absolute; right: 1.4rem; top: 1.6rem;
  font-size: 1.4rem; color: var(--green-bright);
  transition: transform .2s;
}
.ql-card:hover .ql-arrow { transform: translateX(4px); }
.ql-card.ql-cta { background: var(--green-dark); border-color: var(--green-dark); }
.ql-card.ql-cta .ql-eyebrow { color: rgba(232, 220, 200, .65); }
.ql-card.ql-cta .ql-title   { color: var(--white); }
.ql-card.ql-cta .ql-arrow   { color: var(--green-bright); }

/* Areas note */
.areas-note { margin-top: 2rem; font-size: .92rem; color: var(--bark); font-style: italic; }
.areas-note a { color: var(--green-light); font-weight: 600; }

/* 404 view */
.not-found {
  min-height: calc(100vh - var(--nav-height));
  background: var(--green-dark);
  color: var(--cream);
  text-align: center;
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.not-found .section-label { color: var(--green-bright); }
.not-found .section-title { color: var(--white); margin-bottom: 1rem; }
.nf-body { color: rgba(232, 220, 200, .8); margin-bottom: 1rem; max-width: 520px; }

/* ===== SERVICES ===== */
.services { padding: 100px 5%; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 2px;
  background: #c8b89a;
}
.service-card {
  background: var(--cream);
  padding: 2rem 1.8rem;
  position: relative; overflow: hidden;
  transition: background .25s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--green-bright);
  transition: width .4s ease;
}
.service-card:hover { background: #faf7f2; }
.service-card:hover::after { width: 100%; }
.service-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--green-dark); margin-bottom: .6rem;
}
.service-desc { font-size: .88rem; line-height: 1.7; color: #4e4e3e; }

/* ===== GALLERY ===== */
.gallery { padding: 100px 5%; background: var(--green-dark); }
.gallery .section-label { color: var(--green-bright); }
.gallery .section-title { color: var(--white); margin-bottom: .4rem; }
.gallery-sub {
  color: rgba(232, 220, 200, .65);
  font-style: italic; margin-bottom: 2.5rem;
  font-size: .9rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 5px;
}
.g-item {
  overflow: hidden; position: relative;
  background: #000; border: 0; padding: 0; cursor: zoom-in;
  display: block;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.g-item:hover img,
.g-item:focus-visible img { transform: scale(1.05); }
.g-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10, 20, 8, .82));
  padding: 1.8rem 1rem .75rem;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright);
  text-align: left;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.g-item:hover .g-label,
.g-item:focus-visible .g-label { opacity: 1; }
.g-wide { grid-column: span 2; }
.g-tall { grid-row: span 2; }

/* ===== BEFORE / AFTER ===== */
.before-after { padding: 100px 5%; background: var(--tan); }
.before-after .section-label { color: var(--bark); }
.before-after .section-title { margin-bottom: .4rem; }
.ba-intro { font-size: .92rem; color: var(--bark); font-style: italic; margin-bottom: 2.5rem; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.ba-card {
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .14);
  position: relative;
  background: var(--green-dark);
}
.ba-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
.ba-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 2px;
  font-weight: 600;
}
.ba-tag.before { background: #b83225; color: #fff; }
.ba-tag.after  { background: var(--green-bright); color: var(--green-dark); }
.ba-caption { padding: .85rem 1.2rem; }
.ba-caption p {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem; letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--tan);
}

/* ===== WHY ===== */
.why {
  background: var(--green-mid);
  padding: 100px 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why .section-label { color: var(--green-bright); }
.why .section-title { color: var(--white); margin-bottom: 1.5rem; }
.why-body { color: rgba(232, 220, 200, .85); line-height: 1.9; font-size: .96rem; }
.why-visual { display: flex; flex-direction: column; gap: 1.5rem; list-style: none; padding: 0; margin: 0; }
.check-item { display: flex; align-items: flex-start; gap: 1rem; }
.check-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .85rem; color: var(--green-dark);
  font-weight: 700; margin-top: .1rem;
}
.check-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white); margin-bottom: .25rem;
}
.check-text span { font-size: .85rem; color: rgba(232, 220, 200, .78); line-height: 1.6; }

/* ===== AREAS ===== */
.areas { background: var(--cream); padding: 80px 5%; text-align: center; }
.areas .section-title { margin-bottom: .4rem; }
.areas-sub { font-size: .9rem; color: var(--bark); margin-bottom: 2.5rem; font-style: italic; }
.areas-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem;
  list-style: none; padding: 0; margin: 0;
}
.area-tag {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem; letter-spacing: .09em;
  text-transform: uppercase;
  background: var(--green-dark); color: var(--cream);
  padding: .45rem 1.1rem; border-radius: 2px;
  transition: background .2s;
}
.area-tag:hover { background: var(--green-light); }

/* ===== CONTACT ===== */
.contact {
  background: var(--green-dark);
  padding: 100px 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact .section-label { color: var(--green-bright); }
.contact .section-title { color: var(--white); margin-bottom: 1rem; }
.contact-body { font-size: .95rem; line-height: 1.85; color: rgba(232, 220, 200, .8); margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.d-label {
  width: 36px; height: 36px;
  background: var(--green-light);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--white);
}
.contact-detail-text strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.contact-detail-text a,
.contact-detail-text span {
  font-size: 1rem; color: var(--white);
  text-decoration: none; font-weight: 600;
}
.contact-detail-text a:hover { color: var(--green-bright); }

.contact-form {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 2.5rem;
  border-radius: 3px;
}
.form-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; color: var(--white);
  margin-bottom: 1.5rem; letter-spacing: .06em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-field label {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(232, 220, 200, .65);
}
.form-field .optional { text-transform: none; letter-spacing: 0; opacity: .6; font-style: italic; }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  color: var(--white);
  padding: .72rem 1rem;
  font-family: 'Lora', serif; font-size: .88rem;
  border-radius: 2px; outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255, 255, 255, .28); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--green-bright); }
.form-field select option { background: #1a2e16; }
.form-field [aria-invalid="true"] { border-color: var(--red-truck); background: rgba(163, 59, 42, .12); }

textarea { resize: vertical; min-height: 105px; }

.form-submit {
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--red-truck); color: var(--white);
  border: none; padding: .95rem;
  cursor: pointer; border-radius: 2px;
  transition: background .2s, transform .15s;
  margin-top: .4rem;
}
.form-submit:hover:not(:disabled) { background: var(--red-truck-hover); transform: translateY(-2px); }
.form-submit:disabled { opacity: .65; cursor: progress; }

.form-status {
  margin-top: 1rem;
  font-size: .9rem; line-height: 1.5;
  color: rgba(232, 220, 200, .85);
  min-height: 1.4em;
}
.form-status.is-success { color: var(--green-bright); }
.form-status.is-error   { color: #ff8b78; }

/* Honeypot */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===== FOOTER ===== */
footer {
  background: #0d1a0b;
  padding: 2.5rem 5%;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  border-top: 2px solid rgba(109, 179, 63, .4);
  flex-shrink: 0;
}
.footer-brand-wrap { display: flex; align-items: center; gap: 1rem; }
.footer-logo-circle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--logo-bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.footer-logo-circle img { width: 48px; height: 48px; object-fit: contain; }
.footer-brand-text .name {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: var(--green-bright);
  text-transform: uppercase; letter-spacing: .05em;
}
.footer-brand-text .sub {
  font-family: 'Oswald', sans-serif;
  font-size: .68rem; color: rgba(232, 220, 200, .5);
  text-transform: uppercase; letter-spacing: .08em;
}
.footer-copy { text-align: center; font-size: .75rem; color: rgba(138, 98, 64, .7); }
.footer-phone-link {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  text-decoration: none; letter-spacing: .04em;
}
.footer-phone-link:hover { color: var(--green-bright); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 14, 6, .94);
  z-index: 200;
  display: grid; grid-template-columns: 64px 1fr 64px;
  align-items: center; justify-items: center;
  padding: 5vh 4vw;
  animation: fadeIn .2s ease;
}
.lightbox[hidden] { display: none; }
.lightbox-figure {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  max-width: 100%; max-height: 90vh;
}
.lightbox-figure img {
  max-width: 100%; max-height: 78vh;
  width: auto; height: auto;
  border-radius: 3px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
}
.lightbox-figure figcaption {
  font-family: 'Oswald', sans-serif;
  font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.lightbox-close,
.lightbox-nav {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--cream);
  font-size: 1.6rem; line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--green-bright); color: var(--green-dark); border-color: var(--green-bright); }
.lightbox-close { position: absolute; top: 18px; right: 18px; }

/* ===== Animations ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding-top: calc(var(--nav-height) + 18px);
  }
  .hero-btns { justify-content: center; }
  .hero-stats { max-width: 320px; margin: 2rem auto 0; }
  .hero-logo-side { order: -1; }
  .hero-logo-frame { width: 220px; height: 220px; padding: 1.2rem; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--green-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: .9rem 6%;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
  }
  .nav-links a[aria-current="page"]:not(.nav-cta) { border-bottom: 1px solid rgba(255, 255, 255, .04); background: rgba(109, 179, 63, .08); }
  .nav-cta { margin: .6rem 6% 0; text-align: center; }
  .nav-phone {
    border-left: 0; padding: .9rem 6%;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .trust-bar { gap: 1.5rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-wide, .g-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g-item { height: 210px; }

  .ba-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  footer { grid-template-columns: 1fr; text-align: center; gap: 1.2rem; }
  .footer-brand-wrap { justify-content: center; }

  .lightbox { grid-template-columns: 44px 1fr 44px; padding: 4vh 2vw; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .g-item { height: 240px; }
  .contact-form { padding: 1.6rem; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Print ===== */
@media print {
  .nav, .nav-toggle, .lightbox, .hero-btns, .form-submit, .contact-form { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .gallery, .contact, .why { background: #fff !important; color: #000 !important; }
  .hero h1, .section-title { color: #000 !important; }
  a::after { content: " (" attr(href) ")"; font-size: .8em; color: #555; }
}
