/* Salzmann Tree Service — treeworknow-inspired visual language (original brand/copy) */
:root {
  --forest-deep: #183006;
  --forest: #324D25;
  --leaf: #4F7938;
  --pale: #E7E7DE;
  --yellow: #FCCA10;
  --orange-warm: #E8912A;
  --orange-band: #D4781A;
  --ink: #1a1a1a;
  --ink-muted: #3d3d3d;
  --white: #ffffff;
  --warm-brown: #8B6914;
  --shadow: 0 8px 24px rgba(24, 48, 6, 0.18);
  --radius-btn: 999px;
  --font: Inter, Arial, Helvetica, "Segoe UI", system-ui, sans-serif;
  --content-max: 980px;
  --header-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 48px);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--forest);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--warm-brown);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover { color: var(--leaf); }

a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--forest-deep); color: var(--white);
  padding: 0.75rem 1.25rem; border-radius: 8px; font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* Centered column with dark-green gutters on wide screens */
.page-shell {
  width: min(1100px, 100%);
  margin-inline: auto;
  background: var(--pale);
  min-height: 100vh;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.container {
  width: min(var(--content-max), 100% - 2rem);
  margin-inline: auto;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(24, 48, 6, 0.08);
}
.site-header.is-scrolled { box-shadow: 0 2px 12px rgba(24, 48, 6, 0.12); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem; padding-block: 0.5rem;
}

.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--forest-deep);
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.02em;
}
.logo:hover { color: var(--leaf); }
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text small {
  font-weight: 700; font-size: 0.65rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink);
  margin-top: 2px;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.header-phone {
  display: none; align-items: center; gap: 0.5rem;
  text-decoration: none; color: var(--leaf);
}
.header-phone:hover { color: var(--forest); }
.phone-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); color: var(--forest-deep);
  display: grid; place-items: center; flex-shrink: 0;
}
.phone-icon svg { width: 18px; height: 18px; }
.phone-stack { display: flex; flex-direction: column; line-height: 1.2; }
.phone-stack strong { font-size: 1.15rem; font-weight: 800; color: var(--leaf); }
.phone-stack small { font-size: 0.7rem; color: var(--ink-muted); font-weight: 500; }

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  border: 1px solid rgba(24, 48, 6, 0.2); border-radius: 8px;
  background: var(--white); cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--forest-deep); border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; background: var(--white);
  border-top: 1px solid rgba(24, 48, 6, 0.1);
  padding: 0.5rem 1rem 1rem; box-shadow: var(--shadow);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 0.85rem 1rem; text-decoration: none;
  color: var(--ink); font-weight: 600; border-radius: 6px;
}
.mobile-nav a:hover { background: var(--pale); color: var(--forest); }

@media (min-width: 720px) {
  .header-phone { display: flex; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .logo-text span { font-size: 1.2rem; }
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--pale);
  border-bottom: 1px solid rgba(24, 48, 6, 0.08);
  padding: 0.65rem 0;
}
.trust-inner {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  align-items: center; justify-content: space-between;
  font-size: 0.875rem; font-weight: 600; color: var(--ink-muted);
}
.trust-cities { font-weight: 500; font-size: 0.8rem; opacity: 0.9; }

/* ========== GREEN NAV ========== */
.green-nav {
  background: var(--forest);
  padding: 0.55rem 0;
}
.green-nav-inner {
  display: none; justify-content: center; flex-wrap: wrap; gap: 0.25rem 1.75rem;
}
.green-nav a {
  color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 0.95rem; padding: 0.35rem 0;
}
.green-nav a:hover { color: var(--yellow); }
@media (min-width: 900px) {
  .green-nav-inner { display: flex; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-btn);
  font-family: inherit; font-weight: 800; font-size: 0.95rem; line-height: 1.2;
  text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease), box-shadow 0.2s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-yellow {
  background: var(--yellow); color: #111;
  box-shadow: 0 4px 14px rgba(252, 202, 16, 0.45);
}
.btn-yellow:hover { background: #ffe04a; color: #000; }

.btn-dark {
  background: var(--forest-deep); color: var(--white);
}
.btn-dark:hover { background: var(--forest); color: var(--white); }

.btn-leaf {
  background: var(--leaf); color: var(--white);
}
.btn-leaf:hover { background: #5a8a42; color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--forest-deep);
  border-color: rgba(24, 48, 6, 0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.35); color: var(--forest-deep); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 1.05rem; }
.btn-xl {
  padding: 1.1rem 2.25rem; font-size: 1.15rem;
  border-radius: 18px; /* large rounded, matching reference feel */
}

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  padding: 2.75rem 0 3.25rem;
  color: var(--white);
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--forest-deep);
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.35;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(24, 48, 6, 0.92) 0%, rgba(24, 48, 6, 0.82) 42%, rgba(50, 77, 37, 0.72) 100%),
    linear-gradient(180deg, rgba(24, 48, 6, 0.35) 0%, transparent 40%, rgba(24, 48, 6, 0.55) 100%);
}
.hero-content { position: relative; z-index: 1; }

.hero-layout {
  display: grid; gap: 1.75rem; align-items: center;
}
@media (min-width: 860px) {
  .hero-layout {
    grid-template-columns: 1.15fr 0.85fr;
    text-align: left; gap: 2rem;
  }
  .hero-copy .hero-split { margin-inline: 0; }
  .hero-copy .btn-xl { margin-inline: 0; }
  .hero h1 { margin-inline: 0; max-width: 16ch; }
}

.hero h1 {
  font-weight: 800; font-size: clamp(1.55rem, 3.8vw, 2.45rem);
  line-height: 1.15; letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 0.75rem;
  max-width: 18ch; margin-inline: auto;
}
.hero-sub {
  font-weight: 700; font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: #9bc47a; margin-bottom: 1.75rem;
}

.hero-split {
  display: grid; gap: 1rem; max-width: 720px; margin: 0 auto 1.75rem;
  text-align: left;
}
@media (min-width: 640px) {
  .hero-split {
    grid-template-columns: 1fr auto 1fr;
    align-items: start; gap: 1.25rem;
  }
}
.hero-col-title {
  font-size: 1.15rem; font-weight: 800; color: var(--yellow);
  margin-bottom: 0.65rem;
}
.hero-col ul {
  list-style: disc; padding-left: 1.25rem;
  color: var(--white); font-weight: 500;
}
.hero-col li { margin-bottom: 0.35rem; }
.hero-arrow {
  display: none; font-size: 2rem; color: var(--yellow);
  align-self: center; line-height: 1; padding-top: 1.5rem;
}
@media (min-width: 640px) { .hero-arrow { display: block; } }

.hero .btn-xl { margin-inline: auto; }

.hero-photo {
  margin: 0; border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(252, 202, 16, 0.55);
  max-width: 420px; margin-inline: auto;
}
.hero-photo img {
  width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover; object-position: center 25%;
}
@media (max-width: 859px) {
  .hero-photo { max-width: 360px; }
}

/* ========== SERVICES ICON BAND ========== */
.services-band {
  background: var(--forest-deep);
  padding: 2.75rem 0 3rem;
  text-align: center;
}
.band-title {
  color: var(--white); font-weight: 800; font-size: 1.35rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.services-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  max-width: 900px; margin: 0 auto 1.75rem;
}
@media (min-width: 600px) {
  .services-icons { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .services-icons { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}

.service-icon-item { color: var(--white); }
.service-icon-item h3 {
  font-size: 0.9rem; font-weight: 700; margin-top: 0.75rem;
  letter-spacing: 0.01em;
}
.icon-circle {
  width: 88px; height: 88px; margin-inline: auto;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.12);
}
.icon-circle svg { width: 44px; height: 44px; }
.service-icon-item.highlight .icon-circle {
  background: var(--yellow); color: var(--forest-deep);
}
.service-icon-item.highlight h3 { color: #c8e0a8; }

.services-note {
  color: rgba(255,255,255,0.8); font-size: 0.95rem;
  max-width: 36rem; margin-inline: auto;
}

.service-photos {
  display: grid; gap: 1.25rem;
  margin-top: 2.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .service-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .service-photos { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .service-photos { grid-template-columns: repeat(5, 1fr); }
}
.service-photo-card {
  background: rgba(255,255,255,0.06);
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  text-align: left;
}
.service-photo-card > img {
  width: 100%; height: 200px;
  object-fit: cover; object-position: center;
}
.service-photo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(0,0,0,0.25);
}
.service-photo-pair img {
  width: 100%; height: 72px;
  object-fit: cover; object-position: center;
  display: block;
}
.service-photo-caption { padding: 1rem 1.1rem 1.15rem; color: var(--white); }
.service-photo-caption h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.service-photo-caption p {
  font-size: 0.875rem; color: rgba(255,255,255,0.78); line-height: 1.45;
}

/* ========== STORM CALLOUT ========== */
.storm-callout {
  background: var(--forest-deep);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.storm-callout-inner {
  display: grid; gap: 0;
  align-items: stretch;
}
@media (min-width: 800px) {
  .storm-callout-inner { grid-template-columns: 1.15fr 1fr; }
}
.storm-callout-photo { margin: 0; }
.storm-callout-photo img {
  width: 100%; height: 100%; min-height: 220px;
  object-fit: cover; object-position: center; display: block;
}
.storm-callout-copy {
  padding: 2rem 1.5rem 2.25rem;
  color: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 0.85rem;
}
.storm-callout-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800; letter-spacing: 0.01em; margin: 0;
}
.storm-callout-copy p {
  margin: 0; color: rgba(255,255,255,0.82);
  font-size: 1rem; line-height: 1.55; max-width: 28rem;
}
.storm-callout-copy .btn { align-self: flex-start; margin-top: 0.35rem; }


/* ========== GALLERY STRIP ========== */
.gallery-section {
  background: var(--pale);
  padding: 2.75rem 0 3rem;
  border-bottom: 1px solid rgba(24, 48, 6, 0.08);
}
.gallery-title {
  text-align: center; font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--ink); margin-bottom: 0.5rem;
}
.gallery-lead {
  text-align: center; color: var(--ink-muted); font-size: 0.98rem;
  max-width: 36rem; margin: 0 auto 1.75rem;
}
.gallery-grid {
  display: grid; gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.gallery-item {
  margin: 0; border-radius: 6px; overflow: hidden;
  background: var(--forest-deep);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.35s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }

/* ========== MEET THE CREW ========== */
.crew-section {
  background: var(--white);
  padding: 3rem 0;
  border-top: 1px solid rgba(24, 48, 6, 0.08);
}
.crew-section h2 {
  text-align: center; font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 800; color: var(--ink); margin-bottom: 0.65rem;
}
.crew-lead {
  text-align: center; color: var(--ink-muted);
  max-width: 38rem; margin: 0 auto 2rem; font-size: 1rem;
}
.crew-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .crew-grid { grid-template-columns: repeat(3, 1fr); }
}
.crew-card {
  margin: 0; background: var(--pale);
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(24, 48, 6, 0.1);
  box-shadow: 0 4px 16px rgba(24, 48, 6, 0.06);
}
.crew-card img {
  width: 100%; height: 240px;
  object-fit: cover; object-position: center 20%;
}
.crew-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.crew-card strong {
  font-size: 1.05rem; font-weight: 800; color: var(--forest-deep);
}
.crew-card span {
  font-size: 0.9rem; color: var(--ink-muted); line-height: 1.4;
}

/* ========== WAYS / PROOF ROWS ========== */
.ways-section {
  background: var(--pale);
  padding: 3rem 0 2.5rem;
}
.ways-intro {
  text-align: center; font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700; color: var(--ink); margin-bottom: 2.5rem;
  max-width: 36rem; margin-inline: auto;
  line-height: 1.35;
}
.ways-intro::after {
  content: ""; display: block; width: 80px; height: 3px;
  background: var(--warm-brown); margin: 1rem auto 0; opacity: 0.6;
}

.way-row {
  display: grid; gap: 1.75rem; align-items: center;
  margin-bottom: 2.75rem; padding-bottom: 2.75rem;
  border-bottom: 1px solid rgba(24, 48, 6, 0.1);
}
.way-row:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
@media (min-width: 780px) {
  .way-row { grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; }
  .way-row.reverse { grid-template-columns: 0.9fr 1.1fr; }
  .way-row.reverse .way-copy { order: 2; }
  .way-row.reverse .way-visual { order: 1; }
}

.way-copy h3 {
  font-size: 1.2rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 1rem;
}
.way-copy ul {
  list-style: disc; padding-left: 1.25rem;
  color: var(--ink-muted);
}
.way-copy li { margin-bottom: 0.5rem; line-height: 1.5; }
.way-copy strong { color: var(--ink); font-weight: 700; }

.way-visual { display: flex; justify-content: center; }
.visual-card {
  background: var(--white);
  border: 1px solid rgba(24, 48, 6, 0.1);
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(24, 48, 6, 0.08);
  width: min(100%, 280px);
}
.visual-card svg { width: 120px; height: 120px; margin: 0 auto 0.85rem; }
.visual-card p {
  font-weight: 700; font-size: 0.9rem; color: var(--forest);
}

/* ========== GREEN CTA STRIP ========== */
.cta-strip {
  background: var(--leaf);
  padding: 2rem 0;
}
.cta-strip-inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; align-items: center;
}

/* ========== EDUCATIONAL ========== */
.edu-section {
  background: var(--pale);
  padding: 3.25rem 0;
}
.edu-section h2 {
  text-align: center; font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; color: var(--ink); margin-bottom: 1.5rem;
}
.edu-section h2 em { font-style: italic; }
.edu-copy {
  max-width: 42rem; margin: 0 auto 2.5rem;
  color: var(--ink-muted); font-size: 0.98rem;
}
.edu-copy p { margin-bottom: 1rem; }

.edu-cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .edu-cards { grid-template-columns: repeat(3, 1fr); }
}
.edu-card {
  background: var(--leaf);
  color: var(--white);
  padding: 1.5rem 1.35rem;
  border-radius: 4px;
  box-shadow: 4px 6px 0 rgba(24, 48, 6, 0.25);
  transform: rotate(-1.5deg);
  transition: transform 0.2s var(--ease);
}
.edu-card:nth-child(2) { transform: rotate(1deg); }
.edu-card:nth-child(3) { transform: rotate(-0.75deg); }
.edu-card:hover { transform: rotate(0) translateY(-2px); }
.edu-card-icon {
  width: 48px; height: 48px; margin-bottom: 0.75rem; opacity: 0.95;
}
.edu-card-icon svg { width: 40px; height: 40px; }
.edu-card h3 {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.5rem;
}
.edu-card p { font-size: 0.9rem; opacity: 0.92; line-height: 1.45; }

/* ========== AREAS ========== */
.areas-section {
  background: var(--white);
  padding: 3rem 0;
  text-align: center;
  border-block: 1px solid rgba(24, 48, 6, 0.08);
}
.areas-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--forest-deep); margin-bottom: 0.65rem;
}
.areas-lead {
  color: var(--ink-muted); max-width: 36rem; margin: 0 auto 1.5rem;
}
.city-list {
  display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none;
  justify-content: center; margin-bottom: 1rem;
}
.city-list li {
  background: var(--pale); border: 1px solid rgba(24, 48, 6, 0.12);
  padding: 0.45rem 0.9rem; border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; color: var(--forest);
}
.area-note { color: var(--ink-muted); font-size: 0.9rem; }

/* ========== QUOTE / CONTACT BAND ========== */
.quote-band {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.12), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(24, 48, 6, 0.15), transparent 45%),
    linear-gradient(135deg, #E8A020 0%, var(--orange-warm) 40%, #C96A12 100%);
  padding: 3rem 0;
  position: relative;
}
.quote-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(0,0,0,0.03) 12px,
      rgba(0,0,0,0.03) 13px
    );
  pointer-events: none;
}
.quote-layout {
  position: relative; z-index: 1;
  display: grid; gap: 2rem; align-items: start;
}
@media (min-width: 800px) {
  .quote-layout { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

.quote-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.quote-copy > p {
  color: rgba(255,255,255,0.95); margin-bottom: 1.25rem;
  max-width: 28rem; font-size: 1.02rem;
}
.quote-phone {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 800;
  color: var(--white); text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  margin-bottom: 0.5rem;
}
.quote-phone:hover { color: var(--yellow); }
.quote-phone svg { width: 28px; height: 28px; }
.quote-email {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem); font-weight: 700;
  color: var(--white); text-decoration: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  margin-bottom: 0.75rem;
  word-break: break-all;
}
.quote-email:hover { color: var(--yellow); }
.quote-email svg { width: 22px; height: 22px; flex-shrink: 0; }
.quote-hint {
  font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 500;
}

.quote-form-box {
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 28px rgba(24, 48, 6, 0.2);
}
.quote-form-box h3 {
  font-size: 1.15rem; font-weight: 800; color: var(--forest-deep);
  margin-bottom: 0.25rem;
}
.quote-form-box h3 span {
  font-weight: 500; font-size: 0.85rem; color: var(--ink-muted);
}
.form-lede {
  font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 1.1rem;
}
.form-row {
  display: grid; gap: 0.75rem;
}
@media (min-width: 480px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { margin-bottom: 0.75rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.8rem 0.95rem;
  border: 1.5px solid rgba(24, 48, 6, 0.18); border-radius: 6px;
  font-family: inherit; font-size: 1rem; background: var(--white); color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--leaf);
}
.form-group textarea { min-height: 90px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.75rem; }
.form-success {
  display: none; margin-top: 1rem; padding: 0.9rem 1rem;
  background: #e8f2e0; border: 1px solid var(--leaf);
  border-radius: 6px; color: var(--forest-deep); font-size: 0.95rem;
}
.form-success.is-visible { display: block; }
.form-success strong { display: block; margin-bottom: 0.25rem; }
.form-success a { color: var(--forest); font-weight: 700; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--white);
  padding: 2.25rem 0 2rem;
  text-align: center;
}
.footer-top {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-bottom: 1.75rem;
}
.footer-links {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem;
  justify-content: center; align-items: center;
  margin-bottom: 1.5rem; font-size: 0.85rem;
}
.footer-links a {
  color: var(--warm-brown); text-decoration: none; font-weight: 600;
}
.footer-links a:hover { text-decoration: underline; color: var(--leaf); }
.footer-links span { color: rgba(24, 48, 6, 0.3); }

.footer-bottom {
  border-top: 1px solid rgba(24, 48, 6, 0.1);
  padding-top: 1.25rem;
  font-size: 0.875rem; color: var(--ink-muted);
}
.footer-bottom p { margin-bottom: 0.4rem; }
.footer-bottom a {
  color: var(--forest); text-decoration: none;
}
.footer-bottom a:hover { color: var(--leaf); text-decoration: underline; }
.copyright { margin-top: 0.75rem; font-size: 0.8rem; opacity: 0.85; }

/* ========== MOBILE CALL BAR ========== */
.mobile-callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(24, 48, 6, 0.96); backdrop-filter: blur(10px);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.mobile-callbar .btn { width: 100%; border-radius: 12px; }

@media (max-width: 899px) {
  .mobile-callbar { display: block; }
  body { padding-bottom: 72px; }
}

/* Wide-screen gutters are body background (--forest) outside .page-shell */
@media (min-width: 1100px) {
  body { background: var(--forest); }
}


/* Social links */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0.5rem;
}
.social-links a {
  color: var(--leaf, #4F7938);
  font-weight: 600;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
  color: #FCCA10;
}
.quote-social {
  margin-top: 1rem;
  text-align: center;
}
.quote-social .label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.9;
}
