﻿/* =============================================================================
   Pegasus Water Inc. Main Stylesheet
   Designed by Keiter & Co.
   Brand: Blue (#1254A0) and white. Clean, warm, professional. Local expert tone.
   ============================================================================= */

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* === DESIGN TOKENS === */
:root {
  /* Brand Colors */
  --blue-deep:    #1254A0;
  --blue-mid:     #1769C2;
  --blue-light:   #3B8FD8;
  --blue-pale:    #EBF4FC;
  --blue-xpale:   #F4F9FE;

  /* Text */
  --text-dark:    #1C2B3A;
  --text-mid:     #445566;
  --text-light:   #687A8E;
  --text-xlight:  #96A8B8;

  /* Neutral */
  --white:        #FFFFFF;
  --off-white:    #F8FAFB;
  --border:       #DDE6EF;
  --border-light: #EEF3F8;

  /* Accent */
  --gold:         #C89A2E;
  --gold-light:   #FBF3DC;

  /* Status */
  --green:        #2D8C5C;
  --green-light:  #E8F7F0;

  /* Typography */
  --font-heading: 'Merriweather', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-xxl:  6rem;

  /* Layout */
  --max-width:  1140px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(18,84,160,0.08);
  --shadow-md:  0 4px 16px rgba(18,84,160,0.12);
  --shadow-lg:  0 8px 32px rgba(18,84,160,0.16);

  /* Transitions */
  --transition: 0.2s ease;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-mid);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-deep);
}

ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--text-dark);
  font-weight: 700;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-mid);
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-mid);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}

/* === LAYOUT UTILITIES === */
.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.section--lg {
  padding-top: var(--space-xxl);
  padding-bottom: var(--space-xxl);
}

.section--sm {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.section--pale {
  background: var(--blue-xpale);
}

.section--offwhite {
  background: var(--off-white);
}

.section--dark {
  background: var(--blue-deep);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.82);
}

.section--dark .eyebrow {
  color: var(--blue-light);
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-header {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
}

/* Two-column grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.grid-2--center {
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-mid);
  color: var(--white);
  border-color: var(--blue-mid);
}

.btn--primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--blue-mid);
  border-color: var(--blue-mid);
}

.btn--outline:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--lg {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.btn--phone {
  background: var(--blue-deep);
  color: var(--white);
  border-color: var(--blue-deep);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 0.9rem 1.75rem;
  letter-spacing: 0.01em;
}

.btn--phone:hover {
  background: #0D3F7A;
  border-color: #0D3F7A;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* === TOP BAR === */
.top-bar {
  background: var(--blue-deep);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__tagline {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.top-bar__phone:hover {
  color: var(--blue-pale);
}

.top-bar__phone svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__img {
  height: 52px;
  width: auto;
}

/* === LOGO PLACEHOLDER ===
   REPLACE: swap .site-logo__placeholder with the actual <img> tag
   pointing to assets/images/pegasus-logo.png (or .svg).
   Use: <img src="assets/images/pegasus-logo.png" alt="Pegasus Water Inc." class="site-logo__img">
*/
.site-logo__placeholder {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-logo__mark {
  width: 44px;
  height: 44px;
  background: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo__mark svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.site-logo__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
}

.site-logo__sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.active {
  color: var(--blue-mid);
  background: var(--blue-xpale);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-header__phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-deep);
  white-space: nowrap;
}

.site-header__phone:hover {
  color: var(--blue-mid);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0D3F7A 60%, #0A3368 100%);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__content {
  color: var(--white);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}

.hero__subhead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__phone-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.hero__image {
  position: relative;
}

.hero__image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === HERO IMAGE PLACEHOLDER ===
   GAP: Replace .hero__image-placeholder with actual product/system photo.
   Spec says real installed system photos are available and ready to use.
   Recommended: full installed system in a home garage or utility room.
   Size: at least 800x600px, high quality.
*/
.hero__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
  color: rgba(255,255,255,0.4);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
}

.hero__image-placeholder span {
  font-size: 0.8rem;
  max-width: 220px;
  line-height: 1.5;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.75rem;
  border-right: 1px solid var(--border-light);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item__icon {
  width: 28px;
  height: 28px;
  color: var(--blue-mid);
  flex-shrink: 0;
}

.trust-item__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  white-space: nowrap;
}

.trust-item__text span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-light);
  white-space: nowrap;
}

.trust-item--gold .trust-item__icon {
  color: var(--gold);
}

/* TrustedSite placeholder */
.trustedsite-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
}

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue-mid);
}

.card__icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* === REVIEW CARDS === */
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.875rem;
  color: #F5A623;
}

.review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-style: italic;
}

.review-card__author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.review-card__location {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* === BENEFIT SECTION === */
.benefit-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.benefit-item__body h4 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.benefit-item__body p {
  font-size: 0.95rem;
  margin: 0;
}

/* === SYSTEM STAGES === */
.stage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stage-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
}

.stage-card__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stage-card h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.stage-card p {
  font-size: 0.875rem;
  margin: 0;
}

/* === CTA BAND === */
.cta-band {
  background: var(--blue-deep);
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta-band .btn-group {
  justify-content: center;
}

/* === FAQ ACCORDION === */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--blue-mid);
}

.faq-question__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--blue-mid);
  transition: transform var(--transition);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding-bottom: 1.25rem;
}

.faq-answer__inner p {
  font-size: 0.97rem;
  margin-bottom: 0.75rem;
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0D3F7A 100%);
  padding: 3.5rem 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  justify-content: center;
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__sep {
  color: rgba(255,255,255,0.35);
}

/* === PHOTO GRID === */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.photo-grid__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--blue-pale);
  position: relative;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === PHOTO PLACEHOLDER ===
   GAP: Replace placeholder divs with actual <img> tags.
   Real installed system photos are available use those here.
*/
.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-xlight);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  min-height: 160px;
}

/* === FORM === */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(23,105,194,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* === CONTACT INFO === */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-mid);
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item__body {
  padding-top: 0.15rem;
}

.contact-info-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-info-item__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-info-item__value a {
  color: var(--blue-mid);
}

.contact-info-item__value a:hover {
  color: var(--blue-deep);
}

/* === SERVICE AREA === */
.service-area-box {
  background: var(--blue-xpale);
  border: 1px solid var(--blue-pale);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.service-area-box h3 {
  margin-bottom: 0.75rem;
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-area-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
}

/* === AWARDS === */
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold-light);
  border: 1px solid rgba(200,154,46,0.3);
  border-radius: var(--radius-md);
  padding: 0.6rem 1.1rem;
}

.award-badge__icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.award-badge__text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #7A5C10;
  line-height: 1.25;
}

.award-badge__text span {
  display: block;
  font-weight: 400;
  font-size: 0.775rem;
  color: #9A7520;
}

/* === STATS === */
.stat-block {
  text-align: center;
  padding: 1.5rem;
}

.stat-block__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-block__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.4;
}

/* === DIVIDER === */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-lg) 0;
}

/* === SKIP LINK (accessibility) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--blue-deep);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.15s;
}

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

/* === FOOTER === */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-col__logo {
  margin-bottom: 1rem;
}

.footer-logo__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
}

.footer-col__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-col__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-col__phone:hover {
  color: var(--blue-light);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom__badges {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-trusted {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(45,140,92,0.12);
  border: 1px solid rgba(45,140,92,0.25);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.footer-women-owned,
.footer-family-owned {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablet / small laptop */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__image {
    display: none; /* hide on smaller screens phone + content take priority */
  }

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

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

  .trust-bar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .trust-item {
    flex-shrink: 0;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --space-xl: 2.5rem;
    --space-xxl: 3.5rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Nav mobile */
  .site-nav,
  .site-header__cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 99;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
  }

  .site-nav.open .site-nav__link {
    font-size: 1.25rem;
    padding: 0.875rem 1.5rem;
    width: 100%;
    text-align: center;
  }

  .site-nav.open .nav-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }

  .site-header__cta {
    display: none;
  }

  .top-bar__tagline {
    display: none;
  }

  /* Trust bar scroll */
  .trust-bar__inner {
    gap: 0;
    padding-bottom: 0.25rem;
  }

  .trust-item {
    padding: 0.4rem 1.25rem;
  }

  .trust-item__text {
    font-size: 0.8rem;
  }

  /* Grid adjustments */
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  /* Hero */
  .hero {
    padding: 2.5rem 0 2.5rem;
  }

  /* Footer */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* Photo grid */
  .photo-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Benefit items */
  .benefit-item {
    flex-direction: column;
    gap: 0.75rem;
  }
}

@media (max-width: 420px) {
  .grid-4,
  .stage-grid {
    grid-template-columns: 1fr;
  }

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

/* === UTILITY CLASSES === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
