:root {
  --green: #1f4d36;
  --green-dark: #163a28;
  --green-mid: #2c6246;
  --sand: #e9dfc6;
  --sand-light: #f5f0e3;
  --slate: #34424c;
  --slate-soft: #55636d;
  --line: #d9dfe2;
  --white: #ffffff;
  --radius: 6px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--slate);
  background: var(--white);
  overflow-wrap: break-word;
}

h1, h2, h3 {
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a {
  color: var(--green);
  text-underline-offset: 3px;
}

a:hover { color: var(--green-dark); }

:focus-visible {
  outline: 3px solid #b8860b;
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 100;
  background: var(--white);
  color: var(--green-dark);
  padding: 0.75rem 1rem;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus { top: 0.75rem; }

/* Sample bar */
.sample-bar {
  background: var(--slate);
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-height: 44px;
}

.brand-mark { flex-shrink: 0; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
}

.brand-sub {
  font-size: 1rem;
  color: var(--slate-soft);
}

.site-nav {
  order: 3;
  width: 100%;
}

.site-nav ul {
  list-style: none;
  margin: 0 0 0 -0.7rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.25rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.7rem;
  color: var(--slate);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}

.site-nav a:hover {
  color: var(--green);
  text-decoration: underline;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0 0.9rem;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--green-dark);
  color: var(--white);
}

@media (max-width: 380px) {
  .header-phone svg { display: none; }
  .header-phone { padding: 0 0.7rem; }
}

@media (min-width: 860px) {
  .site-nav {
    order: 0;
    width: auto;
    margin-left: auto;
  }
  .site-nav ul { margin-left: 0; }
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  background-color: var(--green);
  background-image: repeating-linear-gradient(
    100deg,
    var(--green) 0,
    var(--green) 70px,
    #225238 70px,
    #225238 140px
  );
  padding: 3.5rem 0 5.5rem;
}

.hero-inner { max-width: 1120px; }

.hero h1 {
  color: var(--white);
  max-width: 17ch;
}

.hero-place {
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-lede {
  font-size: 1.15rem;
  max-width: 40rem;
  color: #f1f5f2;
}

.hero-cta-label {
  font-weight: 700;
  color: var(--sand);
  margin: 1.5rem 0 0.75rem;
}

.hero-hills {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  display: block;
}

@media (min-width: 860px) {
  .hero { padding: 5rem 0 7rem; }
  .hero-hills { height: 80px; }
}

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row-center { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-align: center;
}

.button-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.hero .button-primary {
  background: var(--sand);
  color: var(--green-dark);
  border-color: var(--sand);
}

.button-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.hero .button-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-dark);
}

.button-secondary,
.button-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--sand);
}

.button-secondary:hover,
.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button-sand {
  background: var(--sand);
  color: var(--green-dark);
  border-color: var(--sand);
}

.button-sand:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--green-dark);
}

.hero :focus-visible,
.contact :focus-visible {
  outline-color: var(--sand);
}

@media (max-width: 480px) {
  .button-row .button { width: 100%; }
}

/* Sections */
.section { padding: 3.5rem 0; }

@media (min-width: 860px) {
  .section { padding: 5rem 0; }
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--slate-soft);
  font-size: 1.1rem;
}

/* Services */
.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.service-card p {
  margin: 0;
  color: var(--slate-soft);
}

.service-icon {
  display: block;
  color: var(--green);
  margin-bottom: 0.9rem;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--sand-light);
  border-left: 4px solid var(--slate);
  border-radius: var(--radius);
}

.inline-cta p {
  margin: 0;
  font-weight: 600;
  color: var(--slate);
  max-width: 34rem;
}

/* Season */
.section-sand { background: var(--sand); }

.season-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.season-grid > div > p {
  max-width: 36rem;
  font-size: 1.1rem;
}

@media (min-width: 860px) {
  .season-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #d6cba9;
}

.hours {
  margin: 0;
}

.hours div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.25rem 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.hours div:last-child { border-bottom: 0; }

.hours dt { font-weight: 600; color: var(--slate); }
.hours dd { margin: 0 0 0 auto; text-align: right; color: var(--green-dark); font-weight: 700; }

/* Towns */
.town-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 0.75rem;
}

.town-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate);
}

.town-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 0 50% 0 50%;
}

/* Contact */
.contact {
  background: var(--green);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

@media (min-width: 860px) {
  .contact { padding: 5rem 0; }
}

.contact h2 { color: var(--white); }

.contact-lede {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: #f1f5f2;
  font-size: 1.1rem;
}

.contact-list {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

@media (min-width: 700px) {
  .contact-list { grid-template-columns: repeat(3, 1fr); }
}

.contact-list li {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
}

.contact-label {
  display: block;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.15rem;
  word-break: break-word;
}

.contact-list a:hover { color: var(--sand); }

/* Footer */
.site-footer {
  background: var(--slate);
  color: #eef1f3;
  padding: 2.5rem 0;
  font-size: 1rem;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.3fr 1fr 1.3fr; }
}

.site-footer p { margin: 0 0 0.4rem; }

.footer-name {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
}

.site-footer a:hover { color: var(--sand); }

.site-footer :focus-visible { outline-color: var(--sand); }
