/* Paradise Springs — shared stylesheet */
:root {
  --navy: #14304d;
  --navy-light: #1f4a70;
  --sage: #7c9070;
  --sage-light: #a8b89c;
  --cream: #faf7f1;
  --cream-dark: #f0ead9;
  --gold: #c9a24b;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(20, 48, 77, 0.08);
  --shadow-lg: 0 10px 40px rgba(20, 48, 77, 0.14);
  --font-heading: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.25;
  margin-top: 0;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1rem; color: var(--text-light); }

a { color: var(--navy); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-top { background: var(--white); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon { height: 42px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .word {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--navy);
  letter-spacing: 0.2px;
}
.logo-text .word span { color: var(--sage); }
.logo-text .tagline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}

.main-nav { background: var(--navy); width: 100%; }
.main-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
.main-nav li { border-right: 1px solid rgba(255,255,255,0.15); }
.main-nav li:last-child { border-right: none; }

.main-nav a {
  display: block;
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 26px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: rgba(255,255,255,0.1); }
.main-nav a[aria-current="page"] {
  background: var(--gold);
  color: var(--navy);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.phone-link .phone-icon { font-size: 1.05rem; line-height: 1; }

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
}
.btn-primary:hover { background: #6b7f60; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-large { padding: 14px 30px; font-size: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 130px 0 110px;
  text-align: left;
}
.hero-bg-placeholder {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, #23415a, #23415a 16px, #1c3448 16px, #1c3448 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  text-align: center;
}
.hero-bg-placeholder .ph-icon { font-size: 2.4rem; margin-bottom: 10px; }
.hero-bg-placeholder .ph-label { font-weight: 700; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.hero-bg-slideshow { position: absolute; inset: 0; }
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-bg-photo.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg-photo { transition: none; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,48,77,0.88) 0%, rgba(20,48,77,0.72) 45%, rgba(20,48,77,0.4) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-content { max-width: 620px; }
.hero h1 { color: var(--white); margin: 0 0 18px; }
.hero p.lede { color: #dbe4ee; font-size: 1.15rem; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap;
  margin-top: 36px;
}

/* Hero: two-home preview strip */
.hero-locations {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-location-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 6px 18px 6px 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.hero-location-chip:hover { background: rgba(255,255,255,0.22); }
.hero-location-chip img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-location-chip span {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Hero: rotating facts strip */
.hero-facts {
  margin-top: 26px;
  max-width: 360px;
}
.hero-facts .carousel-viewport { overflow: hidden; }
.hero-facts .carousel-track { display: flex; transition: transform 0.6s ease; }
.hero-facts .hero-fact-slide { flex: 0 0 100%; }
.hero-facts .carousel-dots { justify-content: flex-start; margin-top: 14px; }
.hero-facts .carousel-dots button { background: rgba(255,255,255,0.35); }
.hero-facts .carousel-dots button.active { background: var(--white); }

@media (max-width: 860px) {
  .hero { text-align: center; padding: 100px 0 80px; }
  .hero-content { max-width: none; margin: 0 auto; }
  .hero-actions, .hero-badges, .hero-locations { justify-content: center; }
  .hero-facts { max-width: none; }
  .hero-facts .carousel-dots { justify-content: center; }
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 8px 16px;
  border-radius: 999px;
}
.badge-award {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 10px 20px;
  background: rgba(255,255,255,0.16);
  border-color: var(--gold);
}
.badge-solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: #cfd9e4; max-width: 620px; margin: 0 auto; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-tan { background: var(--cream-dark); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 10px;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 10px; }
.card-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}

/* ---------- Testimonials ---------- */
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sage);
  display: flex;
  flex-direction: column;
}
.testimonial-card p { color: var(--text); margin-bottom: 14px; }
.testimonial-card p:last-of-type { margin-bottom: 0; }
.testimonial-author {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.testimonial-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) {
  .testimonial-columns { grid-template-columns: 1fr; }
}

/* ---------- Staggered trust grid ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item h3 { margin-bottom: 8px; }
.trust-item p { margin-bottom: 0; }
.trust-photo {
  min-height: 180px;
  margin-bottom: 18px;
  border-radius: 30px 30px 30px 4px;
}
.trust-item:nth-child(2n) .trust-photo { margin-bottom: 0; margin-top: 18px; border-radius: 4px 30px 30px 30px; }
img.trust-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- Services carousel ---------- */
.carousel-section {
  position: relative;
  background: var(--navy);
  padding: 72px 0;
  margin: 60px 0;
}
.carousel-section .section-head h2,
.carousel-section .section-head p { color: var(--white); }
.carousel-section .eyebrow { color: var(--sage-light); }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}
.carousel-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--sage);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  flex: 0 0 calc(25% - 18px);
  text-align: center;
}
.carousel-card .card-icon { margin: 0 auto 16px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.35); cursor: pointer; padding: 0;
}
.carousel-dots button.active { background: var(--sage-light); }
@media (max-width: 860px) {
  .carousel-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 680px) {
  .carousel-card { flex: 0 0 100%; }
  .carousel-section { padding: 56px 0; }
}

/* ---------- Location cards ---------- */
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.location-card .loc-body { padding: 32px; }
.location-card .loc-facts {
  list-style: none; margin: 18px 0 24px; padding: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.location-card .loc-facts li {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex; gap: 10px;
}
.location-card .loc-facts li:last-child { border-bottom: none; }
.location-card .loc-facts strong { color: var(--navy); min-width: 90px; display: inline-block; }

/* ---------- Placeholder photo blocks ---------- */
.photo-placeholder {
  background: repeating-linear-gradient(45deg, var(--cream-dark), var(--cream-dark) 12px, #e7e0cc 12px, #e7e0cc 24px);
  border: 2px dashed var(--sage-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-family: var(--font-body);
  text-align: center;
  padding: 30px 20px;
  min-height: 220px;
}
.photo-placeholder .ph-icon { font-size: 2rem; margin-bottom: 10px; }
.photo-placeholder .ph-label { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.photo-placeholder .ph-sub { font-size: 0.85rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-grid .photo-placeholder { min-height: 200px; }

.gallery-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.gallery-columns .gallery-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .gallery-columns { grid-template-columns: 1fr; gap: 40px; }
  .gallery-columns .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gallery-columns .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.gallery-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery-photo .gp-label {
  padding: 10px 14px;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.location-photo {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  height: 100%;
}
.location-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 26px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 26px; top: 18px;
  font-size: 1.4rem; color: var(--sage);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { padding: 0 26px 22px; color: var(--text-light); }

/* ---------- Services list ---------- */
.services-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 32px; }
.services-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 1rem; color: var(--text);
}
.svc-icon {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-top: 1px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #eaf0e6; }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--sage); }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta-secondary-link {
  color: var(--white);
  opacity: 0.88;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-secondary-link:hover { opacity: 1; }

/* ---------- Contact form ---------- */
.contact-form { display: grid; gap: 16px; max-width: 560px; }
.contact-form label {
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #d8d2c2;
  border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: var(--white);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.9rem; color: var(--text-light); margin-top: 10px; padding: 10px 14px; border-radius: 8px; }
.form-note.is-success { color: #3f5c39; background: #e9f0e4; font-weight: 600; }
.form-note.is-error { color: #b5502c; background: #fbeae2; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #cdd7e2;
  padding: 56px 0 30px;
  font-family: var(--font-body);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid a { color: #cdd7e2; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-logo {
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
}
.footer-logo-icon { height: 32px; width: auto; display: block; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  font-size: 0.82rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: #9fb0c2;
}

/* ---------- Mid-page CTA banner ---------- */
.cta-mid {
  background: var(--cream-dark);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 56px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-mid-text h3 { margin-bottom: 4px; }
.cta-mid-text p { margin-bottom: 0; }
.cta-mid .btn-primary { flex-shrink: 0; }
.cta-mid.cta-mid-navy {
  background: var(--navy);
  border-color: var(--navy);
}
.cta-mid.cta-mid-navy h3, .cta-mid.cta-mid-navy p { color: var(--white); }
.cta-mid.cta-mid-navy p { color: #cfd9e4; }

/* ---------- Floating CTA button ---------- */
.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s, background 0.15s;
}
.floating-cta:hover { background: #6b7f60; transform: translateY(-2px); }
.floating-cta .fc-icon { font-size: 1.05rem; line-height: 1; }
@media (max-width: 680px) {
  .floating-cta {
    right: 14px;
    bottom: 14px;
    padding: 12px 18px;
    font-size: 0.85rem;
  }
  .floating-cta .fc-text-full { display: none; }
}

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card-photo {
  height: 170px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.blog-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.blog-card-body h3 { color: var(--navy); margin-bottom: 8px; }
.blog-card-body p { flex: 1; }
.blog-card-more { font-weight: 700; color: var(--sage); font-size: 0.9rem; }
@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.post-meta {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #cfd9e4;
  margin-bottom: 6px;
}
.post-body {
  max-width: 720px;
  margin: 0 auto;
}
.post-body p { color: var(--text); font-size: 1.05rem; }
.post-body h2 { margin-top: 2.2rem; }
.post-body ul, .post-body ol { color: var(--text); padding-left: 1.3rem; margin-bottom: 1rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote {
  border-left: 4px solid var(--sage);
  margin: 1.8rem 0;
  padding: 4px 0 4px 22px;
  color: var(--text-light);
  font-style: italic;
}
.post-back {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--sage);
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  .main-nav {
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 6px 0 12px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
    max-width: none;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; max-width: none; }
  .main-nav li { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .main-nav li:last-child { border-bottom: none; }
  .main-nav a { display: block; padding: 14px 24px; color: var(--navy); text-align: center; }
  .main-nav a:hover { background: var(--cream); }
  .main-nav a[aria-current="page"] { background: var(--sage); color: var(--white); }
  .nav-toggle { display: block; }
  .header-cta .phone-link {
    background: var(--sage);
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
  .header-cta .phone-link .phone-number { display: none; }
  .header-cta .btn-primary { display: none; }
  .header-inner { flex-wrap: nowrap; }
  .logo-icon { height: 34px; }
  .logo-text .word { font-size: 1.05rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
