/* =============================================
   RED ROCK LAWN CARE v2 — Main Stylesheet
   Inspired by: clean, minimal, military-coded
   ============================================= */

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover { background: var(--dark); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---- EYEBROW / LABEL ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
}

/* ---- SECTION HEADINGS ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 560px;
}
.section-header { margin-bottom: var(--sp-12); }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: var(--sp-4) auto 0; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .eyebrow::before { display: none; }

/* ---- DIVIDER WAVE ---- */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--teal); }
.nav-actions { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-phone {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--teal); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}
.mobile-nav {
  display: none;
  background: var(--dark);
  padding: var(--sp-6) var(--container-pad);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: var(--sp-3) 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: var(--sp-5); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn { display: none; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.85) 40%, rgba(0,0,0,.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-20) 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(30,202,211,.15);
  border: 1px solid rgba(30,202,211,.3);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-6);
  max-width: 820px;
}
.hero-title em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: var(--sp-10);
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-12); }
.hero-stats {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--teal);
  padding: var(--sp-5) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--sp-6), 4vw, var(--sp-16));
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; opacity: .85; }

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-6);
}
.service-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-2);
}
.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.service-card-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap .2s;
}
.service-card-link:hover { gap: var(--sp-3); }
.service-card-badge {
  display: inline-block;
  background: rgba(30,202,211,.15);
  border: 1px solid rgba(30,202,211,.35);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: var(--sp-2);
}

/* =============================================
   ABOUT / VETERAN SECTION
   ============================================= */
.about-section {
  padding: var(--sp-24) 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-bottom: var(--sp-5); }
.about-content .section-sub { margin-bottom: var(--sp-6); }
.about-content p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.about-value-icon {
  width: 36px;
  height: 36px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value-icon svg { width: 18px; height: 18px; color: var(--teal); }
.about-value-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2px;
}
.about-value-text span { font-size: 13px; color: var(--text-light); }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
}

/* =============================================
   RIGHT FIT SECTION
   ============================================= */
.fit-section {
  padding: var(--sp-24) 0;
  background: var(--black);
}
.fit-section .section-title { color: var(--white); }
.fit-section .section-sub { color: rgba(255,255,255,.6); }
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}
.fit-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.fit-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.fit-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.fit-card-icon.good { background: rgba(30,202,211,.15); }
.fit-card-icon.bad  { background: rgba(255,80,80,.1); }
.fit-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.fit-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
}
.fit-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.fit-icon.check { color: var(--teal); }
.fit-icon.x     { color: #ff5050; }

@media (max-width: 640px) {
  .fit-grid { grid-template-columns: 1fr; }
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section {
  padding: var(--sp-24) 0;
  background: var(--white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
}
.review-stars { color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  flex: 1;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
}
.review-location { font-size: 12px; color: var(--gray-400); }
.reviews-cta { text-align: center; margin-top: var(--sp-10); }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--teal);
  padding: var(--sp-20) 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cta-banner-text .section-title { color: var(--white); font-size: clamp(28px, 4vw, 48px); }
.cta-banner-text p { color: rgba(255,255,255,.85); font-size: 17px; margin-top: var(--sp-3); }
.cta-banner-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* =============================================
   ESTIMATE FORM SECTION
   ============================================= */
.form-section {
  padding: var(--sp-24) 0;
  background: var(--off-white);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}
.form-info .section-title { margin-bottom: var(--sp-5); }
.form-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.contact-details { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--teal); }
.contact-item-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.contact-item-text a, .contact-item-text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.contact-item-text a:hover { color: var(--teal); }
.estimate-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
}
.estimate-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-group label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,202,211,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-note { font-size: 12px; color: var(--gray-400); text-align: center; margin-top: var(--sp-3); }

@media (max-width: 768px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-section {
  padding: var(--sp-20) 0;
  background: var(--dark-card);
}
.areas-section .section-title { color: var(--white); }
.areas-section .section-sub { color: rgba(255,255,255,.6); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}
.area-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  transition: all .2s;
}
.area-card:hover { background: rgba(30,202,211,.1); border-color: rgba(30,202,211,.3); transform: translateY(-2px); }
.area-card a { display: block; }
.area-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-1);
}
.area-state { font-size: 13px; color: var(--teal); font-weight: 600; }

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: var(--sp-8);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  margin-top: var(--sp-4);
  max-width: 280px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-logo-tag { font-size: 11px; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover { color: var(--teal); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  background: var(--black);
  padding: var(--sp-16) 0 var(--sp-12);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,202,211,.08) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.breadcrumb a, .breadcrumb span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: var(--teal); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 700px;
  margin-bottom: var(--sp-4);
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}

/* =============================================
   UTILITIES
   ============================================= */
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }

/* =============================================
   PAGE HERO (contact, about, inner pages)
   ============================================= */
.page-hero-content { max-width: 700px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin: var(--sp-3) 0 var(--sp-4);
}
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}
.page-hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* =============================================
   CONTACT CARDS
   ============================================= */
.contact-cards-section {
  padding: var(--sp-16) 0 var(--sp-4);
  background: var(--off-white);
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(30,202,211,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--teal);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: var(--sp-2);
}
.contact-card p {
  font-size: 14px;
  color: rgba(0,0,0,.55);
  line-height: 1.6;
  margin-bottom: var(--sp-1);
}
.contact-card-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  word-break: break-all;
}
.contact-card-link:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .contact-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  padding: var(--sp-20) 0;
  background: var(--dark-card);
}
.map-embed-wrapper {
  margin-top: var(--sp-8);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.map-embed-wrapper iframe { display: block; }

/* =============================================
   AREA CARDS (map section grid)
   ============================================= */
.area-card {
  display: block;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  text-align: center;
  text-decoration: none;
  transition: all .2s;
}
.area-card:hover {
  background: rgba(30,202,211,.1);
  border-color: rgba(30,202,211,.3);
  transform: translateY(-2px);
}
.area-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-1);
}
.area-card-zip {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.area-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.area-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
}
