:root {
  --green-900: #102a1c;
  --green-800: #1f4d2e;
  --green-700: #2a6b3f;
  --green-600: #38894f;
  --green-500: #4caf63;
  --sea-700: #0f6b6b;
  --sea-500: #1aa3a3;
  --sand: #f3ede1;
  --amber: #e0a83e;
  --amber-ink: #3a2a06;
  --bg: #fbfaf6;
  --bg-alt: #f1f0e8;
  --ink: #18231e;
  --muted: #5a665e;
  --line: #e3e1d6;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(16, 42, 28, 0.28);
  --shadow-sm: 0 4px 14px -8px rgba(16, 42, 28, 0.3);
  --maxw: 1140px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.12;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}
a {
  color: var(--green-700);
  text-decoration: none;
}
a:hover {
  color: var(--green-800);
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--green-800);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-600);
}
.btn-ghost:hover {
  background: rgba(56, 137, 79, 0.08);
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.btn-call {
  background: var(--amber);
  color: var(--amber-ink);
  white-space: nowrap;
}
.btn-call:hover {
  background: #d29a2e;
  color: var(--amber-ink);
}
.btn.full {
  width: 100%;
  justify-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.brand-mark {
  font-size: 1.6rem;
}
.brand-text {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.1;
}
.brand-text strong {
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--green-800);
}
.nav-links {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a {
  color: var(--ink);
}
.nav-links a:hover {
  color: var(--green-700);
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.breadcrumbs .container {
  padding-top: 10px;
  padding-bottom: 10px;
  color: var(--muted);
}
.breadcrumbs .sep {
  margin: 0 8px;
  color: #b9c0b6;
}
.breadcrumbs span[aria-current] {
  color: var(--ink);
  font-weight: 500;
}

/* Hero */
.hero {
  background:
    radial-gradient(
      1100px 480px at 78% -10%,
      rgba(26, 163, 163, 0.16),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  padding: 76px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--sea-700);
  margin: 0 0 12px;
}
.eyebrow.light {
  color: var(--sea-500);
}
.eyebrow.center {
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
}
.lede {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 40ch;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 22px;
}
.center-cta {
  justify-content: center;
}
.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-card {
  background: var(--green-800);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow);
  background-image: radial-gradient(
    560px 200px at 30% 0%,
    rgba(26, 163, 163, 0.4),
    transparent 60%
  );
}
.hero-card-inner {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  color: #fff;
}
.hero-emoji {
  font-size: 3.2rem;
  display: block;
}
.hero-card-text {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  margin: 14px 0 4px;
}
.hero-card-sub {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

/* Trust bar */
.trust-bar {
  background: var(--green-900);
  color: #fff;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: center;
  padding: 16px 24px;
  font-size: 0.92rem;
  font-weight: 500;
}
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
}
.trust-bar b {
  color: var(--amber);
  font-weight: 700;
}

/* Sections */
.section {
  padding: 84px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-sand {
  background: var(--sand);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
}
.center {
  text-align: center;
}
.center-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.muted {
  color: var(--muted);
  font-size: 1.06rem;
}
.small {
  font-size: 0.9rem;
}

/* Service cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
  display: block;
  color: inherit;
}
a.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-500);
  color: inherit;
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 1.22rem;
  font-weight: 600;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.card .more {
  color: var(--green-700);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 12px;
  display: inline-block;
}

/* Hurricane band */
.storm-band {
  background:
    radial-gradient(
      700px 300px at 15% 20%,
      rgba(26, 163, 163, 0.35),
      transparent 60%
    ),
    linear-gradient(120deg, var(--sea-700), var(--green-800));
  color: #fff;
}
.storm-band .section-title {
  color: #fff;
}
.storm-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.storm-band .muted {
  color: rgba(255, 255, 255, 0.85);
}
.storm-band ul {
  padding-left: 1.1em;
  margin: 16px 0;
}
.storm-band li {
  margin: 6px 0;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.why-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-600);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}
.why-list strong {
  font-size: 1.05rem;
}
.why-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Arborist card */
.arborist {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.arborist-photo {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--green-700), var(--sea-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
}
.arborist h3 {
  font-size: 1.5rem;
  margin-bottom: 2px;
}
.arborist .role {
  color: var(--sea-700);
  font-weight: 600;
  margin: 0 0 12px;
}

/* Reviews */
.reviews-agg {
  text-align: center;
  margin-bottom: 28px;
}
.stars {
  color: var(--amber);
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.review p {
  margin: 0 0 12px;
}
.review cite {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.review .loc {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.gallery .tile {
  aspect-ratio: 1;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--green-600), var(--sea-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Service area */
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.area-cities a,
.area-cities span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.area-cities a:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

/* Contact / dark */
.section-dark {
  background:
    radial-gradient(
      900px 400px at 80% 0%,
      rgba(26, 163, 163, 0.22),
      transparent 60%
    ),
    var(--green-900);
  color: #fff;
}
.section-dark .muted,
.contact-lede {
  color: rgba(255, 255, 255, 0.82);
}
.section-title.light {
  color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-lede {
  font-size: 1.1rem;
  max-width: 40ch;
}
.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 18px;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
}
a.contact-method:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.contact-method span:first-child {
  font-size: 1.4rem;
}
.contact-method small {
  display: block;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Quote form */
.quote-form {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.quote-form h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.quote-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 400;
  background: var(--bg);
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(56, 137, 79, 0.15);
  background: #fff;
}
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin: 14px 0 0;
}

/* Article typography */
.article {
  padding: 56px 0 72px;
}
.article .container {
  max-width: 760px;
}
.article-header {
  margin-bottom: 8px;
}
.article h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
}
.article .byline {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.article .byline b {
  color: var(--green-700);
}
.article .lead {
  font-size: 1.2rem;
  color: var(--ink);
  margin: 20px 0 8px;
  font-weight: 500;
}
.prose {
  font-size: 1.06rem;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2em;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.6em;
}
.prose p {
  margin: 0 0 1.1em;
}
.prose ul,
.prose ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
}
.prose li {
  margin: 6px 0;
}
.prose a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose blockquote {
  margin: 1.4em 0;
  padding: 14px 20px;
  border-left: 4px solid var(--sea-500);
  background: var(--bg-alt);
  border-radius: 0 10px 10px 0;
  font-size: 1.05rem;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4em 0;
  font-size: 0.96rem;
}
.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.prose th {
  background: var(--bg-alt);
  font-weight: 600;
}
.callout {
  background: var(--sand);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 1.6em 0;
}
.callout strong {
  display: block;
  margin-bottom: 4px;
}
.key-takeaway {
  background: var(--green-900);
  color: #fff;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 1.8em 0;
}
.key-takeaway strong {
  color: var(--amber);
}
.key-takeaway p,
.key-takeaway li {
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 20px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--green-600);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-a {
  padding: 0 0 18px;
  color: var(--muted);
}
.faq-a p {
  margin: 0 0 0.8em;
}

/* related links */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.related a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--ink);
}
.related a:hover {
  border-color: var(--green-500);
  color: var(--green-700);
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-grid h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}
.footer-links a:hover {
  color: var(--amber);
}
.brand-footer .brand-text {
  color: rgba(255, 255, 255, 0.6);
}
.brand-footer .brand-text strong {
  color: #fff;
}
.footer-meta {
  margin: 14px 0 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}
.footer-area {
  padding-top: 20px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-fine {
  padding-top: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile call bar */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--amber);
  color: var(--amber-ink);
  text-align: center;
  font-weight: 700;
  padding: 15px;
  box-shadow: 0 -6px 20px -8px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .contact-grid,
  .storm-grid,
  .arborist {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cards,
  .review-cards,
  .related {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .arborist-photo {
    width: 100%;
    max-width: 220px;
  }
}
@media (max-width: 560px) {
  .nav .btn-call {
    display: none;
  }
  .cards,
  .review-cards,
  .related {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }
  .hero {
    padding: 44px 0 60px;
  }
  .mobile-call {
    display: block;
  }
  body {
    padding-bottom: 56px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
