/* ==========================================================================
   Year Round Services — Brand Stylesheet
   Colors, type, and components per Brand Guidelines v1.0 (Aug 2026)
   ========================================================================== */

:root {
  --ocean-blue: #11789F;
  --ocean-blue-dark: #0D5F80;
  --turf-green: #4F8B2E;
  --turf-green-dark: #3E6D24;
  --charcoal: #2B2E30;
  --cloud-white: #FFFFFF;
  --off-white: #F7F8F6;
  --sunshine-gold: #F4A623;
  --sunshine-gold-dark: #D88E12;

  --text-body: #3A3D3F;
  --text-muted: #6B7075;
  --border-soft: #E3E6E2;

  --font-head: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1140px;
  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(43,46,48,0.08);
  --shadow-md: 0 8px 24px rgba(43,46,48,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cloud-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-weight: 700; font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--ocean-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.25em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  margin-bottom: 0.75em;
}

.rule {
  width: 56px;
  height: 4px;
  background: var(--turf-green);
  border-radius: 2px;
  margin: 0.5em 0 1.25em;
}

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--off { background: var(--off-white); }
.section--charcoal { background: var(--charcoal); color: #D8DBD8; }
.section--charcoal h2, .section--charcoal h3 { color: #FFFFFF; }

.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--gold {
  background: var(--sunshine-gold);
  color: var(--charcoal);
}
.btn--gold:hover { background: var(--sunshine-gold-dark); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--outline:hover { background: rgba(255,255,255,0.12); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn--outline-dark:hover { background: var(--charcoal); color: #fff; }

.btn--white {
  background: #fff;
  color: var(--ocean-blue-dark);
}
.btn--white:hover { background: var(--off-white); box-shadow: var(--shadow-md); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.75em; }

/* ---------------- Header / Nav ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 42px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ocean-blue);
  text-decoration: none;
  border-bottom-color: var(--turf-green);
}
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav__phone svg { flex-shrink: 0; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: var(--charcoal);
  border-radius: 2px;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--ocean-blue) 0%, var(--ocean-blue-dark) 55%, #0a4a63 100%);
  color: #fff;
  overflow: hidden;
}
.hero .container {
  padding-top: 88px;
  padding-bottom: 96px;
  position: relative;
  z-index: 2;
}
.hero__inner { max-width: 640px; }
.hero .eyebrow { color: #BFE6F5; }
.hero h1 { color: #fff; }
.hero p.lede { color: #E4F1F6; }
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: #ffffff;
  z-index: 1;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2em;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-family: var(--font-head);
  font-weight: 600;
}

.page-hero {
  background: linear-gradient(115deg, var(--ocean-blue) 0%, var(--ocean-blue-dark) 100%);
  color: #fff;
  padding: 64px 0 56px;
}
.page-hero .eyebrow { color: #BFE6F5; }
.page-hero h1 { color: #fff; margin-bottom: 0.4em; }
.page-hero p { color: #E4F1F6; max-width: 620px; font-size: 1.05rem; }

/* ---------------- Cards / grids ---------------- */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-tile--blue { background: rgba(17,120,159,0.12); color: var(--ocean-blue); }
.icon-tile--green { background: rgba(79,139,46,0.14); color: var(--turf-green); }
.icon-tile--gold { background: rgba(244,166,35,0.16); color: var(--sunshine-gold-dark); }
.icon-tile--charcoal { background: rgba(43,46,48,0.08); color: var(--charcoal); }

.stat-tile {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.stat-tile strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--ocean-blue);
}
.stat-tile span { color: var(--text-muted); font-size: 0.9rem; }

.color-block {
  border-radius: var(--radius);
  padding: 28px;
  color: #fff;
}
.color-block--blue { background: var(--ocean-blue); }
.color-block--green { background: var(--turf-green); }
.color-block--charcoal { background: var(--charcoal); }
.color-block h3 { color: #fff; }
.color-block p { color: rgba(255,255,255,0.9); margin: 0; }

.quote-block {
  background: #FFF8E9;
  border-left: 4px solid var(--sunshine-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--turf-green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(244,166,35,0.16);
  color: var(--sunshine-gold-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Photo-free visual block (no real photography yet) */
.visual-block {
  border-radius: var(--radius);
  min-height: 280px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--turf-green) 100%);
}
.visual-block svg { position: relative; z-index: 1; width: 60%; height: auto; opacity: 0.95; }
.visual-block::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 55%);
}

/* ---------------- CTA banner ---------------- */
.cta-banner {
  background: var(--turf-green);
  background: linear-gradient(115deg, var(--turf-green) 0%, var(--turf-green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 0.5em; }
.cta-banner .btn-row { justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--charcoal);
  color: #B8BDB9;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand svg { flex-shrink: 0; }
.footer-brand span {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #B8BDB9; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.social-row a:hover { background: var(--ocean-blue); }

/* ---------------- Forms ---------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--off-white);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--ocean-blue);
  outline-offset: 1px;
  background: #fff;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.info-list .icon-tile { margin-bottom: 0; flex-shrink: 0; }
.info-list strong { display: block; color: var(--charcoal); font-family: var(--font-head); }

/* ---------------- Utility ---------------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links, .nav__phone-wrap { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open .nav__links a { display: block; padding: 12px 0; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: 52px 0; }
  .hero .container { padding-top: 56px; padding-bottom: 72px; }
  .form-row-2 { grid-template-columns: 1fr; }
}
