/* Fort Smith Green Clean website styles */
:root {
  --green: #4cc42f;
  --green-dark: #207c2c;
  --green-deep: #0e3d22;
  --blue: #17bde3;
  --ink: #162018;
  --muted: #5f685f;
  --soft: #f5fbf3;
  --soft-2: #eef8eb;
  --white: #ffffff;
  --line: rgba(22, 32, 24, .12);
  --shadow: 0 22px 60px rgba(18, 51, 27, .12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--green-deep);
  color: white;
  padding: .8rem 1rem;
  border-radius: 999px;
}

.site-header {
  min-height: 245px;
  padding: 2.2rem clamp(1rem, 5vw, 5.5rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: white;
  position: relative;
  z-index: 20;
}

.brand {
  width: clamp(160px, 16vw, 240px);
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 4rem);
  padding-top: 4.5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.site-nav a {
  text-decoration: none;
  color: #262d28;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.45rem;
  height: 2px;
  background: var(--green);
  transition: right .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  right: 0;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.05fr;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

.hero-panel {
  min-height: 540px;
  position: relative;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 14, .20);
}

.hero-panel-left img {
  filter: saturate(.88) contrast(1.02);
}

.hero-copy {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 860px;
  min-height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 2;
  text-shadow: 0 6px 28px rgba(0, 0, 0, .35);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5.5vw, 5.2rem);
  line-height: .95;
  margin: .25rem 0 1rem;
  letter-spacing: -.07em;
  font-weight: 800;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 .8rem;
}

.hero-copy .eyebrow {
  color: white;
  background: rgba(13, 93, 35, .55);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: .55rem .9rem;
  backdrop-filter: blur(8px);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-size: .95rem;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(45, 142, 58, .26);
}

.button-outline {
  color: white;
  border-color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}

.quote-bar {
  padding: clamp(3rem, 7vw, 6.5rem) 1rem;
  text-align: center;
  background: white;
}

.quote-bar p {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5.5rem);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
  background: var(--soft);
}

.section-text,
.section-heading {
  max-width: 850px;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.055em;
  margin: 0 0 1rem;
}

h3 {
  margin: 0 0 .65rem;
  font-size: 1.25rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

.quick-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.area-tags span {
  display: inline-flex;
  padding: .7rem .9rem;
  border-radius: 999px;
  background: var(--soft-2);
  border: 1px solid rgba(32, 124, 44, .18);
  font-weight: 800;
  font-size: .9rem;
  color: var(--green-deep);
}

.services-section {
  background: white;
}

.section-heading {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 2rem);
  background: white;
  box-shadow: 0 12px 38px rgba(18, 51, 27, .06);
  min-height: 230px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card p,
.process-card p {
  margin-bottom: 0;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  background: var(--soft-2);
  color: var(--green-dark);
  font-weight: 900;
}

.featured-card {
  background: linear-gradient(135deg, var(--green-deep), #145c2d);
  color: white;
}

.featured-card p,
.featured-card .service-icon {
  color: white;
}

.featured-card .service-icon {
  background: rgba(255, 255, 255, .14);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5.5rem);
  background:
    radial-gradient(circle at 18% 14%, rgba(76, 196, 47, .12), transparent 28%),
    var(--soft);
}

.split-image img {
  width: min(520px, 100%);
  border-radius: 50%;
  border: 6px solid rgba(76, 196, 47, .55);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(76, 196, 47, .4);
}

.process-section {
  background: var(--green-deep);
  color: white;
}

.process-section .eyebrow,
.process-section p,
.process-section h2,
.process-section h3 {
  color: white;
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, .78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.process-card span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--green-deep);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.gallery-section {
  background: white;
}

.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(18, 51, 27, .08);
  cursor: zoom-in;
}

.gallery-item:nth-child(2n) {
  transform: translateY(20px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:nth-child(4n + 1) img {
  aspect-ratio: 1 / 1.12;
}

.gallery-item:nth-child(3n) img {
  aspect-ratio: 16 / 10;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  padding: .9rem 1rem 1rem;
  font-weight: 800;
  color: var(--green-deep);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7.5rem) clamp(1rem, 5vw, 5.5rem);
  background:
    linear-gradient(135deg, rgba(14, 61, 34, .94), rgba(21, 89, 43, .94)),
    url("assets/hero-wide.jpg") center/cover;
  color: white;
}

.contact-section p,
.contact-section .eyebrow,
.contact-section h2 {
  color: white;
}

.contact-methods {
  justify-content: flex-start;
  margin-top: 2rem;
}

.contact-methods a {
  min-width: 210px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 1rem;
  text-decoration: none;
  font-weight: 900;
}

.contact-methods span {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .72);
  margin-bottom: .2rem;
}

.contact-form {
  background: white;
  color: var(--ink);
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .22);
}

.contact-form label {
  display: grid;
  gap: .45rem;
  font-weight: 850;
  color: var(--ink);
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(22, 32, 24, .18);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdfb;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 196, 47, .14);
}

textarea {
  resize: vertical;
}

.full-width {
  width: 100%;
  border: 0;
}

.form-note {
  text-align: center;
  margin: .8rem 0 0;
  font-size: .9rem;
}

.form-note a {
  color: var(--green-dark);
  font-weight: 900;
}

.hidden-field {
  display: none !important;
}

.form-status {
  display: none;
  padding: .9rem 1rem;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-weight: 800;
}

.form-status.is-success {
  display: block;
  color: #17451f;
  background: #e8f8e4;
  border: 1px solid rgba(76, 196, 47, .35);
}

.form-status.is-error {
  display: block;
  color: #6b2020;
  background: #fff0f0;
  border: 1px solid rgba(190, 51, 51, .25);
}

.site-footer {
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: #07180d;
  color: white;
}

.site-footer img {
  width: 150px;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  justify-content: flex-end;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 1.2rem;
  font-size: .9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(3, 12, 7, .88);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  border-radius: 24px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, .45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .site-header {
    min-height: auto;
    align-items: center;
    padding: 1rem;
    position: sticky;
    top: 0;
    box-shadow: 0 10px 30px rgba(18, 51, 27, .08);
  }

  .brand {
    width: 150px;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid var(--line);
    background: white;
    border-radius: 14px;
  }

  .nav-toggle span:not(.screen-reader-text) {
    width: 22px;
    height: 2px;
    background: var(--ink);
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: .85rem 1rem;
    border-radius: 14px;
    background: var(--soft);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 620px;
  }

  .hero-panel {
    min-height: 220px;
  }

  .hero-panel:not(.hero-panel-center) {
    display: none;
  }

  .hero-panel-center {
    min-height: 620px;
  }

  .hero-copy {
    background: rgba(5, 20, 10, .35);
  }

  .intro-section,
  .split-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry-gallery {
    column-count: 2;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    align-items: flex-start;
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .quote-bar {
    text-align: left;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }

  .services-grid,
  .process-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .masonry-gallery {
    column-count: 1;
  }

  .gallery-item:nth-child(2n) {
    transform: none;
  }

  .contact-methods a {
    width: 100%;
  }
}

/* Conversion upgrades inspired by strong local service websites */
.top-strip {
  background: #07180d;
  color: rgba(255, 255, 255, .9);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.top-strip-inner {
  min-height: 42px;
  padding: .55rem clamp(1rem, 5vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.8rem, 3vw, 2rem);
}

.top-strip a {
  color: white;
  text-decoration: none;
  background: rgba(76, 196, 47, .18);
  border: 1px solid rgba(76, 196, 47, .35);
  padding: .35rem .7rem;
  border-radius: 999px;
}

.nav-quote {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white !important;
  padding: .7rem 1rem;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(45, 142, 58, .18);
}

.nav-quote::after {
  display: none;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .65rem;
  margin-top: 1.1rem;
}

.trust-pills span {
  color: white;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  padding: .5rem .8rem;
  font-weight: 900;
  font-size: .83rem;
  backdrop-filter: blur(8px);
}

.estimate-card p {
  margin-top: -.3rem;
  color: var(--muted);
}

.card-button {
  margin-top: 1.1rem;
  width: 100%;
}

.service-card a {
  display: inline-flex;
  margin-top: .7rem;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: start;
  background: #07180d;
  color: white;
}

.why-section .eyebrow {
  color: var(--green);
}

.why-copy h2 {
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 0 0 1rem;
}

.why-copy p {
  color: rgba(255, 255, 255, .74);
  font-size: 1.05rem;
}

.why-list {
  display: grid;
  gap: .85rem;
}

.why-list div {
  display: grid;
  gap: .3rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .06);
}

.why-list strong {
  color: white;
  font-size: 1.05rem;
}

.why-list span {
  color: rgba(255, 255, 255, .68);
}

.proof-section {
  background: var(--soft-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 14px 40px rgba(18, 51, 27, .08);
}

.proof-grid article > span {
  color: var(--green);
  font-size: 4rem;
  line-height: .7;
  font-family: Georgia, serif;
}

.proof-grid p {
  color: var(--muted);
  margin: .5rem 0 1.1rem;
  font-size: 1.05rem;
}

.proof-grid strong {
  color: var(--green-deep);
}

.cta-band {
  margin: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 5.5rem) 0;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(135deg, #0d301a, #145427);
  color: white;
  box-shadow: var(--shadow);
}

.cta-band .eyebrow {
  color: var(--green);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 3.3rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.footer-service-areas h3 {
  margin: 0 0 .5rem;
  color: white;
}

.footer-service-areas p {
  margin: 0;
}

.mobile-sticky-quote {
  display: none;
}

@media (max-width: 980px) {
  .top-strip-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: .4rem .8rem;
    text-align: center;
  }

  .site-header {
    top: 0;
  }

  .site-nav .nav-quote {
    text-align: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: white !important;
  }

  .why-section,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .top-strip-inner span:nth-child(2) {
    display: none;
  }

  .trust-pills {
    justify-content: flex-start;
  }

  .mobile-sticky-quote {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 80;
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    padding: .9rem 1rem;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 16px 40px rgba(20, 84, 39, .35);
  }

  body {
    padding-bottom: 4.5rem;
  }
}


/* Multi-page SEO pages */
.page-hero { padding: 82px 6vw 70px; background: radial-gradient(circle at top left, rgba(77,184,72,.14), transparent 32%), linear-gradient(135deg, #ffffff 0%, #f5fbf6 100%); display:grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 70px); align-items:center; border-bottom:1px solid rgba(18,92,50,.12); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 5.4rem); line-height:.95; margin: 0 0 18px; color:#114f2a; letter-spacing:-.04em; }
.page-hero p { font-size: clamp(1rem, 1.4vw, 1.22rem); color:#385346; max-width: 760px; }
.page-hero .page-logo-card { background:#fff; border-radius:32px; padding:28px; box-shadow: 0 22px 60px rgba(16, 69, 39, .12); border:1px solid rgba(25,116,60,.12); }
.page-hero .page-logo-card img { width:100%; display:block; }
.page-layout { display:grid; grid-template-columns:minmax(0, 1fr) 360px; gap: clamp(28px,4vw,60px); padding: 70px 6vw; }
.page-content h2 { color:#114f2a; font-size: clamp(1.65rem, 3vw, 3rem); margin: 0 0 14px; }
.page-content h3 { color:#0f5e36; font-size:1.35rem; margin-top:32px; }
.page-content p, .page-content li { color:#405347; font-size:1.03rem; line-height:1.75; }
.page-content ul { padding-left: 1.2rem; }
.sidebar-card { position:sticky; top:110px; background:#fff; border:1px solid rgba(23,108,58,.14); border-radius:28px; padding:28px; box-shadow:0 18px 45px rgba(21,73,43,.10); }
.sidebar-card img { width:160px; max-width:70%; display:block; margin:0 auto 18px; }
.sidebar-card h3 { margin:0 0 10px; color:#114f2a; }
.sidebar-card a { width:100%; margin-top:16px; justify-content:center; }
.local-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; margin-top:26px; }
.local-card { background:#f5fbf6; border:1px solid rgba(23,108,58,.12); border-radius:22px; padding:22px; }
.local-card h3 { margin-top:0; }
.page-cta { margin: 20px 6vw 70px; border-radius:34px; padding:42px; background:linear-gradient(135deg,#0c5b2d,#149448); color:#fff; display:flex; justify-content:space-between; gap:24px; align-items:center; }
.page-cta h2 { margin:0; color:#fff; font-size: clamp(1.6rem,3vw,3rem); }
.page-cta p { color:rgba(255,255,255,.88); margin:8px 0 0; }
.page-cta .button { background:#fff; color:#0c5b2d; }
.breadcrumb { font-size:.9rem; color:#16703c; margin-bottom:18px; font-weight:700; }
@media (max-width: 900px){ .page-hero, .page-layout { grid-template-columns:1fr; } .sidebar-card{position:relative; top:0;} .local-grid{grid-template-columns:1fr;} .page-cta{flex-direction:column; align-items:flex-start;} }
