:root {
  --green: #46b43b;
  --green-dark: #257d2a;
  --green-deep: #176320;
  --cream: #fff9df;
  --cream-strong: #fff0a8;
  --text: #27312a;
  --muted: #68746b;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(32, 71, 37, 0.16);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf6 72%, #eef7ed 100%);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(37, 125, 42, 0.12);
  box-shadow: 0 8px 24px rgba(30, 70, 35, 0.08);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
}

.brand-logo {
  width: min(520px, 80vw);
  height: auto;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(520px, 70vw, 790px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #dfe9df;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 49, 24, 0.84) 0%, rgba(24, 62, 29, 0.68) 42%, rgba(25, 50, 28, 0.16) 75%, rgba(25, 50, 28, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28));
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 9vw, 120px) 0;
  color: var(--white);
}

.hero-content > * {
  max-width: 700px;
}

.eyebrow,
.section-kicker,
.contact-label {
  margin: 0 0 10px;
  font-size: clamp(0.78rem, 1.6vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: #d8ffd4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5.4vw, 4.8rem);
  line-height: 1.05;
  text-wrap: balance;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.hero-text {
  margin: 22px 0 30px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 640px;
  color: rgba(255, 255, 255, 0.95);
}

.primary-button,
.secondary-button,
.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  background: var(--cream-strong);
  color: #1d3c20;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

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

.primary-button:focus-visible,
.secondary-button:focus-visible,
.call-button:focus-visible {
  outline: 3px solid var(--cream-strong);
  outline-offset: 4px;
}

.phone-icon {
  font-size: 1.2em;
}

.locations {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  color: var(--green-dark);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
}

.section-heading p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, var(--cream) 100%);
  border: 1px solid rgba(70, 180, 59, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -82px;
  top: -88px;
  border-radius: 50%;
  background: rgba(70, 180, 59, 0.1);
}

.card-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(70, 180, 59, 0.28);
}

.location-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.location-card address {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.08rem;
  font-style: normal;
}

.call-button {
  width: 100%;
  margin-top: auto;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(37, 125, 42, 0.24);
}

.call-button:hover,
.call-button:focus-visible {
  background: var(--green-deep);
}

.contact-banner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(64px, 8vw, 100px);
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-label {
  color: #d8ffd4;
}

.contact-number {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.secondary-button {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--green-deep);
}

.site-footer {
  padding: 38px 16px;
  text-align: center;
  background: #173d1c;
  color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
  width: min(290px, 72vw);
  height: auto;
  margin: 0 auto 16px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: 650px;
    align-items: end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(19, 47, 23, 0.16) 0%, rgba(19, 47, 23, 0.65) 42%, rgba(19, 47, 23, 0.94) 100%);
  }

  .hero-content {
    padding-top: 220px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .location-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 12px 0;
  }

  .brand-logo {
    width: min(390px, 90vw);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 210px 0 46px;
  }

  .primary-button,
  .secondary-button,
  .call-button {
    width: 100%;
    border-radius: 16px;
  }

  .location-card {
    padding: 26px;
  }

  .contact-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

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

  .primary-button,
  .secondary-button,
  .call-button {
    transition: none;
  }
}
