/* Evergreen Strip Exchange - accessible, high-contrast styles */
:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #f6f8fa;
  --text: #102018;
  --muted: #34483c;
  --border: #d6dfd9;
  --brand: #0b6b3a;
  --brand-2: #0a4f2c;
  --focus: #1a73e8;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  --radius: 16px;
  --max: 1120px;

  /* Larger base sizing for seniors */
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --fs-base: 20px;
  --lh: 1.55;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: var(--lh);
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--brand-2);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 3px;
}

:focus-visible {
  outline: 4px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

header.site-header {
  position: static;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.topbar {
  background: #0b2f1c;
  color: #fff;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}
.topbar-inner.center {
  justify-content: center;
}
.topbar a {
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}
.topbar a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.topbar-note {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  text-align: left;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  justify-content: flex-start;
}

.logo-img {
  width: 216px;
  height: 216px;
  display: block;
  border-radius: 18px;
  object-fit: contain;
  background: transparent;
  border: 0;
}

.brand > div {
  min-width: 0;
}

.brand-name {
  display: block;
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 1.45rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
  max-width: 220px;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

nav.primary-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  width: auto;
  min-width: 0;
}


.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
  white-space: nowrap;
}

.nav-link:hover {
  border-color: var(--border);
  background: #fff;
}

.breadcrumb {
  padding: 12px 0 0;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.98rem;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb li + li::before {
  content: "›";
  color: var(--muted);
  font-weight: 900;
}
.breadcrumb a {
  color: var(--brand-2);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 10px;
}
.link-grid a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  font-weight: 750;
}
.link-grid a:hover {
  background: #f4faf6;
  border-color: #c8dbd1;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
}

.header-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  font-weight: 850;
  white-space: nowrap;
}
.header-phone:hover {
  border-color: var(--border);
  background: #fff;
}
.header-phone .label {
  color: var(--muted);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(11, 107, 58, 0.22);
}
.button:hover {
  background: var(--brand-2);
  border-color: var(--brand-2);
}
.button.secondary {
  background: #fff;
  color: var(--brand-2);
  box-shadow: none;
}
.button.secondary:hover {
  background: #f2f7f4;
}

.hero {
  padding: 26px 0 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.hero-grid.single {
  grid-template-columns: 1fr;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbf8 100%);
  border: 1px solid #cfe9da;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  color: var(--brand-2);
  background: #eaf6ef;
  border: 1px solid #cfe9da;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

h1 {
  margin: 14px 0 10px;
  font-size: clamp(1.55rem, 1.05rem + 2.1vw, 2.4rem);
  line-height: 1.16;
  letter-spacing: -0.2px;
  color: var(--brand-2);
}

.lead {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-actions[style*="justify-content: center"] {
  justify-content: center;
}

.city-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px auto;
  justify-content: center;
}
.city-strip a {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 0.92rem;
}
.city-strip a:hover {
  background: #f4faf6;
  border-color: #c8dbd1;
}

.notice {
  margin-top: 14px;
  padding: 14px 14px;
  border-radius: 14px;
  background: #eaf6ef;
  border: 1px solid #cfe9da;
  color: var(--brand-2);
}

.aside-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.aside-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.checklist {
  margin: 0;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
}
.checklist li {
  margin: 10px 0;
}

main section {
  padding: 22px 0;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
  color: var(--brand-2);
}

.section-sub {
  margin: 0 0 16px;
  color: var(--muted);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.card {
  background: #ffffff;
  border: 1px solid #cfe9da;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(11, 107, 58, 0.08);
  text-align: center;
}

/* Center only the category boxes inside the "What we buy" sections */
#what-we-buy .card {
  text-align: center;
}
#what-we-buy .card .checklist {
  text-align: left;
  display: block;
  margin: 0;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--brand-2);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #f7fbf8;
  font-weight: 700;
}

.product-img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  margin: 10px 0 12px;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  text-align: left;
}

.steps.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 10px;
}
.steps.four li {
  text-align: center;
}
.steps.four li::before {
  display: flex;
  margin: 0 auto 10px auto;
  justify-content: center;
}

.steps.four li:first-child {
  text-align: center;
}
.steps.four li:first-child strong {
  display: block;
}
.step-sub {
  margin-top: 8px;
  font-weight: 900;
}

.steps-actions {
  margin-top: 26px;
}

.steps li strong a {
  color: inherit;
}
.steps li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  margin-right: 12px;
  font-weight: 900;
  background: #eaf6ef;
  color: var(--brand-2);
  border: 1px solid #cfe9da;
}

.faq details {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px 16px;
  margin: 12px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
}
.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

footer.site-footer {
  border-top: 1px solid var(--border);
  background: #fafcfb;
  margin-top: 10px;
}
.footer-inner {
  padding: 20px 0;
  display: grid;
  gap: 12px;
}
.footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}
.footer-brand {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.footer-logo {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: contain;
  background: transparent;
}
.footer-name {
  font-weight: 950;
  color: var(--text);
}
.footer-tagline {
  color: var(--muted);
  font-size: 0.95rem;
}
.footer-phone {
  display: inline-flex;
  justify-content: center;
  font-weight: 950;
  color: var(--text);
  text-decoration: none;
}
.footer-phone:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-title {
  font-weight: 950;
  color: var(--brand);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.footer-links,
.footer-social {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.footer-links a,
.footer-social a {
  text-decoration: none;
  font-weight: 800;
  color: var(--brand-2);
}
.footer-social a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-social a.social-link svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}
.footer-social a.social-link span {
  line-height: 1.1;
}
.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  margin-top: 6px;
}
.fineprint {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-box {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-weight: 900;
}
.contact-value {
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
}
.form-grid textarea {
  min-height: 110px;
  resize: vertical;
}
.form-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.map-embed {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #cfe9da;
  box-shadow: 0 10px 26px rgba(11, 107, 58, 0.08);
  background: #fff;
}
.map-embed::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Leaflet map container (Locations page) */
#serviceAreaMap.map-embed::before {
  display: none;
}
#serviceAreaMap {
  height: 680px;
}

@media (max-width: 520px) {
  #serviceAreaMap {
    height: 520px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .steps.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .header-inner {
    row-gap: 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  nav.primary-nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  :root {
    --fs-base: 19px;
  }
  .brand {
    min-width: 0;
  }
  .button {
    width: 100%;
  }
  .header-cta {
    width: 100%;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-img {
    width: 176px;
    height: 176px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .topbar-note {
    display: none;
  }

  .steps.four {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
